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 =
".lock"

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.



892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
# File 'lib/roby/app.rb', line 892

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)


2861
2862
2863
# File 'lib/roby/app.rb', line 2861

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



738
739
740
# File 'lib/roby/app.rb', line 738

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”.



1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
# File 'lib/roby/app.rb', line 1525

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:



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

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)


804
805
806
# File 'lib/roby/app.rb', line 804

def rest_interface_host
  @rest_interface_host
end

#rest_interface_portInteger

The port on which the REST interface server should be

Returns:

  • (Integer)


808
809
810
# File 'lib/roby/app.rb', line 808

def rest_interface_port
  @rest_interface_port
end

#robotsApp::RobotNames (readonly)

The robot names configuration

Returns:



1255
1256
1257
# File 'lib/roby/app.rb', line 1255

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



811
812
813
# File 'lib/roby/app.rb', line 811

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:



843
844
845
# File 'lib/roby/app.rb', line 843

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:



826
827
828
# File 'lib/roby/app.rb', line 826

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:



834
835
836
# File 'lib/roby/app.rb', line 834

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



857
858
859
# File 'lib/roby/app.rb', line 857

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)


881
882
883
# File 'lib/roby/app.rb', line 881

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:



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

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:



873
874
875
# File 'lib/roby/app.rb', line 873

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



3188
3189
3190
# File 'lib/roby/app.rb', line 3188

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



646
647
648
649
650
651
# File 'lib/roby/app.rb', line 646

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_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
# 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
end

.find_data(*name) ⇒ Object

Raises:

  • (Errno::ENOENT)


2885
2886
2887
2888
2889
2890
2891
2892
# File 'lib/roby/app.rb', line 2885

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



656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
# File 'lib/roby/app.rb', line 656

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



723
724
725
726
727
728
729
730
731
732
733
734
735
# File 'lib/roby/app.rb', line 723

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

.log_dir_locked?(path) ⇒ Boolean

Returns:

  • (Boolean)


1070
1071
1072
1073
1074
1075
1076
1077
# File 'lib/roby/app.rb', line 1070

def self.log_dir_locked?(path)
    lock_file_path = File.join(path, LOCK_FILE_EXT)
    return true 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



1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
# File 'lib/roby/app.rb', line 1742

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



2904
2905
2906
2907
2908
# File 'lib/roby/app.rb', line 2904

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

.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 .<number> suffix is appended if the path already exists.



1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
# File 'lib/roby/app.rb', line 1770

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:



3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
# File 'lib/roby/app.rb', line 3091

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



3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
# File 'lib/roby/app.rb', line 3144

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



1304
1305
1306
# File 'lib/roby/app.rb', line 1304

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



1631
1632
1633
1634
1635
1636
# File 'lib/roby/app.rb', line 1631

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



3273
3274
3275
3276
# File 'lib/roby/app.rb', line 3273

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



1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
# File 'lib/roby/app.rb', line 1481

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)


2939
2940
2941
# File 'lib/roby/app.rb', line 2939

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:



1643
1644
1645
1646
1647
# File 'lib/roby/app.rb', line 1643

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



638
639
640
641
642
# File 'lib/roby/app.rb', line 638

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



2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
# File 'lib/roby/app.rb', line 2119

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



2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
# File 'lib/roby/app.rb', line 2136

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)


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

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)


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

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)


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

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?



2873
2874
2875
2876
2877
2878
2879
# File 'lib/roby/app.rb', line 2873

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

#auto_require_modelsObject



1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
# File 'lib/roby/app.rb', line 1971

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



2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
# File 'lib/roby/app.rb', line 2072

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) ⇒ 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)


3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
# File 'lib/roby/app.rb', line 3331

def autodiscover_tests_in?(path)
    suffix = File.basename(path)
    if path == File.join(app_dir, "test", "robots")
        false
    elsif robots.has_robot?(suffix) && ![robot_name, robot_type].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



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
# File 'lib/roby/app.rb', line 1080

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



1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
# File 'lib/roby/app.rb', line 1032

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

    STDOUT.sync = true

    load_base_config
    unless @log_dir
        find_and_create_log_dir
        lock_log_dir
    end
    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)


