Ice 3.6 Slice API Reference
|
The IceGrid administrative interface. More...
Defined in <IceGrid/Admin.ice>
interface Admin { ... }
Operations | |
void | addApplication (ApplicationDescriptor descriptor) throws AccessDeniedException, DeploymentException |
Add an application to IceGrid. More... | |
void | addObject (Object *obj) throws ObjectExistsException, DeploymentException |
Add an object to the object registry. More... | |
void | addObjectWithType (Object *obj, string type) throws ObjectExistsException, DeploymentException |
Add an object to the object registry and explicitly specify its type. More... | |
idempotent void | enableServer (string id, bool enabled) throws ServerNotExistException, NodeUnreachableException, DeploymentException |
Enable or disable a server. More... | |
idempotent AdapterInfoSeq | getAdapterInfo (string id) throws AdapterNotExistException |
Get the adapter information for the replica group or adapter with the given id. More... | |
idempotent Ice::StringSeq | getAllAdapterIds () |
Get all the adapter ids registered with IceGrid. More... | |
idempotent Ice::StringSeq | getAllApplicationNames () |
Get all the IceGrid applications currently registered. More... | |
idempotent Ice::StringSeq | getAllNodeNames () |
Get all the IceGrid nodes currently registered. More... | |
idempotent ObjectInfoSeq | getAllObjectInfos (string expr) |
Get the object info of all the registered objects whose stringified identities match the given expression. More... | |
idempotent Ice::StringSeq | getAllRegistryNames () |
Get all the IceGrid registries currently registered. More... | |
idempotent Ice::StringSeq | getAllServerIds () |
Get all the server ids registered with IceGrid. More... | |
idempotent ApplicationInfo | getApplicationInfo (string name) throws ApplicationNotExistException |
Get an application descriptor. More... | |
idempotent ApplicationDescriptor | getDefaultApplicationDescriptor () throws DeploymentException |
Get the default application descriptor. More... | |
idempotent Object * | getNodeAdmin (string name) throws NodeNotExistException, NodeUnreachableException |
Get a proxy to the IceGrid node's admin object. More... | |
idempotent string | getNodeHostname (string name) throws NodeNotExistException, NodeUnreachableException |
Get the hostname of this node. More... | |
idempotent NodeInfo | getNodeInfo (string name) throws NodeNotExistException, NodeUnreachableException |
Get the node information for the node with the given name. More... | |
idempotent LoadInfo | getNodeLoad (string name) throws NodeNotExistException, NodeUnreachableException |
Get the load averages of the node. More... | |
idempotent int | getNodeProcessorSocketCount (string name) throws NodeNotExistException, NodeUnreachableException |
Get the number of physical processor sockets for the machine running the node with the given name. More... | |
idempotent ObjectInfo | getObjectInfo (Ice::Identity id) throws ObjectNotRegisteredException |
Get the object info for the object with the given identity. More... | |
idempotent ObjectInfoSeq | getObjectInfosByType (string type) |
Get the object info of all the registered objects with the given type. More... | |
idempotent Object * | getRegistryAdmin (string name) throws RegistryNotExistException |
Get a proxy to the IceGrid registry's admin object. More... | |
idempotent RegistryInfo | getRegistryInfo (string name) throws RegistryNotExistException, RegistryUnreachableException |
Get the registry information for the registry with the given name. More... | |
idempotent Object * | getServerAdmin (string id) throws ServerNotExistException, NodeUnreachableException, DeploymentException |
Get a proxy to the server's admin object. More... | |
idempotent string | getServerAdminCategory () |
Get the category for server admin objects. More... | |
idempotent ServerInfo | getServerInfo (string id) throws ServerNotExistException |
Get the server information for the server with the given id. More... | |
idempotent int | getServerPid (string id) throws ServerNotExistException, NodeUnreachableException, DeploymentException |
Get a server's system process id. More... | |
idempotent ServerState | getServerState (string id) throws ServerNotExistException, NodeUnreachableException, DeploymentException |
Get a server's state. More... | |
idempotent Ice::SliceChecksumDict | getSliceChecksums () |
Returns the checksums for the IceGrid Slice definitions. More... | |
void | instantiateServer (string application, string node, ServerInstanceDescriptor desc) throws AccessDeniedException, ApplicationNotExistException, DeploymentException |
Instantiate a server template from an application on the given node. More... | |
idempotent bool | isServerEnabled (string id) throws ServerNotExistException, NodeUnreachableException, DeploymentException |
Check if the server is enabled or disabled. More... | |
void | patchApplication (string name, bool shutdown) throws ApplicationNotExistException, PatchException |
Patch the given application data. More... | |
void | patchServer (string id, bool shutdown) throws ServerNotExistException, NodeUnreachableException, DeploymentException, PatchException |
Patch a server. More... | |
idempotent bool | pingNode (string name) throws NodeNotExistException |
Ping an IceGrid node to see if it is active. More... | |
idempotent bool | pingRegistry (string name) throws RegistryNotExistException |
Ping an IceGrid registry to see if it is active. More... | |
void | removeAdapter (string id) throws AdapterNotExistException, DeploymentException |
Remove the adapter with the given id. More... | |
void | removeApplication (string name) throws AccessDeniedException, DeploymentException, ApplicationNotExistException |
Remove an application from IceGrid. More... | |
void | removeObject (Ice::Identity id) throws ObjectNotRegisteredException, DeploymentException |
Remove an object from the object registry. More... | |
void | sendSignal (string id, string signal) throws ServerNotExistException, NodeUnreachableException, DeploymentException, BadSignalException |
Send signal to a server. More... | |
void | shutdown () |
Shut down the IceGrid registry. More... | |
void | shutdownNode (string name) throws NodeNotExistException, NodeUnreachableException |
Shutdown an IceGrid node. More... | |
idempotent void | shutdownRegistry (string name) throws RegistryNotExistException, RegistryUnreachableException |
Shutdown an IceGrid registry. More... | |
void | startServer (string id) throws ServerNotExistException, ServerStartException, NodeUnreachableException, DeploymentException |
Start a server and wait for its activation. More... | |
void | stopServer (string id) throws ServerNotExistException, ServerStopException, NodeUnreachableException, DeploymentException |
Stop a server. More... | |
void | syncApplication (ApplicationDescriptor descriptor) throws AccessDeniedException, DeploymentException, ApplicationNotExistException |
Synchronize a deployed application with the given application descriptor. More... | |
void | syncApplicationWithoutRestart (ApplicationDescriptor descriptor) throws AccessDeniedException, DeploymentException, ApplicationNotExistException |
Synchronize a deployed application with the given application descriptor. More... | |
void | updateApplication (ApplicationUpdateDescriptor descriptor) throws AccessDeniedException, DeploymentException, ApplicationNotExistException |
Update a deployed application with the given update application descriptor. More... | |
void | updateApplicationWithoutRestart (ApplicationUpdateDescriptor descriptor) throws AccessDeniedException, DeploymentException, ApplicationNotExistException |
Update a deployed application with the given update application descriptor only if no server restarts are necessary for the update of the application. More... | |
void | updateObject (Object *obj) throws ObjectNotRegisteredException, DeploymentException |
Update an object in the object registry. More... | |
The IceGrid administrative interface.
Allowing access to this interface is a security risk! Please see the IceGrid documentation for further information.
void addApplication | ( | ApplicationDescriptor | descriptor | ) | throws AccessDeniedException, DeploymentException |
Add an application to IceGrid.
descriptor | The application descriptor. |
AccessDeniedException | Raised if the session doesn't hold the exclusive lock or if another session is holding the lock. |
DeploymentException | Raised if application deployment failed. |
void addObject | ( | Object * | obj | ) | throws ObjectExistsException, DeploymentException |
Add an object to the object registry.
IceGrid will get the object type by calling ice_id
on the given proxy. The object must be reachable.
obj | The object to be added to the registry. |
ObjectExistsException | Raised if the object is already registered. |
DeploymentException | Raised if the object can't be added. This might be raised if the invocation on the proxy to get the object type failed. |
void addObjectWithType | ( | Object * | obj, |
string | type | ||
) | throws ObjectExistsException, DeploymentException |
Add an object to the object registry and explicitly specify its type.
obj | The object to be added to the registry. |
type | The object type. |
ObjectExistsException | Raised if the object is already registered. |
idempotent void enableServer | ( | string | id, |
bool | enabled | ||
) | throws ServerNotExistException, NodeUnreachableException, DeploymentException |
Enable or disable a server.
A disabled server can't be started on demand or administratively. The enable state of the server is not persistent: if the node is shut down and restarted, the server will be enabled by default.
id | The server id. |
enabled | True to enable the server, false to disable it. |
ServerNotExistException | Raised if the server doesn't exist. |
NodeUnreachableException | Raised if the node could not be reached. |
DeploymentException | Raised if the server couldn't be deployed on the node. |
idempotent AdapterInfoSeq getAdapterInfo | ( | string | id | ) | throws AdapterNotExistException |
Get the adapter information for the replica group or adapter with the given id.
id | The adapter id. |
AdapterNotExistException | Raised if the adapter or replica group doesn't exist. |
idempotent Ice::StringSeq getAllAdapterIds | ( | ) |
Get all the adapter ids registered with IceGrid.
idempotent Ice::StringSeq getAllApplicationNames | ( | ) |
Get all the IceGrid applications currently registered.
idempotent Ice::StringSeq getAllNodeNames | ( | ) |
Get all the IceGrid nodes currently registered.
idempotent ObjectInfoSeq getAllObjectInfos | ( | string | expr | ) |
Get the object info of all the registered objects whose stringified identities match the given expression.
expr | The expression to match against the stringified identities of registered objects. The expression may contain a trailing wildcard (* ) character. |
idempotent Ice::StringSeq getAllRegistryNames | ( | ) |
Get all the IceGrid registries currently registered.
idempotent Ice::StringSeq getAllServerIds | ( | ) |
Get all the server ids registered with IceGrid.
idempotent ApplicationInfo getApplicationInfo | ( | string | name | ) | throws ApplicationNotExistException |
Get an application descriptor.
name | The application name. |
ApplicationNotExistException | Raised if the application doesn't exist. |
idempotent ApplicationDescriptor getDefaultApplicationDescriptor | ( | ) | throws DeploymentException |
Get the default application descriptor.
DeploymentException | Raised if the default application descriptor can't be accessed or is invalid. |
idempotent Object* getNodeAdmin | ( | string | name | ) | throws NodeNotExistException, NodeUnreachableException |
Get a proxy to the IceGrid node's admin object.
name | The IceGrid node name |
NodeNotExistException | Raised if the node doesn't exist. |
NodeUnreachableException | Raised if the node could not be reached. |
idempotent string getNodeHostname | ( | string | name | ) | throws NodeNotExistException, NodeUnreachableException |
Get the hostname of this node.
name | The node name. |
NodeNotExistException | Raised if the node doesn't exist. |
NodeUnreachableException | Raised if the node could not be reached. |
idempotent NodeInfo getNodeInfo | ( | string | name | ) | throws NodeNotExistException, NodeUnreachableException |
Get the node information for the node with the given name.
name | The node name. |
NodeNotExistException | Raised if the node doesn't exist. |
NodeUnreachableException | Raised if the node could not be reached. |
idempotent LoadInfo getNodeLoad | ( | string | name | ) | throws NodeNotExistException, NodeUnreachableException |
Get the load averages of the node.
name | The node name. |
NodeNotExistException | Raised if the node doesn't exist. |
NodeUnreachableException | Raised if the node could not be reached. |
idempotent int getNodeProcessorSocketCount | ( | string | name | ) | throws NodeNotExistException, NodeUnreachableException |
Get the number of physical processor sockets for the machine running the node with the given name.
Note that this method will return 1 on operating systems where this can't be automatically determined and where the IceGrid.Node.ProcessorSocketCount property for the node is not set.
name | The node name. |
NodeNotExistException | Raised if the node doesn't exist. |
NodeUnreachableException | Raised if the node could not be reached. |
idempotent ObjectInfo getObjectInfo | ( | Ice::Identity | id | ) | throws ObjectNotRegisteredException |
Get the object info for the object with the given identity.
id | The identity of the object. |
ObjectNotRegisteredException | Raised if the object isn't registered with the registry. |
idempotent ObjectInfoSeq getObjectInfosByType | ( | string | type | ) |
Get the object info of all the registered objects with the given type.
type | The type of the object. |
idempotent Object* getRegistryAdmin | ( | string | name | ) | throws RegistryNotExistException |
Get a proxy to the IceGrid registry's admin object.
name | The registry name |
RegistryNotExistException | Raised if the registry doesn't exist. |
idempotent RegistryInfo getRegistryInfo | ( | string | name | ) | throws RegistryNotExistException, RegistryUnreachableException |
Get the registry information for the registry with the given name.
name | The registry name. |
RegistryNotExistException | Raised if the registry doesn't exist. |
RegistryUnreachableException | Raised if the registry could not be reached. |
idempotent Object* getServerAdmin | ( | string | id | ) | throws ServerNotExistException, NodeUnreachableException, DeploymentException |
Get a proxy to the server's admin object.
id | The server id. |
ServerNotExistException | Raised if the server doesn't exist. |
NodeUnreachableException | Raised if the node could not be reached. |
DeploymentException | Raised if the server couldn't be deployed on the node. |
idempotent string getServerAdminCategory | ( | ) |
Get the category for server admin objects.
You can manufacture a server admin proxy from the admin proxy by changing its identity: use the server ID as name and the returned category as category.
idempotent ServerInfo getServerInfo | ( | string | id | ) | throws ServerNotExistException |
Get the server information for the server with the given id.
id | The server id. |
ServerNotExistException | Raised if the server doesn't exist. |
idempotent int getServerPid | ( | string | id | ) | throws ServerNotExistException, NodeUnreachableException, DeploymentException |
Get a server's system process id.
The process id is operating system dependent.
id | The server id. |
ServerNotExistException | Raised if the server doesn't exist. |
NodeUnreachableException | Raised if the node could not be reached. |
DeploymentException | Raised if the server couldn't be deployed on the node. |
idempotent ServerState getServerState | ( | string | id | ) | throws ServerNotExistException, NodeUnreachableException, DeploymentException |
Get a server's state.
id | The server id. |
ServerNotExistException | Raised if the server doesn't exist. |
NodeUnreachableException | Raised if the node could not be reached. |
DeploymentException | Raised if the server couldn't be deployed on the node. |
idempotent Ice::SliceChecksumDict getSliceChecksums | ( | ) |
Returns the checksums for the IceGrid Slice definitions.
void instantiateServer | ( | string | application, |
string | node, | ||
ServerInstanceDescriptor | desc | ||
) | throws AccessDeniedException, ApplicationNotExistException, DeploymentException |
Instantiate a server template from an application on the given node.
application | The application name. |
node | The name of the node where the server will be deployed. |
desc | The descriptor of the server instance to deploy. |
AccessDeniedException | Raised if the session doesn't hold the exclusive lock or if another session is holding the lock. |
DeploymentException | Raised if server instantiation failed. |
ApplicationNotExistException | Raised if the application doesn't exist. |
idempotent bool isServerEnabled | ( | string | id | ) | throws ServerNotExistException, NodeUnreachableException, DeploymentException |
Check if the server is enabled or disabled.
id | The server id. |
ServerNotExistException | Raised if the server doesn't exist. |
NodeUnreachableException | Raised if the node could not be reached. |
DeploymentException | Raised if the server couldn't be deployed on the node. |
void patchApplication | ( | string | name, |
bool | shutdown | ||
) | throws ApplicationNotExistException, PatchException |
Patch the given application data.
name | The application name. |
shutdown | If true, the servers depending on the data to patch will be shut down if necessary. |
ApplicationNotExistException | Raised if the application doesn't exist. |
PatchException | Raised if the patch failed. |
void patchServer | ( | string | id, |
bool | shutdown | ||
) | throws ServerNotExistException, NodeUnreachableException, DeploymentException, PatchException |
Patch a server.
id | The server id. |
shutdown | If true, servers depending on the data to patch will be shut down if necessary. |
ServerNotExistException | Raised if the server doesn't exist. |
NodeUnreachableException | Raised if the node could not be reached. |
DeploymentException | Raised if the server couldn't be deployed on the node. |
PatchException | Raised if the patch failed. |
idempotent bool pingNode | ( | string | name | ) | throws NodeNotExistException |
Ping an IceGrid node to see if it is active.
name | The node name. |
NodeNotExistException | Raised if the node doesn't exist. |
idempotent bool pingRegistry | ( | string | name | ) | throws RegistryNotExistException |
Ping an IceGrid registry to see if it is active.
name | The registry name. |
RegistryNotExistException | Raised if the registry doesn't exist. |
void removeAdapter | ( | string | id | ) | throws AdapterNotExistException, DeploymentException |
Remove the adapter with the given id.
id | The adapter id. |
AdapterNotExistException | Raised if the adapter doesn't exist. |
void removeApplication | ( | string | name | ) | throws AccessDeniedException, DeploymentException, ApplicationNotExistException |
Remove an application from IceGrid.
name | The application name. |
AccessDeniedException | Raised if the session doesn't hold the exclusive lock or if another session is holding the lock. |
ApplicationNotExistException | Raised if the application doesn't exist. |
void removeObject | ( | Ice::Identity | id | ) | throws ObjectNotRegisteredException, DeploymentException |
Remove an object from the object registry.
Only objects added with this interface can be removed with this operation. Objects added with deployment descriptors should be removed with the deployment mechanism.
id | The identity of the object to be removed from the registry. |
ObjectNotRegisteredException | Raised if the object isn't registered with the registry. |
DeploymentException | Raised if the object can't be removed. This might happen if the object was added with a deployment descriptor. |
void sendSignal | ( | string | id, |
string | signal | ||
) | throws ServerNotExistException, NodeUnreachableException, DeploymentException, BadSignalException |
Send signal to a server.
id | The server id. |
signal | The signal, for example SIGTERM or 15. |
ServerNotExistException | Raised if the server doesn't exist. |
NodeUnreachableException | Raised if the node could not be reached. |
DeploymentException | Raised if the server couldn't be deployed on the node. |
BadSignalException | Raised if the signal is not recognized by the target server. |
void shutdown | ( | ) |
Shut down the IceGrid registry.
void shutdownNode | ( | string | name | ) | throws NodeNotExistException, NodeUnreachableException |
Shutdown an IceGrid node.
name | The node name. |
NodeNotExistException | Raised if the node doesn't exist. |
NodeUnreachableException | Raised if the node could not be reached. |
idempotent void shutdownRegistry | ( | string | name | ) | throws RegistryNotExistException, RegistryUnreachableException |
Shutdown an IceGrid registry.
name | The registry name. |
RegistryNotExistException | Raised if the registry doesn't exist. |
RegistryUnreachableException | Raised if the registry could not be reached. |
void startServer | ( | string | id | ) | throws ServerNotExistException, ServerStartException, NodeUnreachableException, DeploymentException |
Start a server and wait for its activation.
id | The server id. |
ServerNotExistException | Raised if the server doesn't exist. |
ServerStartException | Raised if the server couldn't be started. |
NodeUnreachableException | Raised if the node could not be reached. |
DeploymentException | Raised if the server couldn't be deployed on the node. |
void stopServer | ( | string | id | ) | throws ServerNotExistException, ServerStopException, NodeUnreachableException, DeploymentException |
Stop a server.
id | The server id. |
ServerNotExistException | Raised if the server doesn't exist. |
ServerStopException | Raised if the server couldn't be stopped. |
NodeUnreachableException | Raised if the node could not be reached. |
DeploymentException | Raised if the server couldn't be deployed on the node. |
void syncApplication | ( | ApplicationDescriptor | descriptor | ) | throws AccessDeniedException, DeploymentException, ApplicationNotExistException |
Synchronize a deployed application with the given application descriptor.
This operation will replace the current descriptor with this new descriptor.
descriptor | The application descriptor. |
AccessDeniedException | Raised if the session doesn't hold the exclusive lock or if another session is holding the lock. |
DeploymentException | Raised if application deployment failed. |
ApplicationNotExistException | Raised if the application doesn't exist. |
void syncApplicationWithoutRestart | ( | ApplicationDescriptor | descriptor | ) | throws AccessDeniedException, DeploymentException, ApplicationNotExistException |
Synchronize a deployed application with the given application descriptor.
This operation will replace the current descriptor with this new descriptor only if no server restarts are necessary for the update of the application. If some servers need to be restarted, the synchronization is rejected with a DeploymentException.
descriptor | The application descriptor. |
AccessDeniedException | Raised if the session doesn't hold the exclusive lock or if another session is holding the lock. |
DeploymentException | Raised if application deployment failed. |
ApplicationNotExistException | Raised if the application doesn't exist. |
void updateApplication | ( | ApplicationUpdateDescriptor | descriptor | ) | throws AccessDeniedException, DeploymentException, ApplicationNotExistException |
Update a deployed application with the given update application descriptor.
descriptor | The update descriptor. |
AccessDeniedException | Raised if the session doesn't hold the exclusive lock or if another session is holding the lock. |
DeploymentException | Raised if application deployment failed. |
ApplicationNotExistException | Raised if the application doesn't exist. |
void updateApplicationWithoutRestart | ( | ApplicationUpdateDescriptor | descriptor | ) | throws AccessDeniedException, DeploymentException, ApplicationNotExistException |
Update a deployed application with the given update application descriptor only if no server restarts are necessary for the update of the application.
If some servers need to be restarted, the synchronization is rejected with a DeploymentException.
descriptor | The update descriptor. |
AccessDeniedException | Raised if the session doesn't hold the exclusive lock or if another session is holding the lock. |
DeploymentException | Raised if application deployment failed. |
ApplicationNotExistException | Raised if the application doesn't exist. |
void updateObject | ( | Object * | obj | ) | throws ObjectNotRegisteredException, DeploymentException |
Update an object in the object registry.
Only objects added with this interface can be updated with this operation. Objects added with deployment descriptors should be updated with the deployment mechanism.
obj | The object to be updated to the registry. |
ObjectNotRegisteredException | Raised if the object isn't registered with the registry. |
DeploymentException | Raised if the object can't be updated. This might happen if the object was added with a deployment descriptor. |