nextflow.plugin.LocalPluginManager.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nf-commons Show documentation
Show all versions of nf-commons Show documentation
A DSL modelled around the UNIX pipe concept, that simplifies writing parallel and scalable pipelines in a portable manner
The newest version!
/*
* Copyright 2013-2024, Seqera Labs
*
* 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 nextflow.plugin
import java.nio.file.FileAlreadyExistsException
import java.nio.file.Files
import java.nio.file.Path
import groovy.transform.CompileStatic
import groovy.util.logging.Slf4j
import nextflow.Const
import nextflow.extension.FilesEx
import org.pf4j.DefaultPluginLoader
import org.pf4j.DefaultPluginManager
import org.pf4j.ManifestPluginDescriptorFinder
import org.pf4j.PluginDescriptorFinder
import org.pf4j.PluginLoader
import org.pf4j.PluginRepository
import org.pf4j.PluginWrapper
/**
* Custom plugin manager creating tracking plugins with symlinks to
* the parent repository
*
* @author Paolo Di Tommaso
*/
@Slf4j
@CompileStatic
class LocalPluginManager extends CustomPluginManager {
static private Path PLUGINS_LOCAL_ROOT = Const.appCacheDir.resolve('plr')
private Path repository
LocalPluginManager(Path repository) {
super(makeLocalRoot())
if( !localRoot ) throw new IllegalArgumentException("Missing Local plugins root directory")
if( !repository ) throw new IllegalArgumentException("Missing plugins repository directory")
this.repository = repository
}
static protected Path makeLocalRoot() {
final result = PLUGINS_LOCAL_ROOT.resolve(UUID.randomUUID().toString())
if( !FilesEx.mkdirs(result) )
throw new IOException("Unable to create plugins local directory: $result -- Make sure you have write permissions in this directory path")
Runtime.addShutdownHook { FilesEx.deleteDir(result) }
return result
}
protected Path getLocalRoot() { getPluginsRoot() }
@Override
protected PluginDescriptorFinder createPluginDescriptorFinder() {
return new ManifestPluginDescriptorFinder()
}
@Override
protected PluginLoader createPluginLoader() {
return new DefaultPluginLoader(this)
}
@Override
protected PluginRepository createPluginRepository() {
return new LocalPluginRepository(localRoot)
}
/**
* Override parent {@link DefaultPluginManager#loadPlugin(java.nio.file.Path)} method
* creating a symlink the plugin path directory in the current plugin root
*
* @param pluginPath
* The file path where the plugin is stored unzipped) in the
* central plugins directory
*/
@Override
String loadPlugin(Path pluginPath) {
final symlink = createLinkFromPath(pluginPath)
super.loadPlugin(symlink)
}
@Override
PluginWrapper loadPluginFromPath(Path pluginPath) {
final symlink = createLinkFromPath(pluginPath)
return super.loadPluginFromPath(symlink)
}
private Path createLinkFromPath(Path pluginPath) {
if( pluginPath.startsWith(localRoot))
return pluginPath
if( !pluginPath )
throw new IllegalArgumentException("Plugin path cannot be null")
if( !Files.isDirectory(pluginPath) )
throw new IllegalArgumentException("Plugin path must be a directory: $pluginPath")
// create a symlink relative to the current root
final symlink = localRoot.resolve(pluginPath.getFileName())
createLink0(symlink, pluginPath)
return symlink
}
private void createLink0(Path symlink, Path pluginPath) {
try {
log.trace "Creating local plugins root link: $symlink → $pluginPath"
Files.createSymbolicLink(symlink, pluginPath)
}
catch (FileAlreadyExistsException e) {
log.debug "Deleting existing local plugins root link: $symlink"
if( !sameTarget(symlink, pluginPath) ) {
Files.delete(symlink)
Files.createSymbolicLink(symlink, pluginPath)
}
}
}
private boolean sameTarget(Path link, Path target) {
try {
return Files.readSymbolicLink(link) == target
}
catch (IOException e) {
return false
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy