Class: Docker_Sync::SyncProcess
- Inherits:
-
Object
- Object
- Docker_Sync::SyncProcess
- Includes:
- Thor::Shell
- Defined in:
- lib/docker-sync/sync_process.rb
Instance Method Summary collapse
- #clean ⇒ Object
- #get_host_ip_default ⇒ Object
-
#initialize(sync_name, options) ⇒ SyncProcess
constructor
noinspection RubyStringKeysInHashInspection.
- #run ⇒ Object
- #set_sync_strategy ⇒ Object
- #set_watch_strategy ⇒ Object
- #start_container ⇒ Object
- #stop ⇒ Object
- #sync ⇒ Object
- #watch ⇒ Object
- #watch_fork ⇒ Object
- #watch_thread ⇒ Object
Constructor Details
#initialize(sync_name, options) ⇒ SyncProcess
noinspection RubyStringKeysInHashInspection
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/docker-sync/sync_process.rb', line 21 def initialize(sync_name, ) @sync_name = sync_name defaults = { 'verbose' => false, 'sync_host_ip' => get_host_ip_default } # even if sync_host_ip is set, if it is set to auto, enforce the default if .key?('sync_host_ip') && ['sync_host_ip'] == 'auto' || ['sync_host_ip'] == '' ['sync_host_ip'] = defaults['sync_host_ip'] end @options = defaults.merge() @sync_strategy = nil @watch_strategy = nil set_sync_strategy set_watch_strategy end |
Instance Method Details
#clean ⇒ Object
89 90 91 92 |
# File 'lib/docker-sync/sync_process.rb', line 89 def clean @sync_strategy.clean @watch_strategy.clean end |
#get_host_ip_default ⇒ Object
66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/docker-sync/sync_process.rb', line 66 def get_host_ip_default return '127.0.0.1' if DockerSync::Preconditions::Strategy.instance.is_driver_docker_for_mac? if DockerSync::Preconditions::Strategy.instance.is_driver_docker_toolbox? cmd = 'docker-machine ip' stdout, stderr, exit_status = Open3.capture3(cmd) unless exit_status.success? raise "Error getting sync_host_ip automatically, exit code #{$?.exitstatus} ... #{stderr}" end return stdout.gsub("\n",'') end end |
#run ⇒ Object
79 80 81 82 |
# File 'lib/docker-sync/sync_process.rb', line 79 def run @sync_strategy.run @watch_strategy.run end |
#set_sync_strategy ⇒ Object
40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/docker-sync/sync_process.rb', line 40 def set_sync_strategy case @options['sync_strategy'] when 'rsync' @sync_strategy = Docker_Sync::SyncStrategy::Rsync.new(@sync_name, @options) when 'unison' @sync_strategy = Docker_Sync::SyncStrategy::Unison.new(@sync_name, @options) when 'native' @sync_strategy = Docker_Sync::SyncStrategy::Native.new(@sync_name, @options) else raise "Unknown sync_strategy #{@options['sync_strategy']}" end end |
#set_watch_strategy ⇒ Object
53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/docker-sync/sync_process.rb', line 53 def set_watch_strategy case @options['watch_strategy'] when 'fswatch' @watch_strategy = Docker_Sync::WatchStrategy::Fswatch.new(@sync_name, @options) when 'dummy' @watch_strategy = Docker_Sync::WatchStrategy::Dummy.new(@sync_name, @options) when 'unison' @watch_strategy = Docker_Sync::WatchStrategy::Unison.new(@sync_name, @options) else raise "Unknown watch_strategy #{@options['watch_strategy']}" end end |
#start_container ⇒ Object
99 100 101 |
# File 'lib/docker-sync/sync_process.rb', line 99 def start_container @sync_strategy.start_container end |
#stop ⇒ Object
84 85 86 87 |
# File 'lib/docker-sync/sync_process.rb', line 84 def stop @sync_strategy.stop @watch_strategy.stop end |
#sync ⇒ Object
94 95 96 97 |
# File 'lib/docker-sync/sync_process.rb', line 94 def sync # TODO: probably use run here @sync_strategy.sync end |
#watch ⇒ Object
103 104 105 |
# File 'lib/docker-sync/sync_process.rb', line 103 def watch @watch_strategy.run end |
#watch_fork ⇒ Object
107 108 109 |
# File 'lib/docker-sync/sync_process.rb', line 107 def watch_fork return @watch_strategy.watch_fork end |
#watch_thread ⇒ Object
111 112 113 |
# File 'lib/docker-sync/sync_process.rb', line 111 def watch_thread return @watch_strategy.watch_thread end |