avm-tools 0.99.0 → 0.99.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. checksums.yaml +4 -4
  2. data/lib/avm/app_src.rb +4 -4
  3. data/lib/avm/eac_webapp_base0/deploy.rb +1 -1
  4. data/lib/avm/eac_webapp_base0/deploy/git_info.rb +1 -1
  5. data/lib/avm/git/commit/file.rb +1 -1
  6. data/lib/avm/git/issue/complete.rb +2 -2
  7. data/lib/avm/git/subrepo_check.rb +1 -1
  8. data/lib/avm/git/subrepo_check/show_result.rb +1 -1
  9. data/lib/avm/git/subrepo_checks.rb +1 -1
  10. data/lib/avm/launcher/context.rb +83 -0
  11. data/lib/avm/launcher/context/instance_discovery.rb +56 -0
  12. data/lib/avm/launcher/context/instance_manager.rb +3 -3
  13. data/lib/avm/launcher/context/instance_manager/cached_instance.rb +1 -1
  14. data/lib/avm/launcher/context/settings.rb +53 -0
  15. data/lib/avm/launcher/git.rb +7 -0
  16. data/lib/avm/launcher/git/base.rb +86 -0
  17. data/lib/avm/launcher/git/base/class_methods.rb +28 -0
  18. data/lib/avm/launcher/git/base/dirty_files.rb +23 -0
  19. data/lib/avm/launcher/git/base/remotes.rb +40 -0
  20. data/lib/avm/launcher/git/base/subrepo.rb +44 -0
  21. data/lib/avm/launcher/git/base/underlying.rb +63 -0
  22. data/lib/avm/launcher/git/error.rb +13 -0
  23. data/lib/avm/launcher/git/mirror_update.rb +38 -0
  24. data/lib/avm/launcher/git/publish_base.rb +121 -0
  25. data/lib/avm/launcher/git/remote.rb +55 -0
  26. data/lib/avm/launcher/git/sub_warp_base.rb +33 -0
  27. data/lib/avm/launcher/git/warp_base.rb +56 -0
  28. data/lib/{eac_launcher → avm/launcher}/instances.rb +1 -1
  29. data/lib/avm/launcher/instances/base.rb +3 -3
  30. data/lib/avm/launcher/instances/base/cache.rb +1 -1
  31. data/lib/avm/launcher/instances/runner_helper.rb +1 -1
  32. data/lib/avm/launcher/paths.rb +4 -0
  33. data/lib/avm/launcher/paths/logical.rb +82 -0
  34. data/lib/avm/launcher/paths/real.rb +44 -0
  35. data/lib/avm/launcher/project.rb +18 -0
  36. data/lib/avm/launcher/publish.rb +4 -0
  37. data/lib/avm/launcher/publish/base.rb +47 -0
  38. data/lib/avm/launcher/publish/check_result.rb +67 -0
  39. data/lib/avm/launcher/ruby.rb +3 -0
  40. data/lib/avm/launcher/ruby/gem.rb +4 -0
  41. data/lib/avm/launcher/ruby/gem/build.rb +125 -0
  42. data/lib/avm/launcher/ruby/gem/specification.rb +63 -0
  43. data/lib/avm/launcher/vendor.rb +3 -0
  44. data/lib/avm/launcher/vendor/github.rb +20 -0
  45. data/lib/avm/projects/stereotypes/git/publish.rb +2 -2
  46. data/lib/avm/projects/stereotypes/git/update/subrepo.rb +2 -2
  47. data/lib/avm/projects/stereotypes/git/warp.rb +2 -2
  48. data/lib/avm/projects/stereotypes/git_subrepo.rb +2 -2
  49. data/lib/avm/projects/stereotypes/git_subrepo/publish.rb +2 -2
  50. data/lib/avm/projects/stereotypes/git_subrepo/warp.rb +11 -11
  51. data/lib/avm/projects/stereotypes/git_subtree/publish.rb +2 -2
  52. data/lib/avm/projects/stereotypes/git_subtree/warp.rb +4 -4
  53. data/lib/avm/projects/stereotypes/ruby_gem.rb +2 -2
  54. data/lib/avm/projects/stereotypes/ruby_gem/publish.rb +11 -11
  55. data/lib/avm/tools/runner/files/format.rb +2 -2
  56. data/lib/avm/tools/runner/git.rb +2 -2
  57. data/lib/avm/tools/runner/git/commit.rb +2 -2
  58. data/lib/avm/tools/runner/git/deploy.rb +2 -2
  59. data/lib/avm/tools/runner/launcher/instances.rb +1 -1
  60. data/lib/avm/tools/runner/launcher/projects.rb +3 -3
  61. data/lib/avm/tools/runner/launcher/publish.rb +2 -2
  62. data/lib/avm/tools/version.rb +1 -1
  63. metadata +32 -34
  64. data/lib/eac_launcher.rb +0 -13
  65. data/lib/eac_launcher/context.rb +0 -81
  66. data/lib/eac_launcher/context/instance_discovery.rb +0 -54
  67. data/lib/eac_launcher/context/settings.rb +0 -51
  68. data/lib/eac_launcher/git.rb +0 -7
  69. data/lib/eac_launcher/git/base.rb +0 -84
  70. data/lib/eac_launcher/git/base/class_methods.rb +0 -26
  71. data/lib/eac_launcher/git/base/dirty_files.rb +0 -21
  72. data/lib/eac_launcher/git/base/remotes.rb +0 -38
  73. data/lib/eac_launcher/git/base/subrepo.rb +0 -42
  74. data/lib/eac_launcher/git/base/underlying.rb +0 -61
  75. data/lib/eac_launcher/git/error.rb +0 -11
  76. data/lib/eac_launcher/git/mirror_update.rb +0 -36
  77. data/lib/eac_launcher/git/publish_base.rb +0 -119
  78. data/lib/eac_launcher/git/remote.rb +0 -53
  79. data/lib/eac_launcher/git/sub_warp_base.rb +0 -31
  80. data/lib/eac_launcher/git/warp_base.rb +0 -54
  81. data/lib/eac_launcher/paths.rb +0 -4
  82. data/lib/eac_launcher/paths/logical.rb +0 -80
  83. data/lib/eac_launcher/paths/real.rb +0 -42
  84. data/lib/eac_launcher/project.rb +0 -16
  85. data/lib/eac_launcher/publish.rb +0 -4
  86. data/lib/eac_launcher/publish/base.rb +0 -45
  87. data/lib/eac_launcher/publish/check_result.rb +0 -65
  88. data/lib/eac_launcher/ruby.rb +0 -3
  89. data/lib/eac_launcher/ruby/gem.rb +0 -4
  90. data/lib/eac_launcher/ruby/gem/build.rb +0 -123
  91. data/lib/eac_launcher/ruby/gem/specification.rb +0 -61
  92. data/lib/eac_launcher/vendor.rb +0 -3
  93. data/lib/eac_launcher/vendor/github.rb +0 -18
  94. data/lib/eac_launcher/version.rb +0 -5
