Class: OptionParser::List
- Inherits:
-
Object
- Object
- OptionParser::List
- Defined in:
- lib/MrMurano/optparse.rb
Overview
Simple option list providing mapping from short and/or long option string to OptionParser::Switch and mapping from acceptable argument to matching pattern and converter pair. Also provides summary feature.
Instance Attribute Summary collapse
-
#atype ⇒ Object
readonly
Map from acceptable argument types to pattern and converter pairs.
-
#list ⇒ Object
readonly
List of all switches and summary string.
-
#long ⇒ Object
readonly
Map from long style option switches to actual switch objects.
-
#short ⇒ Object
readonly
Map from short style option switches to actual switch objects.
Instance Method Summary collapse
-
#accept(t, pat = /.*/m, &block) ⇒ Object
See OptionParser.accept.
-
#add_banner(to) ⇒ Object
:nodoc:.
-
#append(*args) ⇒ Object
Appends
switchat the tail of the list, and associates short, long and negated long options. -
#complete(id, opt, icase = false, *pat, &block) ⇒ Object
Searches list
idforoptand the optional patterns for completionpat. -
#compsys(*args, &block) ⇒ Object
:nodoc:.
-
#each_option(&block) ⇒ Object
Iterates over each option, passing the option to the
block. -
#initialize ⇒ List
constructor
Just initializes all instance variables.
-
#prepend(*args) ⇒ Object
Inserts
switchat the head of the list, and associates short, long and negated long options. -
#reject(t) ⇒ Object
See OptionParser.reject.
-
#search(id, key) ⇒ Object
Searches
keyinidlist. -
#summarize(*args, &block) ⇒ Object
Creates the summary table, passing each line to the
block(without newline).
Constructor Details
#initialize ⇒ List
Just initializes all instance variables.
769 770 771 772 773 774 |
# File 'lib/MrMurano/optparse.rb', line 769 def initialize @atype = {} @short = OptionMap.new @long = OptionMap.new @list = [] end |
Instance Attribute Details
#atype ⇒ Object (readonly)
Map from acceptable argument types to pattern and converter pairs.
755 756 757 |
# File 'lib/MrMurano/optparse.rb', line 755 def atype @atype end |
#list ⇒ Object (readonly)
List of all switches and summary string.
764 765 766 |
# File 'lib/MrMurano/optparse.rb', line 764 def list @list end |
#long ⇒ Object (readonly)
Map from long style option switches to actual switch objects.
761 762 763 |
# File 'lib/MrMurano/optparse.rb', line 761 def long @long end |
#short ⇒ Object (readonly)
Map from short style option switches to actual switch objects.
758 759 760 |
# File 'lib/MrMurano/optparse.rb', line 758 def short @short end |
Instance Method Details
#accept(t, pat = /.*/m, &block) ⇒ Object
See OptionParser.accept.
779 780 781 782 783 784 785 786 787 788 789 790 |
# File 'lib/MrMurano/optparse.rb', line 779 def accept(t, pat = /.*/m, &block) if pat pat.respond_to?(:match) or raise TypeError, "has no `match'", ParseError.filter_backtrace(caller(2)) else pat = t if t.respond_to?(:match) end unless block block = pat.method(:convert).to_proc if pat.respond_to?(:convert) end @atype[t] = [pat, block] end |
#add_banner(to) ⇒ Object
:nodoc:
900 901 902 903 904 905 906 907 |
# File 'lib/MrMurano/optparse.rb', line 900 def (to) # :nodoc: list.each do |opt| if opt.respond_to?(:add_banner) opt.(to) end end to end |
#append(*args) ⇒ Object
Appends switch at the tail of the list, and associates short, long and negated long options. Arguments are:
switch-
OptionParser::Switch instance to be inserted.
short_opts-
List of short style options.
long_opts-
List of long style options.
nolong_opts-
List of long style options with “no-” prefix.
append(switch, short_opts, long_opts, nolong_opts)
843 844 845 846 |
# File 'lib/MrMurano/optparse.rb', line 843 def append(*args) update(*args) @list.push(args[0]) end |
#complete(id, opt, icase = false, *pat, &block) ⇒ Object
Searches list id for opt and the optional patterns for completion pat. If icase is true, the search is case insensitive. The result is returned or yielded if a block is given. If it isn’t found, nil is returned.
865 866 867 868 |
# File 'lib/MrMurano/optparse.rb', line 865 def complete(id, opt, icase = false, *pat, &block) # [lb] added: id param to complete params __send__(id).complete(opt, icase, *pat, id, &block) end |
#compsys(*args, &block) ⇒ Object
:nodoc:
909 910 911 912 913 914 915 |
# File 'lib/MrMurano/optparse.rb', line 909 def compsys(*args, &block) # :nodoc: list.each do |opt| if opt.respond_to?(:compsys) opt.compsys(*args, &block) end end end |
#each_option(&block) ⇒ Object
Iterates over each option, passing the option to the block.
873 874 875 |
# File 'lib/MrMurano/optparse.rb', line 873 def each_option(&block) list.each(&block) end |
#prepend(*args) ⇒ Object
Inserts switch at the head of the list, and associates short, long and negated long options. Arguments are:
switch-
OptionParser::Switch instance to be inserted.
short_opts-
List of short style options.
long_opts-
List of long style options.
nolong_opts-
List of long style options with “no-” prefix.
prepend(switch, short_opts, long_opts, nolong_opts)
827 828 829 830 |
# File 'lib/MrMurano/optparse.rb', line 827 def prepend(*args) update(*args) @list.unshift(args[0]) end |
#reject(t) ⇒ Object
See OptionParser.reject.
795 796 797 |
# File 'lib/MrMurano/optparse.rb', line 795 def reject(t) @atype.delete(t) end |
#search(id, key) ⇒ Object
Searches key in id list. The result is returned or yielded if a block is given. If it isn’t found, nil is returned.
852 853 854 855 856 857 |
# File 'lib/MrMurano/optparse.rb', line 852 def search(id, key) if list = __send__(id) val = list.fetch(key) {return nil} block_given? ? yield(val) : val end end |
#summarize(*args, &block) ⇒ Object
Creates the summary table, passing each line to the block (without newline). The arguments args are passed along to the summarize method which is called on every option.
882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 |
# File 'lib/MrMurano/optparse.rb', line 882 def summarize(*args, &block) sum = [] list.reverse_each do |opt| if opt.respond_to?(:summarize) # perhaps OptionParser::Switch s = [] opt.summarize(*args) {|l| s << l} sum.concat(s.reverse) elsif !opt or opt.empty? sum << "" elsif opt.respond_to?(:each_line) sum.concat([*opt.each_line].reverse) else sum.concat([*opt.each].reverse) end end sum.reverse_each(&block) end |