Class: Utils::ProcessJob

Inherits:
Object show all
Defined in:
lib/utils/probe_server.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args:, probe_server: nil) ⇒ ProcessJob

Returns a new instance of ProcessJob.



10
11
12
13
# File 'lib/utils/probe_server.rb', line 10

def initialize(args:, probe_server: nil)
  @id           = probe_server&.next_job_id
  @args         = Array(args)
end

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args.



17
18
19
# File 'lib/utils/probe_server.rb', line 17

def args
  @args
end

#idObject (readonly)

Returns the value of attribute id.



15
16
17
# File 'lib/utils/probe_server.rb', line 15

def id
  @id
end

#okObject



25
26
27
28
29
30
31
# File 'lib/utils/probe_server.rb', line 25

def ok
  case @ok
  when false then 'n'
  when true  then 'y'
  else            ''
  end
end

Instance Method Details

#as_jsonObject



47
48
49
# File 'lib/utils/probe_server.rb', line 47

def as_json(*)
  { type:, id:, args:, }
end

#inspectObject Also known as: to_s



41
42
43
# File 'lib/utils/probe_server.rb', line 41

def inspect
  ok_colorize("#{id} #{args.map { |a| a.include?(' ') ? a.inspect : a } * ' '}")
end

#ok_colorize(string) ⇒ Object



33
34
35
36
37
38
39
# File 'lib/utils/probe_server.rb', line 33

def ok_colorize(string)
  case @ok
  when false then string.white.on_red
  when true  then string.black.on_green
  else            string
  end
end

#to_jsonObject



51
52
53
# File 'lib/utils/probe_server.rb', line 51

def to_json(*)
  as_json.to_json(*)
end

#typeObject



21
22
23
# File 'lib/utils/probe_server.rb', line 21

def type
  'process_job'
end