class SyncWrap::Puma
Provision to install and start/restart a Puma HTTP server instance, optionally triggered by a state change key. Systemd service and socket units are supported.
Host component dependencies: <Distro>?, RunUser, <ruby>, SourceTree?
Attributes
Should Puma be restarted even when there were no source bundle changes? (Default: false)
An array of ListenStream configuration values for systemd_socket. If a puma_flags[:port] is specified, this defaults to a single '0.0.0.0:port' stream. Otherwise this setting is required if systemd_socket is specified.
Hash of puma command line flag overrides. (Default: See puma_flags)
Path to the application/configuration directory which contains the config.ru. (Default: SyncWrap::SourceTree#remote_source_path)
Public Class Methods
# File lib/syncwrap/components/puma.rb, line 94 def initialize( opts = {} ) @puma_version = nil @always_restart = false @rack_path = nil @puma_flags = {} super if systemd_socket && !systemd_service raise "Puma#systemd_service is required when #systemd_socket is specified" end end
Public Instance Methods
# File lib/syncwrap/components/puma.rb, line 105 def install if puma_version gem_install( 'puma', version: puma_version ) end if systemd_service install_units( always_restart? || change_key_changes? ) else rudo( "( cd #{rack_path}", close: ')' ) do rudo( "if [ -f puma.state -a -e control ]; then", close: bare_else_start ) do if always_restart? || change_key_changes? bare_restart else rudo 'true' #no-op end end end nil end end
# File lib/syncwrap/components/puma.rb, line 50 def puma_flags { dir: rack_path, pidfile: "#{rack_path}/puma.pid", state: "#{rack_path}/puma.state", control: "unix://#{rack_path}/control", environment: "production", daemon: !foreground? }.merge( @puma_flags ) end
# File lib/syncwrap/components/puma.rb, line 42 def rack_path @rack_path || remote_source_path end
# File lib/syncwrap/components/puma.rb, line 135 def restart( *args ) if systemd_service super else bare_restart end end
# File lib/syncwrap/components/puma.rb, line 127 def start if systemd_service super else bare_start end end
# File lib/syncwrap/components/puma.rb, line 151 def status if systemd_service super else bare_status end end
# File lib/syncwrap/components/puma.rb, line 143 def stop if systemd_service super else bare_stop end end
Protected Instance Methods
# File lib/syncwrap/components/puma.rb, line 65 def always_restart? @always_restart end
# File lib/syncwrap/components/puma.rb, line 182 def bare_else_start <<-SH else #{puma_start_command} fi SH end
# File lib/syncwrap/components/puma.rb, line 166 def bare_restart rudo( ( pumactl_command + %w[ --state puma.state restart ] ).join( ' ' ) ) end
# File lib/syncwrap/components/puma.rb, line 178 def bare_start rudo( "cd #{rack_path} && #{puma_start_command}" ) end
# File lib/syncwrap/components/puma.rb, line 174 def bare_status rudo( ( pumactl_command + %w[ --state puma.state status ] ).join( ' ' ) ) end
# File lib/syncwrap/components/puma.rb, line 170 def bare_stop rudo( ( pumactl_command + %w[ --state puma.state stop ] ).join( ' ' ) ) end
By default, runs in foreground if a systemd_service is specified.
# File lib/syncwrap/components/puma.rb, line 162 def foreground? !!systemd_service end
# File lib/syncwrap/components/puma.rb, line 221 def key_to_arg( key ) '--' + key.to_s.gsub( /_/, '-' ) end
# File lib/syncwrap/components/puma.rb, line 81 def listen_streams if @listen_streams @listen_streams elsif p = puma_flags[:port] [ "0.0.0.0:#{p}" ] else raise( "Neither #listen_streams nor #puma_flags[:port] specified" + " with Puma#systemd_socket" ) end end
# File lib/syncwrap/components/puma.rb, line 203 def puma_command if puma_version [ ruby_command, '-S', 'puma', "_#{puma_version}_" ] else [ File.expand_path( File.join( bundle_install_bin_stubs, "puma" ), rack_path ) ] end end
# File lib/syncwrap/components/puma.rb, line 190 def puma_start_command args = puma_flags.map do |key,value| if value.is_a?( TrueClass ) key_to_arg( key ) elsif value.nil? || value.is_a?( FalseClass ) nil else [ key_to_arg( key ), value && value.to_s ] end end ( puma_command + args.compact ).join( ' ' ) end
# File lib/syncwrap/components/puma.rb, line 212 def pumactl_command if puma_version [ ruby_command, '-S', 'pumactl', "_#{puma_version}_" ] else [ File.expand_path( File.join( bundle_install_bin_stubs, "pumactl" ), rack_path ) ] end end
# File lib/syncwrap/components/puma.rb, line 225 def rput_unit_files c = rput( src_for_systemd_service, "/etc/systemd/system/#{systemd_service}", user: :root ) if systemd_socket c += rput( src_for_systemd_socket, "/etc/systemd/system/#{systemd_socket}", user: :root ) end c end
# File lib/syncwrap/components/puma.rb, line 235 def src_for_systemd_service s = "/etc/systemd/system/#{systemd_service}" unless find_source( s ) s = '/etc/systemd/system/puma.service' end s end
# File lib/syncwrap/components/puma.rb, line 243 def src_for_systemd_socket s = "/etc/systemd/system/#{systemd_socket}" unless find_source( s ) s = '/etc/systemd/system/puma.socket' end s end