Class: Toys::Loader
- Inherits:
-
Object
- Object
- Toys::Loader
- Defined in:
- lib/toys/loader.rb
Overview
The Loader service loads tools from configuration files, and finds the appropriate tool given a set of command line arguments.
Instance Method Summary collapse
-
#add_block(high_priority: false, name: nil, &block) ⇒ self
Add a configuration block to the loader.
-
#add_path(paths, high_priority: false) ⇒ self
Add a configuration file/directory to the loader.
-
#has_subtools?(words) ⇒ Boolean
Returns true if the given path has at least one subtool.
-
#initialize(index_file_name: nil, preload_dir_name: nil, preload_file_name: nil, data_dir_name: nil, lib_dir_name: nil, middleware_stack: [], extra_delimiters: "", mixin_lookup: nil, middleware_lookup: nil, template_lookup: nil) ⇒ Loader
constructor
Create a Loader.
-
#list_subtools(words, recursive: false, include_hidden: false) ⇒ Array<Toys::Tool>
Returns a list of subtools for the given path, loading from the configuration if necessary.
-
#lookup(args) ⇒ Array(Toys::Tool,Array<String>)
Given a list of command line arguments, find the appropriate tool to handle the command, loading it from the configuration if necessary.
-
#lookup_specific(words) ⇒ Toys::Tool?
Given a tool name, looks up the specific tool, loading it from the configuration if necessary.
-
#split_path(str) ⇒ Array<String>
Splits the given path using the delimiters configured in this Loader.
Constructor Details
#initialize(index_file_name: nil, preload_dir_name: nil, preload_file_name: nil, data_dir_name: nil, lib_dir_name: nil, middleware_stack: [], extra_delimiters: "", mixin_lookup: nil, middleware_lookup: nil, template_lookup: nil) ⇒ Loader
Create a Loader
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/toys/loader.rb', line 47 def initialize( index_file_name: nil, preload_dir_name: nil, preload_file_name: nil, data_dir_name: nil, lib_dir_name: nil, middleware_stack: [], extra_delimiters: "", mixin_lookup: nil, middleware_lookup: nil, template_lookup: nil ) if index_file_name && ::File.extname(index_file_name) != ".rb" raise ::ArgumentError, "Illegal index file name #{index_file_name.inspect}" end @mutex = ::Monitor.new @mixin_lookup = mixin_lookup || ModuleLookup.new @template_lookup = template_lookup || ModuleLookup.new @middleware_lookup = middleware_lookup || ModuleLookup.new @index_file_name = index_file_name @preload_file_name = preload_file_name @preload_dir_name = preload_dir_name @data_dir_name = data_dir_name @lib_dir_name = lib_dir_name @loading_started = false @worklist = [] @tool_data = {} @max_priority = @min_priority = 0 @stop_priority = BASE_PRIORITY @min_loaded_priority = 999_999 @middleware_stack = Middleware.stack(middleware_stack) @delimiter_handler = DelimiterHandler.new(extra_delimiters) get_tool([], BASE_PRIORITY) end |
Instance Method Details
#add_block(high_priority: false, name: nil, &block) ⇒ self
Add a configuration block to the loader.
117 118 119 120 121 122 123 124 125 126 |
# File 'lib/toys/loader.rb', line 117 def add_block(high_priority: false, name: nil, &block) name ||= "(Code block #{block.object_id})" @mutex.synchronize do raise "Cannot add a block after tool loading has started" if @loading_started priority = high_priority ? (@max_priority += 1) : (@min_priority -= 1) source = SourceInfo.create_proc_root(block, name, @data_dir_name, @lib_dir_name) @worklist << [source, [], priority] end self end |
#add_path(paths, high_priority: false) ⇒ self
Add a configuration file/directory to the loader.
91 92 93 94 95 96 97 98 99 100 101 102 |
# File 'lib/toys/loader.rb', line 91 def add_path(paths, high_priority: false) paths = Array(paths) @mutex.synchronize do raise "Cannot add a path after tool loading has started" if @loading_started priority = high_priority ? (@max_priority += 1) : (@min_priority -= 1) paths.each do |path| source = SourceInfo.create_path_root(path, @data_dir_name, @lib_dir_name) @worklist << [source, [], priority] end end self end |
#has_subtools?(words) ⇒ Boolean
Returns true if the given path has at least one subtool. Loads from the configuration if necessary.
207 208 209 210 211 212 213 214 215 216 217 |
# File 'lib/toys/loader.rb', line 207 def has_subtools?(words) # rubocop:disable Naming/PredicateName load_for_prefix(words) len = words.length all_cur_definitions.each do |tool| name = tool.full_name if !name.empty? && name.length > len && name.slice(0, len) == words return true end end false end |
#list_subtools(words, recursive: false, include_hidden: false) ⇒ Array<Toys::Tool>
Returns a list of subtools for the given path, loading from the configuration if necessary.
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
# File 'lib/toys/loader.rb', line 182 def list_subtools(words, recursive: false, include_hidden: false) load_for_prefix(words) found_tools = [] len = words.length all_cur_definitions.each do |tool| name = tool.full_name next if name.empty? if recursive next if name.length <= len || name.slice(0, len) != words else next unless name.slice(0..-2) == words end found_tools << tool end sort_tools_by_name(found_tools) include_hidden ? found_tools : filter_hidden_subtools(found_tools) end |
#lookup(args) ⇒ Array(Toys::Tool,Array<String>)
Given a list of command line arguments, find the appropriate tool to handle the command, loading it from the configuration if necessary. This always returns a tool. If the specific tool path is not defined and cannot be found in any configuration, it finds the nearest namespace that would contain that tool, up to the root tool.
Returns a tuple of the found tool, and the array of remaining arguments that are not part of the tool name and should be passed as tool args.
141 142 143 144 145 146 147 148 149 |
# File 'lib/toys/loader.rb', line 141 def lookup(args) orig_prefix, args = @delimiter_handler.find_orig_prefix(args) prefix = orig_prefix loop do tool = lookup_specific(prefix) return [tool, args.slice(prefix.length..-1)] if tool prefix = prefix.slice(0..-2) end end |
#lookup_specific(words) ⇒ Toys::Tool?
Given a tool name, looks up the specific tool, loading it from the configuration if necessary.
If there is an active tool, returns it; otherwise, returns the highest
priority tool that has been defined. If no tool has been defined with
the given name, returns nil
.
163 164 165 166 167 168 169 |
# File 'lib/toys/loader.rb', line 163 def lookup_specific(words) words = @delimiter_handler.split_path(words.first) if words.size == 1 load_for_prefix(words) tool = get_tool_data(words).cur_definition finish_definitions_in_tree(words) if tool tool end |
#split_path(str) ⇒ Array<String>
Splits the given path using the delimiters configured in this Loader. You may pass in either an array of strings, or a single string possibly delimited by path separators. Always returns an array of strings.
227 228 229 230 |
# File 'lib/toys/loader.rb', line 227 def split_path(str) return str.map(&:to_s) if str.is_a?(::Array) @delimiter_handler.split_path(str.to_s) end |