Class: Main

Inherits:
Object
  • Object
show all
Defined in:
lib/binp/cli/main.rb

Class Method Summary collapse

Class Method Details

.display(config, is_all, file, is_reset) ⇒ Object



170
171
172
173
174
175
176
177
# File 'lib/binp/cli/main.rb', line 170

def self.display(config, is_all, file, is_reset)
  # 表示用文字列を取得
  result = parse_and_format(config, is_all, file)

  # 一度ターミナルをリセットして表示し直す
  printf "\033c" if is_reset
  Formatador.display_compact_table(result)
end

.parse_and_format(config, is_all, file) ⇒ Object

バイナリファイルをパースして、出力用にフォーマットする



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
# File 'lib/binp/cli/main.rb', line 142

def self.parse_and_format(config, is_all, file)
  uint8_array = read_binary_file(file);

  # バイナリパース
  raw_result = BinParser.parse(uint8_array, config)

  # パース結果を出力用に加工
  result = raw_result.map { |e|
    e['type'] = e['type'][:name]

    # FLAGS では endianness が無い場合があるのでチェックしてから設定
    if e['endianness']
      e['endianness'] = e['endianness'][:name]
    end

    # layout は出力量が多すぎるので削除
    e.delete('layout')
    e
  }

  # all フラグが立っていない場合、 name と value のみ抽出
  if !is_all
      result.map! { |e| { 'name' => e['name'], 'value' => e['value']} }
  end

  result
end

.parse_option(argv) ⇒ Object



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
# File 'lib/binp/cli/main.rb', line 37

def self.parse_option(argv)
  options = {
      all: false,
      polling: 0,
      watch: false
  }
  op = OptionParser.new
  op.banner = 'Usage: binp [options] FILE'

  op.on('-c VALUE', '--config VALUE', '設定ファイルパス') { |v| options[:config] = v }
  op.on('-a', '--all', 'name, value 以外のすべての項目(endianness, offset, size, type)を表示する') { |v| options[:all] = true }
  op.on('-p VALUE', '--polling VALUE', '指定したポーリング間隔(ミリ秒)で再表示します') { |v| options[:polling] = v }
  op.on('-w', '--watch', 'ファイル更新時に再表示します') { |v| options[:watch] = true }
  begin
    op.parse!(argv)
  rescue OptionParser::InvalidOption => e
    STDERR.puts 'ERROR: オプションのパースに失敗しました。'
    STDERR.puts op.to_s
    exit(1);
  end

  # 必須オプション `-c` のチェック
  unless options[:config]
    STDERR.puts 'ERROR: 必須オプション `-c, --config` が指定されていません。'
    STDERR.puts op.to_s
    exit(1);
  end

  # ファイル指定があるかのチェック
  if argv.size == 0
    STDERR.puts 'ERROR: FILE が指定されていません。'
    STDERR.puts op.to_s
    exit(1);
  end

  [options, argv]
end

.read_binary_file(binary_file_path) ⇒ Object



110
111
112
113
114
# File 'lib/binp/cli/main.rb', line 110

def self.read_binary_file(binary_file_path)
  File.open(binary_file_path, 'rb') { |f|
    f.each_byte.to_a
  }
end

.read_config_file(config_file_path) ⇒ Object



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
# File 'lib/binp/cli/main.rb', line 75

def self.read_config_file(config_file_path)
  config = File.open(config_file_path, 'rb') { |f|
    YAML.load_file(f)
  }
  config.each_with_index { |e, i|
    type = BinParserElement::Type.constants.find { |type|
      BinParserElement::Type.const_get(type)[:name] == e['type']
    }

    # YAML 記載の type に対応した Type オブジェクトに差し替える
    if type
      e['type'] = BinParserElement::Type.const_get(type)
    else
      STDERR.puts "#{i} 番目の type の値が不正です('#{e['type']}')。UINT8, UINT16, UINT32, UINT64, INT8, INT16, INT32 or INT64."
      exit(1)
    end

    endianness = BinParserElement::Endianness.constants.find { |endianness|
      BinParserElement::Endianness.const_get(endianness)[:name] == e['endianness']
    }

    # YAML 記載の endianness に対応した Endianness オブジェクトに差し替える
    if e['type'] != BinParserElement::Type::FLAGS
      if endianness
        e['endianness'] = BinParserElement::Endianness.const_get(endianness)
      else
        STDERR.puts "#{i} 番目の endianness の値が不正です('#{e['endianness']}')。LITTLE or BIG を指定してください。"
        exit(1)
      end
    end
  }

  config
end

.run(argv) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/binp/cli/main.rb', line 12

def self.run(argv)
  begin
    # 引数パース
    opts, argv = parse_option(argv)

    # コンフィグファイル読み込み
    config = read_config_file(opts[:config])

    # watch オプションを確認し、フラグがたっていれば watch モードで実行
    if opts[:watch]
      watch(config, opts[:all], argv[0])
    elsif opts[:polling] != 0
      interval = opts[:polling].to_f / 1000.0
      loop do
        display(config, opts[:all], argv[0], true)
        sleep interval
      end
    else
      display(config, opts[:all], argv[0], false)
    end
  rescue Interrupt
    # do nothing
  end
end

.watch(config, is_all, file) ⇒ Object

watch モード(指定されたファイルが更新されるたびに結果を出力する)



117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# File 'lib/binp/cli/main.rb', line 117

def self.watch(config, is_all, file)
  # 初回の出力
  display(config, is_all, file, true)
  
  # ファイルの変更を監視し、変更があればターミナルに出力
  directory = Pathname.new(file).dirname.to_s
  listener = Listen.to(directory) do |modified, _added, _removed|
    modified_file = Pathname.new(modified.first).expand_path

    # 変更されたファイルが監視対象でなければ何もしない
    next unless modified_file == Pathname.new(file).expand_path

    # 出力
    display(config, is_all, modified_file, true)
  end

  listener.start
  begin
    sleep
  rescue Interrupt
    # do nothing
  end
end