jube2 package

jube2 package

Subpackages

Submodules

jube2.analyser module

The Analyser class handles the analyse process

class jube2.analyser.Analyser(name, reduce_iteration=True)[source]

Bases: object

The Analyser handles the analyse process and store all important data to run a new analyse.

class AnalyseFile(path)[source]

Bases: object

A file which should be analysed

add_uses(use_names)[source]

Add an addtional patternset name

etree_repr()[source]

Return etree object representation

property path

Get file path

property use

Return uses

add_analyse(step_name, analyse_file)[source]

Add an addtional analyse file

add_uses(use_names)[source]

Add an addtional patternset name

analyse()[source]

Run the analyser

analyse_etree_repr()[source]

Create an etree representation of a analyse dict: stepname -> workpackage_id -> filename -> patternname -> value

property analyse_result

Return analyse result

property analyser

Return analyse dict

property benchmark

Get benchmark information

etree_repr()[source]

Return etree object representation

property name

Get analyser name

property use

Return uses

jube2.benchmark module

The Benchmark class manages the benchmark process

class jube2.benchmark.Benchmark(name, outpath, parametersets, substitutesets, filesets, patternsets, steps, analyser, results, results_order, comment='', tags=None, file_path_ref='.')[source]

Bases: object

The Benchmark class contains all data to run a benchmark

add_tags(other_tags)[source]
analyse(show_info=True, specific_analyser_name=None)[source]

Run analyser

property analyser

Return analyser

property bench_dir

Return benchmark directory

property benchmark_status

Retun global workpackage information dict

property comment

Return comment string

create_result(only=None, show=False, data_list=None, style=None, select=None, exclude=None)[source]

Show benchmark result

delete_bench_dir()[source]

Delete all data inside benchmark directory

etree_repr(new_cwd=None)[source]

Return etree object representation

property file_path_ref

Get file path reference

property filesets

Return filesets

get_jube_parameterset()[source]

Return parameterset which contains benchmark related information

property id

Return benchmark id

property name

Return benchmark name

new_run()[source]

Create workpackage structure and run benchmark

property outpath

Return outpath

property parametersets

Return parametersets

property patternsets

Return patternsets

remove_workpackage(workpackage_to_delete)[source]

Remove a specifc workpackage

reset_all_workpackages()[source]

Reset workpackage state

property results

Return results

property results_order

Return results_order

run()[source]

Run benchmark

set_workpackage_information(workpackages, work_stat)[source]

Set new workpackage information

property steps

Return steps

property substitutesets

Return substitutesets

property tags

Return set of tags

update_analyse_and_result(new_patternsets, new_analyser, new_results, new_results_order, new_cwd)[source]

Update analyser and result data

property work_stat

Return work queue

workpackage_by_id(wp_id)[source]

Search and return a benchmark workpackage by its wp_id

property workpackage_status

Retun workpackage information dict

property workpackages

Return workpackages

wp_post_run_config(workpackage)[source]

additional processing of workpackage: - update status bar - build up queue after restart

write_analyse_data(filename)[source]

All analyse data will be written to given file using xml representation

write_benchmark_configuration(filename, outpath=None)[source]

The current benchmark configuration will be written to given file using xml representation

write_workpackage_information(filename)[source]

All workpackage information will be written to given file using xml representation

jube2.completion module

Shell Completions

jube2.completion.complete_function_bash(args)[source]

Print completion function for bash.

jube2.conf module

Configuration

jube2.fileset module

Fileset related classes

class jube2.fileset.Copy(path, name=None, is_internal_ref=False, active='true', source_dir='', target_dir='')[source]

Bases: File

A file or directory given by path. Which can be copied to the work_dir inside steps.

create_action(path, name, new_file_path)[source]

Copy file/directory to work_dir

etree_repr()[source]

Return etree object representation

class jube2.fileset.File(path, name=None, is_internal_ref=False, active='true', source_dir='', target_dir='')[source]

Bases: object

