Class: AsiBod::Cli
Constant Summary collapse
- GPARENT =
GLI::Command::PARENT
- KEY_ORDER =
{ address: 0, name: 1, description: 2, scale: 3, units: 4, read: 5, write: 6 }
Instance Attribute Summary collapse
-
#asi ⇒ Object
readonly
Returns the value of attribute asi.
-
#bod ⇒ Object
readonly
Returns the value of attribute bod.
Instance Method Summary collapse
-
#main ⇒ Object
Main body.
- #which_keys(options) ⇒ Object
Instance Attribute Details
#asi ⇒ Object (readonly)
Returns the value of attribute asi.
8 9 10 |
# File 'lib/asi_bod/cli.rb', line 8 def asi @asi end |
#bod ⇒ Object (readonly)
Returns the value of attribute bod.
9 10 11 |
# File 'lib/asi_bod/cli.rb', line 9 def bod @bod end |
Instance Method Details
#main ⇒ Object
Main body. Does all the CLI processing and dispatching
37 38 39 40 41 42 43 44 45 46 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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
# File 'lib/asi_bod/cli.rb', line 37 def main program_desc 'Manipulate and view the ASIObjectDictionary.xml and BOD.json files' version AsiBod::VERSION subcommand_option_handling :normal arguments :strict sort_help :manually desc 'Path to the ASIObjectDictionary XML file' default_value Asi.default_file_path flag [:a, :asi_file] desc 'Path to the BOD JSON file' default_value Bod.default_file_path flag [:b, :bod_file] desc 'View Address' switch :address_view, default_value: true desc 'View Name' switch :name_view, default_value: true desc 'View Description' switch :description_view, default_value: true desc 'View Scale' switch [:s, :scale_view] desc 'View Units' switch [:u, :units_view] desc 'View the data' command :view do |view| view.desc 'Pretty Print output of the simplified ASI ObjectDictionary as a hash' view.command :asi do |view_asi| view.desc 'Output as Json instead of CSV' view.switch [:j, :json] view_asi.action do |, , args| if [GPARENT][:json] puts JSON.pretty_generate asi.hash_data else Dict.specific_keys_per_node( asi.hash_data, which_keys()) do |address, node| puts node end end end end view.desc 'Pretty Print output of the simplified BOD as a hash' view.command :bod do |view_bod| view_bod.action do |,,args| if [GPARENT][:json] puts JSON.pretty_generate bod.hash_data else Dict.specific_keys_per_node( bod.hash_data, which_keys()).each_pair do |address, node| puts node end end end end view.default_command :bod end desc 'Find a node in one or both of the dictionaries' command :find do |find| find.desc 'Search the asi dictionary' find.switch [:a, :asi] find.desc 'Search the bod dictionary' find.switch [:b, :bod] find.desc 'Find by register address' find.long_desc 'Find by register address. ' + 'Must select at least one of ' + 'asi or bod and specify search_term' find.arg 'address' find.command :by_address do |find_by_address| find_by_address.action do |, , args| address = args.first # puts "find_by_address global_options #{global_options.inspect} options: #{options.inspect} args: #{args.inspect}" puts "asi: => " + "#{Dict.node_line(asi.hash_data[address.to_i], which_keys(global_options))}" if [GPARENT][:asi] puts "bod: => " + "#{Dict.node_line(bod.hash_data[address.to_i], which_keys(global_options))}" if [GPARENT][:bod] end end find.desc 'Find by the substring of a key' find.long_desc 'Find by the substring of ' + 'a Must select at least one of ' + 'asi or bod and specify search_term' find.arg 'node_key' find.arg 'substring' find.command :by_key_substring do |find_by_key_substring| find_by_key_substring.action do |, , args| key = args[0].to_sym substring = args[1] if [GPARENT][:asi] puts "asi: key: #{key} substring: #{substring} => " Dict.find_by_key_substring(asi.hash_data, key, substring, which_keys() ).each_pair do |address, node| puts node end end if [GPARENT][:bod] puts "bod: key: #{key} substring: #{substring} => " Dict.find_by_key_substring(bod.hash_data, key, substring, which_keys() ).each_pair do |address, node| puts node end end end end end desc 'Merge the Description from asi to bod' long_desc 'Merge the Description from asi to bod ' + 'Do not merge if Description has "Reserved" in it ' + 'Or if the Bod doesnt have the key' command :merge do |merge| merge.desc 'Output Json' merge.switch [:j, :json] merge.action do |,,args| raw_result = Dict.merge(asi.hash_data, bod.hash_data) result = if [:json] JSON.pretty_generate raw_result else raw_result.pretty_inspect end puts result end end pre do |, command, , args| # Pre logic here # Return true to proceed; false to abort and not call the # chosen command # Use skips_pre before a command to skip this block # on that command only @asi = AsiBod::Asi.new() @bod = AsiBod::Bod.new() end post do |, command, , args| # Post logic here # Use skips_post before a command to skip this # block on that command only end on_error do |exception| # Error logic here # return false to skip default error handling true end exit run(ARGV) end |
#which_keys(options) ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/asi_bod/cli.rb', line 23 def which_keys() .each_with_object([]) do |(k,v), memo| if k.is_a?(String) && k.include?('_view') # Its a view key next unless [k] # Strip off the '_view' and convert to a symbol key = k[0..(k.index('_view') - 1)].to_sym # Store them in KEY_ORDER memo[KEY_ORDER[key]] = key end end.compact end |