@@ -3,4 +3,4 @@
3
3
  require 'avm/launcher/errors/base'
4
4
  require 'avm/launcher/instances/base'
5
5
  require 'avm/launcher/instances/runner_helper'
6
- require 'eac_launcher/instances/settings'
6
+ require 'avm/launcher/instances/settings'
@@ -69,7 +69,7 @@ module Avm
69
69
  end
70
70
 
71
71
  def included?
72
- !::EacLauncher::Context.current.settings.excluded_projects.include?(project_name)
72
+ !::Avm::Launcher::Context.current.settings.excluded_projects.include?(project_name)
73
73
  end
74
74
 
75
75
  def to_h
@@ -82,12 +82,12 @@ module Avm
82
82
  return false unless stereotype.publish_class
83
83
  return false unless options.stereotype_publishable?(stereotype)
84
84
 
85
- filter = ::EacLauncher::Context.current.publish_options[:stereotype]
85
+ filter = ::Avm::Launcher::Context.current.publish_options[:stereotype]
86
86
  filter.blank? ? true : filter == stereotype.name.demodulize
87
87
  end
88
88
 
89
89
  def options_uncached
90
- ::EacLauncher::Context.current.settings.instance_settings(self)
90
+ ::Avm::Launcher::Context.current.settings.instance_settings(self)
91
91
  end