Generic file access

create(work_dir, parameter_dict, alt_work_dir=None, file_path_ref='', environment=None)[source]

Create file access

create_action(path, name, new_file_path)[source]

File access type specific creation

etree_repr()[source]

Return etree object representation

property file_path_ref

Get file path reference

property is_internal_ref

Return path is internal ref

property path

Return filepath

class jube2.fileset.Fileset(name)[source]

Bases: list

Container for file copy, link and prepare operations

create(work_dir, parameter_dict, alt_work_dir=None, environment=None, file_path_ref='')[source]

Copy/load/prepare all files in fileset

etree_repr()[source]

Return etree object representation

property name

Return fileset name

Bases: File

A link to a given path. Which can be used inside steps.

create_action(path, name, new_file_path)[source]

Create link to file in work_dir

etree_repr()[source]

Return etree object representation

class jube2.fileset.Prepare(cmd, stdout_filename=None, stderr_filename=None, work_dir=None, active='true')[source]

Bases: Operation

Prepare the workpackage work directory

etree_repr()[source]

Return etree object representation

execute(parameter_dict, work_dir, only_check_pending=False, environment=None)[source]

Execute the prepare command

jube2.help module

User help

jube2.help.load_help()[source]

Load additional documentation out of help file and add these data to global help dictionary.

jube2.info module

Gives benchmark related info

jube2.info.print_benchmark_info(benchmark)[source]

Print information concerning a single benchmark

jube2.info.print_benchmark_status(benchmark)[source]

Print overall workpackage status in the following order RUNNING: At least one WP is still active ERROR: At least one WP raised an errror FINISHED: All WPs are finalized and no error was raised

jube2.info.print_benchmarks_info(path)[source]

Print list of all benchmarks, found in given directory

jube2.info.print_step_info(benchmark, step_name, parametrization_only=False, parametrization_only_csv=False)[source]

Print information concerning a single step in a specific benchmark

jube2.info.print_workpackage_info(benchmark, workpackage)[source]

Print information concerning a single workpackage in a specific benchmark

jube2.jubeio module

Basic I/O module

class jube2.jubeio.Parser(filename, tags=None, include_path=None, force=False, strict=False)[source]

Bases: object

JUBE XML input file parser

analyse_result_from_xml()[source]

Read existing analyse out of xml-file

benchmark_info_from_xml()[source]

Return name, comment and available tags of first benchmark found in file

benchmarks_from_xml()[source]

Return a dict of benchmarks

Here parametersets are global and accessible to all benchmarks defined in the corresponding XML file.

property file_path_ref

Return file path given by config file

workpackages_from_xml(benchmark)[source]

Read existing workpackage data out of a xml-file

jube2.log module

Logging Support

class jube2.log.JubeLogger(name, level=0)[source]

Bases: Logger, object

Overwrite logging to handle multi line messages.

jube2.log.change_logfile_name(filename)[source]

Change log file name if not in debug mode.

jube2.log.get_logger(name=None)[source]

Return logger given by name

jube2.log.log_print(text)[source]

Output text

jube2.log.matching_logs(commands, available_logs)[source]

Find intersection between requested logs and available logs.

Returns tuple (matching, not_matching), containing the intersection and its complement.

Only compares basenames.

jube2.log.only_console_log()[source]

Change to console log if not in debug mode.

jube2.log.reset_logging()[source]

Reset logging to default.

jube2.log.safe_output_logfile(filename)[source]

Try to print logfile. If try fails, fail gracefully.

jube2.log.search_for_logs(path=None)[source]

Search for files matching in path with .log extension

jube2.log.setup_logging(mode=None, filename=None, verbose=None)[source]

Setup the logging configuration.

Available modes are

default log to console and file console only console output

filename can be given optionally.

verbose: enable verbose console output

The setup includes setting the handlers and formatters. Calling this function multiple times causes old handlers to be removed before new ones are added.

jube2.main module

CLI program