1028
1029
1030
# File 'lib/roby/app.rb', line 1028

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



1413
1414
1415
1416
1417
1418
1419
1420
1421
# File 'lib/roby/app.rb', line 1413

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



1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
# File 'lib/roby/app.rb', line 1152

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



2429
2430
2431
# File 'lib/roby/app.rb', line 2429

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

#clear_configObject



2965
2966
2967
2968
2969
2970
2971
2972
# File 'lib/roby/app.rb', line 2965

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



1866
1867
1868
# File 'lib/roby/app.rb', line 1866

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)


3033
3034
3035
3036
# File 'lib/roby/app.rb', line 3033

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



3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
# File 'lib/roby/app.rb', line 3039

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



2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
# File 'lib/roby/app.rb', line 2591

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



1297
1298
1299
1300
# File 'lib/roby/app.rb', line 1297

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)


1650
1651
1652
# File 'lib/roby/app.rb', line 1650

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

#define_actions_moduleObject



2048
2049
2050
2051
2052
# File 'lib/roby/app.rb', line 2048

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



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

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)


1388
1389
1390
# File 'lib/roby/app.rb', line 1388

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



2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
# File 'lib/roby/app.rb', line 2008

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")) ⇒ 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>)


3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
# File 'lib/roby/app.rb', line 3308

def discover_test_files(all: true, only_self: false, base_dir: File.join(app_dir, "test"))
    if all
        test_files = each_test_file_in(base_dir).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)


3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
# File 'lib/roby/app.rb', line 3015

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



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

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)



1394
1395
1396
1397
1398
1399
1400
1401
1402
# File 'lib/roby/app.rb', line 1394

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



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

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



3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
# File 'lib/roby/app.rb', line 3364

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/



3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
# File 'lib/roby/app.rb', line 3392

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, &block) ⇒ Object

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



3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
# File 'lib/roby/app.rb', line 3346

def each_test_file_in(dir, &block)
    return enum_for(__method__, dir) unless block_given?

    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
        Find.prune if File.directory?(path) && !autodiscover_tests_in?(path)

        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



3380
3381
3382
3383
# File 'lib/roby/app.rb', line 3380

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



3194
3195
3196
# File 'lib/roby/app.rb', line 3194

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



697
698
699
700
701
702
703
704
705
706
707
708
709
# File 'lib/roby/app.rb', line 697

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:



3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
# File 'lib/roby/app.rb', line 3120

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



1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
# File 'lib/roby/app.rb', line 1553

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)
        new_dirs = []

        dir = 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)


2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
# File 'lib/roby/app.rb', line 2914

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



2881
2882
2883
# File 'lib/roby/app.rb', line 2881

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



2772
2773
2774
2775
2776
2777
2778
2779
# File 'lib/roby/app.rb', line 2772

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>)


2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
# File 'lib/roby/app.rb', line 2523

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



2762
2763
2764
2765
2766
2767
2768
2769
# File 'lib/roby/app.rb', line 2762

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>)


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
2759
# File 'lib/roby/app.rb', line 2707

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>)


2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
# File 'lib/roby/app.rb', line 2637

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)


2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
# File 'lib/roby/app.rb', line 2946

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

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



1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
# File 'lib/roby/app.rb', line 1870

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



1935
1936
1937
1938
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
1968
1969
# File 'lib/roby/app.rb', line 1935

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



976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
# File 'lib/roby/app.rb', line 976

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



2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
# File 'lib/roby/app.rb', line 2096

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)



1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
# File 'lib/roby/app.rb', line 1995

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.



1367
1368
1369
1370
1371
1372
1373
1374
# File 'lib/roby/app.rb', line 1367

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



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

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)


1377
1378
1379
# File 'lib/roby/app.rb', line 1377

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

#lock_log_dirObject



1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
# File 'lib/roby/app.rb', line 1053

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"
    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



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

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.



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

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.



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

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



1702
1703
1704
1705
1706
1707
1708
1709
# File 'lib/roby/app.rb', line 1702

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



