org.osgi.service.dmt.spi.DataPlugin Maven / Gradle / Ivy
Show all versions of hello-world-plugin Show documentation
/*
* Copyright (c) OSGi Alliance (2004, 2013). All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.osgi.service.dmt.spi;
import org.osgi.service.dmt.DmtException;
import org.osgi.service.dmt.DmtSession;
/**
* An implementation of this interface takes the responsibility of handling data
* requests in a subtree of the DMT.
*
* In an OSGi environment such implementations should be registered at the OSGi
* service registry specifying the list of root node URIs in a {@code String}
* array or in case of a single value as {@code String} in the
* {@code dataRootURIs} registration parameter.
*
* When the first reference in a session is made to a node handled by this
* plugin, the DmtAdmin calls one of the {@code open...} methods to retrieve a
* plugin session object for processing the request. The called method depends
* on the lock type of the current session. In case of
* {@link #openReadWriteSession(String[], DmtSession)} and
* {@link #openAtomicSession(String[], DmtSession)}, the plugin may return
* {@code null} to indicate that the specified lock type is not supported. In
* this case the DmtAdmin may call
* {@link #openReadOnlySession(String[], DmtSession)} to start a read-only
* plugin session, which can be used as long as there are no write operations on
* the nodes handled by this plugin.
*
* The {@code sessionRoot} parameter of each method is a String array containing
* the segments of the URI pointing to the root of the session. This is an
* absolute path, so the first segment is always ".". Special
* characters appear escaped in the segments.
*
*
* @author $Id: 6facb5e24486f6f17a38d1d5e7a01376aa244b0b $
*/
public interface DataPlugin {
/**
* The string to be used as key for the mount points property when a
* DataPlugin is registered with mount points.
*/
String MOUNT_POINTS = "mountPoints";
/**
* The string to be used as key for the “dataRootURIs” property when an
* DataPlugin is registered.
*
* @since 2.0
*/
String DATA_ROOT_URIS = "dataRootURIs";
/**
* This method is called to signal the start of a read-only session when the
* first reference is made within a {@code DmtSession} to a node which is
* handled by this plugin. Session information is given as it is needed for
* sending alerts back from the plugin.
*
* The plugin can assume that there are no writing sessions open on any
* subtree that has any overlap with the subtree of this session.
*
* @param sessionRoot the path to the subtree which is accessed in the
* current session, must not be {@code null}
* @param session the session from which this plugin instance is accessed,
* must not be {@code null}
* @return a plugin session capable of executing read operations
* @throws DmtException with the following possible error codes:
*
* - {@code NODE_NOT_FOUND} if {@code sessionRoot} points to a
* non-existing node
- {@code COMMAND_FAILED} if some
* unspecified error is encountered while attempting to complete the
* command
*
* @throws SecurityException if some underlying operation failed because of
* lack of permissions
*/
ReadableDataSession openReadOnlySession(String[] sessionRoot, DmtSession session) throws DmtException;
/**
* This method is called to signal the start of a non-atomic read-write
* session when the first reference is made within a {@code DmtSession} to a
* node which is handled by this plugin. Session information is given as it
* is needed for sending alerts back from the plugin.
*
* The plugin can assume that there are no other sessions open on any
* subtree that has any overlap with the subtree of this session.
*
* @param sessionRoot the path to the subtree which is locked in the current
* session, must not be {@code null}
* @param session the session from which this plugin instance is accessed,
* must not be {@code null}
* @return a plugin session capable of executing read-write operations, or
* {@code null} if the plugin does not support non-atomic read-write
* sessions
* @throws DmtException with the following possible error codes:
*
* - {@code NODE_NOT_FOUND} if {@code sessionRoot} points to a
* non-existing node
- {@code COMMAND_FAILED} if some
* unspecified error is encountered while attempting to complete the
* command
*
* @throws SecurityException if some underlying operation failed because of
* lack of permissions
*/
ReadWriteDataSession openReadWriteSession(String[] sessionRoot, DmtSession session) throws DmtException;
/**
* This method is called to signal the start of an atomic read-write session
* when the first reference is made within a {@code DmtSession} to a node
* which is handled by this plugin. Session information is given as it is
* needed for sending alerts back from the plugin.
*
* The plugin can assume that there are no other sessions open on any
* subtree that has any overlap with the subtree of this session.
*
* @param sessionRoot the path to the subtree which is locked in the current
* session, must not be {@code null}
* @param session the session from which this plugin instance is accessed,
* must not be {@code null}
* @return a plugin session capable of executing read-write operations in an
* atomic block, or {@code null} if the plugin does not support
* atomic read-write sessions
* @throws DmtException with the following possible error codes:
*
* - {@code NODE_NOT_FOUND} if {@code sessionRoot} points to a
* non-existing node
- {@code COMMAND_FAILED} if some
* unspecified error is encountered while attempting to complete the
* command
*
* @throws SecurityException if some underlying operation failed because of
* lack of permissions
*/
TransactionalDataSession openAtomicSession(String[] sessionRoot, DmtSession session) throws DmtException;
}