jube2.main.analyse_benchmarks(args)[source]

Analyse benchmarks

jube2.main.benchmarks_results(args)[source]

Show benchmark results

jube2.main.command_help(args)[source]

Show command help

jube2.main.complete(args)[source]

Handle shell completion

jube2.main.continue_benchmarks(args)[source]

Continue benchmarks

jube2.main.gen_parser_conf()[source]

Generate dict with parser information

jube2.main.gen_subparser_conf()[source]

Generate dict with subparser information

jube2.main.info(args)[source]

Benchmark information

jube2.main.main(command=None)[source]

Parse the command line and run the requested command.

jube2.main.manipulate_comments(args)[source]

Manipulate benchmark comment

jube2.main.output(args)[source]

Show output filename

jube2.main.remove_benchmarks(args)[source]

Remove benchmarks or workpackages

jube2.main.run_new_benchmark(args)[source]

Start a new benchmark run

jube2.main.search_for_benchmarks(args)[source]

Search for existing benchmarks

jube2.main.search_for_workpackage(args, search_for_step=False)[source]

Search for existing workpackages

jube2.main.show_log(args)[source]

Show logs for benchmarks

jube2.main.show_log_single(args, benchmark_folder)[source]

Show logs for a single benchmark

jube2.main.status(args)[source]

Show benchmark status

jube2.main.update_check(args)[source]

Check if a newer JUBE version is available.

jube2.parameter module

Parameter related classes

class jube2.parameter.FixedParameter(name, value, separator=None, parameter_type='string', parameter_mode='text', unit='', export=False, update_mode='never', idx=-1, eval_helper=None, duplicate='none')[source]

Bases: StaticParameter

A FixedParameter is a parameter which can not be evaluated anymore. It represents a fixed value.

substitute_and_evaluate(parametersets=None, final_sub=False, no_templates=False, force_evaluation=False)[source]

No substitute

class jube2.parameter.Parameter(name, value, separator=None, parameter_type='string', parameter_mode='text', unit='', export=False, update_mode='never', idx=-1, eval_helper=None, duplicate='none')[source]

Bases: object

Contains data for single Parameter. This Parameter can be a constant value, a template or a specific value out of a given template

property based_on

The base of the current Parameter

property based_on_mode

Return the root parameter mode inside the based_on graph

property based_on_root

Return the root parameter inside the based_on graph

property based_on_value

Return the root value inside the based_on graph

copy()[source]

Returns Parameter copy (flat copy)

static create_parameter(name, value, separator=None, parameter_type='string', selected_value=None, parameter_mode='text', unit='', export=False, no_templates=False, update_mode='never', idx=-1, eval_helper=None, fixed=False, duplicate='none')[source]

Parameter constructor. Return a Static- or TemplateParameter based on the given data.

property duplicate

Return duplicate option

etree_repr(use_current_selection=False)[source]

Return etree object representation

property eval_helper

Return evaluation helper function

property export

Return if parameter should be exported

property idx

Return template idx

is_equivalent(parameter, first_check=True)[source]

Checks whether the given and the current Parameter based on equivalent templates and (if expanded) contain the same value and were on the same place within the original template

property is_fixed

Return whether the parameter is fixed

property is_jube_parameter

Parameter is handled by JUBE automatically

property is_template

Return whether the parameter is a template

property mode

Return parameter mode

property name

Returns the Parameter name

parameter_regex = re.compile('(?<!\\$)(?:\\$\\$)*\\$(?!\\$)(\\{)?(\\w+?)(?(1)\\}|(?=\\W|$))')
property parameter_type

Return parametertype

search_method(propertyString, recursiveProperty=None)[source]

Searches, potentially recursively, for a method and returns True in case of a success

property unit

Return unit

update_allowed(mode)[source]

Check wether the parameter can be updated using the given update mode

property update_mode

Returns the update mode of the parameter

property value

Return parameter value

class jube2.parameter.Parameterset(name='', duplicate='replace')[source]

Bases: object

