|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.scijava.AbstractContextual
org.scijava.plugin.AbstractRichPlugin
org.scijava.service.AbstractService
org.scijava.plugin.AbstractPTService<Command>
org.scijava.command.DefaultCommandService
public class DefaultCommandService
Default service for working with Commands. Available commands are
obtained from the plugin service. Loading of the actual command classes can
be deferred until a particular command's first execution.
Command| Constructor Summary | |
|---|---|
DefaultCommandService()
|
|
| Method Summary | ||
|---|---|---|
|
getCommand(Class<C> commandClass)
Gets the first available command of the given class, or null if none. |
|
CommandInfo |
getCommand(String className)
Gets the first available command of the given class name, or null if none. |
|
List<CommandInfo> |
getCommands()
Gets the list of all available Commands). |
|
|
getCommands(List<PluginInfo<CT>> plugins)
Gets the list of Commands corresponding to the given plugins. |
|
|
getCommandsOfClass(Class<C> commandClass)
Gets the list of commands of the given class. |
|
List<CommandInfo> |
getCommandsOfClass(String className)
Gets the list of commands with the given class name. |
|
|
getCommandsOfType(Class<CT> type)
Gets the list of Commands of the given type. |
|
EventService |
getEventService()
|
|
ModuleService |
getModuleService()
|
|
PluginService |
getPluginService()
Gets the service responsible for discovering and managing this service's plugins. |
|
Class<Command> |
getPluginType()
Gets the type of plugins managed by this service. |
|
void |
initialize()
Performs any needed initialization when the service is first loaded. |
|
protected void |
onEvent(PluginsAddedEvent event)
|
|
protected void |
onEvent(PluginsRemovedEvent event)
|
|
|
run(Class<C> commandClass,
boolean process,
Map<String,Object> inputMap)
Executes the first command of the given class. |
|
|
run(Class<C> commandClass,
boolean process,
Object... inputs)
Executes the first command of the given class. |
|
Future<CommandModule> |
run(CommandInfo info,
boolean process,
Map<String,Object> inputMap)
Executes the given command. |
|
Future<CommandModule> |
run(CommandInfo info,
boolean process,
Object... inputs)
Executes the given command. |
|
Future<CommandModule> |
run(String className,
boolean process,
Map<String,Object> inputMap)
Executes the first command of the given class name. |
|
Future<CommandModule> |
run(String className,
boolean process,
Object... inputs)
Executes the first command of the given class name. |
|
| Methods inherited from class org.scijava.plugin.AbstractPTService |
|---|
getPlugins |
| Methods inherited from class org.scijava.service.AbstractService |
|---|
dispose, getContext, registerEventHandlers, setContext, toString |
| Methods inherited from class org.scijava.plugin.AbstractRichPlugin |
|---|
compareTo, getInfo, getPriority, setInfo, setPriority |
| Methods inherited from class org.scijava.AbstractContextual |
|---|
context |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.scijava.plugin.PTService |
|---|
getPlugins |
| Methods inherited from interface org.scijava.service.Service |
|---|
registerEventHandlers |
| Methods inherited from interface org.scijava.Contextual |
|---|
context, getContext, setContext |
| Methods inherited from interface org.scijava.Prioritized |
|---|
getPriority, setPriority |
| Methods inherited from interface java.lang.Comparable |
|---|
compareTo |
| Methods inherited from interface org.scijava.plugin.HasPluginInfo |
|---|
getInfo, setInfo |
| Methods inherited from interface org.scijava.Disposable |
|---|
dispose |
| Constructor Detail |
|---|
public DefaultCommandService()
| Method Detail |
|---|
public EventService getEventService()
getEventService in interface CommandServicepublic PluginService getPluginService()
PTService
getPluginService in interface PTService<Command>getPluginService in class AbstractPTService<Command>public ModuleService getModuleService()
getModuleService in interface CommandServicepublic List<CommandInfo> getCommands()
CommandServiceCommands).
getCommands in interface CommandServicepublic <CT extends Command> List<CommandInfo> getCommands(List<PluginInfo<CT>> plugins)
CommandServiceCommands corresponding to the given plugins.
getCommands in interface CommandServicepublic <CT extends Command> List<CommandInfo> getCommandsOfType(Class<CT> type)
CommandServiceCommands of the given type.
getCommandsOfType in interface CommandServicepublic <C extends Command> CommandInfo getCommand(Class<C> commandClass)
CommandService
getCommand in interface CommandServicepublic CommandInfo getCommand(String className)
CommandService
getCommand in interface CommandServicepublic <C extends Command> List<CommandInfo> getCommandsOfClass(Class<C> commandClass)
CommandService
Most classes will have only a single match, but some special classes (such
as ImageJ's LegacyCommand) may match many entries.
NB: Classes are matched by strict equality, not assignability; subtypes of
the specified class will not match. For this behavior, use
CommandService.getCommandsOfType(Class) on a common parent interface.
getCommandsOfClass in interface CommandServicepublic List<CommandInfo> getCommandsOfClass(String className)
CommandService
Most classes will have only a single match, but some special classes (such
as ImageJ's LegacyCommand) may match many entries.
NB: Classes are matched by strict equality, not assignability; subtypes of
the specified class will not match. For this behavior, use
CommandService.getCommandsOfType(Class) on a common parent interface.
getCommandsOfClass in interface CommandService
public Future<CommandModule> run(String className,
boolean process,
Object... inputs)
CommandServiceIf no command with the given class name is registered with the service, then a default one is created and then executed. This default command is not registered with the service for subsequent usage.
run in interface CommandServiceclassName - Class name of the command to execute.process - If true, executes the command with pre- and postprocessing
steps from all available PreprocessorPlugins and
PostprocessorPlugins in the plugin index; if false,
executes the command with no pre- or postprocessing. For more
fine-grained control, see the ModuleService.run(org.scijava.module.ModuleInfo, boolean, java.lang.Object...) methods.inputs - List of input parameter names and values. The expected order
is in pairs: an input name followed by its value, for each desired
input to populate. Leaving some inputs unpopulated is allowed.
Passing the name of an input that is not valid for the plugin, or
passing a value of a type incompatible with the associated input
parameter, will issue an error and ignore that name/value pair.
Future of the module instance being executed. Calling
Future.get() will block until execution is complete.
public Future<CommandModule> run(String className,
boolean process,
Map<String,Object> inputMap)
CommandServiceIf no command with the given class name is registered with the service, then a default one is created and then executed. This default command is not registered with the service for subsequent usage.
run in interface CommandServiceclassName - Class name of the command to execute.process - If true, executes the command with pre- and postprocessing
steps from all available PreprocessorPlugins and
PostprocessorPlugins in the plugin index; if false,
executes the command with no pre- or postprocessing. For more
fine-grained control, see the ModuleService.run(org.scijava.module.ModuleInfo, boolean, java.lang.Object...) methods.inputMap - Table of input parameter values, with keys matching the
plugin's input parameter names. Passing a value of a type
incompatible with the associated input parameter will issue an
error and ignore that value.
Future of the module instance being executed. Calling
Future.get() will block until execution is complete.
public <C extends Command> Future<CommandModule> run(Class<C> commandClass,
boolean process,
Object... inputs)
CommandServiceIf no command of the given class is registered with the service, then a default one is created and then executed. This default command is not registered with the service for subsequent usage.
run in interface CommandServiceC - Class of the command to execute.commandClass - Class object of the command to execute.process - If true, executes the command with pre- and postprocessing
steps from all available PreprocessorPlugins and
PostprocessorPlugins in the plugin index; if false,
executes the command with no pre- or postprocessing. For more
fine-grained control, see the ModuleService.run(org.scijava.module.ModuleInfo, boolean, java.lang.Object...) methods.inputs - List of input parameter names and values. The expected order
is in pairs: an input name followed by its value, for each desired
input to populate. Leaving some inputs unpopulated is allowed.
Passing the name of an input that is not valid for the plugin, or
passing a value of a type incompatible with the associated input
parameter, will issue an error and ignore that name/value pair.
Future of the module instance being executed. Calling
Future.get() will block until execution is complete.
public <C extends Command> Future<CommandModule> run(Class<C> commandClass,
boolean process,
Map<String,Object> inputMap)
CommandServiceIf no command of the given class is registered with the service, then a default one is created and then executed. This default command is not registered with the service for subsequent usage.
run in interface CommandServiceC - Class of the command to execute.commandClass - Class object of the command to execute.process - If true, executes the command with pre- and postprocessing
steps from all available PreprocessorPlugins and
PostprocessorPlugins in the plugin index; if false,
executes the command with no pre- or postprocessing. For more
fine-grained control, see the ModuleService.run(org.scijava.module.ModuleInfo, boolean, java.lang.Object...) methods.inputMap - Table of input parameter values, with keys matching the
plugin's input parameter names. Passing a value of a type
incompatible with the associated input parameter will issue an
error and ignore that value.
Future of the module instance being executed. Calling
Future.get() will block until execution is complete.
public Future<CommandModule> run(CommandInfo info,
boolean process,
Object... inputs)
CommandService
run in interface CommandServiceinfo - The command to instantiate and run.process - If true, executes the command with pre- and postprocessing
steps from all available PreprocessorPlugins and
PostprocessorPlugins in the plugin index; if false,
executes the command with no pre- or postprocessing. For more
fine-grained control, see the ModuleService.run(org.scijava.module.ModuleInfo, boolean, java.lang.Object...) methods.inputs - List of input parameter names and values. The expected order
is in pairs: an input name followed by its value, for each desired
input to populate. Leaving some inputs unpopulated is allowed.
Passing the name of an input that is not valid for the plugin, or
passing a value of a type incompatible with the associated input
parameter, will issue an error and ignore that name/value pair.
Future of the module instance being executed. Calling
Future.get() will block until execution is complete.
public Future<CommandModule> run(CommandInfo info,
boolean process,
Map<String,Object> inputMap)
CommandService
run in interface CommandServiceinfo - The command to instantiate and run.process - If true, executes the command with pre- and postprocessing
steps from all available PreprocessorPlugins and
PostprocessorPlugins in the plugin index; if false,
executes the command with no pre- or postprocessing. For more
fine-grained control, see the ModuleService.run(org.scijava.module.ModuleInfo, boolean, java.lang.Object...) methods.inputMap - Table of input parameter values, with keys matching the
plugin's input parameter names. Passing a value of a type
incompatible with the associated input parameter will issue an
error and ignore that value.
Future of the module instance being executed. Calling
Future.get() will block until execution is complete.public Class<Command> getPluginType()
PTService
getPluginType in interface PTService<Command>public void initialize()
Service
NB: This method is not intended to be called directly. It is called by
the service framework itself (specifically by the ServiceHelper)
when initializing the service. It should not be called a second time.
initialize in interface Serviceinitialize in class AbstractServiceprotected void onEvent(PluginsRemovedEvent event)
protected void onEvent(PluginsAddedEvent event)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||