jdc 0.2.1 → 0.2.2.pre
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +1277 -24
- data/Rakefile +13 -0
- data/bin/jdc +12 -2
- data/lib/admin/README.md +15 -0
- data/lib/admin/curl.rb +60 -0
- data/lib/admin/guid.rb +89 -0
- data/lib/admin/plugin.rb +6 -0
- data/lib/admin/service_auth_token.rb +94 -0
- data/lib/admin/service_broker/add.rb +47 -0
- data/lib/admin/service_broker/service_brokers.rb +24 -0
- data/lib/admin/set_quota.rb +44 -0
- data/lib/console/README.md +8 -0
- data/lib/console/console.rb +187 -0
- data/lib/console/plugin.rb +33 -0
- data/lib/jdc.rb +15 -2
- data/lib/jdc/cli.rb +556 -0
- data/lib/jdc/cli/app/app.rb +43 -0
- data/lib/jdc/cli/app/apps.rb +87 -0
- data/lib/jdc/cli/app/base.rb +72 -0
- data/lib/jdc/cli/app/delete.rb +95 -0
- data/lib/jdc/cli/app/deprecated.rb +11 -0
- data/lib/jdc/cli/app/env.rb +78 -0
- data/lib/jdc/cli/app/events.rb +45 -0
- data/lib/jdc/cli/app/files.rb +137 -0
- data/lib/jdc/cli/app/health.rb +26 -0
- data/lib/jdc/cli/app/instances.rb +53 -0
- data/lib/jdc/cli/app/logs.rb +76 -0
- data/lib/jdc/cli/app/push.rb +103 -0
- data/lib/jdc/cli/app/push/create.rb +108 -0
- data/lib/jdc/cli/app/push/interactions.rb +86 -0
- data/lib/jdc/cli/app/push/sync.rb +57 -0
- data/lib/jdc/cli/app/rename.rb +35 -0
- data/lib/jdc/cli/app/restart.rb +31 -0
- data/lib/jdc/cli/app/scale.rb +63 -0
- data/lib/jdc/cli/app/start.rb +161 -0
- data/lib/jdc/cli/app/stats.rb +67 -0
- data/lib/jdc/cli/app/stop.rb +27 -0
- data/lib/jdc/cli/domain/base.rb +9 -0
- data/lib/jdc/cli/domain/domains.rb +40 -0
- data/lib/jdc/cli/domain/map.rb +55 -0
- data/lib/jdc/cli/domain/unmap.rb +56 -0
- data/lib/jdc/cli/help.rb +15 -0
- data/lib/jdc/cli/interactive.rb +105 -0
- data/lib/jdc/cli/login_requirements.rb +15 -0
- data/lib/jdc/cli/organization/base.rb +14 -0
- data/lib/jdc/cli/organization/create.rb +37 -0
- data/lib/jdc/cli/organization/delete.rb +63 -0
- data/lib/jdc/cli/organization/org.rb +45 -0
- data/lib/jdc/cli/organization/orgs.rb +30 -0
- data/lib/jdc/cli/organization/rename.rb +37 -0
- data/lib/jdc/cli/populators/base.rb +16 -0
- data/lib/jdc/cli/populators/organization.rb +32 -0
- data/lib/jdc/cli/populators/populator_methods.rb +64 -0
- data/lib/jdc/cli/populators/space.rb +33 -0
- data/lib/jdc/cli/populators/target.rb +13 -0
- data/lib/jdc/cli/route/base.rb +9 -0
- data/lib/jdc/cli/route/delete.rb +28 -0
- data/lib/jdc/cli/route/map.rb +68 -0
- data/lib/jdc/cli/route/routes.rb +26 -0
- data/lib/jdc/cli/route/unmap.rb +56 -0
- data/lib/jdc/cli/service/base.rb +9 -0
- data/lib/jdc/cli/service/bind.rb +44 -0
- data/lib/jdc/cli/service/create.rb +159 -0
- data/lib/jdc/cli/service/delete.rb +83 -0
- data/lib/jdc/cli/service/rename.rb +36 -0
- data/lib/jdc/cli/service/service.rb +42 -0
- data/lib/jdc/cli/service/service_instance_helper.rb +99 -0
- data/lib/jdc/cli/service/services.rb +111 -0
- data/lib/jdc/cli/service/unbind.rb +37 -0
- data/lib/jdc/cli/space/base.rb +29 -0
- data/lib/jdc/cli/space/create.rb +67 -0
- data/lib/jdc/cli/space/delete.rb +56 -0
- data/lib/jdc/cli/space/rename.rb +38 -0
- data/lib/jdc/cli/space/space.rb +66 -0
- data/lib/jdc/cli/space/spaces.rb +57 -0
- data/lib/jdc/cli/space/switch.rb +19 -0
- data/lib/jdc/cli/start/base.rb +41 -0
- data/lib/jdc/cli/start/colors.rb +13 -0
- data/lib/jdc/cli/start/target.rb +50 -0
- data/lib/jdc/cli/start/target_prettifier.rb +17 -0
- data/lib/jdc/cli/start/targets.rb +16 -0
- data/lib/jdc/cli/user/base.rb +30 -0
- data/lib/jdc/cli/user/create.rb +52 -0
- data/lib/jdc/cli/user/passwd.rb +37 -0
- data/lib/jdc/cli/user/register.rb +43 -0
- data/lib/jdc/cli/user/users.rb +32 -0
- data/lib/jdc/constants.rb +11 -0
- data/lib/jdc/errors.rb +19 -0
- data/lib/jdc/object_extensions.rb +15 -0
- data/lib/jdc/plugin.rb +56 -0
- data/lib/jdc/spacing.rb +89 -0
- data/lib/jdc/spec_helper.rb +1 -0
- data/lib/jdc/test_support.rb +6 -0
- data/lib/jdc/version.rb +3 -0
- data/lib/manifests/errors.rb +35 -0
- data/lib/manifests/loader.rb +31 -0
- data/lib/manifests/loader/builder.rb +39 -0
- data/lib/manifests/loader/normalizer.rb +145 -0
- data/lib/manifests/loader/resolver.rb +79 -0
- data/lib/manifests/manifests.rb +344 -0
- data/lib/manifests/plugin.rb +140 -0
- data/lib/micro/README.md +9 -0
- data/lib/micro/errors.rb +4 -0
- data/lib/{jdc → micro}/micro.rb +15 -15
- data/lib/micro/plugin.rb +197 -0
- data/lib/micro/switcher/base.rb +79 -0
- data/lib/{jdc/micro → micro}/switcher/darwin.rb +5 -3
- data/lib/{jdc/micro → micro}/switcher/dummy.rb +1 -1
- data/lib/micro/switcher/linux.rb +16 -0
- data/lib/{jdc/micro → micro}/switcher/windows.rb +5 -5
- data/lib/{jdc/micro → micro}/vmrun.rb +26 -19
- data/lib/tasks/gem_release.rake +42 -0
- data/lib/tunnel/README.md +29 -0
- data/{config → lib/tunnel/config}/clients.yml +2 -2
- data/lib/tunnel/helper-app/Gemfile +10 -0
- data/lib/tunnel/helper-app/Gemfile.lock +48 -0
- data/{caldecott_helper → lib/tunnel/helper-app}/server.rb +5 -5
- data/lib/tunnel/plugin.rb +183 -0
- data/lib/tunnel/tunnel.rb +295 -0
- metadata +371 -210
- data/README.md +0 -102
- data/config/micro/paths.yml +0 -22
- data/config/micro/refresh_ip.rb +0 -20
- data/lib/cli.rb +0 -53
- data/lib/cli/commands/admin.rb +0 -58
- data/lib/cli/commands/apps.rb +0 -1129
- data/lib/cli/commands/base.rb +0 -228
- data/lib/cli/commands/manifest.rb +0 -56
- data/lib/cli/commands/micro.rb +0 -115
- data/lib/cli/commands/misc.rb +0 -126
- data/lib/cli/commands/services.rb +0 -178
- data/lib/cli/commands/user.rb +0 -14
- data/lib/cli/config.rb +0 -173
- data/lib/cli/console_helper.rb +0 -170
- data/lib/cli/core_ext.rb +0 -122
- data/lib/cli/errors.rb +0 -19
- data/lib/cli/frameworks.rb +0 -265
- data/lib/cli/manifest_helper.rb +0 -300
- data/lib/cli/runner.rb +0 -505
- data/lib/cli/services_helper.rb +0 -84
- data/lib/cli/tunnel_helper.rb +0 -332
- data/lib/cli/usage.rb +0 -86
- data/lib/cli/version.rb +0 -7
- data/lib/cli/zip_util.rb +0 -77
- data/lib/jdc/client.rb +0 -457
- data/lib/jdc/const.rb +0 -25
- data/lib/jdc/micro/switcher/base.rb +0 -97
- data/lib/jdc/micro/switcher/linux.rb +0 -16
- data/lib/jdc/signature/version.rb +0 -27
- data/lib/jdc/signer.rb +0 -13
- data/lib/jdc/timer.rb +0 -12
@@ -0,0 +1,140 @@
|
|
1
|
+
require "pathname"
|
2
|
+
require "jdc/plugin"
|
3
|
+
require "manifests/manifests"
|
4
|
+
|
5
|
+
class ManifestsPlugin < JDC::App::Base
|
6
|
+
include JDCManifests
|
7
|
+
|
8
|
+
def self.default_to_app_from_manifest(command, fail_without_app)
|
9
|
+
name_made_optional = change_argument(command, :app, :optional)
|
10
|
+
around(command) do |cmd, input|
|
11
|
+
wrap_with_optional_name(name_made_optional, cmd, input, fail_without_app)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
option :manifest, :aliases => "-m", :value => :file, :desc => "Path to manifest file to use"
|
16
|
+
|
17
|
+
|
18
|
+
[:start, :restart, :instances, :logs, :env, :health, :stats, :scale, :app, :stop, :delete, :events].each do |command|
|
19
|
+
::ManifestsPlugin.default_to_app_from_manifest command, true
|
20
|
+
end
|
21
|
+
|
22
|
+
add_input :push, :reset, :desc => "Reset to values in the manifest", :default => false
|
23
|
+
|
24
|
+
around(:push) do |push, input|
|
25
|
+
wrap_push(push, input)
|
26
|
+
end
|
27
|
+
|
28
|
+
private
|
29
|
+
|
30
|
+
def wrap_with_optional_name(name_made_optional, cmd, input, fail_without_app)
|
31
|
+
return cmd.call if input[:all]
|
32
|
+
|
33
|
+
unless manifest
|
34
|
+
# if the command knows how to handle this
|
35
|
+
if input.has?(:app) || !name_made_optional || !fail_without_app
|
36
|
+
return cmd.call
|
37
|
+
else
|
38
|
+
return no_apps
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
internal, external = apps_in_manifest(input)
|
43
|
+
|
44
|
+
return cmd.call if internal.empty? && !external.empty?
|
45
|
+
|
46
|
+
show_manifest_usage
|
47
|
+
|
48
|
+
if internal.empty? && external.empty?
|
49
|
+
internal = current_apps if internal.empty?
|
50
|
+
internal = all_apps if internal.empty?
|
51
|
+
end
|
52
|
+
|
53
|
+
internal = internal.collect { |app| app[:name] }
|
54
|
+
|
55
|
+
apps = internal + external
|
56
|
+
return no_apps if fail_without_app && apps.empty?
|
57
|
+
|
58
|
+
apps.each.with_index do |app, num|
|
59
|
+
line unless quiet? || num == 0
|
60
|
+
cmd.call(input.without(:apps).merge_given(:app => app))
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
def apply_changes(app, input)
|
65
|
+
app.memory = megabytes(input[:memory]) if input.has?(:memory)
|
66
|
+
app.total_instances = input[:instances] if input.has?(:instances)
|
67
|
+
app.command = input[:command] if input.has?(:command)
|
68
|
+
app.buildpack = input[:buildpack] if input.has?(:buildpack)
|
69
|
+
end
|
70
|
+
|
71
|
+
def wrap_push(push, input)
|
72
|
+
unless manifest
|
73
|
+
create_and_save_manifest(push, input)
|
74
|
+
return
|
75
|
+
end
|
76
|
+
|
77
|
+
line(c("--path is ignored when using a manifest. Please specify the path in the manifest.", :warning)) if input.has?(:path)
|
78
|
+
|
79
|
+
particular, external = apps_in_manifest(input)
|
80
|
+
|
81
|
+
unless external.empty?
|
82
|
+
fail "Could not find #{b(external.join(", "))}' in the manifest."
|
83
|
+
end
|
84
|
+
|
85
|
+
apps = particular.empty? ? all_apps : particular
|
86
|
+
|
87
|
+
show_manifest_usage
|
88
|
+
|
89
|
+
spaced(apps) do |app_manifest|
|
90
|
+
push_with_manifest(app_manifest, push, input)
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
def push_with_manifest(app_manifest, push, input)
|
95
|
+
with_filters(
|
96
|
+
:push => {
|
97
|
+
:create_app => proc { |a|
|
98
|
+
setup_env(a, app_manifest)
|
99
|
+
a
|
100
|
+
},
|
101
|
+
:push_app => proc { |a|
|
102
|
+
setup_services(a, app_manifest)
|
103
|
+
a
|
104
|
+
}
|
105
|
+
}) do
|
106
|
+
app_input = push_input_for(app_manifest, input)
|
107
|
+
|
108
|
+
push.call(app_input)
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
def push_input_for(app_manifest, input)
|
113
|
+
existing_app = client.app_by_name(app_manifest[:name])
|
114
|
+
rebased_input = input.rebase_given(app_manifest)
|
115
|
+
|
116
|
+
if !existing_app || input[:reset]
|
117
|
+
input = rebased_input
|
118
|
+
else
|
119
|
+
warn_reset_changes if manifest_differs?(existing_app, rebased_input)
|
120
|
+
end
|
121
|
+
|
122
|
+
input.merge(
|
123
|
+
:path => from_manifest(app_manifest[:path]),
|
124
|
+
:name => app_manifest[:name],
|
125
|
+
:bind_services => false,
|
126
|
+
:create_services => false)
|
127
|
+
end
|
128
|
+
|
129
|
+
def manifest_differs?(app, input)
|
130
|
+
apply_changes(app, input)
|
131
|
+
app.changed?
|
132
|
+
end
|
133
|
+
|
134
|
+
def create_and_save_manifest(push, input)
|
135
|
+
with_filters(
|
136
|
+
:push => { :push_app => proc { |a| ask_to_save(input, a); a } }) do
|
137
|
+
push.call
|
138
|
+
end
|
139
|
+
end
|
140
|
+
end
|
data/lib/micro/README.md
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
### Info
|
2
|
+
This plugin allows you to manage your Micro Jing Dong Foundry VM.
|
3
|
+
|
4
|
+
### Usage
|
5
|
+
```
|
6
|
+
micro-status VMX [PASSWORD] Display Micro Jing Dong Foundry VM status
|
7
|
+
micro-offline VMX [PASSWORD] Micro Jing Dong Foundry offline mode
|
8
|
+
micro-online VMX [PASSWORD] Micro Jing Dong Foundry online mode
|
9
|
+
```
|
data/lib/micro/errors.rb
ADDED
data/lib/{jdc → micro}/micro.rb
RENAMED
@@ -1,32 +1,32 @@
|
|
1
1
|
require 'find'
|
2
|
+
require "micro/errors"
|
2
3
|
|
3
|
-
module
|
4
|
+
module JDCMicro
|
4
5
|
def config_file(file)
|
5
|
-
File.
|
6
|
+
File.expand_path("../../../../config/#{file}", __FILE__)
|
6
7
|
end
|
7
8
|
|
8
9
|
def escape_path(path)
|
9
10
|
path = File.expand_path(path)
|
10
11
|
if RUBY_PLATFORM =~ /mingw|mswin32|cygwin/
|
11
12
|
if path.include?(' ')
|
12
|
-
|
13
|
+
'"' + path + '"'
|
13
14
|
else
|
14
|
-
|
15
|
+
path
|
15
16
|
end
|
16
17
|
else
|
17
|
-
|
18
|
+
path.gsub(' ', '\ ')
|
18
19
|
end
|
19
20
|
end
|
20
21
|
|
21
22
|
def locate_file(file, directory, search_paths)
|
22
23
|
search_paths.each do |path|
|
23
24
|
expanded_path = File.expand_path(path)
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
end
|
25
|
+
next unless File.exists?(expanded_path)
|
26
|
+
Find.find(expanded_path) do |current|
|
27
|
+
if File.directory?(current) && current.include?(directory)
|
28
|
+
full_path = File.join(current, file)
|
29
|
+
return escape_path(full_path) if File.exists?(full_path)
|
30
30
|
end
|
31
31
|
end
|
32
32
|
end
|
@@ -37,14 +37,14 @@ module JDC::Micro
|
|
37
37
|
def run_command(command, args=nil)
|
38
38
|
# TODO switch to using posix-spawn instead
|
39
39
|
result = %x{#{command} #{args} 2>&1}
|
40
|
-
|
40
|
+
if $?.exitstatus == 0
|
41
|
+
result.split(/\n/)
|
42
|
+
else
|
41
43
|
if block_given?
|
42
44
|
yield
|
43
45
|
else
|
44
|
-
raise "failed to execute #{command} #{args}:\n#{result}"
|
46
|
+
raise JDCMicro::MCFError, "failed to execute #{command} #{args}:\n#{result}"
|
45
47
|
end
|
46
|
-
else
|
47
|
-
result.split(/\n/)
|
48
48
|
end
|
49
49
|
end
|
50
50
|
|
data/lib/micro/plugin.rb
ADDED
@@ -0,0 +1,197 @@
|
|
1
|
+
require "yaml"
|
2
|
+
require "multi_json"
|
3
|
+
require "jdc/cli"
|
4
|
+
require "micro/micro"
|
5
|
+
require "micro/vmrun"
|
6
|
+
require "micro/switcher/base"
|
7
|
+
require "micro/switcher/darwin"
|
8
|
+
require "micro/switcher/linux"
|
9
|
+
require "micro/switcher/windows"
|
10
|
+
|
11
|
+
module JDCMicro
|
12
|
+
class McfCommand < JDC::CLI
|
13
|
+
MICRO_FILE = '~/.jdc/micro.yml'
|
14
|
+
|
15
|
+
desc "Display Micro Cloud Foundry VM status"
|
16
|
+
input :vmx, :argument => :required,
|
17
|
+
:desc => "Path to micro.vmx"
|
18
|
+
input :password, :argument => :optional,
|
19
|
+
:desc => "Cleartext password for guest VM vcap user"
|
20
|
+
def micro_status
|
21
|
+
mode = runner.offline? ? 'offline' : 'online'
|
22
|
+
|
23
|
+
line "Micro Cloud Foundry VM currently in #{b(mode)} mode"
|
24
|
+
line "VMX Path: #{c(runner.vmx, :good)}"
|
25
|
+
line "Domain: #{c(runner.domain, :good)}"
|
26
|
+
line "IP Address: #{c(runner.ip, :good)}"
|
27
|
+
end
|
28
|
+
|
29
|
+
desc "Micro Cloud Foundry offline mode"
|
30
|
+
input :vmx, :argument => :required,
|
31
|
+
:desc => "Path to micro.vmx"
|
32
|
+
input :password, :argument => :optional,
|
33
|
+
:desc => "Cleartext password for guest VM vcap user"
|
34
|
+
def micro_offline
|
35
|
+
if !runner.nat?
|
36
|
+
if ask("Reconfigure MCF VM network to nat mode and reboot?", :default => true)
|
37
|
+
with_progress("Rebooting MCF VM") do
|
38
|
+
runner.reset_to_nat!
|
39
|
+
end
|
40
|
+
else
|
41
|
+
fail "Aborted"
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
with_progress("Setting MCF VM to offline mode") do
|
46
|
+
runner.offline!
|
47
|
+
end
|
48
|
+
|
49
|
+
with_progress("Setting host DNS server") do
|
50
|
+
runner.set_host_dns!
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
desc "Micro Cloud Foundry online mode"
|
55
|
+
input :vmx, :argument => :required,
|
56
|
+
:desc => "Path to micro.vmx"
|
57
|
+
input :password, :argument => :optional,
|
58
|
+
:desc => "Cleartext password for guest VM vcap user"
|
59
|
+
def micro_online
|
60
|
+
runner
|
61
|
+
with_progress("Unsetting host DNS server") do
|
62
|
+
runner.unset_host_dns!
|
63
|
+
end
|
64
|
+
|
65
|
+
with_progress("Setting MCF VM to online mode") do
|
66
|
+
runner.online!
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
def runner
|
71
|
+
return @runner if @runner
|
72
|
+
|
73
|
+
config = build_config
|
74
|
+
@runner = switcher(config)
|
75
|
+
check_vm_running
|
76
|
+
store_config(config)
|
77
|
+
|
78
|
+
@runner
|
79
|
+
end
|
80
|
+
|
81
|
+
def check_vm_running
|
82
|
+
unless runner.running?
|
83
|
+
if ask("MCF VM is not running. Do you want to start it?", :default => true)
|
84
|
+
with_progress("Starting MCF VM") do
|
85
|
+
runner.start!
|
86
|
+
end
|
87
|
+
else
|
88
|
+
fail "MCF VM needs to be running."
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
unless runner.ready?
|
93
|
+
fail "MCF VM initial setup needs to be completed before using 'jdc micro'"
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
def switcher(config)
|
98
|
+
case McfCommand.platform
|
99
|
+
when :darwin
|
100
|
+
JDCMicro::Switcher::Darwin.new(config)
|
101
|
+
when :linux
|
102
|
+
JDCMicro::Switcher::Linux.new(config)
|
103
|
+
when :windows
|
104
|
+
JDCMicro::Switcher::Windows.new(config)
|
105
|
+
when :dummy # for testing only
|
106
|
+
JDCMicro::Switcher::Dummy.new(config)
|
107
|
+
else
|
108
|
+
fail "unsupported platform: #{McfCommand.platform}"
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
# Returns the configuration needed to run the micro related subcommands.
|
113
|
+
# First loads saved config from file (if there is any), then overrides
|
114
|
+
# loaded values with command line arguments, and finally tries to guess
|
115
|
+
# in case neither was used:
|
116
|
+
# vmx location of micro.vmx file
|
117
|
+
# vmrun location of vmrun command
|
118
|
+
# password password for vcap user (in the guest vm)
|
119
|
+
# platform current platform
|
120
|
+
def build_config
|
121
|
+
conf = micro # returns {} if there isn't a saved config
|
122
|
+
|
123
|
+
override(conf, :vmx, true) do
|
124
|
+
locate_vmx(McfCommand.platform)
|
125
|
+
end
|
126
|
+
|
127
|
+
override(conf, :vmrun, true) do
|
128
|
+
JDCMicro::VMrun.locate(McfCommand.platform)
|
129
|
+
end
|
130
|
+
|
131
|
+
override(conf, :password) do
|
132
|
+
ask("Please enter your MCF VM password (vcap user) password", :echo => "*")
|
133
|
+
end
|
134
|
+
|
135
|
+
conf[:platform] = McfCommand.platform
|
136
|
+
|
137
|
+
conf
|
138
|
+
end
|
139
|
+
|
140
|
+
# Save the cleartext password if --save is supplied.
|
141
|
+
# Note: it is due to vix we have to use a cleartext password :(
|
142
|
+
# Only if --password is used and not --save is the password deleted from the
|
143
|
+
# config file before it is stored to disk.
|
144
|
+
def store_config(config)
|
145
|
+
if input[:save]
|
146
|
+
warn("cleartext password saved in: #{MICRO_FILE}")
|
147
|
+
end
|
148
|
+
|
149
|
+
store_micro(config)
|
150
|
+
end
|
151
|
+
|
152
|
+
# override with command line arguments and yield the block in case the option isn't set
|
153
|
+
def override(config, option, escape=false, &blk)
|
154
|
+
# override if given on the command line
|
155
|
+
if opt = input[option]
|
156
|
+
opt = JDCMicro.escape_path(opt) if escape
|
157
|
+
config[option] = opt
|
158
|
+
end
|
159
|
+
config[option] = yield unless config[option]
|
160
|
+
end
|
161
|
+
|
162
|
+
def locate_vmx(platform)
|
163
|
+
paths = YAML.load_file(JDCMicro.config_file('paths.yml'))
|
164
|
+
vmx_paths = paths[platform.to_s]['vmx']
|
165
|
+
vmx = JDCMicro.locate_file('micro.vmx', 'micro', vmx_paths)
|
166
|
+
fail "Unable to locate micro.vmx, please supply --vmx option" unless vmx
|
167
|
+
vmx
|
168
|
+
end
|
169
|
+
|
170
|
+
def self.platform
|
171
|
+
case RUBY_PLATFORM
|
172
|
+
when /darwin/ # x86_64-darwin11.2.0
|
173
|
+
:darwin
|
174
|
+
when /linux/ # x86_64-linux
|
175
|
+
:linux
|
176
|
+
when /mingw|mswin32|cygwin/ # i386-mingw32
|
177
|
+
:windows
|
178
|
+
else
|
179
|
+
RUBY_PLATFORM
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
183
|
+
def micro
|
184
|
+
micro_file = File.expand_path(MICRO_FILE)
|
185
|
+
return {} unless File.exists? micro_file
|
186
|
+
contents = File.read(micro_file).strip
|
187
|
+
MultiJson.load(contents)
|
188
|
+
end
|
189
|
+
|
190
|
+
def store_micro(micro)
|
191
|
+
micro_file = File.expand_path(MICRO_FILE)
|
192
|
+
File.open(micro_file, 'w') do |file|
|
193
|
+
file.write(MultiJson.dump(micro))
|
194
|
+
end
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
require "micro/errors"
|
2
|
+
|
3
|
+
module JDCMicro::Switcher
|
4
|
+
class Base
|
5
|
+
|
6
|
+
def initialize(config)
|
7
|
+
@config = config
|
8
|
+
|
9
|
+
@vmrun = JDCMicro::VMrun.new(config)
|
10
|
+
end
|
11
|
+
|
12
|
+
#wrapper methods
|
13
|
+
def vmx
|
14
|
+
@vmrun.vmx
|
15
|
+
end
|
16
|
+
|
17
|
+
def domain
|
18
|
+
@vmrun.domain
|
19
|
+
end
|
20
|
+
|
21
|
+
def ip
|
22
|
+
@vmrun.ip
|
23
|
+
end
|
24
|
+
|
25
|
+
def running?
|
26
|
+
@vmrun.running?
|
27
|
+
end
|
28
|
+
|
29
|
+
def start!
|
30
|
+
@vmrun.start!
|
31
|
+
end
|
32
|
+
|
33
|
+
def ready?
|
34
|
+
@vmrun.ready?
|
35
|
+
end
|
36
|
+
|
37
|
+
def offline?
|
38
|
+
@vmrun.offline?
|
39
|
+
end
|
40
|
+
|
41
|
+
def nat?
|
42
|
+
@config['online_connection_type'] ||= @vmrun.connection_type
|
43
|
+
@config["online_connection_type"] == "nat"
|
44
|
+
end
|
45
|
+
|
46
|
+
def reset_to_nat!
|
47
|
+
@vmrun.connection_type = 'nat'
|
48
|
+
@vmrun.reset
|
49
|
+
end
|
50
|
+
|
51
|
+
def set_host_dns!
|
52
|
+
@config['domain'] ||= @vmrun.domain
|
53
|
+
@config['ip'] ||= @vmrun.ip
|
54
|
+
set_nameserver(@config['domain'], @config['ip'])
|
55
|
+
end
|
56
|
+
|
57
|
+
def unset_host_dns!
|
58
|
+
@config['domain'] ||= @vmrun.domain
|
59
|
+
@config['ip'] ||= @vmrun.ip
|
60
|
+
unset_nameserver(@config['domain'], @config['ip'])
|
61
|
+
end
|
62
|
+
|
63
|
+
def offline!
|
64
|
+
if @vmrun.offline?
|
65
|
+
raise JDCMicro::MCFError, "Micro Cloud Foundry VM already in offline mode"
|
66
|
+
else
|
67
|
+
@vmrun.offline!
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
def online!
|
72
|
+
if @vmrun.offline?
|
73
|
+
@vmrun.online!
|
74
|
+
else
|
75
|
+
raise JDCMirco::MCFError, "Micro Cloud Foundry already in online mode"
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|