Class: Peephole::Logline

Inherits:
Object
  • Object
show all
Defined in:
app/models/peephole/logline.rb

Defined Under Namespace

Modules: TYPE

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(line, num) ⇒ Logline

Returns a new instance of Logline.



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
# File 'app/models/peephole/logline.rb', line 63

def initialize(line, num)
  self.num = num

  case line
  when / Started (\w+) "(.+)" .+ at (.+)/
    self.method = $1
    self.target = $2
    self.started_at = Time.parse($3)
    self.type = TYPE::STARTED
  when /   Parameters: ({.+})/
    params = JSON.parse($1.gsub('=>', ':'))
    params.dup.each do |k, v|
      if v.is_a?(Hash)
        v.each do |k2, v2|
          params["#{k}[#{k2}]"] = v2
        end
        params.delete(k)
      end
    end
    self.params = params
    self.type = TYPE::PARAMS
  when / Completed (\d+)/
    self.status = $1
    self.type = TYPE::COMPLETED
  end
  if line =~ /\[(\w+\-\w+\-\w+\-\w+\-\w+)\] /
    self.uuid = $1
  end
end

Instance Attribute Details

#methodObject

Returns the value of attribute method.



4
5
6
# File 'app/models/peephole/logline.rb', line 4

def method
  @method
end

#numObject

Returns the value of attribute num.



3
4
5
# File 'app/models/peephole/logline.rb', line 3

def num
  @num
end

#paramsObject

Returns the value of attribute params.



5
6
7
# File 'app/models/peephole/logline.rb', line 5

def params
  @params
end

#started_atObject

Returns the value of attribute started_at.



4
5
6
# File 'app/models/peephole/logline.rb', line 4

def started_at
  @started_at
end

#statusObject

Returns the value of attribute status.



6
7
8
# File 'app/models/peephole/logline.rb', line 6

def status
  @status
end

#targetObject

Returns the value of attribute target.



4
5
6
# File 'app/models/peephole/logline.rb', line 4

def target
  @target
end

#typeObject

Returns the value of attribute type.



3
4
5
# File 'app/models/peephole/logline.rb', line 3

def type
  @type
end

#uuidObject

Returns the value of attribute uuid.



3
4
5
# File 'app/models/peephole/logline.rb', line 3

def uuid
  @uuid
end

Class Method Details

.each(path, page, &block) ⇒ Object



52
53
54
55
56
57
58
59
60
# File 'app/models/peephole/logline.rb', line 52

def each(path, page, &block)
  iterator = case path.to_s
  when /\.gz\z/
    Zlib::GzipReader.open(path).each
  else
    IO.foreach(path)
  end
  iterator.with_index(&block)
end

.first(page) ⇒ Object



15
16
17
# File 'app/models/peephole/logline.rb', line 15

def first(page)
  (page - 1) * Peephole.config.paginates_per
end

.last(page) ⇒ Object



19
20
21
# File 'app/models/peephole/logline.rb', line 19

def last(page)
  page * Peephole.config.paginates_per
end

.parse(line, i, loglines, logmap) ⇒ Object



38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'app/models/peephole/logline.rb', line 38

def parse(line, i, loglines, logmap)
  logline = new(line, i)
  case logline.type
  when TYPE::STARTED
    logmap[logline.uuid] = logline if logline.uuid.present?
  when TYPE::PARAMS
    line = logmap[logline.uuid].presence || logline
    line.params = logline.params
    loglines << line
  when TYPE::COMPLETED
    logmap[logline.uuid].try(:status=, logline.status)
  end
end

.where(path, page) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'app/models/peephole/logline.rb', line 23

def where(path, page)
  loglines = []
  logmap = {}
  eof = true
  each(path, page) do |line, i|
    next if i < first(page)
    if i >= last(page)
      eof = false
      break
    end
    parse(line, i, loglines, logmap)
  end
  [loglines, eof]
end