A parameterset represent a template or a specific product space. It can be combined with other Parametersets.

add_parameter(parameter)[source]

Add a new parameter

add_parameterset(parameterset)[source]

Add all parameters from given parameterset, existing ones will be overwritten

property all_parameter_names

Return list of all parameter names

property all_parameters

Return list of all parameters

check_parameter_options(parameter, only_duplicate=True)[source]

Check whether both parameters have identical options and throw an error if this is not the case

clear()[source]

Remove all stored parameters

concat_parameter(parameter)[source]

Concatenate a new parameter to a potentially existing one.

property constant_parameter_dict

Return dictionary representation of all constant parameters

copy()[source]

Returns a deepcopy of the Parameterset

delete_parameter(parameter)[source]

Delete a parameter

property duplicate

Return the duplicate property of the Parameterset

etree_repr(use_current_selection=False)[source]

Return etree object representation

expand_templates()[source]

Expand all remaining templates in the Parameterset and returns the resulting parametersets

property export_parameter_dict

Return dictionary representation of all export parameters

get_incompatible_parameter(parameterset, update_mode='never')[source]

Return a set of incompatible parameter names between the current and the given parameterset

get_updatable_parameter(mode, keep_index=False)[source]

Returns a parameterset containing all updatable parameter for a specific mode, the root parameter is added

property has_templates

This Parameterset contains template paramters?

is_compatible(parameterset, update_mode='never')[source]

Two Parametersets are compatible, if the intersection only contains equivilant parameters

property name

Return name of the Parameterset

property parameter_dict

Return dictionary name -> parameter

parameter_substitution(additional_parametersets=None, final_sub=False)[source]

Substitute all parameter inside the parameterset. Parameters from additional_parameterset will be used for substitution but will not be added to the set. final_sub marks the last substitution process.

remove_jube_parameter()[source]

Remove JUBE update mode parameter from the parameterset

property template_parameter_dict

Return dictionary representation of all template parameters

update_parameterset(parameterset)[source]

Overwrite existing parameters. Do not add new parameters

class jube2.parameter.StaticParameter(name, value, separator=None, parameter_type='string', parameter_mode='text', unit='', export=False, update_mode='never', idx=-1, eval_helper=None, duplicate='none')[source]

Bases: Parameter

A StaticParameter can be substituted and evaluated.

can_substitute_and_evaluate(parameterset)[source]

A parameter can be substituted and evaluated if there are no depending templates or unevaluated parameter inside

depends_on(parameter)[source]

Checks the parameter depends on an other parameter.

static fix_export_string(value)[source]

Add missing quotes to jube_wp_envstr if needed

substitute_and_evaluate(parametersets=None, final_sub=False, no_templates=False, force_evaluation=False)[source]

Substitute all variables inside the parameter value by using the parameters inside the given parameterset. final_sub marks the last substitution.

Return the new parameter and a boolean value which represent a change of value

class jube2.parameter.TemplateParameter(name, value, separator=None, parameter_type='string', parameter_mode='text', unit='', export=False, update_mode='never', idx=-1, eval_helper=None, duplicate='none')[source]

Bases: Parameter

A TemplateParameter represent a set of possible parameter values, which can be accessed by a single name. To use the template in a specific environment, it must be expanded.

expand()[source]

Expand Template and produce set of static parameter

property value

Return Template values

jube2.pattern module

Patternset definition

class jube2.pattern.Pattern(name, value, pattern_mode='pattern', content_type='string', unit='', default=None, dotall=False)[source]

Bases: StaticParameter

A pattern can be used to scan a result file, using regular expression, or to represent a derived pattern.

property content_type

Return pattern type

property default_value

Return pattern default value

property derived

pattern is a derived pattern

property dotall

Return pattern dot regex handling

etree_repr(use_current_selection=False)[source]

Return etree object representation

substitute_and_evaluate(parametersets=None, final_sub=False, no_templates=True, force_evaluation=False)[source]

