public class JIPipe extends AbstractService implements JIPipeRegistry
Modifier and Type | Class and Description |
---|---|
static class |
JIPipe.DatatypeRegisteredEvent
Triggered when a new data type is registered
|
static class |
JIPipe.ExtensionContentAddedEvent
Generated when content is added to an
JIPipeJsonExtension |
static class |
JIPipe.ExtensionContentRemovedEvent
Generated when content is removed from an
JIPipeJsonExtension |
static class |
JIPipe.ExtensionDiscoveredEvent
Triggered when a new extension was discovered
|
static class |
JIPipe.ExtensionRegisteredEvent
Triggered by
JIPipeRegistry when an extension is registered |
static class |
JIPipe.NodeInfoRegisteredEvent
Triggered when an algorithm is registered
|
Modifier and Type | Field and Description |
---|---|
static JIPipeResourceManager |
RESOURCES
Resource manager for core JIPipe
|
Constructor and Description |
---|
JIPipe() |
Modifier and Type | Method and Description |
---|---|
void |
checkUpdateSites(JIPipeRegistryIssues issues,
List<JIPipeDependency> extensions,
Progress progressAdapter,
JIPipeProgressInfo progressInfo)
Checks the update sites of all extensions and stores the results in the issues
|
static int |
comparePlugins(PluginInfo<?> p0,
PluginInfo<?> p1)
Compares two plugins and sorts them by priority
|
static <T extends JIPipeData> |
createData(Class<T> klass,
Object... constructorParameters)
Instantiates a data class with the provided parameters
This method is helpful if output data is constructed based on slot types
|
static JIPipe |
createInstance(Context context)
Helper to create JIPipe from a context.
|
static <T extends JIPipeGraphNode> |
createNode(Class<T> klass)
Creates a new node instance from its class.
|
static <T extends JIPipeGraphNode> |
createNode(String id)
Creates a new node instance from its id
|
static <T extends JIPipeGraphNode> |
duplicateNode(T node)
Duplicates a
JIPipeGraphNode |
static <T> T |
duplicateParameter(T value)
Duplicates a value that is registered as parameter
|
static JIPipeProjectRun |
enqueueProject(JIPipeProject project,
JIPipeRunSettings settings)
Runs a project in the current thread.
|
static JIPipeProjectRun |
enqueueProject(JIPipeProject project,
Path outputFolder,
int threads)
Runs a project in a different thread.
|
static JIPipe |
ensureInstance()
Ensures that JIPipe is initialized and available.
|
static JIPipe |
ensureInstance(Context context)
Ensures that JIPipe is initialized and available.
|
JIPipeDependency |
findExtensionById(String dependencyId) |
JIPipeCustomMenuRegistry |
getCustomMenuRegistry() |
static JIPipeCustomMenuRegistry |
getCustomMenus() |
JIPipeDatatypeRegistry |
getDatatypeRegistry() |
static JIPipeDatatypeRegistry |
getDataTypes() |
EventBus |
getEventBus() |
JIPipeExpressionRegistry |
getExpressionRegistry() |
JIPipeExtensionRegistry |
getExtensionRegistry() |
JIPipeExternalEnvironmentRegistry |
getExternalEnvironmentRegistry() |
List<JIPipeDependency> |
getFailedExtensions() |
static JIPipeImageJAdapterRegistry |
getImageJAdapters() |
JIPipeImageJAdapterRegistry |
getImageJDataAdapterRegistry() |
FilesCollection |
getImageJPlugins() |
static JIPipe |
getInstance() |
static String |
getJIPipeVersion()
The current version of JIPipe according to the Maven-proved information
|
LogService |
getLogService() |
JIPipeNodeRegistry |
getNodeRegistry() |
static JIPipeNodeRegistry |
getNodes() |
JIPipeParameterTypeRegistry |
getParameterTypeRegistry() |
static JIPipeParameterTypeRegistry |
getParameterTypes() |
PluginService |
getPluginService() |
JIPipeProgressInfo |
getProgressInfo() |
JIPipeProjectTemplateRegistry |
getProjectTemplateRegistry() |
Set<String> |
getRegisteredExtensionIds() |
List<JIPipeDependency> |
getRegisteredExtensions() |
static JIPipeSettingsRegistry |
getSettings() |
JIPipeSettingsRegistry |
getSettingsRegistry() |
static JIPipeExpressionRegistry |
getTableOperations() |
JIPipeUtilityRegistry |
getUtilityRegistry() |
static <T extends JIPipeData> |
importData(JIPipeReadDataStorage storage,
Class<T> klass,
JIPipeProgressInfo progressInfo)
Imports data of given data type from its output folder.
|
void |
initialize()
Initializes JIPipe.
|
void |
initialize(ExtensionSettings extensionSettings,
JIPipeRegistryIssues issues)
Initializes JIPipe
|
boolean |
isInitializing() |
static boolean |
isInstantiated() |
static boolean |
isRestarting()
Returns true if a JIPipe restart is in progress.
|
static boolean |
isValidExtensionId(String id)
Returns if the ID is a valid extension ID
Must have following structure: [group]:[artifact]
[group] should be lower-case and be a valid Maven group ID
[artifact] should be lower-case and a valid Maven artifact ID
|
static JIPipeProject |
loadProject(Path fileName)
Loads a project
|
static JIPipeProject |
loadProject(Path fileName,
JIPipeIssueReport report)
Loads a project
|
static JIPipeProject |
loadProject(Path fileName,
JIPipeIssueReport report,
JIPipeNotificationInbox notifications)
Loads a project
|
static JIPipeProject |
loadProject(Path fileName,
JIPipeNotificationInbox notifications)
Loads a project
|
void |
register(JIPipeJsonExtension extension,
JIPipeProgressInfo progressInfo)
Registers a JSON extension
|
void |
reportValidity(JIPipeIssueReport report)
Generates a validity report
|
static void |
restartGUI() |
static JIPipeProjectRun |
runProject(JIPipeProject project,
JIPipeRunSettings settings)
Runs a project in the current thread.
|
static JIPipeProjectRun |
runProject(JIPipeProject project,
Path outputFolder,
int threads)
Runs a project in the current thread.
|
getContext, setContext, toString
getInfo, getPriority, setInfo, setPriority
context
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
registerEventHandlers
getIdentifier, log
context, getContext, setContext
compareTo, getPriority, setPriority
getInfo, setInfo
getLocation
getVersion
dispose
generateValidityReport
public static final JIPipeResourceManager RESOURCES
public static <T extends JIPipeData> T importData(JIPipeReadDataStorage storage, Class<T> klass, JIPipeProgressInfo progressInfo)
T
- the data typestorage
- the storage that contains the serialized dataklass
- the data typeprogressInfo
- the progress infopublic static boolean isRestarting()
public static JIPipeParameterTypeRegistry getParameterTypes()
public static JIPipeExpressionRegistry getTableOperations()
public static JIPipeCustomMenuRegistry getCustomMenus()
public static JIPipeImageJAdapterRegistry getImageJAdapters()
public static JIPipeSettingsRegistry getSettings()
public static JIPipeNodeRegistry getNodes()
public static JIPipeDatatypeRegistry getDataTypes()
public static JIPipe getInstance()
public static void restartGUI()
public static JIPipe ensureInstance()
ImageJ
instance to obtain a Context
if JIPipe is not initialized already.public static JIPipe ensureInstance(Context context)
context
- the context to initialize JIPipepublic static JIPipe createInstance(Context context)
context
- the contextpublic static boolean isInstantiated()
public static int comparePlugins(PluginInfo<?> p0, PluginInfo<?> p1)
p0
- Pluginp1
- Pluginpublic static JIPipeProject loadProject(Path fileName) throws IOException
fileName
- Project fileIOException
- thrown if the file could not be read or the file is corruptpublic static JIPipeProject loadProject(Path fileName, JIPipeNotificationInbox notifications) throws IOException
fileName
- Project filenotifications
- notifications for the userIOException
- thrown if the file could not be read or the file is corruptpublic static JIPipeProject loadProject(Path fileName, JIPipeIssueReport report, JIPipeNotificationInbox notifications) throws IOException
fileName
- Project filereport
- Report whether the project is validnotifications
- notifications for the userIOException
- thrown if the file could not be read or the file is corruptpublic static JIPipeProject loadProject(Path fileName, JIPipeIssueReport report) throws IOException
fileName
- Project filereport
- Report whether the project is validIOException
- thrown if the file could not be read or the file is corruptpublic static JIPipeProjectRun runProject(JIPipeProject project, Path outputFolder, int threads)
project
- the projectoutputFolder
- the output folderthreads
- the number of threads (set to zero for using the default value)public static JIPipeProjectRun runProject(JIPipeProject project, JIPipeRunSettings settings)
project
- the projectsettings
- settings for the runpublic static JIPipeProjectRun enqueueProject(JIPipeProject project, Path outputFolder, int threads)
project
- the projectoutputFolder
- the output folderthreads
- the number of threads (set to zero for using the default value)JIPipeRunnerQueue
to see if the run is finished.public static JIPipeProjectRun enqueueProject(JIPipeProject project, JIPipeRunSettings settings)
project
- the projectsettings
- settings for the runJIPipeRunnerQueue
to see if the run is finished.public static <T extends JIPipeGraphNode> T createNode(String id)
T
- Algorithm classid
- Algorithm IDpublic static <T extends JIPipeGraphNode> T createNode(Class<T> klass)
T
- node classklass
- node classpublic static <T extends JIPipeGraphNode> T duplicateNode(T node)
JIPipeGraphNode
T
- the node classnode
- the nodepublic static <T> T duplicateParameter(T value)
T
- the type of the valuevalue
- the value. can be nullpublic static <T extends JIPipeData> T createData(Class<T> klass, Object... constructorParameters)
T
- Data classklass
- The data classconstructorParameters
- Constructor parameterspublic static String getJIPipeVersion()
public static boolean isValidExtensionId(String id)
id
- the IDpublic JIPipeProjectTemplateRegistry getProjectTemplateRegistry()
getProjectTemplateRegistry
in interface JIPipeRegistry
public JIPipeProgressInfo getProgressInfo()
public List<JIPipeDependency> getFailedExtensions()
public void initialize()
initialize
in interface Initializable
initialize
in interface Service
public void initialize(ExtensionSettings extensionSettings, JIPipeRegistryIssues issues)
extensionSettings
- extension settingsissues
- if no windows should be openedpublic boolean isInitializing()
public void checkUpdateSites(JIPipeRegistryIssues issues, List<JIPipeDependency> extensions, Progress progressAdapter, JIPipeProgressInfo progressInfo)
issues
- the resultsextensions
- list of known extensionsprogressAdapter
- the adapter that takes the progressprogressInfo
- the progress infopublic void register(JIPipeJsonExtension extension, JIPipeProgressInfo progressInfo)
extension
- The extensionprogressInfo
- the progress infopublic JIPipeExtensionRegistry getExtensionRegistry()
getExtensionRegistry
in interface JIPipeRegistry
public JIPipeNodeRegistry getNodeRegistry()
getNodeRegistry
in interface JIPipeRegistry
public JIPipeDatatypeRegistry getDatatypeRegistry()
getDatatypeRegistry
in interface JIPipeRegistry
public JIPipeImageJAdapterRegistry getImageJDataAdapterRegistry()
getImageJDataAdapterRegistry
in interface JIPipeRegistry
public List<JIPipeDependency> getRegisteredExtensions()
getRegisteredExtensions
in interface JIPipeRegistry
public JIPipeCustomMenuRegistry getCustomMenuRegistry()
getCustomMenuRegistry
in interface JIPipeRegistry
public EventBus getEventBus()
getEventBus
in interface JIPipeRegistry
public Set<String> getRegisteredExtensionIds()
getRegisteredExtensionIds
in interface JIPipeRegistry
public void reportValidity(JIPipeIssueReport report)
JIPipeValidatable
reportValidity
in interface JIPipeValidatable
report
- the report to be added topublic JIPipeDependency findExtensionById(String dependencyId)
findExtensionById
in interface JIPipeRegistry
public PluginService getPluginService()
public JIPipeParameterTypeRegistry getParameterTypeRegistry()
getParameterTypeRegistry
in interface JIPipeRegistry
public JIPipeSettingsRegistry getSettingsRegistry()
getSettingsRegistry
in interface JIPipeRegistry
public JIPipeExpressionRegistry getExpressionRegistry()
getExpressionRegistry
in interface JIPipeRegistry
public FilesCollection getImageJPlugins()
public LogService getLogService()
public JIPipeExternalEnvironmentRegistry getExternalEnvironmentRegistry()
getExternalEnvironmentRegistry
in interface JIPipeRegistry
public JIPipeUtilityRegistry getUtilityRegistry()
getUtilityRegistry
in interface JIPipeRegistry
Copyright © 2020–2022 Leibniz Institute for Natural Product Research and Infection Biology - Hans Knöll Institute (HKI). All rights reserved.