Class: Thin::Controllers::Controller
- Inherits:
-
Object
- Object
- Thin::Controllers::Controller
show all
- Includes:
- Logging
- Defined in:
- lib/thin/controllers/controller.rb
Overview
Controls one Thin server. Allow to start, stop, restart and configure a single thin server.
Instance Attribute Summary collapse
Instance Method Summary
collapse
Methods included from Logging
debug=, debug?, level, level=, #log, log_debug, #log_debug, log_error, #log_error, #log_info, log_info, log_msg, #silent, #silent=, silent=, silent?, #trace, trace, trace=, trace?, trace_msg
Constructor Details
#initialize(options) ⇒ Controller
28
29
30
31
32
33
34
35
|
# File 'lib/thin/controllers/controller.rb', line 28
def initialize(options)
@options = options
if @options[:socket]
@options.delete(:address)
@options.delete(:port)
end
end
|
Instance Attribute Details
#options ⇒ Object
Command line options passed to the thin script
26
27
28
|
# File 'lib/thin/controllers/controller.rb', line 26
def options
@options
end
|
Instance Method Details
#config ⇒ Object
110
111
112
113
114
115
116
117
118
|
# File 'lib/thin/controllers/controller.rb', line 110
def config
config_file = @options.delete(:config) || raise(OptionRequired, :config)
@options.keys.each { |o| @options[o.to_s] = @options.delete(o) }
File.open(config_file, 'w') { |f| f << @options.to_yaml }
log_info "Wrote configuration to #{config_file}"
end
|
#restart ⇒ Object
100
101
102
103
104
105
106
107
108
|
# File 'lib/thin/controllers/controller.rb', line 100
def restart
raise OptionRequired, :pid unless @options[:pid]
tail_log(@options[:log]) do
if Server.restart(@options[:pid])
wait_for_file :creation, @options[:pid]
end
end
end
|
#start ⇒ Object
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# File 'lib/thin/controllers/controller.rb', line 37
def start
@options[:backend] = eval(@options[:backend], TOPLEVEL_BINDING) if @options[:backend]
server = Server.new(@options[:socket] || @options[:address],
@options[:port],
@options)
server.pid_file = @options[:pid]
server.log_file = @options[:log]
server.timeout = @options[:timeout]
server.maximum_connections = @options[:max_conns]
server.maximum_persistent_connections = @options[:max_persistent_conns]
server.threaded = @options[:threaded]
server.no_epoll = @options[:no_epoll] if server.backend.respond_to?(:no_epoll=)
server.threadpool_size = @options[:threadpool_size] if server.threaded?
if @options[:ssl]
server.ssl = true
server.ssl_options = { :private_key_file => @options[:ssl_key_file], :cert_chain_file => @options[:ssl_cert_file], :verify_peer => !@options[:ssl_disable_verify], :ssl_version => @options[:ssl_version], :cipher_list => @options[:ssl_cipher_list]}
end
server.daemonize if @options[:daemonize]
server.config
server.change_privilege @options[:user], @options[:group] if @options[:user] && @options[:group]
if @options[:rackup]
server.app = load_rackup_config
else
server.app = load_adapter
end
server.app = Rack::URLMap.new(@options[:prefix] => server.app) if @options[:prefix]
server.app = Stats::Adapter.new(server.app, @options[:stats]) if @options[:stats]
server.on_restart { Command.run(:start, @options) }
server.start
end
|
#stop ⇒ Object
90
91
92
93
94
95
96
97
98
|
# File 'lib/thin/controllers/controller.rb', line 90
def stop
raise OptionRequired, :pid unless @options[:pid]
tail_log(@options[:log]) do
if Server.kill(@options[:pid], @options[:force] ? 0 : (@options[:timeout] || 60))
wait_for_file :deletion, @options[:pid]
end
end
end
|