1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
# File 'lib/roby/app.rb', line 1714

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



1592
1593
1594
1595
1596
1597
1598
# File 'lib/roby/app.rb', line 1592

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



1615
1616
1617
1618
1619
1620
1621
# File 'lib/roby/app.rb', line 1615

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



1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
# File 'lib/roby/app.rb', line 1680

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



1693
1694
1695
1696
# File 'lib/roby/app.rb', line 1693

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



1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
# File 'lib/roby/app.rb', line 1659

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


754
755
756
757
# File 'lib/roby/app.rb', line 754

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)



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

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)


2985
2986
2987
2988
2989
2990
2991
# File 'lib/roby/app.rb', line 2985

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



2840
2841
2842
# File 'lib/roby/app.rb', line 2840

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



3243
3244
3245
3246
3247
# File 'lib/roby/app.rb', line 3243

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



1334
1335
1336
1337
1338
1339
1340
# File 'lib/roby/app.rb', line 1334

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



1310
1311
1312
1313
1314
1315
1316
# File 'lib/roby/app.rb', line 1310

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



1288
1289
1290
1291
1292
1293
# File 'lib/roby/app.rb', line 1288

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)



1259
1260
1261
1262
1263
1264
1265
# File 'lib/roby/app.rb', line 1259

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)


3286
3287
3288
3289
3290
# File 'lib/roby/app.rb', line 3286

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)



1279
1280
1281
1282
1283
1284
1285
# File 'lib/roby/app.rb', line 1279

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



1269
1270
1271
1272
1273
1274
1275
# File 'lib/roby/app.rb', line 1269

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



1324
1325
1326
1327
1328
1329
1330
# File 'lib/roby/app.rb', line 1324

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:



3212
3213
3214
3215
3216
3217
3218
3219
# File 'lib/roby/app.rb', line 3212

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



1383
1384
1385
# File 'lib/roby/app.rb', line 1383

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



1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
# File 'lib/roby/app.rb', line 1195

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
            plan.event_logger.sync = true
            start_log_server(logfile_path, log_server_options)
            Roby.info "log server started"
        else
            plan.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



3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
# File 'lib/roby/app.rb', line 3170

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.



1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
# File 'lib/roby/app.rb', line 1180

def prepare_event_log
    require "roby/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 })
    plan.event_logger = DRoby::EventLogger.new(logfile, log_timepoints: log_timepoints?)
    plan.execution_engine.event_logger = plan.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



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

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



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

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



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

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



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

attr_predicate :public_logs?, true

#public_rest_interface=(flag) ⇒ Object

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



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

attr_predicate :public_rest_interface?, true

#public_rest_interface?Object

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



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

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.



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

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.



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

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.



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

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.



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

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



2394
2395
2396
# File 'lib/roby/app.rb', line 2394

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



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

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

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



2894
2895
2896
2897
2898
2899
2900
2901
2902
# File 'lib/roby/app.rb', line 2894

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



1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
# File 'lib/roby/app.rb', line 1423

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



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

def register_server(name, port); end

#reload_actionsObject

Reload action models defined in models/actions/

It is a subset of #reload_models



3069
3070
3071
3072
3073
3074
# File 'lib/roby/app.rb', line 3069

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/



2975
2976
2977
2978
2979
2980
2981
2982
# File 'lib/roby/app.rb', line 2975

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/



3061
3062
3063
3064
# File 'lib/roby/app.rb', line 3061

def reload_models
    clear_models
    require_models
end

#reload_plannersObject



3076
3077
3078
3079
3080
3081
# File 'lib/roby/app.rb', line 3076

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:



3296
3297
3298
# File 'lib/roby/app.rb', line 3296

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:



3225
3226
3227
# File 'lib/roby/app.rb', line 3225

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

#require(absolute_path) ⇒ Object



1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
# File 'lib/roby/app.rb', line 1884

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



1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
# File 'lib/roby/app.rb', line 1898

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



2067
2068
2069
2070
# File 'lib/roby/app.rb', line 2067

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



2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
# File 'lib/roby/app.rb', line 2183

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



