Class: Roby::Application

Inherits:
Object show all
Extended by:
Logger::Forward, Logger::Hierarchy
Defined in:
lib/roby/app.rb

Overview

There is one and only one Application object, which holds mainly the system-wide configuration and takes care of file loading and system-wide setup (#setup). A Roby application can be started in multiple modes. The first and most important mode is the runtime mode (scripts/run). Other modes are the testing mode (#testing? returns true, entered through scripts/test) and the shell mode (#shell? returns true, entered through scripts/shell). Usually, user code does not have to take the modes into account, but it is sometime useful.

Finally, in both testing and runtime mode, the code can be started in simulation or live setups (see #simulation?). Specific plugins can for instance start and set up a simulation system in simulation mode, and as well set up some simulation-specific configuration for the functional layer of the architecture.

Configuration files

In all modes, a specific set of configuration files are loaded. The files that are actually loaded are defined by the robot name and type, as specified to #robot. The loaded files are, in order, the following: [config/app.yml] the application configuration as a YAML file. See the comments in that file for more details. [config/init.rb] Ruby code for the common configuration of all robots [config/ROBOT_NAME.rb or config/ROBOT_TYPE.rb] Ruby code for the configuration of either all robots of the same type, or a specific robot. It is one or the other. If a given robot needs to inherit the configuration of its type, explicitely require the ROBOT_TYPE.rb file in config/ROBOT_NAME.rb.

Runtime mode (scripts/run)

Then, in runtime mode the robot controller controller/ROBOT_NAME.rb or controller/ROBOT_TYPE.rb is loaded. The same rules than for the configuration file config/ROBOT_NAME.rb apply.

Testing mode (scripts/test)

This mode is used to run test suites in the test directory. See Roby::Test::TestCase for a description of Roby-specific tests.

Plugin Integration

Plugins are integrated by providing methods that get called during setup and teardown of the application. It is therefore important to understand the order in which methods get called, and where the plugins can 'plug-in' this process.

On setup, the following methods are called:

  • load base configuration files. app.yml and init.rb
  • load_base_config hook
  • set up directories (log dir, ...) and loggers
  • set up singletons
  • base_setup hook
  • setup hook. The difference is that the setup hook is called only if #setup is called. base_setup is always called.
  • load models in models/tasks
  • require_models hook
  • load models in models/planners and models/actions
  • require_planners hook
  • load additional model files
  • finalize_model_loading hook
  • load config file config/ROBOT.rb
  • require_config hook
  • setup main planner
  • setup testing if in testing mode
  • setup shell interface

Defined Under Namespace

Classes: ActionResolutionError, InvalidLoggerName, InvalidRobyAppDirEnv, LifecycleHook, LogDirNotInitialized, NoCurrentLog, NoSuchRobot, NotInCurrentApp, PluginsDisabled

Constant Summary collapse

DEFAULT_OPTIONS =
{
    "log" => { "events" => true, "server" => true,
               "levels" => {}, "filter_backtraces" => true },
    "discovery" => {},
    "engine" => {}
}.freeze
LOCK_FILE_EXT =
".roby-logdir"

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(plan: ExecutablePlan.new) ⇒ Application

Returns a new instance of Application.



1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
# File 'lib/roby/app.rb', line 1035

def initialize(plan: ExecutablePlan.new)
    @plan = plan
    @argv_set = []

    @registered_apps = {}

    @auto_load_all = false
    @default_auto_load = true
    @auto_load_models = nil
    @app_name = nil
    @module_name = nil
    @app_dir = nil
    @backward_compatible_naming = true
    @development_mode = true
    @search_path = nil
    @plugins = []
    @plugins_enabled = true
    @available_plugins = []
    @options = DEFAULT_OPTIONS.dup

    @public_logs = false
    @public_log_server = false
    @log_create_current = true
    @created_log_dirs = []
    @created_log_base_dirs = []
    @additional_model_files = []
    @restarting = false
    @running = false

    @shell_interface = nil
    @shell_interface_host = nil
    @shell_interface_port = Interface::DEFAULT_PORT
    @shell_interface_fd = nil
    @shell_abort_on_exception = false

    @shell_interface_v2 = nil
    @shell_interface_v2_host = nil
    @shell_interface_v2_port = Interface::DEFAULT_PORT_V2
    @shell_interface_v2_fd = nil

    @rest_interface = nil
    @rest_interface_host = nil
    @rest_interface_port = Interface::DEFAULT_REST_PORT

    @display_all_threads_state_on_abort = true

    @automatic_testing = true
    @registered_exceptions = []
    @app_extra_metadata = {}

    @filter_out_patterns = [Roby::RX_IN_FRAMEWORK,
                            Roby::RX_IN_METARUBY,
                            Roby::RX_IN_UTILRB,
                            Roby::RX_REQUIRE]
    self.abort_on_application_exception = true

    @planners = []
    @notification_listeners = []
    @ui_event_listeners = []

    @init_handlers         = []
    @setup_handlers        = []
    @require_handlers      = []
    @clear_models_handlers = []
    @cleanup_handlers      = []
    @shutdown_handlers     = []
    @controllers           = []
    @action_handlers       = []

    @robots = App::RobotNames.new

    @base_setup_done = false

    @lock_file = nil
end

Instance Attribute Details

#action_handlersArray<#call> (readonly)

Returns list of blocks that should be executed once the application is started.

Returns:

  • (Array<#call>)

    list of blocks that should be executed once the application is started



575
576
577
# File 'lib/roby/app.rb', line 575

def action_handlers
  @action_handlers
end

#additional_model_filesArray<String> (readonly)

Returns list of paths to files not in models/ that contain some models. This is mainly used by the command-line tools so that the user can load separate "model-based scripts" files.

Returns:

  • (Array<String>)

    list of paths to files not in models/ that contain some models. This is mainly used by the command-line tools so that the user can load separate "model-based scripts" files.



542
543
544
# File 'lib/roby/app.rb', line 542

def additional_model_files
  @additional_model_files
end

#app_extra_metadataObject (readonly)

Additional metadata saved in log_dir/info.yml by the app

Do not modify directly, use #add_app_metadata instead



597
598
599
# File 'lib/roby/app.rb', line 597

def 
  @app_extra_metadata
end

#app_nameObject

Returns the name of the application



263
264
265
266
267
268
269
270
271
# File 'lib/roby/app.rb', line 263

def app_name
    if @app_name
        @app_name
    elsif app_dir
        @app_name = File.basename(app_dir).gsub(/[^\w]/, "_")
    else
        "default"
    end
end

#argv_setObject (readonly)

The --set options passed on the command line



160
161
162
# File 'lib/roby/app.rb', line 160

def argv_set
  @argv_set
end

#auto_load_models=(flag) ⇒ Boolean (writeonly)

Controls whether Roby should load the available the model files automatically in #require_models

Returns:

  • (Boolean)


3030
3031
3032
# File 'lib/roby/app.rb', line 3030

def auto_load_models=(value)
  @auto_load_models = value
end

#available_pluginsObject (readonly)

A [name, dir, file, module] array of available plugins, where 'name' is the plugin name, 'dir' the directory in which it is installed, 'file' the file which should be required to load the plugin and 'module' the Application-compatible module for configuration of the plug-in



501
502
503
# File 'lib/roby/app.rb', line 501

def available_plugins
  @available_plugins
end

#cleanup_handlersArray<#call> (readonly)

Returns list of objects called when the app cleans up (it is the opposite of setup).

Returns:

  • (Array<#call>)

    list of objects called when the app cleans up (it is the opposite of setup)



562
563
564
# File 'lib/roby/app.rb', line 562

def cleanup_handlers
  @cleanup_handlers
end

#clear_models_handlersArray<#call> (readonly)

Returns list of objects called when the app is doing #clear_models.

Returns:

  • (Array<#call>)

    list of objects called when the app is doing #clear_models



558
559
560
# File 'lib/roby/app.rb', line 558

def clear_models_handlers
  @clear_models_handlers
end

#controllersArray<#call> (readonly)

Returns list of blocks that should be executed once the application is started.

Returns:

  • (Array<#call>)

    list of blocks that should be executed once the application is started



571
572
573
# File 'lib/roby/app.rb', line 571

def controllers
  @controllers
end

#created_log_base_dirsArray<String> (readonly)

The list of directories created by this app in the paths to #created_log_dirs

They are deleted on cleanup if #public_logs? is false. Unlike with #created_log_dirs, they are not deleted if they are not empty.

Returns:

  • (Array<String>)


592
593
594
# File 'lib/roby/app.rb', line 592

def created_log_base_dirs
  @created_log_base_dirs
end

#created_log_dirsArray<String> (readonly)

The list of log directories created by this app

They are deleted on cleanup if #public_logs? is false. Unlike with #created_log_base_dirs, they are deleted even if they are not empty.

Returns:

  • (Array<String>)


583
584
585
# File 'lib/roby/app.rb', line 583

def created_log_dirs
  @created_log_dirs
end

#filter_out_patternsObject (readonly)

Array of regular expressions used to filter out backtraces



847
848
849
# File 'lib/roby/app.rb', line 847

def filter_out_patterns
  @filter_out_patterns
end

#init_handlersArray<#call> (readonly)

Returns list of objects called when the app gets initialized (i.e. just after init.rb is loaded).

Returns:

  • (Array<#call>)

    list of objects called when the app gets initialized (i.e. just after init.rb is loaded)



546
547
548
# File 'lib/roby/app.rb', line 546

def init_handlers
  @init_handlers
end

#log_base_dirObject

The base directory in which logs should be saved

Logs are saved in log_base_dir/$time_tag by default, and a log_base_dir/current symlink gets updated to reflect the most current log directory.

The path is controlled by the log/dir configuration variable. If the provided value, it is interpreted relative to the application directory. It defaults to "data".



1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
# File 'lib/roby/app.rb', line 1692

def log_base_dir
    maybe_relative_dir =
        if @log_base_dir ||= log["dir"]
            @log_base_dir
        elsif (global_base_dir = ENV["ROBY_BASE_LOG_DIR"])
            if ENV["ROBY_ADD_APP_NAME_TO_BASE_LOG_DIR"] != "0"
                File.join(global_base_dir, app_name)
            else
                global_base_dir
            end
        else
            "logs"
        end
    File.expand_path(maybe_relative_dir, app_dir || Dir.pwd)
end

#log_server_pidInteger? (readonly)

The PID of the server that gives access to the log file

Its port is allocated automatically, and must be discovered through the Roby interface

Returns:

  • (Integer, nil)


321
322
323
# File 'lib/roby/app.rb', line 321

def log_server_pid
  @log_server_pid
end

#log_server_portInteger? (readonly)

The port on which the log server is started

It is by default started on an ephemeral port, that needs to be discovered by clients through the Roby interface's Interface#log_server_port

Returns:

  • (Integer, nil)


330
331
332
# File 'lib/roby/app.rb', line 330

def log_server_port
  @log_server_port
end

#log_timepoints=(value) ⇒ Object (writeonly)

Override #log_timepoints? as configured in app.yml



149
150
151
# File 'lib/roby/app.rb', line 149

def log_timepoints=(value)
  @log_timepoints = value
end

#module_nameObject

Returns the name of this app's toplevel module



283
284
285
# File 'lib/roby/app.rb', line 283

def module_name
    @module_name || app_name.camelcase(:upper)
end

#notification_listeners#call (readonly)

Returns the blocks that listen to notifications. They are added with #on_notification and removed with #remove_notification_listener.

Returns:



3401
3402
3403
# File 'lib/roby/app.rb', line 3401

def notification_listeners
  @notification_listeners
end

#optionsObject (readonly)

Applicatio configuration information is stored in a YAML file config/app.yml. The options are saved in a hash.

This attribute contains the raw hash as read from the file. It is overlaid



125
126
127
# File 'lib/roby/app.rb', line 125

def options
  @options
end

#planExecutablePlan (readonly)

The main plan on which this application acts

Returns:



106
107
108
# File 'lib/roby/app.rb', line 106

def plan
  @plan
end

#plannersArray (readonly)

A set of planners declared in this application

Returns:

  • (Array)


118
119
120
# File 'lib/roby/app.rb', line 118

def planners
  @planners
end

#pluginsObject (readonly)

An [name, module] array of the loaded plugins



503
504
505
# File 'lib/roby/app.rb', line 503

def plugins
  @plugins
end

#registered_exceptionsArray<(Exception,String)> (readonly)

A set of exceptions that have been encountered by the application The associated string, if given, is a hint about in which context this exception got raised

Returns:

See Also:



133
134
135
# File 'lib/roby/app.rb', line 133

def registered_exceptions
  @registered_exceptions
end

#require_handlersArray<#call> (readonly)

Returns list of objects called when the app gets to require its models (i.e. after #require_models).

Returns:

  • (Array<#call>)

    list of objects called when the app gets to require its models (i.e. after #require_models)



554
555
556
# File 'lib/roby/app.rb', line 554

def require_handlers
  @require_handlers
end

#rest_interface_hostString

The host to which the REST interface server should bind

Returns:

  • (String)


947
948
949
# File 'lib/roby/app.rb', line 947

def rest_interface_host
  @rest_interface_host
end

#rest_interface_portInteger

The port on which the REST interface server should be

Returns:

  • (Integer)


951
952
953
# File 'lib/roby/app.rb', line 951

def rest_interface_port
  @rest_interface_port
end

#robotsApp::RobotNames (readonly)

The robot names configuration

Returns:



1422
1423
1424
# File 'lib/roby/app.rb', line 1422

def robots
  @robots
end

#search_pathArray<String>

The list of paths in which the application should be looking for files

Returns:

  • (Array<String>)


422
423
424
425
426
427
428
429
430
# File 'lib/roby/app.rb', line 422

def search_path
    if @search_path
        @search_path
    elsif app_dir
        [app_dir]
    else
        []
    end
end

#setup_handlersArray<#call> (readonly)

Returns list of objects called when the app gets initialized (i.e. in #setup after #base_setup).

Returns:

  • (Array<#call>)

    list of objects called when the app gets initialized (i.e. in #setup after #base_setup)



550
551
552
# File 'lib/roby/app.rb', line 550

def setup_handlers
  @setup_handlers
end

#shell_interfaceObject (readonly)

The TCP server that gives access to the Interface



954
955
956
# File 'lib/roby/app.rb', line 954

def shell_interface
  @shell_interface
end

#shell_interface_fdInteger

A file descriptor that should be used as-is for the interface server

It supersedes the setting for #shell_interface_port and #shell_interface_host

Returns:

  • (Integer)

See Also:



986
987
988
# File 'lib/roby/app.rb', line 986

def shell_interface_fd
  @shell_interface_fd
end

#shell_interface_hostString

The host to which the shell interface server should bind

This is ignored if #shell_interface_fd is set

Returns:

  • (String)

See Also:



969
970
971
# File 'lib/roby/app.rb', line 969

def shell_interface_host
  @shell_interface_host
end

#shell_interface_portInteger

The port on which the shell interface server should be

This is ignored if #shell_interface_fd is set

Returns:

  • (Integer)

See Also:



977
978
979
# File 'lib/roby/app.rb', line 977

def shell_interface_port
  @shell_interface_port
end

#shell_interface_v2Object (readonly)

The TCP server that gives access to main remote Interface using the v2 protocol

Unless #shell_interface_v2_fd is set, the interface listens to #shell_interface_host and #shell_interface_port + 2



1000
1001
1002
# File 'lib/roby/app.rb', line 1000

def shell_interface_v2
  @shell_interface_v2
end

#shell_interface_v2_fdInteger

A file descriptor that should be used as-is for the v2 interface server

Unless #shell_interface_v2_fd is set, the interface listens to #shell_interface_host and #shell_interface_port + 2

Returns:

  • (Integer)


1024
1025
1026
# File 'lib/roby/app.rb', line 1024

def shell_interface_v2_fd
  @shell_interface_v2_fd
end

#shell_interface_v2_hostString

The host to which the v2 shell interface server should bind

This is ignored if #shell_interface_v2_fd is set

Returns:

  • (String)

See Also:



1008
1009
1010
# File 'lib/roby/app.rb', line 1008

def shell_interface_v2_host
  @shell_interface_v2_host
end

#shell_interface_v2_portInteger

The port on which the v2 shell interface server should be

This is ignored if #shell_interface_v2_fd is set

Returns:

  • (Integer)

See Also:



1016
1017
1018
# File 'lib/roby/app.rb', line 1016

def shell_interface_v2_port
  @shell_interface_v2_port
end

#shutdown_handlersArray<#call> (readonly)

Returns list of objects called when the app shuts down, that is when the plan is being tore down but before cleanup. This is called during test teardown as well.

Returns:

  • (Array<#call>)

    list of objects called when the app shuts down, that is when the plan is being tore down but before cleanup. This is called during test teardown as well



567
568
569
# File 'lib/roby/app.rb', line 567

def shutdown_handlers
  @shutdown_handlers
end

#ui_event_listeners#call (readonly)

Returns the blocks that listen to ui events. They are added with #on_ui_event and removed with #remove_ui_event.

Returns:

  • (#call)

    the blocks that listen to ui events. They are added with #on_ui_event and removed with #remove_ui_event



3357
3358
3359
# File 'lib/roby/app.rb', line 3357

def ui_event_listeners
  @ui_event_listeners
end

Class Method Details

.apply_conf_from_argv(value, conf: Conf) ⇒ Object

Set a value in a conf object (defaults to Conf) from a parameter given on the command line



755
756
757
758
759
760
# File 'lib/roby/app.rb', line 755

def self.apply_conf_from_argv(value, conf: Conf)
    key, value = value.split("=")
    path = key.split(".")
    base_conf = path[0..-2].inject(conf) { |c, name| c.send(name) }
    base_conf.send("#{path[-1]}=", YAML.load(value))
end

.attr_config(config_key) ⇒ Object

Allows to attribute configuration keys to override configuration parameters stored in config/app.yml

For instance,

attr_config 'log'

creates a log_overrides attribute, which contains a hash. Any value stored in this hash will override those stored in the config file. The final value can be accessed by accessing the generated #config_key method:

E.g.,

in config/app.yml:

log:
  dir: test

in config/init.rb:

Roby.app.log_overrides['dir'] = 'bla'

Then, Roby.app.log will return { 'dir' => 'bla }

This override mechanism is not meant to be used directly by the user, but as a tool for the rest of the framework



189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# File 'lib/roby/app.rb', line 189

def self.attr_config(config_key)
    config_key = config_key.to_s

    # Ignore if already done
    return if method_defined?("#{config_key}_overrides")

    attribute("#{config_key}_overrides") { {} }
    define_method(config_key) do
        plain     = self.options[config_key] || {}
        overrides = instance_variable_get "@#{config_key}_overrides"
        if overrides
            plain.recursive_merge(overrides)
        else
            plain
        end
    end
end

.common_optparse_add_stackprof(parser) ⇒ Object



676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
# File 'lib/roby/app.rb', line 676

def self.common_optparse_add_stackprof(parser)
    parser.on(
        "--stackprof-start=SPEC", String,
        "start stackprof on timepoints matching SPEC." \
        "Enclose with // to have the string interpreted as regexp"
    ) do |spec|
        Roby.app.stackprof_event_manager.start_on(resolve_matcher_argument(spec))
    end
    parser.on(
        "--stackprof-stop=SPEC", String,
        "stop stackprof on timepoints matching SPEC." \
        "Enclose with // to have the string interpreted as regexp"
    ) do |spec|
        Roby.app.stackprof_event_manager.stop_on(resolve_matcher_argument(spec))
    end
    parser.on(
        "--stackprof-skip=COUNT", Integer,
        "skip this many start/stop cycles before starting to profile"
    ) do |count|
        Roby.app.stackprof_event_manager.skip = count
    end
    parser.on(
        "--stackprof-count=COUNT", Integer,
        "dump results when we reach this many start/stop cycles. The default " \
        "is to dump results on application stop"
    ) do |count|
        Roby.app.stackprof_event_manager.count = count
    end
    parser.on(
        "--stackprof-result=PATH", String,
        "save stackprof results on PATH"
    ) do |path|
        Roby.app.stackprof_event_manager.result_path = path
    end
    parser.on(
        "--stackprof-mode=MODE", String,
        "use the given mode for stackprof profiling"
    ) do |mode|
        Roby.app.stackprof_event_manager.mode = mode
    end
    parser.on(
        "--stackprof-raw",
        "enable raw mode during stackprof profiling"
    ) do |mode|
        Roby.app.stackprof_event_manager.raw = true
    end
    parser.on(
        "--stackprof-quit",
        "automatically quit the application when the profile data has been " \
        "dumped"
    ) do |mode|
        Roby.app.stackprof_event_manager.quit = true
    end
end

.common_optparse_add_tracing(parser) ⇒ Object



640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
# File 'lib/roby/app.rb', line 640

def self.common_optparse_add_tracing(parser)
    parser.on(
        "--trace-event=SPEC", String,
        "display on STDOUT information about events whose name matches " \
        "SPEC. Enclose with // to have the string interpreted as regexp"
    ) do |spec|
        Roby.app.io_event_logger.event_display(resolve_matcher_argument(spec))
    end
    parser.on(
        "--trace-timepoint=SPEC", String,
        "display on STDOUT information about timepoint whose name matches " \
        "SPEC. Enclose with // to have the string interpreted as regexp"
    ) do |spec|
        Roby.app.io_event_logger.timepoint_display(resolve_matcher_argument(spec))
    end
    parser.on(
        "--trace-timepoint-group=SPEC", String,
        "display on STDOUT information about timepoint groups whose name " \
        "matches SPEC. Enclose with // to have the string interpreted as regexp"
    ) do |spec|
        matcher, arguments = resolve_timepoint_group_argument(spec)
        Roby.app.io_event_logger.timegroup_display(
            resolve_matcher_argument(matcher), **arguments
        )
    end
end

.common_optparse_setup(parser) ⇒ Object

Defines common configuration options valid for all Roby-oriented scripts



601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
# File 'lib/roby/app.rb', line 601

def self.common_optparse_setup(parser)
    Roby.app.load_config_yaml
    parser.on(
        "--set=KEY=VALUE", String, "set a value on the Conf object"
    ) do |value|
        Roby.app.argv_set << value
        apply_conf_from_argv(value)
    end
    parser.on(
        "--log=SPEC", String,
        "configuration specification for text loggers. SPEC is of the form "\
        "path/to/a/module:LEVEL[:FILE][,path/to/another]"
    ) do |log_spec|
        log_spec.split(",").each do |spec|
            mod, level, file = spec.split(":")
            Roby.app.log_setup(mod, level, file)
        end
    end
    parser.on(
        "-r NAME", "--robot=NAME[,TYPE]", String, "the robot name and type"
    ) do |name|
        robot_name, robot_type = name.split(",")
        Roby.app.setup_robot_names_from_config_dir
        Roby.app.robot(robot_name, robot_type)
    end
    parser.on("--debug", "run in debug mode") do
        Roby.app.public_logs = true
        Roby.app.filter_backtraces = false
        require "roby/app/debug"
    end
    parser.on_tail("-h", "--help", "this help message") do
        STDERR.puts parser
        exit
    end

    common_optparse_add_tracing(parser)
    common_optparse_add_stackprof(parser)
end

.find_data(*name) ⇒ Object

Raises:

  • (Errno::ENOENT)


3054
3055
3056
3057
3058
3059
3060
3061
# File 'lib/roby/app.rb', line 3054

def self.find_data(*name)
    name = File.join(*name)
    Roby::Conf.datadirs.each do |dir|
        path = File.join(dir, name)
        return path if File.exist?(path)
    end
    raise Errno::ENOENT, "no file #{name} found in #{Roby::Conf.datadirs.join(':')}"
end

.guess_app_dirString?

Guess the app directory based on the current directory

Returns:

  • (String, nil)

    the base of the app, or nil if the current directory is not within an app



348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
# File 'lib/roby/app.rb', line 348

def self.guess_app_dir
    if (test_dir = ENV["ROBY_APP_DIR"])
        unless Application.is_app_dir?(test_dir)
            raise InvalidRobyAppDirEnv,
                  "the ROBY_APP_DIR envvar is set to #{test_dir}, but this "\
                  "is not a valid Roby application path"
        end

        return test_dir
    end

    path = Pathname.new(Dir.pwd).find_matching_parent do |candidate|
        Application.is_app_dir?(candidate.to_s)
    end
    path&.to_s
end

.host_options(parser, options, interface_versions: false) ⇒ Object

Sets up provided option parser to add the --host and --vagrant option

When added, a :host entry will be added to the provided options hash



765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
# File 'lib/roby/app.rb', line 765

def self.host_options(parser, options, interface_versions: false)
    if interface_versions
        options[:interface_version] ||= 1
    else
        options[:host] ||= Roby.app.shell_interface_host || "localhost"
        options[:port] ||= Roby.app.shell_interface_port || Interface::DEFAULT_PORT
    end

    if interface_versions
        parser.on("--interface-version=VERSION", Integer,
                  "the remote interface version to use") do |version|
            options[:interface_version] = version
        end
    end

    parser.on(
        "--host URL", String, "sets the host to connect to as hostname[:PORT]"
    ) do |url|
        if url =~ /(.*):(\d+)$/
            options[:host] = $1
            options[:port] = Integer($2)
        else
            options[:host] = url
        end
    end
    parser.on(
        "--vagrant NAME[:PORT]", String, "connect to a vagrant VM"
    ) do |vagrant_name|
        require "roby/app/vagrant"
        if vagrant_name =~ /(.*):(\d+)$/
            vagrant_name, port = $1, Integer($2)
        end
        options[:host] = Roby::App::Vagrant.resolve_ip(vagrant_name)
        options[:port] = port
    end
end

.host_options_set_defaults(options) ⇒ Object

Fill defaults in the option hash setup by host_options

This must be called if interface_versions is set



832
833
834
835
836
837
838
839
840
841
842
843
844
# File 'lib/roby/app.rb', line 832

def self.host_options_set_defaults(options)
    return unless options[:interface_version]

    if options[:interface_version] == 1
        options[:host] ||= Roby.app.shell_interface_host || "localhost"
        options[:port] ||= Roby.app.shell_interface_port ||
                           Interface::DEFAULT_PORT
    else
        options[:host] ||= Roby.app.shell_interface_v2_host || "localhost"
        options[:port] ||= Roby.app.shell_interface_v2_port ||
                           Interface::DEFAULT_PORT
    end
end

.is_app_dir?(test_dir) ⇒ Boolean

Tests if the given directory looks like the root of a Roby app

Parameters:

  • test_dir (String)

    the path to test

Returns:

  • (Boolean)


335
336
337
338
339
340
# File 'lib/roby/app.rb', line 335

def self.is_app_dir?(test_dir)
    File.file?(File.join(test_dir, "config", "app.yml")) ||
        File.directory?(File.join(test_dir, "models")) ||
        File.directory?(File.join(test_dir, "scripts", "controllers")) ||
        File.directory?(File.join(test_dir, "config", "robots"))
end

.lockfile_present?(path) ⇒ Boolean

Tests whether the given folder has a lockfile created in it

Returns:

  • (Boolean)


1217
1218
1219
# File 'lib/roby/app.rb', line 1217

def self.lockfile_present?(path)
    File.exist?(File.join(path, LOCK_FILE_EXT))
end

.log_dir_locked?(path, strict: false) ⇒ Boolean

Checks if a path is currently locked by a Roby application

The main mechanism is to check if there is a file lock on a file called LOCK_FILE_EXT.

However, to handle the moment between log dir creation and the creation of this file, the method will return true if the file does not exist unless strict is true

Parameters:

  • path (String)

    the folder path

  • strict (Boolean) (defaults to: false)

    if false (the default), then the method returns that a folder is locked when there is no lock file in it. Otherwise, return true only if the lockfile exists and is locked

Returns:

  • (Boolean)


1234
1235
1236
1237
1238
1239
1240
1241
# File 'lib/roby/app.rb', line 1234

def self.log_dir_locked?(path, strict: false)
    lock_file_path = File.join(path, LOCK_FILE_EXT)
    return !strict unless File.exist?(lock_file_path)

    File.open(lock_file_path, "r") do |file|
        !file.flock(File::LOCK_SH | File::LOCK_NB)
    end
end

.overridable_configuration(config_set, config_key, options = {}) ⇒ Object

Defines accessors for a configuration parameter stored in #options

This method allows to define a getter and a setter for a parameter stored in #options that should be user-overridable. It builds upon #attr_config.

For instance:

overridable_configuration 'log', 'filter_backtraces'

will create a #filter_backtraces getter and a #filter_backtraces= setter which allow to respectively access the log/filter_backtraces configuration value, and override it from its value in config/app.yml

The :predicate option allows to make the setter look like a predicate:

overridable_configuration 'log', 'filter_backtraces', predicate: true

will define #filter_backtraces? instead of #filter_backtraces



226
227
228
229
230
231
232
233
234
235
# File 'lib/roby/app.rb', line 226

def self.overridable_configuration(config_set, config_key, options = {})
    options = Kernel.validate_options options, predicate: false, attr_name: config_key
    attr_config(config_set)
    define_method("#{options[:attr_name]}#{'?' if options[:predicate]}") do
        send(config_set)[config_key]
    end
    define_method("#{options[:attr_name]}=") do |new_value|
        send("#{config_set}_overrides")[config_key] = new_value
    end
end

.read_current_dir(current_path) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Read and validate the 'current' dir by means of the 'current' symlink that Roby maintains in its log base directory

Parameters:

  • current_path (String)

    the path to the 'current' symlink



1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
# File 'lib/roby/app.rb', line 1911

def self.read_current_dir(current_path)
    unless File.symlink?(current_path)
        raise ArgumentError,
              "#{current_path} does not exist or is not a symbolic link"
    end

    resolved_path = File.readlink(current_path)
    if !File.exist?(resolved_path)
        raise ArgumentError,
              "#{current_path} points to #{resolved_path}, which does not exist"
    elsif !File.directory?(resolved_path)
        raise ArgumentError,
              "#{current_path} points to #{resolved_path}, "\
              "which is not a directory"
    end
    resolved_path
end

.register_plugin(name, mod, &init) ⇒ Object



3073
3074
3075
3076
3077
# File 'lib/roby/app.rb', line 3073

def self.register_plugin(name, mod, &init)
    caller_m = /^([^:]+):\d/.match(caller(1)[0])
    path = File.expand_path(File.dirname(caller_m[1]))
    Roby.app.register_plugin(name, mod, path: path, &init)
end

.resolve_matcher_argument(arg) ⇒ String, Regexp

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Resolve a command-line argument into a string matcher (regexp or plain string)

Parameters:

  • arg (String)

    the argument string. It is interpreted as a regexp if enclosed in //, as a string otherwise

Returns:

  • (String, Regexp)


738
739
740
741
742
743
744
# File 'lib/roby/app.rb', line 738

def self.resolve_matcher_argument(arg)
    if (m = %r{^/(.*)/$}.match(arg))
        Regexp.new(m[1])
    else
        arg
    end
end

.resolve_timepoint_group_argument(spec) ⇒ Object



667
668
669
670
671
672
673
674
# File 'lib/roby/app.rb', line 667

def self.resolve_timepoint_group_argument(spec)
    matcher, *arguments_s = spec.split(",")
    arguments = arguments_s.to_h do |arg_s|
        k, v = arg_s.split("=")
        [k.to_sym, JSON.parse(v)]
    end
    [matcher, arguments]
end

.unique_dirname(base_dir, path_spec, date_tag = nil) ⇒ Object

Returns a unique directory name as a subdirectory of base_dir, based on path_spec. The generated name is of the form <base_dir>/a/b/c/YYYYMMDD-HHMM-basename if path_spec = "a/b/c/basename". A . suffix is appended if the path already exists.



1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
# File 'lib/roby/app.rb', line 1939

def self.unique_dirname(base_dir, path_spec, date_tag = nil)
    if path_spec =~ %r{/$}
        basename = ""
        dirname = path_spec
    else
        basename = File.basename(path_spec)
        dirname  = File.dirname(path_spec)
    end

    date_tag ||= Time.now.strftime("%Y%m%d-%H%M")
    basename =
        if !basename.empty?
            "#{date_tag}-#{basename}"
        else
            date_tag
        end

    # Check if +basename+ already exists, and if it is the case add a
    # .x suffix to it
    full_path = File.expand_path(File.join(dirname, basename), base_dir)
    final_path = full_path
    i = 0
    while File.exist?(final_path)
        i += 1
        final_path = full_path + ".#{i}"
    end

    final_path
end

Instance Method Details

#abort_on_application_exception=(flag) ⇒ Object

Controls whether the Roby app should quit if an application (i.e. non-plan) exception is received

The default is true



524
# File 'lib/roby/app.rb', line 524

attr_predicate :abort_on_application_exception, true

#abort_on_application_exception?Object

Controls whether the Roby app should quit if an application (i.e. non-plan) exception is received

The default is true



524
# File 'lib/roby/app.rb', line 524

attr_predicate :abort_on_application_exception, true

#abort_on_exception=(flag) ⇒ Object

Controls whether the application should quit if an unhandled plan exception is received

The default is false



515
# File 'lib/roby/app.rb', line 515

attr_predicate :abort_on_exception, true

#abort_on_exception?Object

Controls whether the application should quit if an unhandled plan exception is received

The default is false



515
# File 'lib/roby/app.rb', line 515

attr_predicate :abort_on_exception, true

#action_from_model(model) ⇒ Actions::Models::Action

Find an action on the planning interface that can generate the given task model

Returns:

Raises:



3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
# File 'lib/roby/app.rb', line 3260

def action_from_model(model)
    candidates = []
    planners.each do |planner_model|
        planner_model.find_all_actions_by_type(model).each do |action|
            candidates << [planner_model, action]
        end
    end
    candidates = candidates.uniq

    if candidates.empty?
        raise ActionResolutionError, "cannot find an action to produce #{model}"
    elsif candidates.size > 1
        candidates_s = candidates
                       .map { |pl, m| "#{pl}.#{m.name}" }
                       .sort.join(", ")

        raise ActionResolutionError,
              "more than one actions available produce #{model}: #{candidates_s}"
    else
        candidates.first
    end
end

#action_from_name(name) ⇒ Actions::Models::Action

Finds the action matching the given name

Unlike #find_action_from_name, it raises if no matching action has been found

Returns:

Raises:

  • (ActionResolutionError)

    if either none or more than one action interface provide an action with this name



3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
# File 'lib/roby/app.rb', line 3313

def action_from_name(name)
    action = find_action_from_name(name)
    unless action
        available_actions = planners.map do |planner_model|
            planner_model.each_action.map(&:name)
        end.flatten
        if available_actions.empty?
            raise ActionResolutionError,
                  "cannot find an action named #{name}, "\
                  "there are no actions defined"
        else
            raise ActionResolutionError,
                  "cannot find an action named #{name}, "\
                  "available actions are: #{available_actions.sort.join(', ')}"
        end
    end
    action
end

#actions(user: false, &block) ⇒ Object

Declares that the following block should be used to setup the main action interface



1471
1472
1473
# File 'lib/roby/app.rb', line 1471

def actions(user: false, &block)
    add_lifecyle_hook(action_handlers, block, user: user)
end

#add_app_metadata(metadata, append: true) ⇒ Object

Add some metadata to #app_metadata, and save it to the log dir's info.yml if it is already created



1800
1801
1802
1803
1804
1805
# File 'lib/roby/app.rb', line 1800

def (, append: true)
    .merge!()
    if created_log_dir?
        (append: append)
    end
end

#add_lifecyle_hook(hook_set, block, **options) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Registers a lifecycle hook in the provided list of hooks



3442
3443
3444
3445
# File 'lib/roby/app.rb', line 3442

def add_lifecyle_hook(hook_set, block, **options)
    hook_set << (hook = LifecycleHook.new(block, **options))
    Roby.disposable { hook_set.delete(hook) }
end

#add_plugin(name, mod) ⇒ Object



1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
# File 'lib/roby/app.rb', line 1648

def add_plugin(name, mod)
    plugins << [name, mod]
    extend mod
    # If +load+ has already been called, call it on the module
    if mod.respond_to?(:load) && options
        mod.load(self, options)
    end

    # Refresh the relation sets in #plan to include relations
    # possibly added by the plugin
    plan.refresh_relations

    mod
end

#app_dirString?

Returns the application base directory

Returns:

  • (String, nil)


303
304
305
306
307
308
309
# File 'lib/roby/app.rb', line 303

def app_dir
    if defined?(APP_DIR)
        APP_DIR
    elsif @app_dir
        @app_dir
    end
end

#app_dir=(dir) ⇒ Object

Allows to override the application base directory. See #app_dir



238
239
240
241
# File 'lib/roby/app.rb', line 238

def app_dir=(dir)
    @app_path = nil
    @app_dir = dir
end

#app_file?(path) ⇒ Boolean

Returns true if the given path points to a file in the Roby app

Parameters:

  • path (String)

Returns:

  • (Boolean)


3108
3109
3110
# File 'lib/roby/app.rb', line 3108

def app_file?(path)
    !!find_base_path_for(path)
end

#app_metadataObject

Metadata used to describe the app

It is saved in the app's log directory under info.yml

See Also:



1812
1813
1814
1815
1816
# File 'lib/roby/app.rb', line 1812

def 
    Hash["time" => time_tag, "cmdline" => "#{$0} #{ARGV.join(' ')}",
         "robot_name" => robot_name, "robot_type" => robot_type,
         "app_name" => app_name, "app_dir" => app_dir].merge()
end

#app_moduleObject

Returns this app's toplevel module



288
289
290
# File 'lib/roby/app.rb', line 288

def app_module
    constant("::#{module_name}")
end

#app_pathObject



311
312
313
# File 'lib/roby/app.rb', line 311

def app_path
    @app_path ||= Pathname.new(app_dir) if app_dir
end

#apply_argv_set(conf: Conf) ⇒ Object

Apply the --set command line parameters stored in #argv_set to a conf object



747
748
749
750
751
# File 'lib/roby/app.rb', line 747

def apply_argv_set(conf: Conf)
    argv_set.each do |value|
        self.class.apply_conf_from_argv(value, conf: conf)
    end
end

#apply_config(config) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Sets relevant configuration values from a configuration hash



2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
# File 'lib/roby/app.rb', line 2288

def apply_config(config)
    if (host_port = config["interface"])
        apply_config_interface(host_port)
    elsif (host_port = config.fetch("droby", {})["host"])
        Roby.warn_deprecated(
            "the droby.host configuration parameter in config/app.yml "\
            "is deprecated, use 'interface' at the toplevel instead"
        )
        apply_config_interface(host_port)
    end
end

#apply_config_interface(host_port) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parses and applies the 'interface' value from a configuration hash

It is a helper for #apply_config



2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
# File 'lib/roby/app.rb', line 2305

def apply_config_interface(host_port)
    if host_port !~ /:\d+$/
        host_port += ":#{Interface::DEFAULT_PORT}"
    end

    match = /(.*):(\d+)$/.match(host_port)
    host = match[1]
    @shell_interface_host =
        unless host.empty?
            host
        end
    @shell_interface_port = Integer(match[2])
end

#auto_load_all=(flag) ⇒ Boolean

Controls whether Roby's auto-load feature should load all models in #search_path or only the ones in #app_dir. It influences the return value of #auto_load_search_path

Returns:

  • (Boolean)


3021
# File 'lib/roby/app.rb', line 3021

attr_predicate :auto_load_all?, true

#auto_load_all?Boolean

Controls whether Roby's auto-load feature should load all models in #search_path or only the ones in #app_dir. It influences the return value of #auto_load_search_path

Returns:

  • (Boolean)


3021
# File 'lib/roby/app.rb', line 3021

attr_predicate :auto_load_all?, true

#auto_load_models?Boolean

Controls whether Roby should load the available the model files automatically in #require_models

Returns:

  • (Boolean)


3030
# File 'lib/roby/app.rb', line 3030

attr_writer :auto_load_models

#auto_load_search_pathArray<String>

Returns the search path for the auto-load feature. It depends on the value of #auto_load_all?.

Returns:

  • (Array<String>)

    the search path for the auto-load feature. It depends on the value of #auto_load_all?



3042
3043
3044
3045
3046
3047
3048
# File 'lib/roby/app.rb', line 3042

def auto_load_search_path
    if auto_load_all? then search_path
    elsif app_dir then [app_dir]
    else
        []
    end
end

#auto_require_modelsObject



2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
# File 'lib/roby/app.rb', line 2140

def auto_require_models
    # Require all common task models and the task models specific to
    # this robot
    if auto_load_models?
        load_all_model_files_in("tasks")

        if backward_compatible_naming?
            search_path = self.auto_load_search_path
            all_files = find_files_in_dirs("tasks", "ROBOT", path: search_path, all: true, order: :specific_last, pattern: /\.rb$/)
            all_files.each do |p|
                require(p)
            end
        end
        call_plugins(:auto_require_models, self)
    end
end

#auto_require_plannersObject



2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
# File 'lib/roby/app.rb', line 2241

def auto_require_planners
    self.auto_load_search_path

    prefixes = ["actions"]
    if backward_compatible_naming?
        prefixes << "planners"
    end
    prefixes.each do |prefix|
        load_all_model_files_in(prefix)
    end

    if backward_compatible_naming?
        main_files = find_files("planners", "ROBOT", "main.rb", all: true, order: :specific_first)
        main_files.each do |path|
            require path
        end
        planner_files = find_files_in_dirs("planners", "ROBOT", all: true, order: :specific_first, pattern: /\.rb$/)
        planner_files.each do |path|
            require path
        end
    end
    call_plugins(:require_planners, self)
end

#autodiscover_tests_in?(path, extra_robot_names: []) ⇒ Boolean

Hook for the plugins to filter out some paths that should not be auto-loaded by #each_test_file_in_app. It does not affect #each_test_file_for_loaded_models.

Returns:

  • (Boolean)


3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
# File 'lib/roby/app.rb', line 3506

def autodiscover_tests_in?(path, extra_robot_names: [])
    suffix = File.basename(path)
    robot_names = [robot_name, robot_type] + extra_robot_names
    if path == File.join(app_dir, "test", "robots")
        false
    elsif robots.has_robot?(suffix) && !robot_names.include?(suffix)
        false
    elsif defined? super
        super
    else
        true
    end
end

#automatic_testing=(flag) ⇒ Object

True if user interaction is disabled during tests



530
# File 'lib/roby/app.rb', line 530

attr_predicate :automatic_testing?, true

#automatic_testing?Object

True if user interaction is disabled during tests



530
# File 'lib/roby/app.rb', line 530

attr_predicate :automatic_testing?, true

#backward_compatible_naming=(flag) ⇒ Object

If set to true, the app will enable backward-compatible behaviour related to naming schemes, file placements and so on

The default is true



260
# File 'lib/roby/app.rb', line 260

attr_predicate :backward_compatible_naming?, true

#backward_compatible_naming?Object

If set to true, the app will enable backward-compatible behaviour related to naming schemes, file placements and so on

The default is true



260
# File 'lib/roby/app.rb', line 260

attr_predicate :backward_compatible_naming?, true

#base_cleanupObject

The inverse of #base_setup



1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
# File 'lib/roby/app.rb', line 1244

def base_cleanup
    unless base_setup_done?
        Roby.warn "base_cleanup should not be called before base_setup."
        return
    end

    unless public_logs?
        created_log_dirs.delete_if do |dir|
            FileUtils.rm_rf dir
            true
        end
        created_log_base_dirs.sort_by(&:length).reverse_each do |dir|
            # .rmdir will ignore nonempty / nonexistent directories on
            # 2.3 but on 2.5 you have to rescue.
            begin
                FileUtils.rmdir(dir)
            rescue Errno::ENOTEMPTY # rubocop:disable Lint/SuppressedException
            end
            created_log_base_dirs.delete(dir)
        end
        @log_dir = nil
    end

    log_files.each_value(&:close)
    log_files.clear
    @base_setup_done = false
end

#base_setupObject



1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
# File 'lib/roby/app.rb', line 1175

def base_setup
    if base_setup_done?
        Roby.warn "base_setup should only be done once."
        return
    end

    STDOUT.sync = true

    load_base_config
    find_and_create_log_dir unless @log_dir
    if Application.lockfile_present?(@log_dir)
        raise "configured log directory #{@log_dir} already has a lockfile, " \
              "this should not happen"
    end
    lock_log_dir
    setup_loggers(redirections: true)

    # Set up the loaded plugins
    call_plugins(:base_setup, self)

    @base_setup_done = true
end

#base_setup_done?Boolean

Returns:

  • (Boolean)


1171
1172
1173
# File 'lib/roby/app.rb', line 1171

def base_setup_done?
    @base_setup_done
end

#call_plugins(method, *args, deprecated: nil) ⇒ Object

Call method on each loaded extension module which define it, with arguments args



1580
1581
1582
1583
1584
1585
1586
1587
1588
# File 'lib/roby/app.rb', line 1580

def call_plugins(method, *args, deprecated: nil)
    each_responding_plugin(method) do |config_extension|
        if deprecated
            Roby.warn "#{config_extension} uses the deprecated .#{method} "\
                      "hook during setup and teardown, #{deprecated}"
        end
        config_extension.send(method, *args)
    end
end

#cleanupObject

The inverse of #setup. It gets called at the end of #run



1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
# File 'lib/roby/app.rb', line 1316

def cleanup
    # Run the cleanup handlers first, we want the plugins to still be
    # active
    cleanup_handlers.each(&:call)

    cleanup_user_lifecycle_hooks(init_handlers)
    cleanup_user_lifecycle_hooks(setup_handlers)
    cleanup_user_lifecycle_hooks(require_handlers)
    cleanup_user_lifecycle_hooks(controllers)
    cleanup_user_lifecycle_hooks(action_handlers)
    cleanup_user_lifecycle_hooks(cleanup_handlers)

    call_plugins(:cleanup, self)
    # Deprecated version of #cleanup
    call_plugins(:reset, self, deprecated: "define 'cleanup' instead")

    planners.clear
    plan.execution_engine.gather_propagation do
        plan.clear
    end
    clear_models
    clear_config

    stop_shell_interface
    base_cleanup
end

#cleanup_user_lifecycle_hooks(hook_set) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Removes all lifecycle hooks that are marked as user hooks



2598
2599
2600
# File 'lib/roby/app.rb', line 2598

def cleanup_user_lifecycle_hooks(hook_set)
    hook_set.delete_if(&:user?)
end

#clear_configObject



3134
3135
3136
3137
3138
3139
3140
3141
# File 'lib/roby/app.rb', line 3134

def clear_config
    Conf.clear
    call_plugins(:clear_config, self)
    # Deprecated name for clear_config
    call_plugins(:reload_config, self)
    unload_features("config", ".*\.rb$")
    unload_features("config", "robot", ".*\.rb$")
end

#clear_exceptionsObject



2035
2036
2037
# File 'lib/roby/app.rb', line 2035

def clear_exceptions
    registered_exceptions.clear
end

#clear_model?(m) ⇒ Boolean

Whether this model should be cleared in #clear_models

The default implementation returns true for the models that are not registered as constants (more precisely, for which MetaRuby's #permanent_model? returns false) and for the models defined in this app.

Returns:

  • (Boolean)


3202
3203
3204
3205
# File 'lib/roby/app.rb', line 3202

def clear_model?(m)
    !m.permanent_model? ||
        (!testing? && model_defined_in_app?(m))
end

#clear_modelsObject

Clear all models for which #clear_model? returns true



3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
# File 'lib/roby/app.rb', line 3208

def clear_models
    root_models.each do |root_model|
        submodels = root_model.each_submodel.to_a.dup
        submodels.each do |m|
            if clear_model?(m)
                m.permanent_model = false
                m.clear_model
            end
        end
    end
    DRoby::V5::DRobyConstant.clear_cache
    clear_models_handlers.each(&:call)
    call_plugins(:clear_models, self)

    unload_features("models", ".*\.rb$")
    additional_model_files.each do |path|
        unload_features(path)
    end
    cleanup_user_lifecycle_hooks(clear_models_handlers)
end

#compute_absolute_paths(relative_paths, root_paths, prioritize_root_paths: false) ⇒ Object



2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
# File 'lib/roby/app.rb', line 2760

def compute_absolute_paths(relative_paths, root_paths, prioritize_root_paths: false)
    if prioritize_root_paths
        root_paths.flat_map do |root|
            relative_paths.map do |rel_path|
                File.expand_path(File.join(*rel_path), root)
            end
        end
    else
        relative_paths.flat_map do |rel_path|
            root_paths.map do |root|
                File.expand_path(File.join(*rel_path), root)
            end
        end
    end
end

#controller(reset: false, user: false, &block) ⇒ Object

Declares that the following block should be used as the robot controller



1464
1465
1466
1467
# File 'lib/roby/app.rb', line 1464

def controller(reset: false, user: false, &block)
    controllers.clear if reset
    add_lifecyle_hook(controllers, block, user: user)
end

#created_log_dir?Boolean

Test whether this app already created its log directory

Returns:

  • (Boolean)


1819
1820
1821
# File 'lib/roby/app.rb', line 1819

def created_log_dir?
    @log_dir && File.directory?(@log_dir)
end

#define_actions_moduleObject



2217
2218
2219
2220
2221
# File 'lib/roby/app.rb', line 2217

def define_actions_module
    unless app_module.const_defined_here?(:Actions)
        app_module.const_set(:Actions, Module.new)
    end
end

#define_main_planner_if_neededObject



2223
2224
2225
2226
2227
2228
2229
2230
# File 'lib/roby/app.rb', line 2223

def define_main_planner_if_needed
    unless app_module::Actions.const_defined_here?(:Main)
        app_module::Actions.const_set(:Main, Class.new(Roby::Actions::Interface))
    end
    if backward_compatible_naming? && !Object.const_defined_here?(:Main)
        Object.const_set(:Main, app_module::Actions::Main)
    end
end

#defined_plugin?(name) ⇒ Boolean

True if name is a plugin known to us

Returns:

  • (Boolean)


1555
1556
1557
# File 'lib/roby/app.rb', line 1555

def defined_plugin?(name)
    available_plugins.any? { |plugname, *_| plugname == name }
end

#definition_file_for(model) ⇒ Object

Returns the downmost app file that was involved in the given model's definition



2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
# File 'lib/roby/app.rb', line 2177

def definition_file_for(model)
    return if !model.respond_to?(:definition_location) || !model.definition_location

    model.definition_location.each do |location|
        file = location.absolute_path
        next unless (base_path = find_base_path_for(file))

        relative = Pathname.new(file).relative_path_from(base_path)
        split = relative.each_filename.to_a
        next if split[0] != "models"

        return file
    end
    nil
end

#development_mode?Object

Whether the app should run in development mode

Some expensive tests are disabled when not in development mode. This is the default



157
# File 'lib/roby/app.rb', line 157

attr_predicate :development_mode?, true

#discover_test_files(all: true, only_self: false, base_dir: File.join(app_dir, "test"), extra_robot_names: []) ⇒ Array<String>

Discover which tests should be run, and require them

Parameters:

  • all (Boolean) (defaults to: true)

    if set, list all files in #app_dir/test. Otherwise, list only the tests that are related to the loaded models.

  • only_self (Boolean) (defaults to: false)

    if set, list only test files from within #app_dir. Otherwise, consider test files from all over #search_path

Returns:

  • (Array<String>)


3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
# File 'lib/roby/app.rb', line 3477

def discover_test_files(
    all: true, only_self: false, base_dir: File.join(app_dir, "test"),
    extra_robot_names: []
)
    if all
        test_files = each_test_file_in(
            base_dir, extra_robot_names: extra_robot_names
        )
        test_files = test_files.with_object({}) do |t, h|
            h[t] = []
        end

        unless only_self
            test_files.merge!(Hash[each_test_file_for_loaded_models.to_a])
        end
    else
        test_files = Hash[each_test_file_for_loaded_models.to_a]
        if only_self
            test_files = test_files.find_all { |f, _| self_file?(f) }
        end
    end
    test_files
end

#each_model(root_model = nil) {|| ... } ⇒ Object

Enumerate all models registered in this app

It basically enumerate all submodels of all models in #root_models

Parameters:

  • root_model (nil, #each_submodel) (defaults to: nil)

    if non-nil, limit the enumeration to the submodels of this root

Yield Parameters:

  • (#each_submodel)


3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
# File 'lib/roby/app.rb', line 3184

def each_model(root_model = nil, &block)
    return enum_for(__method__, root_model) unless block_given?

    unless root_model
        root_models.each { |m| each_model(m, &block) }
        return
    end

    yield(root_model)
    root_model.each_submodel(&block)
end

#each_notification_listener {|the| ... } ⇒ Object

Enumerates the listeners currently registered through #on_notification

Yield Parameters:

  • the (#call)

    job listener object



3407
3408
3409
# File 'lib/roby/app.rb', line 3407

def each_notification_listener(&block)
    notification_listeners.each(&block)
end

#each_plugin(on_available = false) ⇒ Object

Enumerates all available plugins, yielding only the plugin module (i.e. the plugin object itself)



1561
1562
1563
1564
1565
1566
1567
1568
1569
# File 'lib/roby/app.rb', line 1561

def each_plugin(on_available = false)
    plugins = self.plugins
    if on_available
        plugins = available_plugins.map { |name, _, mod, _| [name, mod] }
    end
    plugins.each do |(_, mod)|
        yield(mod)
    end
end

#each_responding_plugin(method, _on_available = false) ⇒ Object

Yields each plugin object that respond to method



1572
1573
1574
1575
1576
# File 'lib/roby/app.rb', line 1572

def each_responding_plugin(method, _on_available = false)
    each_plugin do |mod|
        yield(mod) if mod.respond_to?(method)
    end
end

#each_robot_test_file_in(dir) ⇒ Object

Enumerate all the test files specific for this robot configuration



3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
# File 'lib/roby/app.rb', line 3545

def each_robot_test_file_in(dir)
    return enum_for(__method__, dir) unless block_given?
    return unless File.directory?(dir)

    robot_test_dir = File.join(dir, "robots")
    [robot_name, robot_type].each do |name|
        robot_test_file = File.join(robot_test_dir, "test_#{name}.rb")
        if File.file?(robot_test_file)
            yield(robot_test_file)
            break
        end
    end
end

#each_test_file_for_loaded_models {|path, models| ... } ⇒ Object

Enumerate the test files that should be run to test the current app configuration

Yield Parameters:

  • path (String)

    the file's path

  • models (Array<Class<Roby::Task>>)

    the models that are meant to be tested by 'path'. It can be empty for tests that involve lib/



3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
# File 'lib/roby/app.rb', line 3573

def each_test_file_for_loaded_models(&block)
    models_per_file = Hash.new { |h, k| h[k] = Set.new }
    each_model do |m|
        next if m.respond_to?(:has_ancestor?) && m.has_ancestor?(Roby::Event)
        next if m.respond_to?(:private_specialization?) && m.private_specialization?
        next unless m.name

        test_files_for(m).each do |test_path|
            models_per_file[test_path] << m
        end
    end

    models_per_file.each(&block)
end

#each_test_file_in(dir, extra_robot_names: [], &block) ⇒ Object

Enumerate all the test files in a specific dir for this robot configuration



3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
# File 'lib/roby/app.rb', line 3522

def each_test_file_in(dir, extra_robot_names: [], &block)
    unless block_given?
        return enum_for(__method__, dir, extra_robot_names: extra_robot_names)
    end

    each_robot_test_file_in(dir, &block)

    Find.find(dir) do |path|
        # Skip the robot-specific bits that don't apply on the
        # selected robot
        if File.directory?(path) &&
           !autodiscover_tests_in?(path, extra_robot_names: extra_robot_names)
            Find.prune
        end

        if File.file?(path) && /^test_.*\.rb$/.match?(File.basename(path))
            yield(path)
        end
    end
end

#each_test_file_in_app(&block) ⇒ Object

Enumerate all the test files in this app and for this robot configuration



3561
3562
3563
3564
# File 'lib/roby/app.rb', line 3561

def each_test_file_in_app(&block)
    dir = File.join(app_dir, "test")
    each_test_file_in(dir, &block)
end

#each_ui_event_listener {|the| ... } ⇒ Object

Enumerates the listeners currently registered through #on_ui_event

Yield Parameters:

  • the (#call)

    job listener object



3363
3364
3365
# File 'lib/roby/app.rb', line 3363

def each_ui_event_listener(&block)
    ui_event_listeners.each(&block)
end

#enable_remote_interface_version(version) ⇒ Module

Called by tooling to enable the given remote interface version

Parameters:

  • version (Integer)

    the desired interface version (1 or 2 for now)

Returns:

  • (Module)

    the namespace of the interface implementation



806
807
808
809
810
811
812
813
814
815
816
817
818
# File 'lib/roby/app.rb', line 806

def enable_remote_interface_version(version)
    if version == 1
        require "roby/interface/v1"
        Roby::Interface::V1
    elsif version == 2
        require "roby/interface/v2"
        call_plugins(:setup_interface_v2_protocol)
        require_v2_protocol_extensions
        Roby::Interface::V2
    else
        raise ArgumentError, "remote interface version #{version} does not exist"
    end
end

#execution_engineExecutionEngine?

The engine associated with #plan

Returns:



111
112
113
# File 'lib/roby/app.rb', line 111

def execution_engine
    plan&.execution_engine
end

#find_action_from_name(name) ⇒ (ActionInterface,Actions::Models::Action)?

Find an action with the given name on the action interfaces registered on #planners

Returns:

Raises:



3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
# File 'lib/roby/app.rb', line 3289

def find_action_from_name(name)
    candidates = []
    planners.each do |planner_model|
        if (m = planner_model.find_action_by_name(name))
            candidates << [planner_model, m]
        end
    end
    candidates = candidates.uniq
    return candidates.first if candidates.size <= 1

    candidates_s = candidates.map { |pl, _| pl.to_s }.sort.join(", ")
    raise ActionResolutionError,
          "more than one action interface provide the #{name} "\
          "action: #{candidates_s}"
end

#find_and_create_log_dir(time_tag = self.time_tag) ⇒ String

Create a log directory for the given time tag, and make it this app's log directory

The time tag given to this method also becomes the app's time tag

Parameters:

  • time_tag (String) (defaults to: self.time_tag)

Returns:

  • (String)

    the path to the log directory



1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
# File 'lib/roby/app.rb', line 1720

def find_and_create_log_dir(time_tag = self.time_tag)
    base_dir  = log_base_dir
    @time_tag = time_tag

    loop do
        log_dir  = Roby::Application.unique_dirname(base_dir, "", time_tag)
        # the log dir itself MUST have been created by us. Make sure it is in
        # new_dirs to get it tested in the mkdir loop below
        new_dirs = [log_dir]

        dir = File.dirname(log_dir)
        until File.directory?(dir)
            new_dirs << dir
            dir = File.dirname(dir)
        end

        # Create all paths necessary, but check for possible concurrency
        # issues with other Roby-based tools creating a log dir with the
        # same name
        failed = new_dirs.reverse.any? do |path_element|
            begin
                FileUtils.mkdir(path_element)
                false
            rescue Errno::EEXIST
                true
            end
        end

        unless failed
            new_dirs.delete(log_dir)
            created_log_dirs << log_dir
            created_log_base_dirs.concat(new_dirs)
            @log_dir = log_dir
            
            return log_dir
        end
    end
end

#find_base_path_for(path) ⇒ nil, String

Returns the path in search_path that contains the given file or path

Parameters:

  • path (String)

Returns:

  • (nil, String)


3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
# File 'lib/roby/app.rb', line 3083

def find_base_path_for(path)
    if @find_base_path_rx_paths != search_path
        @find_base_path_rx =
            search_path
            .map { |app_dir| [Pathname.new(app_dir), app_dir, %r{(^|/)#{app_dir}(/|$)}] }
            .sort_by { |_, app_dir, _| app_dir.size }
            .reverse
        @find_base_path_rx_paths = search_path.dup
    end

    longest_prefix_path, = @find_base_path_rx.find do |app_path, app_dir, rx|
        (path =~ rx) ||
            ((path[0] != "/") && File.file?(File.join(app_dir, path)))
    end
    longest_prefix_path
end

#find_data(*name) ⇒ Object



3050
3051
3052
# File 'lib/roby/app.rb', line 3050

def find_data(*name)
    Application.find_data(*name)
end

#find_dir(*args) ⇒ Object

Returns the first match from #find_dirs, or nil if nothing matches



2941
2942
2943
2944
2945
2946
2947
2948
# File 'lib/roby/app.rb', line 2941

def find_dir(*args)
    unless args.last.kind_of?(Hash)
        args.push({})
    end
    args.last.delete("all")
    args.last.merge!(all: true)
    find_dirs(*args).first
end

#find_files_in_dirs(*path, options) ⇒ Array<String>

Enumerates the subdirectories of paths in #search_path matching the given path. The subdirectories are resolved using File.join(*path) If one of the elements of the path is the string 'ROBOT', it gets replaced by the robot name and type.

Given a search dir of [app1, app2]

app1/models/tasks/goto.rb
app1/models/tasks/v3/goto.rb
app2/models/tasks/asguard/goto.rb

Examples:

find_dirs('tasks', 'ROBOT', all: true, order: :specific_first)
# returns [app1/models/tasks/v3,
#          app2/models/tasks/asguard,
#          app1/models/tasks/]
find_dirs('tasks', 'ROBOT', all: true, order: :specific_first,
                            prioritize_root_paths: true)
# returns [app1/models/tasks/v3,
#          app1/models/tasks/,
#          app2/models/tasks/asguard]
find_dirs('tasks', 'ROBOT', all: true, order: :specific_last,
                            prioritize_root_paths: true)
# returns [app2/models/tasks/asguard,
#          app1/models/tasks/,
#          app1/models/tasks/v3]
find_dirs('tasks', 'ROBOT', all: false, order: :specific_first)
# returns [app1/models/tasks/v3/goto.rb]

Parameters:

  • options (Hash)

    a customizable set of options

Returns:

  • (Array<String>)


2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
# File 'lib/roby/app.rb', line 2692

def find_dirs(*dir_path)
    return [] if search_path.empty?

    Application.debug { "find_dirs(#{dir_path.map(&:inspect).join(', ')})" }
    if dir_path.last.kind_of?(Hash)
        options = dir_path.pop
    end
    options =
        Kernel.validate_options(options || {}, :all, :order, :path,
                                prioritize_root_paths: false)

    if dir_path.empty?
        raise ArgumentError, "no path given"
    end

    search_path = options[:path] || self.search_path
    if !options.has_key?(:all)
        raise ArgumentError, "no :all argument given"
    elsif !options.has_key?(:order)
        raise ArgumentError, "no :order argument given"
    elsif !%i[specific_first specific_last].include?(options[:order])
        raise ArgumentError, "expected either :specific_first or :specific_last for the :order argument, but got #{options[:order]}"
    end

    relative_paths = []

    base_dir_path = dir_path.dup
    base_dir_path.delete_if { |p| p =~ /ROBOT/ }
    relative_paths = [base_dir_path]
    if dir_path.any? { |p| p =~ /ROBOT/ } && robot_name && robot_type
        robot_configuration_names.each do |replacement|
            robot_dir_path = dir_path.map do |s|
                s.gsub("ROBOT", replacement)
            end
            relative_paths << robot_dir_path
        end
    end

    root_paths = search_path.dup
    if options[:order] == :specific_first
        relative_paths = relative_paths.reverse
    else
        root_paths = root_paths.reverse
    end

    result = []
    Application.debug { "  relative paths: #{relative_paths.inspect}" }
    prioritize_root_paths = options[:prioritize_root_paths]
    absolute_paths =
        compute_absolute_paths(relative_paths, root_paths,
                               prioritize_root_paths: prioritize_root_paths)
    absolute_paths.each do |abs_path|
        Application.debug { "  absolute path: #{abs_path}" }
        if File.directory?(abs_path)
            Application.debug { "    selected" }
            result << abs_path
        end
    end

    if result.empty?
        result
    elsif !options[:all]
        [result.first]
    else
        result
    end
end

#find_file(*args) ⇒ Object

Returns the first match from #find_files, or nil if nothing matches



2931
2932
2933
2934
2935
2936
2937
2938
# File 'lib/roby/app.rb', line 2931

def find_file(*args)
    unless args.last.kind_of?(Hash)
        args.push({})
    end
    args.last.delete("all")
    args.last.merge!(all: true)
    find_files(*args).first
end

#find_files(*path, options) ⇒ Array<String>

Enumerates files based on their relative paths in #search_path. The paths are resolved using File.join(*path) If one of the elements of the path is the string 'ROBOT', it gets replaced by the robot name and type.

Given a search dir of [app1, app2], a robot name of v3 and a robot type of asguard,

app1/config/v3.rb
app2/config/asguard.rb

Examples:

find_files('config', 'ROBOT.rb', all: true, order: :specific_first)
# returns [app1/config/v3.rb,
#          app2/config/asguard.rb]
find_dirs('tasks', 'ROBOT', all: false, order: :specific_first)
# returns [app1/config/v3.rb]

Parameters:

  • options (Hash)

    a customizable set of options

Returns:

  • (Array<String>)


2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
# File 'lib/roby/app.rb', line 2876

def find_files(*file_path)
    return [] if search_path.empty?

    if file_path.last.kind_of?(Hash)
        options = file_path.pop
    end
    options =
        Kernel.validate_options(options || {}, :all, :order, :path,
                                prioritize_root_paths: false)

    if file_path.empty?
        raise ArgumentError, "no path given"
    end

    # Remove the filename from the complete path
    filename = file_path.pop
    filename = filename.split("/")
    file_path.concat(filename[0..-2])
    filename = filename[-1]

    if filename =~ /ROBOT/ && robot_name
        args = file_path + [options.merge(pattern: filename.gsub("ROBOT", robot_name))]
        robot_name_matches = find_files_in_dirs(*args)

        robot_type_matches = []
        if robot_name != robot_type
            args = file_path + [options.merge(pattern: filename.gsub("ROBOT", robot_type))]
            robot_type_matches = find_files_in_dirs(*args)
        end

        if options[:order] == :specific_first
            result = robot_name_matches + robot_type_matches
        else
            result = robot_type_matches + robot_name_matches
        end
    else
        args = file_path.dup
        args << options.merge(pattern: filename)
        result = find_files_in_dirs(*args)
    end

    orig_path = Pathname.new(File.join(*file_path))
    orig_path += filename
    if orig_path.absolute? && File.file?(orig_path.to_s)
        if options[:order] == :specific_first
            result.unshift orig_path.to_s
        else
            result.push orig_path.to_s
        end
    end

    result
end

#find_files_in_dirs(*path, options) ⇒ Array<String>

Enumerates the files that are present in subdirectories of paths in #search_path. The subdirectories are resolved using File.join(*path) If one of the elements of the path is the string 'ROBOT', it gets replaced by the robot name and type.

Given a search dir of [app1, app2]

app1/models/tasks/goto.rb
app1/models/tasks/v3/goto.rb
app2/models/tasks/asguard/goto.rb

Examples:

find_files_in_dirs('tasks', 'ROBOT', all: true, order: :specific_first)
# returns [app1/models/tasks/v3/goto.rb,
#          app2/models/tasks/asguard/goto.rb,
#          app1/models/tasks/goto.rb]
find_files_in_dirs('tasks', 'ROBOT', all: false, order: :specific_first)
# returns [app1/models/tasks/v3/goto.rb,

Parameters:

  • options (Hash)

    a customizable set of options

Returns:

  • (Array<String>)


2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
# File 'lib/roby/app.rb', line 2806

def find_files_in_dirs(*dir_path)
    return [] if search_path.empty?

    Application.debug { "find_files_in_dirs(#{dir_path.map(&:inspect).join(', ')})" }
    if dir_path.last.kind_of?(Hash)
        options = dir_path.pop
    end
    options = Kernel.validate_options(
        options || {},
        :all, :order, :path,
        prioritize_root_paths: false,
        pattern: Regexp.new("")
    )

    dir_search = dir_path.dup
    dir_search << {
        all: true, order: options[:order], path: options[:path],
        prioritize_root_paths: options[:prioritize_root_paths]
    }
    search_path = find_dirs(*dir_search)

    result = []
    search_path.each do |dirname|
        Application.debug { "  dir: #{dirname}" }
        Dir.new(dirname).each do |file_name|
            file_path = File.join(dirname, file_name)
            Application.debug { "    file: #{file_path}" }
            if File.file?(file_path) && options[:pattern] === file_name
                Application.debug "      added"
                result << file_path
            end
        end
        break unless options[:all]
    end
    result
end

#find_registered_app_path(app_name) ⇒ Object



473
474
475
476
477
478
479
# File 'lib/roby/app.rb', line 473

def find_registered_app_path(app_name)
    if app_name == self.app_name
        app_dir
    else
        @registered_apps[app_name]
    end
end

#framework_file?(path) ⇒ Boolean

Tests whether a path is within a framework library

Parameters:

  • path (String)

Returns:

  • (Boolean)


3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
# File 'lib/roby/app.rb', line 3115

def framework_file?(path)
    if path =~ /roby\/.*\.rb$/
        true
    else
        Roby.app.plugins.any? do |name, _|
            _, dir, = Roby.app.plugin_definition(name)
            path =~ %r{(^|/)#{dir}(/|$)}
        end
    end
end

#guess_app_dirString

Guess the app directory based on the current directory, and sets #app_dir. It will not do anything if the current directory is not in a Roby app. Moreover, it does nothing if #app_dir is already set

Returns:

  • (String)

    the selected app directory



375
376
377
378
379
# File 'lib/roby/app.rb', line 375

def guess_app_dir
    return if @app_dir

    @app_dir = self.class.guess_app_dir
end

#has_app?Boolean

Whether there is a supporting app directory

Returns:

  • (Boolean)


366
367
368
# File 'lib/roby/app.rb', line 366

def has_app?
    !!@app_dir
end

#has_registered_app?(app_name) ⇒ Boolean

Returns:

  • (Boolean)


469
470
471
# File 'lib/roby/app.rb', line 469

def has_registered_app?(app_name)
    @registered_apps.has_key?(app_name)
end

#ignore_all_load_errors=(flag) ⇒ Object

If set to true, files that generate errors while loading will be ignored. This is used for model browsing GUIs to be usable even if there are errors

It is false by default



251
# File 'lib/roby/app.rb', line 251

attr_predicate :ignore_all_load_errors?, true

#ignore_all_load_errors?Object

If set to true, files that generate errors while loading will be ignored. This is used for model browsing GUIs to be usable even if there are errors

It is false by default



251
# File 'lib/roby/app.rb', line 251

attr_predicate :ignore_all_load_errors?, true

#io_event_loggerEventLogging::IOEventLogger

Return an IOEventLogger that listens to the log events of #plan and #execution_engine

It gets created on the fly to avoid the overhead when not in use



874
875
876
877
878
879
880
881
882
883
# File 'lib/roby/app.rb', line 874

def io_event_logger
    unless @io_event_logger
        require "roby/event_logging/io_event_logger"
        @io_event_logger = EventLogging::IOEventLogger.new
        plan.event_logger.add(@io_event_logger)
        execution_engine.event_logger.add(@io_event_logger)
    end

    @io_event_logger
end

#isolate_load_errors(message, logger = Application, level = :warn) ⇒ Object



2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
# File 'lib/roby/app.rb', line 2039

def isolate_load_errors(message, logger = Application, level = :warn)
    yield
rescue Interrupt
    raise
rescue ::Exception => e # rubocop:disable Lint/RescueException
    register_exception(e, message)
    if ignore_all_load_errors?
        Robot.warn message
        Roby.log_exception_with_backtrace(e, logger, level)
    else
        raise
    end
end

#load_all_model_files_in(prefix_name, ignored_exceptions: []) ⇒ Object



2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
# File 'lib/roby/app.rb', line 2104

def load_all_model_files_in(prefix_name, ignored_exceptions: [])
    search_path = auto_load_search_path
    dirs = find_dirs(
        "models", prefix_name,
        path: search_path,
        all: true,
        order: :specific_last
    )

    dirs.each do |dir|
        all_files = Set.new
        Find.find(dir) do |path|
            # Skip the robot-specific bits that don't apply on the
            # selected robot
            if File.directory?(path)
                suffix = File.basename(File.dirname(path))
                if robots.has_robot?(suffix) && ![robot_name, robot_type].include?(suffix)
                    Find.prune
                end
            end

            if File.file?(path) && path =~ /\.rb$/
                all_files << path
            end
        end

        all_files.each do |path|
            begin
                require(path)
            rescue *ignored_exceptions => e
                ::Robot.warn "ignored file #{path}: #{e.message}"
            end
        end
    end
end

#load_base_configObject

Loads the base configuration

This method loads the two most basic configuration files:

  • config/app.yml
  • config/init.rb

It also calls the plugin's 'load' method



1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
# File 'lib/roby/app.rb', line 1119

def load_base_config
    load_config_yaml
    setup_loggers(ignore_missing: true, redirections: false)

    setup_robot_names_from_config_dir

    # Get the application-wide configuration
    if plugins_enabled?
        register_plugins
    end

    update_load_path

    if (initfile = find_file("config", "init.rb", order: :specific_first))
        Application.info "loading init file #{initfile}"
        Kernel.require initfile
    end

    update_load_path

    # Deprecated hook
    call_plugins(:load, self, deprecated: "define 'load_base_config' instead")
    call_plugins(:load_base_config, self)

    update_load_path

    if defined? Roby::Conf
        Roby::Conf.datadirs = find_dirs("data", "ROBOT", all: true, order: :specific_first)
    end

    if has_app?
        require_robot_file
    end

    init_handlers.each(&:call)
    update_load_path

    # Define the app module if there is none, and define a root logger
    # on it
    app_module =
        begin self.app_module
        rescue NameError
            Object.const_set(module_name, Module.new)
        end
    unless app_module.respond_to?(:logger)
        module_name = self.module_name
        app_module.class_eval do
            extend ::Logger::Root(module_name, Logger::INFO)
        end
    end
end

#load_config_yamlObject



2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
# File 'lib/roby/app.rb', line 2265

def load_config_yaml
    file = find_file("config", "app.yml", order: :specific_first)
    return unless file

    Application.info "loading config file #{file}"
    options = YAML.safe_load(File.read(file)) || {}

    @robots.load_config_yaml(options["robots"] || {})

    if robot_name && (robot_config = options.delete("robots"))
        options = options.recursive_merge(robot_config[robot_name] || {})
    end
    options = options.transform_values do |val|
        val || {}
    end
    options = @options.recursive_merge(options)
    apply_config(options)
    @options = options
end

#load_default_modelsObject

Helper to the robot config files to load the root files in models/ (e.g. models/tasks.rb)



2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
# File 'lib/roby/app.rb', line 2164

def load_default_models
    ["tasks.rb", "actions.rb"].each do |root_type|
        path = find_file(
            "models", root_type, path: [app_dir], order: :specific_first
        )

        require path if path
    end
    call_plugins(:load_default_models, self)
end

#load_plugin_file(appfile) ⇒ Object

Load the given Roby plugin file. It is usually called app.rb, and should call register_plugin with the relevant information

Note that the file should not do anything yet. The actions required to have a functional plugin should be taken only in the block given to register_plugin or in the relevant plugin methods.



1534
1535
1536
1537
1538
1539
1540
1541
# File 'lib/roby/app.rb', line 1534

def load_plugin_file(appfile)
    begin
        require appfile
    rescue
        Roby.warn "cannot load plugin #{appfile}: #{$!.full_message}\n"
    end
    Roby.info "loaded plugin #{appfile}"
end

#load_plugins_from_prefix(dir) ⇒ Object

Looks into subdirectories of dir for files called app.rb and registers them as Roby plugins



1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
# File 'lib/roby/app.rb', line 1511

def load_plugins_from_prefix(dir)
    dir = File.expand_path(dir)
    $LOAD_PATH.unshift dir

    Dir.new(dir).each do |subdir|
        subdir = File.join(dir, subdir)
        next unless File.directory?(subdir)

        appfile = File.join(subdir, "app.rb")
        next unless File.file?(appfile)

        load_plugin_file(appfile)
    end
ensure
    $LOAD_PATH.shift
end

#loaded_plugin?(name) ⇒ Boolean

Returns true if name is a loaded plugin

Returns:

  • (Boolean)


1544
1545
1546
# File 'lib/roby/app.rb', line 1544

def loaded_plugin?(name)
    plugins.any? { |plugname, _| plugname == name }
end

#lock_log_dirObject



1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
# File 'lib/roby/app.rb', line 1198

def lock_log_dir
    final_lock_path = File.join(log_dir, LOCK_FILE_EXT)
    temp_lock_path = "#{final_lock_path}.tmp"
    lock_file = File.open(temp_lock_path, File::RDWR | File::CREAT, 0o644)
    unless lock_file.flock(File::LOCK_EX | File::LOCK_NB)
        raise "could not lock the log directory on setup " \
              "(lock file: #{temp_lock_path})"
    end

    File.rename(temp_lock_path, final_lock_path)
    @lock_file = lock_file
end

#logObject

:method: log_server=

Sets whether the log server should be started



912
# File 'lib/roby/app.rb', line 912

overridable_configuration "log", "filter_backtraces", predicate: true

#log_create_current=(flag) ⇒ Object

If set to true, this Roby application will create a 'current' entry in #log_base_dir that points to the latest log directory. Otherwise, it will not. It is false when 'roby run' is started with an explicit log directory (the --log-dir option)

This symlink will never be created if #public_logs? is false, regardless of this setting.



2988
# File 'lib/roby/app.rb', line 2988

attr_predicate :log_create_current?, true

#log_create_current?Object

If set to true, this Roby application will create a 'current' entry in #log_base_dir that points to the latest log directory. Otherwise, it will not. It is false when 'roby run' is started with an explicit log directory (the --log-dir option)

This symlink will never be created if #public_logs? is false, regardless of this setting.



2988
# File 'lib/roby/app.rb', line 2988

attr_predicate :log_create_current?, true

#log_current_dirObject

The path to the current log directory

If #log_dir is set, it is used. Otherwise, the current log directory is inferred by the directory pointed to the 'current' symlink



1871
1872
1873
1874
1875
1876
1877
1878
# File 'lib/roby/app.rb', line 1871

def log_current_dir
    if @log_dir
        @log_dir
    else
        current_path = File.join(log_base_dir, "current")
        self.class.read_current_dir(current_path)
    end
end

#log_current_fileObject

The path to the current log file



1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
# File 'lib/roby/app.rb', line 1883

def log_current_file
    log_current_dir = self.log_current_dir
     = 
    if .empty?
        raise NoCurrentLog,
              "#{log_current_dir} is not a valid Roby log dir, "\
              "it does not have an info.yml metadata file"
    elsif !(robot_name = .map { |h| h["robot_name"] }.compact.last)
        raise NoCurrentLog,
              "#{log_current_dir}'s metadata does not specify the robot name"
    end

    full_path = File.join(log_current_dir, "#{robot_name}-events.log")
    unless File.file?(full_path)
        raise NoCurrentLog,
              "inferred log file #{full_path} for #{log_current_dir}, "\
              "but that file does not exist"
    end

    full_path
end

#log_dirObject

The directory in which logs are to be saved Defaults to app_dir/data/$time_tag



1761
1762
1763
1764
1765
1766
1767
# File 'lib/roby/app.rb', line 1761

def log_dir
    unless @log_dir
        raise LogDirNotInitialized,
              "the log directory has not been initialized yet"
    end
    @log_dir
end

#log_dir=(dir) ⇒ Object

Explicitely set the log directory

It is usually automatically created under #log_base_dir during #base_setup



1784
1785
1786
1787
1788
1789
1790
# File 'lib/roby/app.rb', line 1784

def log_dir=(dir)
    unless File.directory?(dir)
        raise ArgumentError, "log directory #{dir} does not exist"
    end

    @log_dir = dir
end

#log_read_metadataObject

Read the time tag from the current log directory



1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
# File 'lib/roby/app.rb', line 1849

def 
    dir = begin
        log_current_dir
    rescue ArgumentError # rubocop:disable Lint/SuppressedException
    end

    if dir && File.exist?(File.join(dir, "info.yml"))
        YAML.safe_load(File.read(File.join(dir, "info.yml")))
    else
        []
    end
end

#log_read_time_tagObject



1862
1863
1864
1865
# File 'lib/roby/app.rb', line 1862

def log_read_time_tag
     = .last
     && ["time_tag"]
end

#log_save_metadata(append: true) ⇒ Object

Save #app_metadata in the log directory

Parameters:

  • append (Boolean) (defaults to: true)

    if true (the default), the value returned by #app_metadata is appended to the existing data. Otherwise, it replaces the last entry in the file



1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
# File 'lib/roby/app.rb', line 1828

def (append: true)
    path = File.join(log_dir, "info.yml")

    current =
        if File.file?(path)
            YAML.load(File.read(path)) || []
        else
            []
        end

    if append || current.empty?
        current << 
    else
        current[-1] = 
    end
    File.open(path, "w") do |io|
        YAML.dump(current, io)
    end
end

#log_setup(mod_path, level, file = nil) ⇒ Object

Configures a text logger in the system. It has to be called before #setup to have an effect.

It overrides configuration from the app.yml file

For instance,

log_setup 'roby/execution_engine', 'DEBUG'

will be equivalent to having the following entry in config/app.yml:

log:
  levels:
      roby/execution_engine: DEBUG


863
864
865
866
# File 'lib/roby/app.rb', line 863

def log_setup(mod_path, level, file = nil)
    levels = (log_overrides["levels"] ||= {})
    levels[mod_path] = [level, file].compact.join(":")
end

#log_timepoints?Boolean

Whether internal timepoints should be logged

This generates a magnitude higher amount of data than "normal" logging. Enable this during development if you have issues with Roby being unresponsive

Returns:

  • (Boolean)


140
141
142
143
144
145
146
# File 'lib/roby/app.rb', line 140

def log_timepoints?
    if @log_timepoints.nil?
        log["timepoints"]
    else
        @log_timepoints
    end
end

#main_action_interfaceObject

Returns this app's main action interface

This is usually set up in the robot configuration file by calling Robot.actions



296
297
298
# File 'lib/roby/app.rb', line 296

def main_action_interface
    app_module::Actions::Main
end

#make_path_relative(path) ⇒ Object

Transforms path into a path relative to an entry in search_path (usually the application root directory)



2021
2022
2023
2024
2025
2026
2027
2028
2029
# File 'lib/roby/app.rb', line 2021

def make_path_relative(path)
    if !File.exist?(path)
        path
    elsif (root_path = find_base_path_for(path))
        Pathname.new(path).relative_path_from(root_path).to_s
    else
        path
    end
end

#model_defined_in_app?(model) ⇒ Boolean

Tests whether a model class has been defined in this app's code

Returns:

  • (Boolean)


3154
3155
3156
3157
3158
3159
3160
# File 'lib/roby/app.rb', line 3154

def model_defined_in_app?(model)
    model.definition_location.any? do |location|
        break if location.label == "require"

        app_file?(location.absolute_path)
    end
end

#modelling_onlyObject



3009
3010
3011
# File 'lib/roby/app.rb', line 3009

def modelling_only
    self.modelling_only = true
end

#needs_to_be_in_current_app(allowed_outside: true) ⇒ Object

Call to check whether the current directory is within #app_dir. If not, raises

This is called by tools for which being in another app than the currently selected would be really too confusing



402
403
404
405
406
407
408
409
410
411
# File 'lib/roby/app.rb', line 402

def needs_to_be_in_current_app(allowed_outside: true)
    guessed_dir = self.class.guess_app_dir
    if guessed_dir && (@app_dir != guessed_dir)
        raise NotInCurrentApp,
              "#{@app_dir} is currently selected, " \
              "but the current directory is within #{guessed_dir}"
    elsif !guessed_dir && !allowed_outside
        raise NotInCurrentApp, "not currently within an app dir"
    end
end

#notify(source, level, message) ⇒ Object

Sends a message to all notification listeners



3412
3413
3414
3415
3416
# File 'lib/roby/app.rb', line 3412

def notify(source, level, message)
    each_notification_listener do |block|
        block.call(source, level, message)
    end
end

#on_cleanup(user: false, &block) ⇒ Object

Declares that the following block should be called when #clear_models is called



1501
1502
1503
1504
1505
1506
1507
# File 'lib/roby/app.rb', line 1501

def on_cleanup(user: false, &block)
    unless block
        raise ArgumentError, "missing expected block argument"
    end

    add_lifecyle_hook(cleanup_handlers, block, user: user)
end

#on_clear_models(user: false, &block) ⇒ Object

Declares that the following block should be called when #clear_models is called



1477
1478
1479
1480
1481
1482
1483
# File 'lib/roby/app.rb', line 1477

def on_clear_models(user: false, &block)
    unless block
        raise ArgumentError, "missing expected block argument"
    end

    add_lifecyle_hook(clear_models_handlers, block, user: user)
end

#on_config(user: false, &block) ⇒ Object

Deprecated.

use #on_setup instead



1455
1456
1457
1458
1459
1460
# File 'lib/roby/app.rb', line 1455

def on_config(user: false, &block)
    Roby.warn_deprecated(
        "Application#on_config is deprecated, use #on_setup instead"
    )
    on_setup(user: user, &block)
end

#on_init(user: false, &block) ⇒ Object

Declares a block that should be executed when the Roby app gets initialized (i.e. just after init.rb gets loaded)



1426
1427
1428
1429
1430
1431
1432
# File 'lib/roby/app.rb', line 1426

def on_init(user: false, &block)
    unless block
        raise ArgumentError, "missing expected block argument"
    end

    add_lifecyle_hook(init_handlers, block, user: user)
end

#on_notification(user: false) {|source, level, message| ... } ⇒ Object

Registers a block to be called when a message needs to be dispatched from #notify

Yield Parameters:

  • source (String)

    the source of the message

  • level (String)

    the log level

  • message (String)

    the message itself

Returns:

Raises:

  • (ArgumentError)


3455
3456
3457
3458
3459
# File 'lib/roby/app.rb', line 3455

def on_notification(user: false, &block)
    raise ArgumentError, "missing expected block argument" unless block

    add_lifecyle_hook(notification_listeners, block, user: user)
end

#on_require(user: false, &block) ⇒ Object

Declares a block that should be executed when the Roby app loads models (i.e. in #require_models)



1446
1447
1448
1449
1450
1451
1452
# File 'lib/roby/app.rb', line 1446

def on_require(user: false, &block)
    unless block
        raise ArgumentError, "missing expected block argument"
    end

    add_lifecyle_hook(require_handlers, block, user: user)
end

#on_setup(user: false, &block) ⇒ Object

Declares a block that should be executed when the Roby app is begin setup



1436
1437
1438
1439
1440
1441
1442
# File 'lib/roby/app.rb', line 1436

def on_setup(user: false, &block)
    unless block
        raise ArgumentError, "missing expected block argument"
    end

    add_lifecyle_hook(setup_handlers, block, user: user)
end

#on_shutdown(user: false, &block) ⇒ Object

Registers a callback to perform cleanup just after an execution

This is called just after plan teardown. Unlike all the other cleanup handlers, it will be called during test teardown as well

These callbacks MUST be idempotent



1491
1492
1493
1494
1495
1496
1497
# File 'lib/roby/app.rb', line 1491

def on_shutdown(user: false, &block)
    unless block
        raise ArgumentError, "missing expected block argument"
    end

    add_lifecyle_hook(shutdown_handlers, block, user: user)
end

#on_ui_event {|name, args| ... } ⇒ Object

Registers a block to be called when a message needs to be dispatched from #ui_event

Yield Parameters:

  • name (String)

    the event name

  • args

    the UI event listener arguments

Returns:



3381
3382
3383
3384
3385
3386
3387
3388
# File 'lib/roby/app.rb', line 3381

def on_ui_event(&block)
    unless block
        raise ArgumentError, "missing expected block argument"
    end

    ui_event_listeners << block
    Roby.disposable { ui_event_listeners.delete(block) }
end

#plugin_definition(name) ⇒ Object

Returns the [name, dir, file, module] array definition of the plugin name, or nil if name is not a known plugin



1550
1551
1552
# File 'lib/roby/app.rb', line 1550

def plugin_definition(name)
    available_plugins.find { |plugname, *_| plugname == name }
end

#plugins_enabled=(flag) ⇒ Object

True if plugins should be discovered, registered and loaded (true by default)



537
# File 'lib/roby/app.rb', line 537

attr_predicate :plugins_enabled?, true

#plugins_enabled?Object

True if plugins should be discovered, registered and loaded (true by default)



537
# File 'lib/roby/app.rb', line 537

attr_predicate :plugins_enabled?, true

#prepareObject

Prepares the environment to actually run



1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
# File 'lib/roby/app.rb', line 1362

def prepare
    setup_shell_interface_v1 if public_shell_interface?
    setup_shell_interface_v2 if public_shell_interface_v2?

    if public_rest_interface?
        setup_rest_interface
    end

    if public_logs? && log_create_current?
        FileUtils.rm_f File.join(log_base_dir, "current")
        FileUtils.ln_s log_dir, File.join(log_base_dir, "current")
    end

    if log["events"] && public_log_server?
        logfile_path = prepare_event_log

        # Start a log server if needed, and poll the log directory for new
        # data sources
        if (log_server_options = (log.has_key?("server") ? log["server"] : {}))
            unless log_server_options.kind_of?(Hash)
                log_server_options = {}
            end
            @droby_event_logger.sync = true
            start_log_server(logfile_path, log_server_options)
            Roby.info "log server started"
        else
            @droby_event_logger.sync = false
            Roby.warn "log server disabled"
        end
    end

    call_plugins(:prepare, self)
end

#prepare_action(name, mission: false, **arguments) ⇒ Object

Generate the plan pattern that will call the required action on the planning interface, with the given arguments.

This returns immediately, and the action is not yet deployed at that point.

Returns:

  • task, planning_task



3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
# File 'lib/roby/app.rb', line 3339

def prepare_action(name, mission: false, **arguments)
    if name.kind_of?(Class)
        _, m = action_from_model(name)
    else
        _, m = action_from_name(name)
    end

    if mission
        plan.add_mission_task(task = m.plan_pattern(**arguments))
    else
        plan.add(task = m.plan_pattern(**arguments))
    end
    [task, task.planning_task]
end

#prepare_event_logObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
# File 'lib/roby/app.rb', line 1344

def prepare_event_log
    require "roby/event_logging/droby_event_logger"
    require "roby/droby/logfile/writer"

    logfile_path = File.join(log_dir, "#{robot_name}-events.log")
    event_io = File.open(logfile_path, "w")
    logfile = DRoby::Logfile::Writer.new(event_io, plugins: plugins.map { |n, _| n })

    @droby_event_logger = EventLogging::DRobyEventLogger.new(logfile)
    @droby_event_logger.register_executable_plan(plan)
    plan.add_event_logger(@droby_event_logger)
    plan.execution_engine.add_event_logger(@droby_event_logger)

    Robot.info "logs are in #{log_dir}"
    logfile_path
end

#prepend_search_path(path) ⇒ Object

Add a path to the search path, with the highest priority for e.g. find_files

This path will be put in front of the app dir itself



435
436
437
438
439
# File 'lib/roby/app.rb', line 435

def prepend_search_path(path)
    @search_path ||= self.search_path
    @search_path.unshift path
    update_load_path
end

#public_log_server=(flag) ⇒ Object

If set to true, this Roby application will start a log server, from which tools like the Syskit IDE can access the Roby logs at runtime

Only the run modes have a public display server by default



2976
# File 'lib/roby/app.rb', line 2976

attr_predicate :public_log_server?, true

#public_log_server?Object

If set to true, this Roby application will start a log server, from which tools like the Syskit IDE can access the Roby logs at runtime

Only the run modes have a public display server by default



2976
# File 'lib/roby/app.rb', line 2976

attr_predicate :public_log_server?, true

#public_logs=(flag) ⇒ Object

If set to true, this Roby application will make its logs public, i.e. will save the logs in logs/ and update the logs/current symbolic link accordingly. Otherwise, the logs are saved in a folder in logs/ that is deleted on teardown, and current is not updated

Only the run modes have public logs by default



2967
# File 'lib/roby/app.rb', line 2967

attr_predicate :public_logs?, true

#public_logs?Object

If set to true, this Roby application will make its logs public, i.e. will save the logs in logs/ and update the logs/current symbolic link accordingly. Otherwise, the logs are saved in a folder in logs/ that is deleted on teardown, and current is not updated

Only the run modes have public logs by default



2967
# File 'lib/roby/app.rb', line 2967

attr_predicate :public_logs?, true

#public_rest_interface=(flag) ⇒ Object

If set to true, this Roby application will publish a Interface::REST::API object



942
# File 'lib/roby/app.rb', line 942

attr_predicate :public_rest_interface?, true

#public_rest_interface?Object

If set to true, this Roby application will publish a Interface::REST::API object



942
# File 'lib/roby/app.rb', line 942

attr_predicate :public_rest_interface?, true

#public_shell_interface=(flag) ⇒ Object

If set to true, this Roby application will publish a Interface::Interface object as a TCP server.



961
# File 'lib/roby/app.rb', line 961

attr_predicate :public_shell_interface?, true

#public_shell_interface?Object

If set to true, this Roby application will publish a Interface::Interface object as a TCP server.



961
# File 'lib/roby/app.rb', line 961

attr_predicate :public_shell_interface?, true

#public_shell_interface_v2=(flag) ⇒ Object

If set to true, this Roby application will publish a Interface::Interface object as a TCP server.



993
# File 'lib/roby/app.rb', line 993

attr_predicate :public_shell_interface_v2?, true

#public_shell_interface_v2?Object

If set to true, this Roby application will publish a Interface::Interface object as a TCP server.



993
# File 'lib/roby/app.rb', line 993

attr_predicate :public_shell_interface_v2?, true

#push_search_path(path) ⇒ Object

Add a path to the search path, with the lowest search priority



450
451
452
453
454
# File 'lib/roby/app.rb', line 450

def push_search_path(path)
    @search_path ||= self.search_path
    @search_path << path
    update_load_path
end

#quitObject

Quit the application



2563
2564
2565
# File 'lib/roby/app.rb', line 2563

def quit
    plan.execution_engine.quit
end

#register_app(path, where: :push) ⇒ Object

Register another Roby app

The call both adds the app to the search path

Parameters:

  • path (String)

    the path to the Roby app dir itselfc



461
462
463
464
465
466
467
# File 'lib/roby/app.rb', line 461

def register_app(path, where: :push)
    path = File.expand_path(path, app_dir)
    app_name = File.basename(path)
    send("#{where}_search_path", path)

    @registered_apps[app_name] = path
end

#register_exception(e, reason = nil) ⇒ Object



2031
2032
2033
# File 'lib/roby/app.rb', line 2031

def register_exception(e, reason = nil)
    registered_exceptions << [e, reason]
end

#register_plugin(name, mod, path: nil, &init) ⇒ Object



3063
3064
3065
3066
3067
3068
3069
3070
3071
# File 'lib/roby/app.rb', line 3063

def register_plugin(name, mod, path: nil, &init)
    unless path
        caller_m = /^([^:]+):\d/.match(caller(1)[0])
        path = File.expand_path(File.dirname(caller_m[1]))
    end

    available_plugins.delete_if { |n| n == name }
    available_plugins << [name, path, mod, init]
end

#register_plugins(force: false) ⇒ Object



1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
# File 'lib/roby/app.rb', line 1590

def register_plugins(force: false)
    if !plugins_enabled? && !force
        raise PluginsDisabled,
              "cannot call #register_plugins while the plugins are disabled"
    end

    # Load the plugins 'main' files
    return unless (plugin_path = ENV["ROBY_PLUGIN_PATH"])

    plugin_path.split(":").each do |plugin|
        if File.directory?(plugin)
            load_plugins_from_prefix plugin
        elsif File.file?(plugin)
            load_plugin_file plugin
        end
    end
end

#register_server(name, port) ⇒ Object

Register a server port that can be discovered later



2017
# File 'lib/roby/app.rb', line 2017

def register_server(name, port); end

#reload_actionsObject

Reload action models defined in models/actions/

It is a subset of #reload_models



3238
3239
3240
3241
3242
3243
# File 'lib/roby/app.rb', line 3238

def reload_actions
    unload_features("actions", ".*\.rb$")
    unload_features("models", "actions", ".*\.rb$")
    planners.each(&:clear_model)
    require_planners
end

#reload_configObject

Reload files in config/



3144
3145
3146
3147
3148
3149
3150
3151
# File 'lib/roby/app.rb', line 3144

def reload_config
    clear_config
    apply_argv_set
    if has_app?
        require_robot_file
    end
    call_plugins(:require_config, self)
end

#reload_modelsObject

Reload model files in models/



3230
3231
3232
3233
# File 'lib/roby/app.rb', line 3230

def reload_models
    clear_models
    require_models
end

#reload_plannersObject



3245
3246
3247
3248
3249
3250
# File 'lib/roby/app.rb', line 3245

def reload_planners
    unload_features("planners", ".*\.rb$")
    unload_features("models", "planners", ".*\.rb$")
    planners.each(&:clear_model)
    require_planners
end

#remove_notification_listener(listener) ⇒ Object

Removes a notification listener added with #on_notification

Parameters:



3465
3466
3467
# File 'lib/roby/app.rb', line 3465

def remove_notification_listener(listener)
    listener.dispose if listener.respond_to?(:dispose)
end

#remove_ui_event_listener(listener) ⇒ Object

Removes a notification listener added with #on_ui_event

Parameters:



3394
3395
3396
# File 'lib/roby/app.rb', line 3394

def remove_ui_event_listener(listener)
    listener.dispose if listener.respond_to?(:dispose)
end

#require(absolute_path) ⇒ Object



2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
# File 'lib/roby/app.rb', line 2053

def require(absolute_path)
    # Make the file relative to the search path
    file = make_path_relative(absolute_path)
    Roby::Application.info "loading #{file} (#{absolute_path})"
    isolate_load_errors("ignored file #{file}") do
        if file != absolute_path
            Kernel.require(file)
        else
            Kernel.require absolute_path
        end
    end
end

#require_app_dir(needs_current: false, allowed_outside: true) ⇒ Object

Call to require this roby application to be in a Roby application

It tries to guess the app directory. If none is found, it raises.



384
385
386
387
388
389
390
391
392
393
394
395
# File 'lib/roby/app.rb', line 384

def require_app_dir(needs_current: false, allowed_outside: true)
    guess_app_dir
    unless app_dir
        raise ArgumentError,
              "your current directory (#{Dir.pwd}) does not seem to be a Roby " \
              "application directory; did you forget to run 'roby init'?"
    end

    if needs_current
        needs_to_be_in_current_app(allowed_outside: allowed_outside)
    end
end

#require_modelsObject

Loads the models, based on the given robot name and robot type



2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
# File 'lib/roby/app.rb', line 2067

def require_models
    # Set up the loaded plugins
    call_plugins(:require_config, self, deprecated: "define 'require_models' instead")
    call_plugins(:require_models, self)

    require_handlers.each do |handler|
        isolate_load_errors("while calling #{handler}") do
            handler.call
        end
    end

    define_actions_module
    if auto_load_models?
        auto_require_planners
    end
    define_main_planner_if_needed

    additional_model_files.each do |path|
        require File.expand_path(path)
    end

    action_handlers.each do |act|
        isolate_load_errors("error in #{act}") do
            app_module::Actions::Main.class_eval(&act)
        end
    end

    if auto_load_models?
        auto_require_models
    end

    # Set up the loaded plugins
    call_plugins(:finalize_model_loading, self)

    plan.refresh_relations
end

#require_plannersObject

Loads the planner models

This method is called at the end of #require_models, before the plugins' require_models hook is called



2236
2237
2238
2239
# File 'lib/roby/app.rb', line 2236

def require_planners
    Roby.warn_deprecated "Application#require_planners is deprecated and has been renamed into #auto_require_planners"
    auto_require_planners
end

#require_robot_fileObject



2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
# File 'lib/roby/app.rb', line 2352

def require_robot_file
    p = find_file("config", "robots", "#{robot_name}.rb", order: :specific_first) ||
        find_file("config", "robots", "#{robot_type}.rb", order: :specific_first)

    if p
        @default_auto_load = false
        require p
        unless robot_type
            robot(robot_name, robot_name)
        end
    elsif !find_dir("config", "robots", order: :specific_first) || (robot_name == robots.default_robot_name) || !robots.strict?
        Roby.warn "#{robot_name}:#{robot_type} is selected as the robot, but there is"
        if robot_name == robot_type
            Roby.warn "no file named config/robots/#{robot_name}.rb"
        else
            Roby.warn "neither config/robots/#{robot_name}.rb nor config/robots/#{robot_type}.rb"
        end
        Roby.warn "run roby gen robot #{robot_name} in your app to create one"
        Roby.warn "initialization will go on, but this behaviour is deprecated and will be removed in the future"
    else
        raise NoSuchRobot, "cannot find config file for robot #{robot_name} of type #{robot_type} in config/robots/"
    end
end

#require_v2_protocol_extensionsObject

Require the protocol extension files defined in interface.protocol_extensions

The usual place to set those is in config/app.yml



823
824
825
826
827
# File 'lib/roby/app.rb', line 823

def require_v2_protocol_extensions
    (@options.dig("v2_protocol", "extensions") || []).each do |ext|
        require ext
    end
end

#reset_log_dirObject

Reset the current log dir so that #setup picks a new one



1770
1771
1772
1773
# File 'lib/roby/app.rb', line 1770

def reset_log_dir
    unlock_log_dir
    @log_dir = nil
end

#reset_plan(plan = ExecutablePlan.new) ⇒ Object

Reset the plan to a new Plan object



1776
1777
1778
# File 'lib/roby/app.rb', line 1776

def reset_plan(plan = ExecutablePlan.new)
    @plan = plan
end

#restart(*cmdline) ⇒ Object

Quits this app and replaces with a new one after a proper cleanup

Parameters:

  • cmdline (String)

    the command line to exec after quitting. If not given, will restart using the same command line as the one that started this process



2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
# File 'lib/roby/app.rb', line 2547

def restart(*cmdline)
    @restarting = true
    @restart_cmdline =
        if cmdline.empty?
            if defined? ORIGINAL_ARGV
                [$0, *ORIGINAL_ARGV]
            else
                [$0, *ARGV]
            end
        else
            cmdline
        end
    quit
end

#restart!Object

Restarts the same app

Simply execs the same command line



2532
2533
2534
# File 'lib/roby/app.rb', line 2532

def restart!
    Kernel.exec(*@restart_cmdline)
end

#restarting?Boolean

Indicates to whomever is managing this app that #restart should be called

Returns:

  • (Boolean)


2538
2539
2540
# File 'lib/roby/app.rb', line 2538

def restarting?
    !!@restarting
end

#robot(name, type = nil) ⇒ Object

Sets up the name and type of the robot. This can be called only once in a given Roby controller.



1679
1680
1681
# File 'lib/roby/app.rb', line 1679

def robot(name, type = nil)
    @robot_name, @robot_type = robots.resolve(name, type)
end

#robot_configuration_namesArray

Returns all unique valid robot configuration names (i.e robot_type and robot_name)

Returns:

  • (Array)


3591
3592
3593
# File 'lib/roby/app.rb', line 3591

def robot_configuration_names
    robot_type == robot_name ? [robot_type] : [robot_type, robot_name]
end

#robot_nameString?

The robot name

Returns:

  • (String, nil)


1666
1667
1668
# File 'lib/roby/app.rb', line 1666

def robot_name
    @robot_name || robots.default_robot_name
end

#robot_name?(name) ⇒ Boolean

Test if the given name is a valid robot name

Returns:

  • (Boolean)


2158
2159
2160
# File 'lib/roby/app.rb', line 2158

def robot_name?(name)
    !robots.strict? || robots.has_robot?(name)
end

#robot_typeString?

The robot type

Returns:

  • (String, nil)


1673
1674
1675
# File 'lib/roby/app.rb', line 1673

def robot_type
    @robot_type || robots.default_robot_type
end

#root_modelsArray<#each_submodel>

The list of model classes that allow to discover all models in this app

Returns:

  • (Array<#each_submodel>)


3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
# File 'lib/roby/app.rb', line 3166

def root_models
    models = [Task, TaskService, TaskEvent, Actions::Interface, Actions::Library,
              Coordination::ActionScript, Coordination::ActionStateMachine,
              Coordination::TaskScript]

    each_responding_plugin(:root_models) do |config_extension|
        models.concat(config_extension.root_models)
    end
    models
end

#run(thread_priority: 0, &block) ⇒ Object



2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
# File 'lib/roby/app.rb', line 2505

def run(thread_priority: 0, &block)
    prepare

    engine_config = self.engine
    engine = self.plan.execution_engine
    engine.thread = Thread.current
    plugins = self.plugins.map { |_, mod| mod if mod.respond_to?(:start) || mod.respond_to?(:run) }.compact
    engine.once do
        run_plugins(plugins, &block)
    end

    Thread.current.priority = thread_priority
    @running = true
    engine.run cycle: engine_config["cycle"] || 0.1
ensure
    @running = false
    shutdown
end

#run_controller_blocksObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Run the blocks registered with #controller

This must be called in excecution propagation context



1415
1416
1417
# File 'lib/roby/app.rb', line 1415

def run_controller_blocks
    controllers.each(&:call)
end

#run_plugins(mods, &block) ⇒ Object

Helper for Application#run to call the plugin's run or start methods while guaranteeing the system's cleanup

This method recursively calls each plugin's #run method (if defined) in block forms. This guarantees that the plugins can use a begin/rescue/end mechanism to do their cleanup

If no run-related cleanup is required, the plugin can define a #start(app) method instead.

Note that the cleanup we talk about here is related to running. Cleanup required after #setup must be done in #cleanup



2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
# File 'lib/roby/app.rb', line 2579

def run_plugins(mods, &block)
    if mods.empty?
        yield if block_given?
    else
        mod = mods.shift
        if mod.respond_to?(:start)
            mod.start(self)
            run_plugins(mods, &block)
        else
            mod.run(self) do
                run_plugins(mods, &block)
            end
        end
    end
end

#run_shutdown_blocksObject



1406
1407
1408
# File 'lib/roby/app.rb', line 1406

def run_shutdown_blocks
    shutdown_handlers.each(&:call)
end

#running?Boolean

Whether we're inside #run

Returns:

  • (Boolean)


2525
2526
2527
# File 'lib/roby/app.rb', line 2525

def running?
    @running
end

#self_file?(path) ⇒ Boolean

Returns true if the given path points to a file under #app_dir

Returns:

  • (Boolean)


3101
3102
3103
# File 'lib/roby/app.rb', line 3101

def self_file?(path)
    find_base_path_for(path) == app_path
end

#setupObject

Does basic setup of the Roby environment. It loads configuration files and sets up singleton objects.

After a call to #setup, the Roby services that do not require an execution loop to run should be available

Plugins that define a setup(app) method will see their method called at this point

The #cleanup method is the reverse of #setup



1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
# File 'lib/roby/app.rb', line 1282

def setup
    apply_argv_set

    base_setup
    # Set up the loaded plugins
    call_plugins(:setup, self)
    # And run the setup handlers
    setup_handlers.each(&:call)
    # Re-apply configuration parameters from the command line
    apply_argv_set

    require_models

    # Main is always included in the planner list
    self.planners << app_module::Actions::Main

    # Attach the global fault tables to the plan
    self.planners.each do |planner|
        if planner.respond_to?(:each_fault_response_table)
            planner.each_fault_response_table do |table, arguments|
                plan.use_fault_response_table table, arguments
            end
        end
    end
rescue Exception # rubocop:disable Lint/RescueException
    begin cleanup
    rescue Exception => e # rubocop:disable Lint/RescueException
        Roby.warn "failed to cleanup after #setup raised"
        Roby.log_exception_with_backtrace(e, Roby, :warn)
    end
    raise
end

#setup_for_minimal_toolingObject



2950
2951
2952
2953
2954
2955
2956
# File 'lib/roby/app.rb', line 2950

def setup_for_minimal_tooling
    self.public_logs = false
    self.auto_load_models = false
    self.single = true
    self.modelling_only = true
    setup
end

#setup_loggers(ignore_missing: false, redirections: true) ⇒ Object

Sets up all the default loggers. It creates the logger for the Robot module (accessible through Robot.logger), and sets up log levels as specified in the config/app.yml file.



1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
# File 'lib/roby/app.rb', line 1974

def setup_loggers(ignore_missing: false, redirections: true)
    Robot.logger.progname = robot_name || "Robot"
    return unless log["levels"]

    # Set up log levels
    log["levels"].each do |name, value|
        const_name = name.modulize
        mod =
            begin Kernel.constant(const_name)
            rescue NameError => e
                if ignore_missing
                    next
                elsif name != const_name
                    raise InvalidLoggerName, "cannot resolve logger #{name} (resolved as #{const_name}): #{e.message}"
                else
                    raise InvalidLoggerName, "cannot resolve logger #{name}: #{e.message}"
                end
            end

        if value =~ /^(\w+):(.+)$/
            value, file = $1, $2
            file = file.gsub("ROBOT", robot_name) if robot_name
        end
        level = Logger.const_get(value)

        io = if redirections && file
                 path = File.expand_path(file, log_dir)
                 Robot.info "redirected logger for #{mod} to #{path} (level #{level})"
                 io = File.open(path, "w")
                 io.sync = true
                 log_files[path] ||= io
             else
                 STDOUT
             end
        new_logger = Logger.new(io)
        new_logger.level     = level
        new_logger.formatter = mod.logger.formatter
        new_logger.progname = [name, robot_name].compact.join(" ")
        mod.logger = new_logger
    end
end

#setup_rest_interfaceObject

Publishes a REST API

The REST API will long-term replace the shell interface. It is however currently too limited for this purpose. Whether one should use one or the other is up to the application, but prefer the REST API if it suits your needs



2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
# File 'lib/roby/app.rb', line 2468

def setup_rest_interface
    require "roby/interface/rest"

    if @rest_interface
        raise "there is already a REST interface started, call #stop_rest_interface first"
    end

    composite_api = Class.new(Grape::API)
    composite_api.mount Interface::REST::API
    call_plugins(:setup_rest_interface, self, composite_api)

    @rest_interface = Interface::REST::Server.new(
        self, host: rest_interface_host, port: rest_interface_port,
              api: composite_api
    )
    @rest_interface.start

    if rest_interface_port != Interface::DEFAULT_REST_PORT
        Robot.info "REST interface started on port #{@rest_interface.port(timeout: nil)}"
    else
        Robot.debug "REST interface started on port #{rest_interface_port}"
    end
    @rest_interface
end

#setup_robot_names_from_config_dirObject



2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
# File 'lib/roby/app.rb', line 2338

def setup_robot_names_from_config_dir
    robot_config_files = find_files_in_dirs(
        "config", "robots",
        all: true, order: :specific_first,
        pattern: ->(p) { File.extname(p) == ".rb" }
    )

    robots.strict = !robot_config_files.empty?
    robot_config_files.each do |path|
        robot_name = File.basename(path, ".rb")
        robots.robots[robot_name] ||= robot_name
    end
end

#setup_shell_interface_v1Object

Publishes a shell interface

This method publishes a Roby::Interface object using Interface::V1::TCPServer. It is published on Interface::DEFAULT_PORT by default. This default can be overriden by setting #shell_interface_port either in config/init.rb, or in a Robot.setup block in the robot configuration file.

The shell interface is started in #setup and stopped in #cleanup



2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
# File 'lib/roby/app.rb', line 2393

def setup_shell_interface_v1
    enable_remote_interface_version(1)

    if @shell_interface
        raise "there is already a shell interface started, call #stop_shell_interface first"
    end

    @shell_interface = Interface::V1::TCPServer.new(
        self,
        host: shell_interface_host, port: shell_interface_port,
        server_fd: shell_interface_fd
    )
    shell_interface.abort_on_exception = shell_abort_on_exception?
    if shell_interface_fd
        Robot.info "shell interface started on file descriptor "\
                   "#{shell_interface_fd}"
    else
        Robot.info "shell interface started on port #{shell_interface_port}"
    end
end

#setup_shell_interface_v2Object

Publishes a shell interface

This method publishes a Roby::Interface object using Interface::V1::TCPServer. It is published on Interface::DEFAULT_PORT by default. This default can be overriden by setting #shell_interface_port either in config/init.rb, or in a Robot.setup block in the robot configuration file.

The shell interface is started in #setup and stopped in #cleanup



2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
# File 'lib/roby/app.rb', line 2425

def setup_shell_interface_v2
    enable_remote_interface_version(2)

    if @shell_interface_v2
        raise "there is already a v2 shell interface started, "\
              "call #stop_shell_interface first"
    end

    @shell_interface_v2 = Interface::V2::TCPServer.new(
        self,
        host: shell_interface_v2_host, port: shell_interface_v2_port,
        server_fd: shell_interface_v2_fd
    )
    shell_interface_v2.abort_on_exception = shell_abort_on_exception?
    if shell_interface_v2_fd
        Robot.info "shell interface v2 started on file descriptor "\
                   "#{shell_interface_v2_fd}"
    else
        Robot.info "shell interface v2 started on port #{shell_interface_v2_port}"
    end
end

#shellObject



3000
3001
3002
# File 'lib/roby/app.rb', line 3000

def shell
    self.shell = true
end

#shell_interface_has_clients?Boolean

Returns:

  • (Boolean)


2376
2377
2378
2379
2380
# File 'lib/roby/app.rb', line 2376

def shell_interface_has_clients?
    v1_count = shell_interface&.client_count(handshake: true) || 0
    v2_count = shell_interface_v2&.client_count(handshake: true) || 0
    (v1_count + v2_count) > 0
end

#shift_search_path(path) ⇒ Object

Add a path to the search path, just after the app dir in search priority



442
443
444
445
446
447
# File 'lib/roby/app.rb', line 442

def shift_search_path(path)
    @search_path ||= self.search_path
    i = @search_path.index(app_dir)
    @search_path.insert(i + 1, path)
    update_load_path
end

#shutdownObject

The inverse of #prepare. It gets called either at the end of #run or at the end of #setup if there is an error during loading



1398
1399
1400
1401
1402
1403
1404
# File 'lib/roby/app.rb', line 1398

def shutdown
    run_shutdown_blocks
    call_plugins(:shutdown, self)
    stop_log_server
    stop_shell_interface
    stop_rest_interface(join: true)
end

#simulationObject



2991
2992
2993
# File 'lib/roby/app.rb', line 2991

def simulation
    self.simulation = true
end

#singleObject



3004
3005
3006
# File 'lib/roby/app.rb', line 3004

def single
    @single = true
end

#stackprof_event_managerEventLogging::StackProfEventManager

Return an object that allows to trigger stackprof profiling based on timepoints

It gets instanciated on the fly, to avoid the overhead when not in use



891
892
893
894
895
896
897
898
899
900
# File 'lib/roby/app.rb', line 891

def stackprof_event_manager
    unless @stackprof_event_manager
        require "roby/event_logging/stackprof_event_manager"
        @stackprof_event_manager = EventLogging::StackProfEventManager.new
        plan.event_logger.add(@stackprof_event_manager)
        execution_engine.event_logger.add(@stackprof_event_manager)
    end

    @stackprof_event_manager
end

#start_log_server(logfile, options = {}) ⇒ Object



2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
# File 'lib/roby/app.rb', line 2606

def start_log_server(logfile, options = {})
    require "roby/droby/logfile/server"

    # Allocate a TCP server to get an ephemeral port, and pass it to
    # roby-display
    sampling_period = Float(options["sampling_period"] ||
                            DRoby::Logfile::Server::DEFAULT_SAMPLING_PERIOD)

    tcp_server = TCPServer.new(Integer(options["port"] || 0))
    server_flags = [
        "--fd=#{tcp_server.fileno}",
        "--sampling=#{sampling_period}",
        logfile
    ]
    redirect_flags = { tcp_server => tcp_server }
    if options["debug"]
        server_flags << "--debug"
    elsif options["silent"]
        redirect_flags[:out] = redirect_flags[:err] = "/dev/null"
    end

    @log_server_port = tcp_server.local_address.ip_port
    @log_server_pid = Kernel.spawn(
        Gem.ruby, File.join(Roby::BIN_DIR, "roby-display"),
        "server", *server_flags, redirect_flags
    )
ensure
    tcp_server&.close
end

#stopObject



2602
2603
2604
# File 'lib/roby/app.rb', line 2602

def stop
    call_plugins(:stop, self)
end

#stop_log_serverObject



2636
2637
2638
2639
2640
2641
# File 'lib/roby/app.rb', line 2636

def stop_log_server
    if @log_server_pid
        Process.kill("INT", @log_server_pid)
        @log_server_pid = nil
    end
end

#stop_rest_interface(join: false) ⇒ Object

Stops a running REST interface



2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
# File 'lib/roby/app.rb', line 2494

def stop_rest_interface(join: false)
    if @rest_interface
        # In case we're shutting down while starting up,
        # we must synchronize with the start to ensure that
        # EventMachine will be properly stopped
        @rest_interface.wait_start
        @rest_interface.stop
        @rest_interface.join if join
    end
end

#stop_shell_interfaceObject

Stops a running shell interface

This is a no-op if no shell interface is currently running



2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
# File 'lib/roby/app.rb', line 2450

def stop_shell_interface
    if @shell_interface
        @shell_interface.close
        @shell_interface = nil
    end

    if @shell_interface_v2
        @shell_interface_v2.close
        @shell_interface_v2 = nil
    end
end

#test_files_for(model) ⇒ Object

Given a model class, returns the full path of an existing test file that is meant to verify this model



2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
# File 'lib/roby/app.rb', line 2195

def test_files_for(model)
    return [] if !model.respond_to?(:definition_location) || !model.definition_location

    test_files = []
    model.definition_location.each do |location|
        file = location.absolute_path
        next unless (base_path = find_base_path_for(file))

        relative = Pathname.new(file).relative_path_from(base_path)
        split = relative.each_filename.to_a
        next if split[0] != "models"

        split[0] = "test"
        split[-1] = "test_#{split[-1]}"
        canonical_testpath = [base_path, *split].join(File::SEPARATOR)
        if File.exist?(canonical_testpath)
            test_files << canonical_testpath
        end
    end
    test_files
end

#testingObject



2996
2997
2998
# File 'lib/roby/app.rb', line 2996

def testing
    self.testing = true
end

#time_tagObject

The time tag. It is a time formatted as YYYYMMDD-HHMM used to mark log directories



1794
1795
1796
# File 'lib/roby/app.rb', line 1794

def time_tag
    @time_tag ||= Time.now.strftime("%Y%m%d-%H%M")
end

#ui_event(name, *args) ⇒ Object

Sends a message to all UI event listeners



3368
3369
3370
3371
3372
# File 'lib/roby/app.rb', line 3368

def ui_event(name, *args)
    each_ui_event_listener do |block|
        block.call(name, *args)
    end
end

#unload_features(*pattern) ⇒ Object

Ensure tha require'd files that match the given pattern can be re-required



3128
3129
3130
3131
3132
# File 'lib/roby/app.rb', line 3128

def unload_features(*pattern)
    patterns = search_path.map { |p| Regexp.new(File.join(p, *pattern)) }
    patterns << Regexp.new("^#{File.join(*pattern)}")
    $LOADED_FEATURES.delete_if { |path| patterns.any? { |p| p =~ path } }
end

#unlock_log_dirObject



1211
1212
1213
1214
# File 'lib/roby/app.rb', line 1211

def unlock_log_dir
    @lock_file&.close
    @lock_file = nil
end

#update_load_pathObject



2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
# File 'lib/roby/app.rb', line 2319

def update_load_path
    search_path.reverse.each do |app_dir|
        $LOAD_PATH.delete(app_dir)
        $LOAD_PATH.unshift(app_dir)
        libdir = File.join(app_dir, "lib")
        if File.directory?(libdir)
            $LOAD_PATH.delete(libdir)
            $LOAD_PATH.unshift(libdir)
        end
    end

    find_dirs("lib", "ROBOT", all: true, order: :specific_last)
        .each do |libdir|
            unless $LOAD_PATH.include?(libdir)
                $LOAD_PATH.unshift libdir
            end
        end
end

#using(*names, force: false) ⇒ Object

Loads the plugins whose name are listed in names



1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
# File 'lib/roby/app.rb', line 1609

def using(*names, force: false)
    if !plugins_enabled? && !force
        raise PluginsDisabled,
              "plugins are disabled, cannot load #{names.join(', ')}"
    end

    register_plugins(force: true)
    names.map do |name|
        name = name.to_s
        unless (plugin = plugin_definition(name))
            raise ArgumentError,
                  "#{name} is not a known plugin (available plugins: "\
                  "#{available_plugins.map { |n, *_| n }.join(', ')})"
        end

        name, dir, mod, init = *plugin
        if (already_loaded = plugins.find { |n, m| n == name && m == mod })
            next(already_loaded[1])
        end

        filter_out_patterns.push(/#{Regexp.quote(dir)}/) if dir

        if init
            begin
                $LOAD_PATH.unshift dir
                init.call
                mod.reset(self) if mod.respond_to?(:reset)
            rescue Exception => e # rubocop:disable Lint/RescueException
                Roby.fatal "cannot load plugin #{name}: #{e.full_message}"
                exit(1)
            ensure
                $LOAD_PATH.shift
            end
        end

        add_plugin(name, mod)
    end
end