Class: DockerCake

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(url: nil, user: nil, password: nil) ⇒ DockerCake

Returns a new instance of DockerCake.



9
10
11
# File 'lib/docker_cake.rb', line 9

def initialize(url: nil, user: nil, password: nil)
  @registry ||= RegistryApiClient.new(user: user, password: password, url: url)
end

Instance Attribute Details

#registryObject

Returns the value of attribute registry.



7
8
9
# File 'lib/docker_cake.rb', line 7

def registry
  @registry
end

Instance Method Details

#compare_versions(repo_name, filter: /.+/, max: 10) ⇒ Object



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
# File 'lib/docker_cake.rb', line 18

def compare_versions(repo_name, filter: /.+/, max: 10)
  tags = registry.tags(repo_name, false)['tags']

  if ENV['DEBUG']
    puts "Found tags: #{tags.join(", ")}"
  end

  tags.select! {|t| t =~ filter}

  selected_tags = tags.last(max)

  if ENV['DEBUG']
    puts "Analyzing #{selected_tags.size} tags: #{selected_tags.join(", ")}..."
  end

  manifests = {}
  procs = selected_tags.map do |tag|
    lambda { manifests[tag] = registry.manifest_layers(repo_name, tag) }
  end
  registry.in_parallel(procs)
  #selected_tags.each do |tag|
  #  manifests[tag] = registry.manifest_layers(repo_name, tag)
  #  #pp manifests[tag]
  #end

  manifests = manifests.sort_by do |tag, list|
    list.map {|l| l['created'] }.max
  end.to_h

  images_map = {}
  counted_layers = []
  result = []

  manifests.each do |tag, layers|
    stats = {name: tag, size: 0, add_img: 0, reuse_img: 0, add_size: 0, layers: 0, date: Time.at(0).to_s}

    map_key = manifests[tag].map {|l| l['blobSum']}.join(',')
    if images_map[map_key]
      stats[:same_as] = images_map[map_key]
    end
    images_map[map_key] ||= tag

    manifests[tag].each do |layer|
      stats[:size] += layer['size'] || 0
      stats[:layers] += 1
      stats[:date] = layer['created'] if layer['created'] > stats[:date]

      layer_key = layer['blobSum'] + "_" + layer['id']

      if counted_layers.include?(layer_key)
        stats[:reuse_img] += 1
      else
        stats[:add_img] += 1
        stats[:add_size] += layer['size'] || 0
      end

      counted_layers << layer_key
    end

    #puts "#{tag} -> #{stats}"
    result << stats
  end

  puts print_comparison(result)
end


84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/docker_cake.rb', line 84

def print_comparison(result)
  rows = result.map do |stats|
    [
      stats[:name],
      DateTime.parse(stats[:date]).strftime("%F %T"),
      size_to_human(stats[:size]),
      stats[:layers],
      stats[:reuse_img],
      stats[:add_img],
      size_to_human(stats[:add_size]),
      stats[:same_as]
    ]
  end

  table = Terminal::Table.new(headings: ['Tag', 'Date', 'Size', 'Layers', 'Reuse Layers', 'Extra Layers', 'Extra Size', 'Same as'], rows: rows)
end


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
# File 'lib/docker_cake.rb', line 101

def print_manifest(manifest)
  rows = manifest.map do |layer|
    cmd = layer['container_config'] && layer['container_config']['Cmd'] || ['']
    cmd = cmd.join(" ").gsub('\n', "\n").sub(/#{'/bin/sh -c'}\s+/, '')
    if cmd.start_with?('#(nop)')
      cmd.sub!(/#\(nop\)\s+/, '')
    else
      cmd = "RUN #{cmd}"
    end

    cmd.gsub!("\t", "    ")

    shorter = []
    cmd.lines.each do |line|
      shorter.push(*line.scan(/.{1,90}/))
    end

    [
      layer['id'][0...8],
      DateTime.parse(layer['created']).strftime("%F %T"),
      shorter.join("\n"),
      size_to_human(layer['size'])
    ]
  end

  rows << :separator << [nil, nil, 'TOTAL', size_to_human(manifest.sum {|layer| layer['size'].to_i })]

  table = Terminal::Table.new(headings: ['ID', 'Date', 'CMD', 'Size'], rows: rows)
end

#repo_info(name, tag = 'latest') ⇒ Object



13
14
15
16
# File 'lib/docker_cake.rb', line 13

def repo_info(name, tag = 'latest')
  manifest = registry.manifest_layers(name, tag)
  puts print_manifest(manifest)
end

#size_to_human(size) ⇒ Object



131
132
133
134
135
136
137
138
139
140
141
142
143
# File 'lib/docker_cake.rb', line 131

def size_to_human(size)
  return '0' unless size

  if size > 1_000_000_000
    "#{(size / 1_000_000_000.0).round(3)} GB"
  elsif size > 1_000_000
    "#{(size / 1_000_000.0).round(3)} MB"
  elsif size > 1_000
    "#{(size / 1_000.0).round(3)} KB"
  else
    "#{size} Bytes"
  end
end