714
715
716
717
718
# File 'lib/roby/app.rb', line 714

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



1601
1602
1603
1604
# File 'lib/roby/app.rb', line 1601

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



1607
1608
1609
# File 'lib/roby/app.rb', line 1607

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



2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
# File 'lib/roby/app.rb', line 2378

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



2363
2364
2365
# File 'lib/roby/app.rb', line 2363

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

#restarting?Boolean

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

Returns:

  • (Boolean)


2369
2370
2371
# File 'lib/roby/app.rb', line 2369

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.



1512
1513
1514
# File 'lib/roby/app.rb', line 1512

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)


3410
3411
3412
# File 'lib/roby/app.rb', line 3410

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

#robot_nameString?

The robot name

Returns:

  • (String, nil)


1499
1500
1501
# File 'lib/roby/app.rb', line 1499

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)


1989
1990
1991
# File 'lib/roby/app.rb', line 1989

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

#robot_typeString?

The robot type

Returns:

  • (String, nil)


1506
1507
1508
# File 'lib/roby/app.rb', line 1506

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>)


2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
# File 'lib/roby/app.rb', line 2997

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



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

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



1248
1249
1250
# File 'lib/roby/app.rb', line 1248

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



2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
# File 'lib/roby/app.rb', line 2410

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



1239
1240
1241
# File 'lib/roby/app.rb', line 1239

def run_shutdown_blocks
    shutdown_handlers.each(&:call)
end

#running?Boolean

Whether we’re inside #run

Returns:

  • (Boolean)


2356
2357
2358
# File 'lib/roby/app.rb', line 2356

def running?
    @running
end

#self_file?(path) ⇒ Boolean

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

Returns:

  • (Boolean)


2932
2933
2934
# File 'lib/roby/app.rb', line 2932

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



1118
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
# File 'lib/roby/app.rb', line 1118

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



2781
2782
2783
2784
2785
2786
2787
# File 'lib/roby/app.rb', line 2781

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.



1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
# File 'lib/roby/app.rb', line 1805

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



2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
# File 'lib/roby/app.rb', line 2299

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



2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
# File 'lib/roby/app.rb', line 2169

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



2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
# File 'lib/roby/app.rb', line 2224

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



2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
# File 'lib/roby/app.rb', line 2256

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



2831
2832
2833
# File 'lib/roby/app.rb', line 2831

def shell
    self.shell = true
end

#shell_interface_has_clients?Boolean

Returns:

  • (Boolean)


2207
2208
2209
2210
2211
# File 'lib/roby/app.rb', line 2207

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



1231
1232
1233
1234
1235
1236
1237
# File 'lib/roby/app.rb', line 1231

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

#simulationObject



2822
2823
2824
# File 'lib/roby/app.rb', line 2822

def simulation
    self.simulation = true
end

#singleObject



2835
2836
2837
# File 'lib/roby/app.rb', line 2835

def single
    @single = true
end

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



2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
# File 'lib/roby/app.rb', line 2437

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



2433
2434
2435
# File 'lib/roby/app.rb', line 2433

def stop
    call_plugins(:stop, self)
end

#stop_log_serverObject



2467
2468
2469
2470
2471
2472
# File 'lib/roby/app.rb', line 2467

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



2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
# File 'lib/roby/app.rb', line 2325

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



2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
# File 'lib/roby/app.rb', line 2281

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



2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
# File 'lib/roby/app.rb', line 2026

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



2827
2828
2829
# File 'lib/roby/app.rb', line 2827

def testing
    self.testing = true
end

#time_tagObject

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



1625
1626
1627
# File 'lib/roby/app.rb', line 1625

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



3199
3200
3201
3202
3203
# File 'lib/roby/app.rb', line 3199

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



2959
2960
2961
2962
2963
# File 'lib/roby/app.rb', line 2959

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



1065
1066
1067
1068
# File 'lib/roby/app.rb', line 1065

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

#update_load_pathObject



2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
# File 'lib/roby/app.rb', line 2150

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



1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
# File 'lib/roby/app.rb', line 1442

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