Class: Indocker::DeploymentProgress
- Inherits:
-
Object
- Object
- Indocker::DeploymentProgress
- Defined in:
- lib/indocker/deployment_progress.rb
Instance Method Summary collapse
- #finish_building_container(container) ⇒ Object
- #finish_deploying_container(container, server) ⇒ Object
- #finish_syncing_artifact(server, artifact) ⇒ Object
- #finish_syncing_binaries(server) ⇒ Object
- #finish_syncing_env_file(server, env_file) ⇒ Object
- #finish_syncing_repository(server, repository) ⇒ Object
-
#initialize(logger) ⇒ DeploymentProgress
constructor
A new instance of DeploymentProgress.
- #log ⇒ Object
- #setup(binaries_servers:, build_servers:, deploy_servers:, env_files:, artifact_servers:, repositories:, force_restart:, skip_build:, skip_deploy:, containers:) ⇒ Object
- #start_building_container(container) ⇒ Object
- #start_deploying_container(container, server) ⇒ Object
- #start_syncing_artifact(server, artifact) ⇒ Object
- #start_syncing_binaries(server) ⇒ Object
- #start_syncing_env_file(server, env_file) ⇒ Object
- #start_syncing_repository(server, repository) ⇒ Object
Constructor Details
#initialize(logger) ⇒ DeploymentProgress
Returns a new instance of DeploymentProgress.
4 5 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 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 |
# File 'lib/indocker/deployment_progress.rb', line 4 def initialize(logger) @logger = logger if logger @logger.formatter = Proc.new do |severity, datetime, progname, msg| "#{msg}\n" end end @progress = Hash.new(:waiting) @semaphore = Mutex.new @synced_binaries = { # Structure: # server => { # start: time, # finish: time, # state: (:waiting|:in_progress|:finished) # } } @synced_env_files = { # Structure: # env_file => { # server => { # start: time, # finish: time, # state: (:waiting|:in_progress|:finished) # } # } } @synced_artifacts = { # Structure: # artifact => { # server => { # start: time, # finish: time, # state: (:waiting|:in_progress|:finished) # } # } } @synced_repositories = { # Structure: # repository => { # server => { # start: time, # finish: time, # state: (:waiting|:in_progress|:finished) # } # } } @deployed_containers = { # Structure: # container => { # server => { # build_start: time, # build_finish: time, # deploy_start: time, # deploy_finish: time, # state: (:waiting|:building|:waiting_deployment|:deploying|:finished) # } # } } end |
Instance Method Details
#finish_building_container(container) ⇒ Object
216 217 218 219 220 221 222 223 224 225 226 227 228 |
# File 'lib/indocker/deployment_progress.rb', line 216 def finish_building_container(container) @semaphore.synchronize do time = Time.now @deployed_containers[container].each do |server, data| next if data[:build_finish] data[:build_finish] = time data[:state] = :waiting_deployment end log end end |
#finish_deploying_container(container, server) ⇒ Object
238 239 240 241 242 243 244 |
# File 'lib/indocker/deployment_progress.rb', line 238 def (container, server) @semaphore.synchronize do @deployed_containers[container][server][:deploy_finish] = Time.now @deployed_containers[container][server][:state] = :finished log end end |
#finish_syncing_artifact(server, artifact) ⇒ Object
179 180 181 182 183 184 185 |
# File 'lib/indocker/deployment_progress.rb', line 179 def finish_syncing_artifact(server, artifact) @semaphore.synchronize do @synced_artifacts[artifact][server][:finish] = Time.now @synced_artifacts[artifact][server][:state] = :finished log end end |
#finish_syncing_binaries(server) ⇒ Object
149 150 151 152 153 154 155 |
# File 'lib/indocker/deployment_progress.rb', line 149 def finish_syncing_binaries(server) @semaphore.synchronize do @synced_binaries[server][:finish] = Time.now @synced_binaries[server][:state] = :finished log end end |
#finish_syncing_env_file(server, env_file) ⇒ Object
164 165 166 167 168 169 170 |
# File 'lib/indocker/deployment_progress.rb', line 164 def finish_syncing_env_file(server, env_file) @semaphore.synchronize do @synced_env_files[env_file][server][:finish] = Time.now @synced_env_files[env_file][server][:state] = :finished log end end |
#finish_syncing_repository(server, repository) ⇒ Object
194 195 196 197 198 199 200 |
# File 'lib/indocker/deployment_progress.rb', line 194 def finish_syncing_repository(server, repository) @semaphore.synchronize do @synced_repositories[repository][server][:finish] = Time.now @synced_repositories[repository][server][:state] = :finished log end end |
#log ⇒ Object
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 |
# File 'lib/indocker/deployment_progress.rb', line 246 def log return if !@logger system("clear") if @skip_build @logger.info("Warning: Image build is skipped for all containers".purple) end if @skip_deploy @logger.info("Warning: All container deployment is skipped".purple) end if @force_restart @logger.info("Warning: All containers will be force restarted".purple) end # BINARIES formatter synced_binaries_servers = [] not_synced_binaries_servers = [] @synced_binaries.each do |server, data| if data[:state] == :finished synced_binaries_servers << server else not_synced_binaries_servers << server end end if !synced_binaries_servers.empty? @logger.info("Binaries synced:".green) synced_binaries_servers.each do |server| data = @synced_binaries[server] total = ", total: #{(data[:finish] - data[:start]).round}s" if data[:finish] @logger.info(" - #{server.name.to_s.yellow}#{total}") end end if !not_synced_binaries_servers.empty? @logger.info("Binaries syncing:".green) not_synced_binaries_servers.each do |server| data = @synced_binaries[server] @logger.info(" - #{server.name.to_s.cyan} (#{data[:state]}...)") end end # ENV FILES formatter synced_env_files = [] not_synced_env_files = [] @synced_env_files.each do |env_file, server_info| server_info.each do |server, data| if data[:state] == :finished if !synced_env_files.include?(env_file) synced_env_files << env_file end else if !not_synced_env_files.include?(env_file) not_synced_env_files << env_file end end end end if !synced_env_files.empty? @logger.info("ENV files synced:".green) synced_env_files.each do |env_file| servers_data = @synced_env_files[env_file] servers_data.each do |server, data| next if data[:state] != :finished total = ", total: #{(data[:finish] - data[:start]).round}s" if data[:finish] @logger.info(" - #{env_file.to_s.yellow}, server: #{server.name}#{total}") end end end if !not_synced_env_files.empty? @logger.info("ENV files syncing:".green) not_synced_env_files.each do |env_file| servers_data = @synced_env_files[env_file] servers_data.each do |server, data| next if data[:state] == :finished @logger.info(" - #{env_file.to_s.cyan}, server: #{server.name} (#{data[:state]}...)") end end end # Artifacts formatter synced_artifact = [] not_synced_artifact = [] @synced_artifacts.each do |artifact, server_info| server_info.each do |server, data| if data[:state] == :finished if !synced_artifact.include?(artifact) synced_artifact << artifact end else if !not_synced_artifact.include?(artifact) not_synced_artifact << artifact end end end end if !synced_artifact.empty? @logger.info("Artifacts synced:".green) synced_artifact.each do |artifact| servers_data = @synced_artifacts[artifact] servers_data.each do |server, data| next if data[:state] != :finished total = ", total: #{(data[:finish] - data[:start]).round}s" if data[:finish] @logger.info(" - #{artifact.name.to_s.yellow}, server: #{server.name}#{total}") end end end if !not_synced_artifact.empty? @logger.info("Artifacts syncing:".green) not_synced_artifact.each do |artifact| servers_data = @synced_artifacts[artifact] servers_data.each do |server, data| next if data[:state] == :finished @logger.info(" - #{artifact.name.to_s.cyan}, server: #{server.name} (#{data[:state]}...)") end end end # REPOSITORIES formatter synced_repositories = [] not_synced_repositories = [] @synced_repositories.each do |repository, server_info| server_info.each do |server, data| if data[:state] == :finished if !synced_repositories.include?(repository) synced_repositories << repository end else if !not_synced_repositories.include?(repository) not_synced_repositories << repository end end end end if !synced_repositories.empty? @logger.info("Repositories synced:".green) synced_repositories.each do |repository| servers_data = @synced_repositories[repository] servers_data.each do |server, data| next if data[:state] != :finished total = ", total: #{(data[:finish] - data[:start]).round}s" if data[:finish] @logger.info(" - #{repository.to_s.yellow}, server: #{server.name}#{total}") end end end if !not_synced_repositories.empty? @logger.info("Repositories syncing:".green) not_synced_repositories.each do |repository| servers_data = @synced_repositories[repository] servers_data.each do |server, data| next if data[:state] == :finished @logger.info(" - #{repository.to_s.cyan}, server: #{server.name} (#{data[:state]}...)") end end end # Containers formatter deployed_containers = [] not_deployed_containers = [] @deployed_containers.each do |container, server_info| server_info.each do |server, data| if data[:state] == :finished if !deployed_containers.include?(container) deployed_containers << container end else if !not_deployed_containers.include?(container) not_deployed_containers << container end end end end if !deployed_containers.empty? @logger.info("Deployed containers:".green) deployed_containers = deployed_containers .sort_by { |container| @deployed_containers[container] .map { |server, data| data[:deploy_finish] } .reject(&:nil?) .sort .last .to_i } deployed_containers.each do |container| servers_data = @deployed_containers[container] servers_data.each do |server, data| next if data[:state] != :finished total = ", total: #{(data[:deploy_finish] - data[:build_start]).round}s" build = ", build: #{(data[:build_finish] - data[:build_start]).round}s" deploy = ", deploy: #{(data[:deploy_finish] - data[:deploy_start]).round}s" @logger.info(" - #{container.name.to_s.yellow}, server: #{server.name}#{build}#{deploy}#{total}") end end end if !not_deployed_containers.empty? @logger.info("To be deployed containers:".green) not_deployed_containers.each do |container| servers_data = @deployed_containers[container] servers_data.each do |server, data| next if data[:state] == :finished name = container.name.to_s name = if data[:state] == :waiting name else name.cyan end @logger.info(" - #{name}, server: #{server.name} (#{data[:state]}...)") end end end end |
#setup(binaries_servers:, build_servers:, deploy_servers:, env_files:, artifact_servers:, repositories:, force_restart:, skip_build:, skip_deploy:, containers:) ⇒ Object
72 73 74 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 109 110 111 112 113 114 115 116 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/indocker/deployment_progress.rb', line 72 def setup(binaries_servers:, build_servers:, deploy_servers:, env_files:, artifact_servers:, repositories:, force_restart:, skip_build:, skip_deploy:, containers:) @force_restart = force_restart @skip_build = skip_build @skip_deploy = skip_deploy binaries_servers.each do |server| @synced_binaries[server] = { start: nil, finish: nil, state: :waiting } end repositories.each do |repository| @synced_repositories[repository] = {} build_servers.each do |server| @synced_repositories[repository][server] = { start: nil, finish: nil, state: :waiting } end end env_files.each do |env_file| @synced_env_files[env_file] = {} deploy_servers.each do |server| @synced_env_files[env_file][server] = { start: nil, finish: nil, state: :waiting } end end artifact_servers.each do |artifact, servers| @synced_artifacts[artifact] = {} servers.each do |server| @synced_artifacts[artifact][server] = { start: nil, finish: nil, state: :waiting } end end @containers = containers containers.each do |container| @deployed_containers[container] = {} container.servers.each do |server| @deployed_containers[container][server] = { build_start: nil, build_finish: nil, deploy_start: nil, deploy_finish: nil, state: :waiting } end end log end |
#start_building_container(container) ⇒ Object
202 203 204 205 206 207 208 209 210 211 212 213 214 |
# File 'lib/indocker/deployment_progress.rb', line 202 def start_building_container(container) @semaphore.synchronize do time = Time.now @deployed_containers[container].each do |server, data| next if data[:build_start] data[:build_start] = time data[:state] = :building end log end end |
#start_deploying_container(container, server) ⇒ Object
230 231 232 233 234 235 236 |
# File 'lib/indocker/deployment_progress.rb', line 230 def (container, server) @semaphore.synchronize do @deployed_containers[container][server][:deploy_start] = Time.now @deployed_containers[container][server][:state] = :deploying log end end |
#start_syncing_artifact(server, artifact) ⇒ Object
172 173 174 175 176 177 |
# File 'lib/indocker/deployment_progress.rb', line 172 def start_syncing_artifact(server, artifact) @semaphore.synchronize do @synced_artifacts[artifact][server][:start] = Time.now log end end |
#start_syncing_binaries(server) ⇒ Object
141 142 143 144 145 146 147 |
# File 'lib/indocker/deployment_progress.rb', line 141 def start_syncing_binaries(server) @semaphore.synchronize do @synced_binaries[server][:start] = Time.now @synced_binaries[server][:state] = :in_progress log end end |
#start_syncing_env_file(server, env_file) ⇒ Object
157 158 159 160 161 162 |
# File 'lib/indocker/deployment_progress.rb', line 157 def start_syncing_env_file(server, env_file) @semaphore.synchronize do @synced_env_files[env_file][server][:start] = Time.now log end end |
#start_syncing_repository(server, repository) ⇒ Object
187 188 189 190 191 192 |
# File 'lib/indocker/deployment_progress.rb', line 187 def start_syncing_repository(server, repository) @semaphore.synchronize do @synced_repositories[repository][server][:start] = Time.now log end end |