Substitute all variables inside the pattern value by using the parameter inside the given parameterset and additional_parameterset. final_sub marks the last substitution.

Return the new pattern and a boolean value which represent a change of value

property unit

Return unit

class jube2.pattern.Patternset(name='')[source]

Bases: object

A Patternset stores a set of pattern and derived pattern.

add_pattern(pattern)[source]

Add a additional pattern to the patternset. Existing pattern using the same name will be overwritten

add_patternset(patternset)[source]

Add all pattern from given patternset to the current one

copy()[source]

Returns a copy of the Parameterset

property derived_pattern_storage

Return the derived pattern storage

derived_pattern_substitution(parametersets=None)[source]

Run derived pattern substitution using additional parameterset

etree_repr()[source]

Return etree object representation

get_incompatible_pattern(patternset)[source]

Return a set of incompatible pattern names between the current and the given parameterset

is_compatible(patternset)[source]

Two Patternsets are compatible, if all pattern storages are compatible

property name

Get patternset name

property pattern_storage

Return the pattern storage

pattern_substitution(parametersets=None)[source]

Run pattern substitution using additional parameterset

jube2.pattern.get_jube_pattern()[source]

Return jube internal patternset

jube2.result module

Resulttype definition

class jube2.result.Result(name, res_filter=None)[source]

Bases: object

A generic result type

class ResultData(name)[source]

Bases: object

A gerneric result data type

add_result_data(result_data)[source]

Add additional result data

create_result(show=True, filename=None, **kwargs)[source]

Create result output

property name

Return the result name

add_uses(use_names)[source]

Add an addtional analyser name

property benchmark

Return the benchmark

create_result_data()[source]

Create result representation

etree_repr()[source]

Return etree object representation

property name

Return the result name

property result_dir

Return the result_dir

jube2.step module

Step contains the commands for steps

class jube2.step.DoLog(log_dir, log_file, initial_env, cycle=0)[source]

Bases: object

A DoLog class containing the operations and information for setting up the do log.

property initial_env

Get initial env

initialiseFile(shell)[source]

Initialise file if not yet existent.

property log_file

Get log file

property log_path

Get log path

store_do(do, shell, work_dir, parameter_dict=None, shared=False)[source]

Store the current execution directive to the do log and set up the environment if file does not yet exist.

property work_dir

Get last work directory

class jube2.step.Operation(do, async_filename=None, stdout_filename=None, stderr_filename=None, active='true', shared=False, work_dir=None, break_filename=None, error_filename=None)[source]

Bases: object

The Operation-class represents a single instruction, which will be executed in a shell environment.

active(parameter_dict)[source]

Return active status of the current operation depending on the given parameter_dict

property async_filename

Get async filename

property error_filename

Get error filename

etree_repr()[source]

Return etree object representation

execute(parameter_dict, work_dir, only_check_pending=False, environment=None, pid=None, dolog=None)[source]

Execute the operation. work_dir must be set to the given context path. The parameter_dict used for inline substitution. If only_check_pending is set to True, the operation will not be executed, only the async_file will be checked. Return operation status: True => operation finished False => operation pending

static read_process_environment(work_dir, remove_after_read=True, pid=None)[source]

Read standard environment info file in given directory.

property shared

Shared operation?

property stderr_filename

Get stderr filename

property stdout_filename

Get stdout filename

class jube2.step.Step(name, depend, iterations=1, alt_work_dir=None, shared_name=None, export=False, max_wps='0', active='true', suffix='', cycles=1, procs=1, do_log_file=None)[source]

Bases: object

A Step represent one execution step. It contains a list of Do-operations and multiple parametersets, substitutionsets and filesets. A Step is a template for Workpackages.

property active

Return active state

add_operation(operation)[source]

Add operation

add_uses(use_names)[source]

Add use

property alt_work_dir

Return alternativ work directory

create_workpackages(benchmark, global_parameterset, local_parameterset=None, used_sets=None, iteration_base=0, parents=None, incompatible_parameters=None)[source]

