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