Working with Contexts
An initial object providing access to a context tree implements ContextManager
interface. There are several ways to obtain a context manager.
Obtaining Context Manager
The method of getting an instance of ContextManager depends on the current environment:
- If developing an application using Iotellect Server API, use
RemoteServerController.getContextManager()
to get context tree manager of remote server - If developing a Device Driver, use
DeviceContext.getContextManager()
to get server context tree manager - If developing a plugin, the context manager is passed as a parameter to
install(ContextManager cm)
anddeinstall(ContextManager cm)
methods. If insideinstall(ServerContext context)
anddeinstall(ServerContext context)
methods, useServerContext.getContextManager()
. - When developing a Java-based Agent, remember that your Agent has just a single context. However, its context manager can be accessed via
Agent.getContext().getContextManager()
. - When writing a server script, call
ScriptExecutionEnvironment.getScriptContext().getContextManager()
to access server context manager. - When writing a widget script, call
WidgetScriptExecutionEnvironment.getEngine().getServerContextManager()
to access remote server's context manager. Alternatively, you can callWidgetScriptExecutionEnvironment.getComponentContext("componentName").getContextManager()
to access context manager of widget components' context tree.
Respecting Access Permissions
An instance of CallerController
object incorporating current user's permissions must be passed to most context-related calls if you're writing code that will work inside the Iotellect Server JVM (e.g. if developing a server script or plugin). Failure to do so will result to null results of different access denied exceptions.
See Dealing with Access Permissions for details.
Retrieving Individual Contexts
There are two principal ways to retrieve a context having its path:
- Call
get(String path)
orget(String path, CallerController caller)
method of aContext
- Call
get(String path)
orget(String path, CallerController caller)
method of aContextManager
These generally return the same result unless they are used in distributed architecture. However, in a distributed environment their behavior is fundamentally different:
- Methods of
ContextManager
interpret providedpath
String as a local path on the server theContextManager
belongs to. - Methods of
Context
interpret providedpath
as a path on a remove server theContext
belongs to. This is valid if the context of a proxy context representing a remote peer connected via distributed architecture.
![]() | Thus calling |
Example of retrieving a context with the specified path.
Context deviceContext = anotherContext.get("users.admin.devices.device1");
The get()
method will return null if requested context does not exist or is not available with current permissions.
![]() | Using |
When working with a specific context, use Context.getParent()
and Context.getChild(String name)
to access its parent and named child contexts respectively.
Use ContextManager.getRoot()
to access the root context of a context tree.
Using Helper Methods
![]() | Constants defined in Example: |
Processing Children Lists
To get the list of certain context's children contexts, call Context.getChildren()
.
![]() | getChildren(CallerController caller) will return only children that are accessible to the calling user (represented by CallerController ).getChildren() of a proxy context (e.g. when using remote API or developing an Agent) will return only children accessible to the user that is authenticated in the current server connection. |
Getting Context Information
The Context
interface has several methods for getting basic information about a context:
getName()
getPath()
getDescription()
getType()
getGroup()
Proxy Contexts
If you're developing code running in Iotellect Client or in your third-party application and acquiring a Context
via the API, it results to getting a proxy context matching a remote server-side peer. Therefore, even the simplest method calls may result to network I/O and get significantly delayed or even fail due to network issues.
Was this page helpful?