nextflow.cli.CmdNode.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nextflow Show documentation
Show all versions of nextflow Show documentation
A DSL modelled around the UNIX pipe concept, that simplifies writing parallel and scalable pipelines in a portable manner
/*
* 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.cli
import com.beust.jcommander.DynamicParameter
import com.beust.jcommander.Parameter
import com.beust.jcommander.Parameters
import groovy.transform.CompileStatic
import groovy.util.logging.Slf4j
import nextflow.config.ConfigBuilder
import nextflow.daemon.DaemonLauncher
import nextflow.plugin.Plugins
import nextflow.util.ServiceName
import nextflow.util.ServiceDiscover
/**
* CLI-command NODE
* @author Paolo Di Tommaso
*/
@Slf4j
@CompileStatic
@Parameters
class CmdNode extends CmdBase {
static final public NAME = 'node'
@Override
final String getName() { NAME }
@DynamicParameter(names ='-cluster.', description='Define cluster config options')
Map clusterOptions = [:]
@Parameter(names = ['-bg'], arity = 0, description = 'Start the cluster node daemon in background')
void setBackground(boolean value) {
launcher.options.background = value
}
@Parameter
List provider
@Override
void run() {
System.setProperty('nxf.node.daemon', 'true')
launchDaemon(provider ? provider[0] : null)
}
/**
* Launch the daemon service
*
* @param config The nextflow configuration map
*/
protected launchDaemon(String name = null) {
// create the config object
def config = new ConfigBuilder()
.setOptions(launcher.options)
.setCmdNode(this)
.build()
DaemonLauncher instance
if( name ) {
if( name.contains('.') ) {
instance = loadDaemonByClass(name)
}
else {
instance = loadDaemonByName(name)
}
}
else {
instance = loadDaemonFirst()
}
// launch it
instance.launch(config)
}
/**
* Load a {@code DaemonLauncher} instance of the its *friendly* name i.e. the name provided
* by using the {@code ServiceName} annotation on the daemon class definition
*
* @param name The executor name e.g. {@code gridgain}
* @return The daemon launcher instance
* @throws IllegalStateException if the class does not exist or it cannot be instantiated
*/
static DaemonLauncher loadDaemonByName( String name ) {
Class clazz = null
for( Class item : ServiceDiscover.load(DaemonLauncher) ) {
log.debug "Discovered daemon class: ${item.name}"
ServiceName annotation = item.getAnnotation(ServiceName)
if( annotation && annotation.value() == name ) {
clazz = item
break
}
}
if( !clazz )
throw new IllegalStateException("Unknown daemon name: $name")
try {
clazz.newInstance()
}
catch( Exception e ) {
throw new IllegalStateException("Unable to launch executor: $name", e)
}
}
/**
* Load a class implementing the {@code DaemonLauncher} interface by the specified class name
*
* @param name The fully qualified class name e.g. {@code nextflow.executor.local.LocalExecutor}
* @return The daemon launcher instance
* @throws IllegalStateException if the class does not exist or it cannot be instantiated
*/
static DaemonLauncher loadDaemonByClass( String name ) {
try {
return (DaemonLauncher)Class.forName(name).newInstance()
}
catch( Exception e ) {
throw new IllegalStateException("Cannot load daemon: ${name}")
}
}
/**
* @return The first available instance of a class implementing {@code DaemonLauncher}
* @throws IllegalStateException when no class implementing {@code DaemonLauncher} is available
*/
static DaemonLauncher loadDaemonFirst() {
Plugins.init()
final loader = Plugins.getExtension(DaemonLauncher)
if( !loader )
throw new IllegalStateException("No cluster services are available -- Cannot launch Nextflow in cluster mode")
return loader
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy