Implementing New Contexts

Many context plugins add new types of contexts to Iotellect Server context tree. In most cases, those custom contexts abide by a typical two-level paradigm:

  • There's a container context that is located in a User context of the owning user

  • System administrators, engineers and users create instances of custom contexts in this container

For example, Alerts container context and multiple user-defined Alert contexts in it follow this paradigm.

Many classes related to server contexts are part of Iotellect Server rather than open-source Java SDK. Those classes are not available in source code. To get access to those classes you need to add the following JAR files to your classpath:

  • aggregate-commons.jar

  • server-core.jar

Those JARs can be found in the /jar subfolder of Iotellect Server installation folder.

Adding new container for user-defined contexts implies a set of steps:

  • Implementing a container context class (context containing business object being developed as its children)

  • Implementing a custom resource context class (e.g. context representing a business object being developed)

  • Registering a Resource Container Builder

  • Creating aggregation contexts

Implementing a Container Context Class

Container contexts (such as Alerts context or a Widgets context) are inherited from EditableChildrenContext. To implement a container for your custom resources, inherit your class from EditableChildrenContext by calling its constructor: public EditableChildrenContext(String name, String objectName, Class<? extends EditableChildContext> childClass, TableFormat childInfoFormat)

Here is the meaning of constructor parameters:

Parameter

Description

name

Name of the container context.

objectName

Human-readable description of the custom resource, e.g. "Alert".

childClass

Class of the custom resource context. It must be inherited from EditableChildContext.

childInfoFormat

Format of variable that will represent basic configuration of a custom resource. Users will be prompted to input this data during a resource creation process. This variable should contain name and description string fields.

Using static instances of TableFormat is always a preferred behavior.

The same format should be used for the childInfo variable of customer resource contexts.

There two two methods that should be always overridden in a custom implementation of EditableChildrenContext:

  • setupMyself() method. Implementation of this method should customize the context itself, as well as add custom variables, functions, events and actions to it.

  • buildChild(String cname, boolean readOnly, String type) method. This method should return an instance of custom resource's context that must be inherited from EditableChildContext. Name of the returned context must match cname input parameter.

A number of EditableChildrenContext methods are normally invoked from setupMyself() implementations:

  • addCreateAction() for enabling child resource creation by users

  • allowGrouping() to support grouping of custom resources

Implementing a Custom Resource Context Class

Contexts matching your custom resources (such as a context matching a single Alert or Widget) must be inherited from EditableChildContext. Their creation is performed by buildChild() method of EditableChildrenContext described above.

The public constructor for EditableChildContext is public EditableChildContext(String name, boolean allowMakeCopy). It accepts context name (that's in fact passed to buildChild() as an argument) and a flag defining whether Make Copy action will be enabled for the custom resource context.

Implementations of EditableChildContext should override setupMyself() method for customizing the context itself, as well as adding custom variables, functions, events and actions to it.

Context setup code normally invokes the following EditableChildContext methods:

  • Calling super.setupMyself() adds all necessary basic variables and actions.

  • Execution of addChildInfoVariable(TableFormat rf, boolean readOnly) adds childInfo variable to the custom resource context. Its format must match childInfoFormat passed to the constructor of EditableChildrenContext, and, thus, include name and description fields.

  • addConfigureAction(), addDeleteAction() and addReplicateAction() add Configure, Delete and Replicate actions respectively.

Registering a Resource Container Builder

The idea of a ResourceContainerBuilder is adding necessary containers to a User context and removing them at proper moments. The builder itself should be normally inherited from DefaultResourceContainerBuilder and registered from install(ServerContext context) method of a ContextPlugin.

The following code is an example of adding resource container builder for alerts.

if (context instanceof UserContext)
{
UserContext uc = (UserContext) context;
uc.registerContainerBuilder(new DefaultResourceContainerBuilder(ContextUtils.scriptsContextPath(ContextUtils.USERNAME_PATTERN))
{

@Override
public void buildImpl(UserContext context) throws ContextException
{
context.addChild(new AlertsContext(context));
context.addVisibleChild(ContextUtils.alertsContextPath(context.getName()));
}

@Override
public void dismantleImpl(UserContext context) throws ContextException
{
context.removeVisibleChild(Contexts.CTX_ALERTS, false);
context.removeChild(Contexts.CTX_ALERTS);
}

});
}

The buildImpl() method adds container context to the UserContext and registers it as a visible child. The dismantleImpl() method reverts those operations.

Creating Aggregation Contexts

Adding the container itself to the user context is not enough since the root of visible tree shown to any Iotellect Server administrator displays visible children of server's root context.

Thus, server's root context should also display some contexts containing your custom resource context as its children. Those contexts are called aggregation contexts.

More information about this context mapping is available in Visible and Real Context Trees article.

Also, it's necessary to enable grouping for your custom resources.

Creation of aggregation contexts and group container contexts is performed via a single static call to ServerContextUtils.createAggregationContexts(Context context, String containerName, String containerDescription, String iconId, String helpId, String groupContainerDescription, boolean mapGroups, String... additionalChildren).

Here is an example of how to create aggregation contexts for alerts:

ServerContextUtils.createAggregationContexts(contextManager.getRoot(), Contexts.CTX_ALERTS, "Alerts", "st_alerts", null, "Alert Groups", true);

Was this page helpful?