Create workpackages for current step using given benchmark context

property cycles

Return number of cycles

property depend

Return dependencies

property do_log_file

Return do log file name

etree_repr()[source]

Return etree object representation

property export

Return export behaviour

get_depend_history(benchmark)[source]

Creates a set of all dependent steps in history for given benchmark

get_jube_parameterset()[source]

Return parameterset which contains step related information

get_used_sets(available_sets, parameter_dict=None)[source]

Get list of all used sets, which can be found in available_sets

property iterations

Return iterations

property max_wps

Return maximum number of simultaneous workpackages

property name

Return step name

property operations

Return operations

property procs

Return number of procs

shared_folder_path(benchdir, parameter_dict=None)[source]

Return shared folder name

Return shared link name

property suffix

Return directory suffix

property use

Return parameters and substitutions

jube2.substitute module

Substitution related classes

class jube2.substitute.Sub(source, sub_mode, dest)[source]

Bases: object

property dest

Return dest of Sub

property mode

Return type of Sub

property source

Return source of Sub

class jube2.substitute.Substituteset(name, file_data, substitute_dict)[source]

Bases: object

A Substituteset contains all information

etree_repr()[source]

Return etree object representation

property name

Return name of Substituteset

substitute(parameter_dict=None, work_dir=None)[source]

Do substitution. The work_dir can be set to a given context path. The parameter_dict used for inline substitution of destination-variables.

update_files(file_data)[source]

Update iofiles

update_substitute(substitute_dict)[source]

Update substitute_dict

jube2.workpackage module

The Workpackage class handles a step and its parameter space

class jube2.workpackage.Workpackage(benchmark, step, local_parameter_names, parameterset, workpackage_id=None, iteration=0, cycle=0)[source]

Bases: object

A Workpackage contains all information to run a specific step with its given parameterset.

property active

Check active state

add_children(workpackage)[source]

Add a children workpackage

add_parent(workpackage)[source]

Add a parent Workpackage

allow_workpackage_dir_caching()[source]

Enable workpackage dir cache

alt_work_dir(parameter_dict=None)[source]

Return location of alternative working_dir

property benchmark

Return benchmark of this workpackage

property children

Return list of child workpackages

property children_future

Create a list of all children in the future of this workpackage

create_abspath(value)[source]

Create absolute path representation

create_relpath(value)[source]

Create relative path representation

Create shared folder connection

create_workpackage_dir()[source]

Create work directory

property cycle

Return current loop cycle

property done

Workpackage done?

property env

Return workpackage environment

property error

Workpackage error?

etree_repr()[source]

Return etree object representation

get_jube_cycle_parameterset()[source]

Return parameterset which contains cycle related information

get_jube_parameterset()[source]

Return parameterset which contains workpackage related information

property id

Return workpackage id

id_counter = 0
property iteration

Return workpackage iteration number

property iteration_siblings

Return set of iteration siblings

property local_parameterset

Return local parameterset

operation_done(operation_number, set_done=None)[source]

Mark/checks operation status

operation_done_but_pending(operation_number)[source]

Check if an operation was executed, but the result is still pending (because it is a async do)

property parameter_dict

get all available parameter inside a dict

property parameterset

Return parameterset

property parent_history

Create a list of all parents in the history of this workpackage

property parents

Return list of parent workpackages

property queued

Workpackage queued?

static reduce_workpackage_id_counter()[source]
remove(remove_config_from_benchmark=False)[source]

Remove all data of this workpackage

run(mode='s')[source]

Run step and use current parameter space mode: s = seriell (default); p = parallel

set_error(set_error, msg='')[source]

Set/reset Workpackage error

property started

Workpackage started?

status()[source]

return FINISHED, RUNNING or DONE dependign on the workpackage status

property step

Return Step data

update_status()[source]

Update status in jube parameter

property work_dir

Return working directory (user space)

property workpackage_dir

Return workpackage directory