Launchers¶
A launcher is a fancy python function, but implemented using OOP.
You can break it in 4 components:
some user configurable options.
a execution block that will use the user provided options.
how it can be serialized in the yaml syntax.
an unique identifier to refers to it
Kloch comes with a bunch of built-in launchers:
.base
: An abstract launcher whose only purpose is to be merged with other launchers..system
: A simple launcher executing the given command in the default system console..python
: A launcher that execute the given python file with kloch’s own interpreter.
But you can implement as much as you want using the Launcher Plugins system.
The .base
launch is particular because all launchers inherit from it. Which
mean all launcher, even custom will at least have the options of the .base
launcher. But it’s also handled differently when specified in a profile file
because its option values will be used as base to merge all the other launchers
values over it (example in .base inheritance).
builtin launchers¶
The following describe how to configure the builtin launchers in the Profile File.
.base¶
An abstract launcher whose only purpose is to be merged with other launchers.
This launcher is never launched and is simply merged with other launchers defined in the profile.
➡parent |
:launchers:.base |
|
---|---|---|
⬇key |
||
|
required |
no |
type |
Dict[str, Union[str, List[str]]] |
|
description |
mapping of environment variable to set before starting the environment. The value can either be a regular string or a list of string. The list of string has each item joined using the system path separator [2]. |
|
|
required |
no |
type |
<class ‘bool’> |
|
description |
True to implicitly merge the system environment (from the machine reading the profile) with the potentially specified |
|
|
required |
no |
type |
List[str] |
|
description |
Arbitrary list of command line arguments to call at the end of the launcher execution. |
|
|
required |
no |
type |
<class ‘str’> |
|
description |
Filesystem path to an existing directory to use as “current working directory”. |
|
|
required |
no |
type |
<class ‘int’> |
|
description |
How much you should privilege this launcher to be used over other launchers.Higher number means higher priority. |
.system¶
A simple launcher executing the given command in the default system console.
The launcher will just set the given environment variables for the session,execute the command, then exit. Which make it useless without a command specified.
The launcher use subprocess.run
to execute the command.
➡parent |
:launchers:.system |
|
---|---|---|
⬇key |
||
|
required |
no |
type |
Dict[str, Union[str, List[str]]] |
|
description |
mapping of environment variable to set before starting the environment. The value can either be a regular string or a list of string. The list of string has each item joined using the system path separator [2]. |
|
|
required |
no |
type |
<class ‘bool’> |
|
description |
True to implicitly merge the system environment (from the machine reading the profile) with the potentially specified |
|
|
required |
no |
type |
List[str] |
|
description |
Arbitrary list of command line arguments to call at the end of the launcher execution. |
|
|
required |
no |
type |
<class ‘str’> |
|
description |
Filesystem path to an existing directory to use as “current working directory”. |
|
|
required |
no |
type |
<class ‘int’> |
|
description |
How much you should privilege this launcher to be used over other launchers.Higher number means higher priority. |
|
|
required |
no |
type |
<class ‘bool’> |
|
description |
If True a str is passed to |
|
|
required |
no |
type |
<class ‘dict’> |
|
description |
Mapping of kwargs to pass to the internal |
|
|
required |
no |
type |
<class ‘bool’> |
|
description |
If True the first argument of the passed command will be expanded using Useful for avoiding using |
.python¶
A launcher that execute the given python file with kloch’s own interpreter.
Execute the given python file with the python interpreter used to run kloch.
Any command will be basse as command line arguments to the script.
➡parent |
:launchers:.python |
|
---|---|---|
⬇key |
||
|
required |
no |
type |
Dict[str, Union[str, List[str]]] |
|
description |
mapping of environment variable to set before starting the environment. The value can either be a regular string or a list of string. The list of string has each item joined using the system path separator [2]. |
|
|
required |
no |
type |
<class ‘bool’> |
|
description |
True to implicitly merge the system environment (from the machine reading the profile) with the potentially specified |
|
|
required |
no |
type |
List[str] |
|
description |
Arbitrary list of command line arguments passed to the python file. |
|
|
required |
no |
type |
<class ‘str’> |
|
description |
Filesystem path to an existing directory to use as “current working directory”. |
|
|
required |
no |
type |
<class ‘int’> |
|
description |
How much you should privilege this launcher to be used over other launchers.Higher number means higher priority. |
|
|
required |
yes |
type |
<class ‘str’> |
|
description |
Filesystem path to an existing python file.
The path will have environment variables expanded with |
References