Sha256: fc93a88e9ac8243f3e6fd0e7aa736c55b5a304f111f0d7bf3a15eb5aa87d4b6f
Contents?: true
Size: 1.56 KB
Versions: 2
Compression:
Stored size: 1.56 KB
Contents
require "map" require "mvcli/router/pattern" require "mvcli/argv" module MVCLI class Router RoutingError = Class.new StandardError InvalidRoute = Class.new RoutingError def initialize(actions = nil) @actions = actions || Map.new @routes = [] @macros = [] end def macro(options) @macros.push Macro.new options end def match(options) pattern, action = options.first options.delete pattern @routes << Route.new(pattern, @actions, action, options) end def call(command) argv = @macros.reduce(command.argv) do |args, macro| macro.expand args end @routes.each do |route| if match = route.match(argv) return match.call command end end fail RoutingError, "no route matches '#{command.argv.join ' '}'" end class Macro def initialize(options) @pattern, @expansion = options.first end def expand(argv) argv.join(" ").gsub(@pattern, @expansion).split /\s+/ end end class Route def initialize(pattern, actions, action, options = {}) @pattern = Pattern.new pattern.to_s @actions, @action, @options = actions, action, options end def match(argv) argv = MVCLI::Argv.new argv match = @pattern.match(argv.arguments) if match.matches? proc do |command| action = @actions[@action] or fail "no action found for #{@action}" action.call command, match.bindings end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mvcli-0.0.14 | lib/mvcli/router.rb |
mvcli-0.0.13 | lib/mvcli/router.rb |