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
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'active_support/core_ext/object'
4
+
5
+ module Avm
6
+ module Launcher
7
+ module Git
8
+ class Base < ::Avm::Launcher::Paths::Real
9
+ module DirtyFiles
10
+ delegate :dirty?, to: :eac_git
11
+
12
+ def dirty_files
13
+ eac_git.dirty_files.map do |df|
14
+ ::OpenStruct.new(
15
+ df.to_h.merge(path: df.path.to_path, absolute_path: df.absolute_path.to_path)
16
+ )
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+ require 'avm/launcher/git/remote'
5
+
6
+ module Avm
7
+ module Launcher
8
+ module Git
9
+ class Base < ::Avm::Launcher::Paths::Real
10
+ module Remotes
11
+ # @return [Avm::Launcher::Git::Remote]
12
+ def remote(name)
13
+ ::Avm::Launcher::Git::Remote.new(self, name)
14
+ end
15
+
16
+ def remote_hashs(remote_name)
17
+ remote(remote_name).ls
18
+ end
19
+
20
+ def remote_exist?(remote_name)
21
+ remote(remote_name).exist?
22
+ end
23
+
24
+ def assert_remote_url(remote_name, url)
25
+ r = git.remote(remote_name)
26
+ if !r.url || r.url != url
27
+ r.remove if r.url
28
+ git.add_remote(remote_name, url)
29
+ end
30
+ r
31
+ end
32
+
33
+ def remote_branch_sha(remote_name, branch_name)
34
+ remote_hashs(remote_name)["refs/heads/#{branch_name}"]
35
+ end
36
+ end
37
+ end
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,44 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'active_support/core_ext/object'
4
+
5
+ module Avm
6
+ module Launcher
7
+ module Git
8
+ class Base < ::Avm::Launcher::Paths::Real
9
+ module Subrepo
10
+ def subrepo_status(subrepo_path)
11
+ s = execute!('subrepo', 'status', subrepo_path.gsub(%r{\A/}, ''))
12
+ raise s.strip.to_s if s.include?('is not a subrepo')
13
+
14
+ r = subrepo_status_parse_output(s)
15
+ raise "Empty subrepo status for |#{s}|\n" unless r.any?
16
+
17
+ r
18
+ end
19
+
20
+ def subrepo_remote_url(subrepo_path)
21
+ h = subrepo_status(subrepo_path)
22
+ url = h['Remote URL']
23
+ return url if url.present?
24
+
25
+ raise "Remote URL is blank for subrepo \"#{subrepo_path}\" (Subrepo status: #{h})"
26
+ end
27
+
28
+ private
29
+
30
+ def subrepo_status_parse_output(output)
31
+ r = {}.with_indifferent_access
32
+ output.each_line do |l|
33
+ m = /\A([^\:]+)\:(.*)\z/.match(l.strip)
34
+ next unless m && m[2].present?
35
+
36
+ r[m[1].strip] = m[2].strip
37
+ end
38
+ r
39
+ end
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,63 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_git/executables'
4
+ require 'eac_ruby_utils/envs'
5
+ require 'git'
6
+ require 'avm/launcher/paths/real'
7
+
8
+ module Avm
9
+ module Launcher
10
+ module Git
11
+ class Base < ::Avm::Launcher::Paths::Real
12
+ module Underlying
13
+ def command(*args)
14
+ args, options = build_args(args)
15
+ r = ::EacGit::Executables.git.command(*args)
16
+ (options[:exit_outputs] || {}).each do |status_code, result|
17
+ r = r.status_result(status_code, result)
18
+ end
19
+ r
20
+ end
21
+
22
+ def execute(*args)
23
+ command(*args).execute
24
+ end
25
+
26
+ def execute!(*args)
27
+ command(*args).execute!
28
+ end
29
+
30
+ def system!(*args)
31
+ command(*args).system!
32
+ end
33
+
34
+ def init
35
+ git
36
+ self
37
+ end
38
+
39
+ private
40
+
41
+ def build_args(args)
42
+ options = {}
43
+ if args.last.is_a?(Hash)
44
+ options = args.last
45
+ args.pop
46
+ end
47
+ args = args.first if args.first.is_a?(Array)
48
+ [['-C', self, '--no-pager'] + args, options]
49
+ end
50
+
51
+ def git_uncached
52
+ FileUtils.mkdir_p(self)
53
+ if File.exist?(subpath('.git'))
54
+ ::Git.open(self)
55
+ else
56
+ ::Git.init(self)
57
+ end
58
+ end
59
+ end
60
+ end
61
+ end
62
+ end
63
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Avm
4
+ module Launcher
5
+ module Git
6
+ class Error < StandardError
7
+ def initialize(git_instance, message)
8
+ super("#{message} (Repository: #{git_instance})")
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,38 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/launcher/git/base'
4
+
5
+ module Avm
6
+ module Launcher
7
+ module Git
8
+ class MirrorUpdate < ::Avm::Launcher::Paths::Real
9
+ include ::EacRubyUtils::SimpleCache
10
+
11
+ def initialize(target_path, source_path, source_rev)
12
+ super(target_path)
13
+ @target_git = ::Avm::Launcher::Git::Base.new(self)
14
+ @source_git = ::Avm::Launcher::Git::Base.new(source_path)
15
+ @source_rev = source_rev
16
+ run
17
+ end
18
+
19
+ private
20
+
21
+ def run
22
+ fetch_remote_source
23
+ reset_source_rev
24
+ end
25
+
26
+ def fetch_remote_source
27
+ @target_git.git
28
+ @target_git.assert_remote_url('origin', @source_git)
29
+ @target_git.fetch('origin', tags: true)
30
+ end
31
+
32
+ def reset_source_rev
33
+ @target_git.reset_hard(@source_git.rev_parse(@source_rev, true))
34
+ end
35
+ end
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,121 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/simple_cache'
4
+ require 'eac_ruby_utils/simple_cache'
5
+ require 'avm/launcher/publish/base'
6
+ require 'avm/launcher/publish/check_result'
7
+
8
+ module Avm
9
+ module Launcher
10
+ module Git
11
+ class PublishBase < ::Avm::Launcher::Publish::Base
12
+ include ::EacRubyUtils::SimpleCache
13
+ include ::EacCli::Speaker
14
+
15
+ CHECKERS = %w[remote_url remote_fetch publish_remote_no_exist remote_equal remote_following
16
+ local_following].freeze
17
+
18
+ REMOTE_UNAVAILABLE_MESSAGES = ['could not resolve host', 'connection timed out',
19
+ 'no route to host'].map(&:downcase).freeze
20
+
21
+ protected
22
+
23
+ def internal_check
24
+ CHECKERS.each do |checker|
25
+ result = send("#{checker}_check_result")
26
+ return result if result
27
+ end
28
+ divergent_result_check_result
29
+ rescue ::StandardError => e
30
+ raise e unless remote_unavailable_error?(e)
31
+
32
+ ::Avm::Launcher::Publish::CheckResult.blocked(e.message)
33
+ end
34
+
35
+ private
36
+
37
+ def remote_url_check_result
38
+ remote = sgit.remote(remote_name)
39
+ return if remote.exist? && remote.url.present?
40
+
41
+ ::Avm::Launcher::Publish::CheckResult.blocked("Remote \"#{remote_name}\" has blank path")
42
+ end
43
+
44
+ def remote_fetch_check_result
45
+ remote_fetch
46
+ nil
47
+ end
48
+
49
+ def remote_unavailable_error?(error)
50
+ error_message = error.message.downcase
51
+ REMOTE_UNAVAILABLE_MESSAGES.any? do |message|
52
+ error_message.include?(message)
53
+ end
54
+ end
55
+
56
+ def publish_remote_no_exist_check_result
57
+ return nil if sgit.remote_exist?(remote_name)
58
+
59
+ ::Avm::Launcher::Publish::CheckResult.blocked('Remote does not exist')
60
+ end
61
+
62
+ def remote_equal_check_result
63
+ return nil unless remote_sha.present? && remote_sha == local_sha
64
+
65
+ ::Avm::Launcher::Publish::CheckResult.updated('Remote equal')
66
+ end
67
+
68
+ def remote_following_check_result
69
+ return nil unless remote_sha.present? && sgit.descendant?(remote_sha, local_sha)
70
+
71
+ ::Avm::Launcher::Publish::CheckResult.outdated('Remote following')
72
+ end
73
+
74
+ def divergent_result_check_result
75
+ ::Avm::Launcher::Publish::CheckResult.blocked(
76
+ "Divergent (L: #{local_sha}, R: #{remote_sha})"
77
+ )
78
+ end
79
+
80
+ def local_following?
81
+ return true if remote_sha.blank?
82
+
83
+ sgit.descendant?(local_sha, remote_sha)
84
+ end
85
+
86
+ def local_following_check_result
87
+ ::Avm::Launcher::Publish::CheckResult.pending('Local following')
88
+ end
89
+
90
+ def sgit_uncached
91
+ ::Avm::Launcher::Git::Base.new(instance.warped)
92
+ end
93
+
94
+ def publish
95
+ info 'Pushing...'
96
+ sgit.push(remote_name, 'HEAD:master',
97
+ dryrun: !::Avm::Launcher::Context.current.publish_options[:confirm])
98
+ info 'Pushed!'
99
+ end
100
+
101
+ def local_sha
102
+ sgit.git.object('HEAD').sha
103
+ end
104
+
105
+ def remote_sha_uncached
106
+ remote_fetch
107
+ b = sgit.git.branches["#{remote_name}/master"]
108
+ b ? b.gcommit.sha : nil
109
+ end
110
+
111
+ def remote_fetch_uncached
112
+ sgit.fetch(remote_name)
113
+ end
114
+
115
+ def remote_name
116
+ ::Avm::Launcher::Git::WarpBase::TARGET_REMOTE
117
+ end
118
+ end
119
+ end
120
+ end
121
+ end
@@ -0,0 +1,55 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module Avm
6
+ module Launcher
7
+ module Git
8
+ class Remote
9
+ common_constructor :git, :name
10
+
11
+ def exist?
12
+ git.execute!('remote').each_line.any? { |line| line.strip == name }
13
+ end
14
+
15
+ def ls
16
+ git.execute!(['ls-remote', name]).each_line.map do |line|
17
+ x = line.strip.split(/\s+/)
18
+ [x[1], x[0]]
19
+ end.to_h
20
+ end
21
+
22
+ # +git remote add ...+
23
+ def add(url)
24
+ git.execute!('remote', 'add', name, url)
25
+ end
26
+
27
+ # +git remote rm ...+
28
+ def remove
29
+ git.execute!('remote', 'rm', name)
30
+ end
31
+
32
+ # +git remote get-url ...+
33
+ def url
34
+ git.execute!('remote', 'get-url', name).strip.if_present(nil)
35
+ end
36
+
37
+ # git remote set-url ...
38
+ def url_set(url)
39
+ git.execute!('remote', 'set-url', name, url)
40
+ end
41
+
42
+ # Add or set URL if +url+ is present, remove remote if is blank.
43
+ def url=(url)
44
+ if exist? && url.blank?
45
+ remove
46
+ elsif exist? && self.url != url
47
+ url_set(url)
48
+ elsif !exist?
49
+ add(url)
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/projects/stereotype'
4
+ require 'avm/launcher/errors/base'
5
+
6
+ module Avm
7
+ module Launcher
8
+ module Git
9
+ module SubWarpBase
10
+ private
11
+
12
+ def parent_instance_uncached
13
+ r = find_parent_instance(instance.parent)
14
+ return r if r
15
+
16
+ ::Avm::Launcher::Errors::Base.new('Git parent not found')
17
+ end
18
+
19
+ def find_parent_instance(current)
20
+ if ::Avm::Projects::Stereotype.git_stereotypes.any? { |s| current.stereotype?(s) }
21
+ return current
22
+ end
23
+
24
+ current.parent ? find_parent_instance(current.parent) : nil
25
+ end
26
+
27
+ def to_parent_git_path
28
+ instance.logical.gsub(%r{\A#{Regexp.quote(parent_instance.logical)}/}, '')
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,56 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/launcher/git/mirror_update'
4
+ require 'avm/launcher/vendor/github'
5
+ require 'avm/projects/stereotypes/git/publish'
6
+
7
+ module Avm
8
+ module Launcher
9
+ module Git
10
+ # Métodos abstratos:
11
+ # * source_instance
12
+ # * source_remote_name
13
+ # * current_ref
14
+ class WarpBase < ::Avm::Launcher::Paths::Real
15
+ include ::EacRubyUtils::SimpleCache
16
+
17
+ TARGET_REMOTE = ::Avm::Projects::Stereotypes::Git::Publish::PUBLISH_GIT_REMOTE_NAME
18
+
19
+ def initialize(instance)
20
+ @instance = instance
21
+ cache_git.git.reset_hard(current_ref)
22
+ cache_git.remote(TARGET_REMOTE).url = target_remote_url
23
+ super(path)
24
+ end
25
+
26
+ protected
27
+
28
+ attr_reader :instance
29
+
30
+ def update
31
+ ::Avm::Launcher::Git::MirrorUpdate.new(
32
+ path,
33
+ source_instance.real,
34
+ source_instance.options.git_current_revision
35
+ )
36
+ end
37
+
38
+ def path
39
+ instance.cache_path('git_repository')
40
+ end
41
+
42
+ def source_git_uncached
43
+ ::Avm::Launcher::Git::Base.new(source_instance.real)
44
+ end
45
+
46
+ def cache_git_uncached
47
+ ::Avm::Launcher::Git::Base.new(update)
48
+ end
49
+
50
+ def target_remote_url
51
+ ::Avm::Launcher::Vendor::Github.to_ssh_url(source_git.git.remote(source_remote_name).url)
52
+ end
53
+ end
54
+ end
55
+ end
56
+ end