Class: LogSimulator::PeakLogSimulator

Inherits:
Object
  • Object
show all
Defined in:
lib/peak_log_simulator.rb

Class Method Summary collapse

Class Method Details

.start(socket, filepath, timescale) {|true| ... } ⇒ Object

Yields:

  • (true)


6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/peak_log_simulator.rb', line 6

def self.start(socket,filepath,timescale)
  path = File.expand_path(filepath)
  puts 'Opening log file at path: ' + path

  unless File.exist? path
    puts 'No such file at path '+ path
    yield false
    return
  end

  time = 0
  File.open(path,'r+:utf-8') do |file|
    file.each_line do |line|
      timestamp_parse(line) do |_time,message|
        if time != 0
          sleep (_time - time) * timescale
        end
        if socket != nil
          socket.puts message
        end
        puts '<' + message
        time = _time
      end
    end
  end

  yield true
end

.timestamp_parse(line) ⇒ Object



35
36
37
38
39
# File 'lib/peak_log_simulator.rb', line 35

def self.timestamp_parse (line)
  line.scan(/N\|(\d+)\|RECEIVE << (.*)/) do |timeStr,message|
    yield timeStr.to_i,message
  end
end