Class: DockerSync::SyncManager

Inherits:
Object
  • Object
show all
Includes:
Thor::Shell
Defined in:
lib/docker-sync/sync_manager.rb

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ SyncManager

Returns a new instance of SyncManager.



15
16
17
18
19
# File 'lib/docker-sync/sync_manager.rb', line 15

def initialize(options)
  @sync_processes = []

  load_configuration(options)
end

Instance Method Details

#clean(sync_name = nil) ⇒ Object



82
83
84
85
86
87
# File 'lib/docker-sync/sync_manager.rb', line 82

def clean(sync_name = nil)
  init_sync_processes(sync_name)
  @sync_processes.each { |sync_process|
    sync_process.clean
  }
end

#create_sync(sync_name, sync_configuration) ⇒ Object



134
135
136
137
# File 'lib/docker-sync/sync_manager.rb', line 134

def create_sync(sync_name, sync_configuration)
  sync_process = DockerSync::SyncProcess.new(sync_name, sync_configuration)
  return sync_process
end

#get_sync_pointsObject



25
26
27
# File 'lib/docker-sync/sync_manager.rb', line 25

def get_sync_points
  return @config_syncs
end

#global_optionsObject



21
22
23
# File 'lib/docker-sync/sync_manager.rb', line 21

def global_options
  return @config_global
end

#init_sync_processes(sync_name = nil) ⇒ Object



67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/docker-sync/sync_manager.rb', line 67

def init_sync_processes(sync_name = nil)
  return if @sync_processes.size != 0
  if sync_name.nil?
    @config_syncs.each { |name, sync_configuration|
      @sync_processes.push(create_sync(name, sync_configuration))
    }
  else
    unless @config_syncs.key?(sync_name)
      raise("Could not find sync configuration with name #{sync_name}")
    end
    @sync_processes.push(create_sync(sync_name, @config_syncs[sync_name]))
  end
end

#join_threadsObject



111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# File 'lib/docker-sync/sync_manager.rb', line 111

def join_threads
  begin
    @sync_processes.each do |sync_process|
      if sync_process.watch_thread
        sync_process.watch_thread.join
      end
      if sync_process.watch_fork
        Process.wait(sync_process.watch_fork)
      end
    end

  rescue SystemExit, Interrupt
    say_status 'shutdown', 'Shutting down...', :blue
    @sync_processes.each do |sync_process|
      sync_process.stop
    end

  rescue StandardError => e
    puts "EXCEPTION: #{e.inspect}"
    puts "MESSAGE: #{e.message}"
  end
end

#run(sync_name = nil) ⇒ Object



103
104
105
106
107
108
109
# File 'lib/docker-sync/sync_manager.rb', line 103

def run(sync_name = nil)
  init_sync_processes(sync_name)

  @sync_processes.each { |sync_process|
    sync_process.run
  }
end

#start_container(sync_name = nil) ⇒ Object



96
97
98
99
100
101
# File 'lib/docker-sync/sync_manager.rb', line 96

def start_container(sync_name = nil)
  init_sync_processes(sync_name)
  @sync_processes.each { |sync_process|
    sync_process.start_container
  }
end

#stopObject



139
140
141
142
143
144
145
146
147
# File 'lib/docker-sync/sync_manager.rb', line 139

def stop
  init_sync_processes
  @sync_processes.each { |sync_process|
    sync_process.stop
    unless sync_process.watch_thread.nil?
      sync_process.watch_thread.kill unless sync_process.watch_thread.nil?
    end
  }
end

#sync(sync_name = nil) ⇒ Object



89
90
91
92
93
94
# File 'lib/docker-sync/sync_manager.rb', line 89

def sync(sync_name = nil)
  init_sync_processes(sync_name)
  @sync_processes.each { |sync_process|
    sync_process.sync
  }
end

#upgrade_syncs_configObject



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/docker-sync/sync_manager.rb', line 29

def upgrade_syncs_config
  @config_syncs.each do |name, config|
    @config_syncs[name]['config_path'] = @config_path

    @config_syncs[name]['cli_mode'] = @config_global['cli_mode'] || 'auto'

    # set the global verbose setting, if the sync-endpoint does not define a own one
    unless config.key?('verbose')
      @config_syncs[name]['verbose'] = false
      if @config_global.key?('verbose')
        @config_syncs[name]['verbose'] = @config_global['verbose']
      end
    end

    # set the global max_attempt setting, if the sync-endpoint does not define a own one
    unless config.key?('max_attempt')
      if @config_global.key?('max_attempt')
        @config_syncs[name]['max_attempt'] = @config_global['max_attempt']
      end
    end

    if @config_syncs[name].key?('dest')
      puts 'Please do no longer use "dest" in your docker-sync.yml configuration - also see https://github.com/EugenMayer/docker-sync/wiki/1.2-Upgrade-Guide#dest-has-been-removed!'
      exit 1
    else
      @config_syncs[name]['dest'] = '/app_sync'
    end

    # for each strategy check if a custom image has been defined and inject that into the sync-endpoints
    # which do fit for this strategy
    %w(rsync unison native_osx native).each do |strategy|
      if config.key?("#{strategy}_image") && @config_syncs[name]['sync_strategy'] == strategy
        @config_syncs[name]['image'] = config["#{strategy}_image"]
      end
    end
  end
end

#watch_startObject



155
156
157
158
159
# File 'lib/docker-sync/sync_manager.rb', line 155

def watch_start
  @sync_processes.each { |sync_process|
    sync_process.watch
  }
end

#watch_stopObject



149
150
151
152
153
# File 'lib/docker-sync/sync_manager.rb', line 149

def watch_stop
  @sync_processes.each { |sync_process|
    sync_process.watch_thread.kill unless sync_process.watch_thread.nil?
  }
end