92
92
  end
93
93
  end
@@ -34,7 +34,7 @@ module Avm
34
34
  end
35
35
 
36
36
  def cache_root
37
- File.join(::EacLauncher::Context.current.cache_root, name.parameterize)
37
+ File.join(::Avm::Launcher::Context.current.cache_root, name.parameterize)
38
38
  end
39
39
  end
40
40
  end
@@ -7,7 +7,7 @@ module Avm
7
7
  module Instances
8
8
  class RunnerHelper
9
9
  def context
10
- @context ||= ::EacLauncher::Context.current
10
+ @context ||= ::Avm::Launcher::Context.current
11
11
  end
12
12
 
13
13
  def find_instances(instance_name)
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/launcher/paths/logical'
4
+ require 'avm/launcher/paths/real'
@@ -0,0 +1,82 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/projects/stereotypes'
4
+ require 'avm/launcher/paths/real'
5
+
6
+ module Avm
7
+ module Launcher
8
+ module Paths
9
+ class Logical
10
+ include ::EacRubyUtils::SimpleCache
11
+
12
+ class << self
13
+ def from_h(context, hash)
14
+ parent_path = hash[:parent_path] ? from_h(context, hash[:parent_path]) : nil
15
+ new(context, parent_path, hash[:real], hash[:logical])
16
+ end
17
+ end
18
+
19
+ attr_reader :context, :real, :logical, :parent_path
20
+
21
+ def initialize(context, parent_path, real, logical)
22
+ @context = context
23
+ @parent_path = parent_path
24
+ @real = ::Avm::Launcher::Paths::Real.new(real)
25
+ @logical = logical
26
+ end
27
+
28
+ def to_s
29
+ logical
30
+ end
31
+
32
+ def to_h
33
+ { logical: logical, real: real.to_s, parent_path: parent_path ? parent_path.to_h : nil }
34
+ end
35
+
36
+ def project?
37
+ stereotypes.any?
38
+ end
39
+
40
+ def children
41
+ r = []
42
+ Dir.entries(warped).each do |c|
43
+ c_path = ::File.join(warped, c)
44
+ next unless ::File.directory?(c_path)
45
+ next if c.start_with?('.')
46
+
47
+ r << build_child(c)
48
+ end
49
+ r
50
+ end
51
+
52
+ def included?
53
+ !context.settings.excluded_paths.include?(logical)
54
+ end
55
+
56
+ private
57
+
58
+ def stereotypes_uncached
59
+ ::Avm::Projects::Stereotype.stereotypes.select { |s| s.match?(self) }
60
+ end
61
+
62
+ def build_child(name)
63
+ ::Avm::Launcher::Paths::Logical.new(
64
+ context,
65
+ self,
66
+ ::File.join(warped, name),
67
+ ::File.join(logical, name)
68
+ )
69
+ end
70
+
71
+ def warped_uncached
72
+ if is_a?(::Avm::Launcher::Instances::Base)
73
+ stereotypes.each do |s|
74
+ return s.warp_class.new(self) if s.warp_class
75
+ end
76
+ end
77
+ real
78
+ end
79
+ end
80
+ end
81
+ end
82
+ end
@@ -0,0 +1,44 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Avm
4
+ module Launcher
5
+ module Paths
6
+ class Real < String
7
+ def initialize(path)
8
+ raise "Argument path is not a string: \"#{path}\"|#{path.class}" unless path.is_a?(String)
9
+
10
+ super(path)
11
+ end
12
+
13
+ def subpath(relative_path)
14
+ ::Avm::Launcher::Paths::Real.new(::File.expand_path(relative_path, self))
15
+ end
16
+
17
+ def basename
18
+ ::File.basename(self)
19
+ end
20
+
21
+ def dirname
22
+ return nil if self == '/'
23
+
24
+ self.class.new(::File.dirname(self))
25
+ end
26
+
27
+ def find_file_with_extension(extension)
28
+ r = find_files_with_extension(extension)
29
+ return r.first if r.any?
30
+
31
+ raise "Extension \"#{extension}\" not found in directory \"#{self}\""
32
+ end
33
+
34
+ def find_files_with_extension(extension)
35
+ r = []
36
+ ::Dir.entries(self).each do |i|
37
+ r << ::File.expand_path(i, self) if i =~ /#{::Regexp.quote(extension)}\z/
38
+ end
39
+ r
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Avm
4
+ module Launcher
5
+ class Project
6
+ attr_reader :name, :instances
7
+
8
+ def initialize(name, instances)
9
+ @name = name
10
+ @instances = instances.to_a
11
+ end
12
+
13
+ def to_s
14
+ name
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/launcher/publish/base'
4
+ require 'avm/launcher/publish/check_result'
@@ -0,0 +1,47 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/launcher/errors/base'
4
+
5
+ module Avm
6
+ module Launcher
7
+ module Publish
8
+ class Base
9
+ attr_reader :instance
10
+
11
+ def initialize(instance)
12
+ @instance = instance
13
+ end
14
+
15
+ def run
16
+ s = check
17
+ info("Check: #{s}")
18
+ return unless s.status == ::Avm::Launcher::Publish::CheckResult::STATUS_PENDING
19
+
20
+ publish
21
+ end
22
+
23
+ def check
24
+ s = check_with_rescue
25
+ ::Avm::Launcher::Context.current.instance_manager.publish_state_set(
26
+ instance, stereotype.stereotype_name, s.status
27
+ )
28
+ s
29
+ end
30
+
31
+ private
32
+
33
+ def stereotype
34
+ self.class.name.deconstantize.constantize
35
+ end
36
+
37
+ def check_with_rescue
38
+ internal_check
39
+ rescue ::Avm::Launcher::Errors::Base => e
40
+ ::Avm::Launcher::Publish::CheckResult.blocked("Error: #{e}")
41
+ rescue ::Avm::Launcher::Git::Error => e
42
+ ::Avm::Launcher::Publish::CheckResult.blocked("Git error: #{e}")
43
+ end
44
+ end
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,67 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'active_support/concern' # Missing on "eac/listable"
4
+ require 'active_support/hash_with_indifferent_access'
5
+ require 'eac_ruby_utils/listable'
6
+
7
+ module Avm
8
+ module Launcher
9
+ module Publish
10
+ class CheckResult
11
+ include ::EacRubyUtils::Listable
12
+
13
+ lists.add_string :status, :updated, :pending, :blocked, :outdated
14
+
15
+ lists.status.values.each do |status| # rubocop:disable Style/HashEachMethods
16
+ class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1
17
+ def self.#{status}(message)
18
+ new('#{status}', message)
19
+ end
20
+ RUBY_EVAL
21
+ end
22
+
23
+ class << self
24
+ def pending_status?(status)
25
+ [STATUS_PENDING].include?(status)
26
+ end
27
+
28
+ def updated_color
29
+ 'green'
30
+ end
31
+
32
+ def pending_color
33
+ 'yellow'
34
+ end
35
+
36
+ def blocked_color
37
+ 'red'
38
+ end
39
+
40
+ def outdated_color
41
+ 'light_blue'
42
+ end
43
+ end
44
+
45
+ attr_reader :status, :message
46
+
47
+ def initialize(status, message)
48
+ raise "Status \"#{status}\" not in #{self.class.lists.status.values}" unless
49
+ self.class.lists.status.values.include?(status)
50
+
51
+ @status = status
52
+ @message = message
53
+ end
54
+
55
+ def to_s
56
+ message.light_white.send("on_#{background_color}")
57
+ end
58
+
59
+ private
60
+
61
+ def background_color
62
+ self.class.send("#{status}_color")
63
+ end
64
+ end
65
+ end
66
+ end
67
+ end
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/launcher/ruby/gem'
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/launcher/ruby/gem/build'
4
+ require 'avm/launcher/ruby/gem/specification'
@@ -0,0 +1,125 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'tmpdir'
4
+ require 'eac_cli/speaker'
5
+ require 'eac_ruby_utils/envs'
6
+ require 'avm/launcher/ruby/gem/specification'
7
+
8
+ module Avm
9
+ module Launcher
10
+ module Ruby
11
+ module Gem
12
+ class Build
13
+ include ::EacCli::Speaker
14
+
15
+ def initialize(original_gem_root)
16
+ @original_gem_root = original_gem_root
17
+ end
18
+
19
+ def output_file
20
+ return nil unless @gem_root
21
+
22
+ @gem_root.find_files_with_extension('.gem').first
23
+ end
24
+
25
+ def builded?
26
+ output_file.present? && ::File.exist?(output_file)
27
+ end
28
+
29
+ def build
30
+ return if builded?
31
+
32
+ copy_gem_files
33
+ build_gem
34
+ check_gem_empty_size
35
+ check_gem_version
36
+ end
37
+
38
+ def close
39
+ ::FileUtils.remove_entry(@gem_root) if @gem_root && ::File.directory?(@gem_root)
40
+ @gem_root = nil
41
+ end
42
+
43
+ private
44
+
45
+ def copy_gem_files
46
+ @gem_root = ::Avm::Launcher::Paths::Real.new(::Dir.mktmpdir)
47
+ FileUtils.cp_r "#{@original_gem_root}/.", @gem_root
48
+ end
49
+
50
+ def build_gem
51
+ info("Building gemspec #{gemspec_file}...")
52
+ clear_gems
53
+ Dir.chdir @gem_root do
54
+ isolated_build_gem
55
+ end
56
+ end
57
+
58
+ def isolated_build_gem
59
+ on_clean_ruby do
60
+ EacRubyUtils::Envs.local.command('gem', 'build', gemspec_file).execute!
61
+ end
62
+ end
63
+
64
+ def check_gem_empty_size
65
+ Dir.mktmpdir do |dir|
66
+ Dir.chdir dir do
67
+ EacRubyUtils::Envs.local.command('gem', 'unpack', gem).system
68
+ gs = File.join(dir, File.basename(gem, '.gem'))
69
+ if (Dir.entries(gs) - %w[. ..]).empty?
70
+ raise "\"#{dir}\" (Unpacked from #{gem}) has no source code"
71
+ end
72
+ end
73
+ end
74
+ end
75
+
76
+ def clear_gems
77
+ @gem_root.find_files_with_extension('.gem').each do |f|
78
+ FileUtils.rm_rf(f)
79
+ end
80
+ end
81
+
82
+ def gemspec_file
83
+ @gem_root.find_file_with_extension('.gemspec')
84
+ end
85
+
86
+ def gem
87
+ @gem_root.find_file_with_extension('.gem')
88
+ end
89
+
90
+ def check_gem_version
91
+ spec = ::Avm::Launcher::Ruby::Gem::Specification.new(gemspec_file)
92
+ return if ::File.basename(output_file, '.gem') == spec.full_name
93
+
94
+ raise("Builded gem is not the same version of gemspec (#{spec}, #{output_file})")
95
+ end
96
+
97
+ def bundle_dependencies
98
+ gemfile = @gem_root.subpath('Gemfile')
99
+ return unless ::File.exist?(gemfile)
100
+
101
+ Dir.chdir(@gem_root) do
102
+ EacRubyUtils::Envs.local.command('bundle', 'install').execute!
103
+ end
104
+ end
105
+
106
+ def on_clean_ruby
107
+ on_clear_envvars('BUNDLE', 'RUBY') { yield }
108
+ end
109
+
110
+ def on_clear_envvars(*start_with_vars)
111
+ old_values = envvars_starting_with(start_with_vars)
112
+ old_values.each_key { |k| ENV.delete(k) }
113
+ yield
114
+ ensure
115
+ old_values&.each { |k, v| ENV[k] = v }
116
+ end
117
+
118
+ def envvars_starting_with(start_with_vars)
119
+ ENV.select { |k, _v| start_with_vars.any? { |var| k.start_with?(var) } }
120
+ end
121
+ end
122
+ end
123
+ end
124
+ end
125
+ end