daemon_controller 1.2.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -13
- data/LICENSE.txt +1 -2
- data/{README.markdown → README.md} +40 -76
- data/Rakefile +16 -574
- data/daemon_controller.gemspec +5 -4
- data/lib/daemon_controller/lock_file.rb +106 -105
- data/lib/daemon_controller/packaging.rb +10 -16
- data/lib/daemon_controller/spawn.rb +8 -7
- data/lib/daemon_controller/version.rb +10 -8
- data/lib/daemon_controller.rb +941 -851
- data/spec/daemon_controller_spec.rb +572 -409
- data/spec/echo_server.rb +139 -115
- data/spec/test_helper.rb +132 -105
- data/spec/unresponsive_daemon.rb +13 -7
- metadata +7 -20
- checksums.yaml.gz.asc +0 -12
- data/debian.template/changelog +0 -5
- data/debian.template/compat +0 -1
- data/debian.template/control.template +0 -15
- data/debian.template/copyright +0 -24
- data/debian.template/ruby-daemon-controller.install +0 -2
- data/debian.template/rules +0 -17
- data/debian.template/source/format +0 -1
- data/rpm/get_distro_id.py +0 -4
- data/rpm/rubygem-daemon_controller.spec.template +0 -102
- data.tar.gz.asc +0 -12
- metadata.gz.asc +0 -12
@@ -1,16 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# daemon_controller, library for robust daemon management
|
2
|
-
# Copyright (c) 2010
|
3
|
-
#
|
4
|
+
# Copyright (c) 2010-2025 Asynchronous B.V.
|
5
|
+
#
|
4
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
7
|
# of this software and associated documentation files (the "Software"), to deal
|
6
8
|
# in the Software without restriction, including without limitation the rights
|
7
9
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8
10
|
# copies of the Software, and to permit persons to whom the Software is
|
9
11
|
# furnished to do so, subject to the following conditions:
|
10
|
-
#
|
12
|
+
#
|
11
13
|
# The above copyright notice and this permission notice shall be included in
|
12
14
|
# all copies or substantial portions of the Software.
|
13
|
-
#
|
15
|
+
#
|
14
16
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
17
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
18
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
@@ -19,108 +21,107 @@
|
|
19
21
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
20
22
|
# THE SOFTWARE.
|
21
23
|
|
22
|
-
require
|
24
|
+
require "fcntl"
|
23
25
|
|
24
26
|
class DaemonController
|
27
|
+
# A lock file is a synchronization mechanism, like a Mutex, but it also allows
|
28
|
+
# inter-process synchronization (as opposed to only inter-thread synchronization
|
29
|
+
# within a single process).
|
30
|
+
#
|
31
|
+
# Processes can obtain either a shared lock or an exclusive lock. It's possible
|
32
|
+
# for multiple processes to obtain a shared lock on a file as long as no
|
33
|
+
# exclusive lock has been obtained by a process. If a process has obtained an
|
34
|
+
# exclusive lock, then no other processes can lock the file, whether they're
|
35
|
+
# trying to obtain a shared lock or an exclusive lock.
|
36
|
+
#
|
37
|
+
# Note that on JRuby, LockFile can only guarantee synchronization between
|
38
|
+
# threads if the different threads use the same LockFile object. Specifying the
|
39
|
+
# same filename is not enough.
|
40
|
+
class LockFile
|
41
|
+
class AlreadyLocked < StandardError
|
42
|
+
end
|
25
43
|
|
26
|
-
#
|
27
|
-
#
|
28
|
-
#
|
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
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
# But unlike #exclusive_lock, this method will raise AlreadyLocked if
|
110
|
-
# no lock can be obtained, instead of blocking.
|
111
|
-
#
|
112
|
-
# If a lock can be obtained, then the given block will be yielded.
|
113
|
-
def try_exclusive_lock
|
114
|
-
File.open(@filename, 'w') do |f|
|
115
|
-
if Fcntl.const_defined? :F_SETFD
|
116
|
-
f.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
|
117
|
-
end
|
118
|
-
if f.flock(File::LOCK_EX | File::LOCK_NB)
|
119
|
-
yield
|
120
|
-
else
|
121
|
-
raise AlreadyLocked
|
122
|
-
end
|
123
|
-
end
|
124
|
-
end
|
125
|
-
end # class LockFile
|
44
|
+
# Create a LockFile object. The lock file is initially not locked.
|
45
|
+
#
|
46
|
+
# +filename+ may point to a nonexistant file. In that case, the lock
|
47
|
+
# file will not be created until one's trying to obtain a lock.
|
48
|
+
#
|
49
|
+
# Note that LockFile will use this exact filename. So if +filename+
|
50
|
+
# is a relative filename, then the actual lock file that will be used
|
51
|
+
# depends on the current working directory.
|
52
|
+
def initialize(filename)
|
53
|
+
@filename = filename
|
54
|
+
end
|
55
|
+
|
56
|
+
# Obtain an exclusive lock on the lock file, yield the given block,
|
57
|
+
# then unlock the lockfile. If the lock file was already locked (whether
|
58
|
+
# shared or exclusively) by another process/thread then this method will
|
59
|
+
# block until the lock file has been unlocked.
|
60
|
+
#
|
61
|
+
# The lock file *must* be writable, otherwise an Errno::EACCESS
|
62
|
+
# exception will be raised.
|
63
|
+
def exclusive_lock
|
64
|
+
File.open(@filename, "w") do |f|
|
65
|
+
if Fcntl.const_defined? :F_SETFD
|
66
|
+
f.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
|
67
|
+
end
|
68
|
+
f.flock(File::LOCK_EX)
|
69
|
+
yield
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
# Obtain an exclusive lock on the lock file, yield the given block,
|
74
|
+
# then unlock the lockfile. If the lock file was already exclusively
|
75
|
+
# locked by another process/thread then this method will
|
76
|
+
# block until the exclusive lock has been released. This method will not
|
77
|
+
# block if only shared locks have been obtained.
|
78
|
+
#
|
79
|
+
# The lock file *must* be writable, otherwise an Errno::EACCESS
|
80
|
+
# exception will be raised.
|
81
|
+
def shared_lock
|
82
|
+
File.open(@filename, "w+") do |f|
|
83
|
+
if Fcntl.const_defined? :F_SETFD
|
84
|
+
f.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
|
85
|
+
end
|
86
|
+
f.flock(File::LOCK_SH)
|
87
|
+
yield
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
# Try to obtain a shared lock on the lock file, similar to #shared_lock.
|
92
|
+
# But unlike #shared_lock, this method will raise AlreadyLocked if
|
93
|
+
# no lock can be obtained, instead of blocking.
|
94
|
+
#
|
95
|
+
# If a lock can be obtained, then the given block will be yielded.
|
96
|
+
def try_shared_lock
|
97
|
+
File.open(@filename, "w+") do |f|
|
98
|
+
if Fcntl.const_defined? :F_SETFD
|
99
|
+
f.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
|
100
|
+
end
|
101
|
+
if f.flock(File::LOCK_SH | File::LOCK_NB)
|
102
|
+
yield
|
103
|
+
else
|
104
|
+
raise AlreadyLocked
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
# Try to obtain an exclusive lock on the lock file, similar to #exclusive_lock.
|
110
|
+
# But unlike #exclusive_lock, this method will raise AlreadyLocked if
|
111
|
+
# no lock can be obtained, instead of blocking.
|
112
|
+
#
|
113
|
+
# If a lock can be obtained, then the given block will be yielded.
|
114
|
+
def try_exclusive_lock
|
115
|
+
File.open(@filename, "w") do |f|
|
116
|
+
if Fcntl.const_defined? :F_SETFD
|
117
|
+
f.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
|
118
|
+
end
|
119
|
+
if f.flock(File::LOCK_EX | File::LOCK_NB)
|
120
|
+
yield
|
121
|
+
else
|
122
|
+
raise AlreadyLocked
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
126
|
+
end # class LockFile
|
126
127
|
end # class DaemonController
|
@@ -1,16 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# daemon_controller, library for robust daemon management
|
2
|
-
# Copyright (c) 2013
|
3
|
-
#
|
4
|
+
# Copyright (c) 2013-2025 Asynchronous B.V.
|
5
|
+
#
|
4
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
7
|
# of this software and associated documentation files (the "Software"), to deal
|
6
8
|
# in the Software without restriction, including without limitation the rights
|
7
9
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8
10
|
# copies of the Software, and to permit persons to whom the Software is
|
9
11
|
# furnished to do so, subject to the following conditions:
|
10
|
-
#
|
12
|
+
#
|
11
13
|
# The above copyright notice and this permission notice shall be included in
|
12
14
|
# all copies or substantial portions of the Software.
|
13
|
-
#
|
15
|
+
#
|
14
16
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
17
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
18
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
@@ -20,16 +22,8 @@
|
|
20
22
|
# THE SOFTWARE.
|
21
23
|
|
22
24
|
DAEMON_CONTROLLER_FILES = [
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
"spec/*.rb",
|
28
|
-
"spec/run_echo_server"
|
29
|
-
]
|
30
|
-
|
31
|
-
DAEMON_CONTROLLER_DEBIAN_EXCLUDE_FILES = [
|
32
|
-
"Rakefile",
|
33
|
-
"debian.template/**/*",
|
34
|
-
"rpm/**/*"
|
25
|
+
"README.md", "LICENSE.txt", "Rakefile", "daemon_controller.gemspec",
|
26
|
+
"lib/**/*.rb",
|
27
|
+
"spec/*.rb",
|
28
|
+
"spec/run_echo_server"
|
35
29
|
]
|
@@ -1,16 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# daemon_controller, library for robust daemon management
|
2
|
-
# Copyright (c) 2010
|
3
|
-
#
|
4
|
+
# Copyright (c) 2010-2025 Asynchronous B.V.
|
5
|
+
#
|
4
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
7
|
# of this software and associated documentation files (the "Software"), to deal
|
6
8
|
# in the Software without restriction, including without limitation the rights
|
7
9
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8
10
|
# copies of the Software, and to permit persons to whom the Software is
|
9
11
|
# furnished to do so, subject to the following conditions:
|
10
|
-
#
|
12
|
+
#
|
11
13
|
# The above copyright notice and this permission notice shall be included in
|
12
14
|
# all copies or substantial portions of the Software.
|
13
|
-
#
|
15
|
+
#
|
14
16
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
17
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
18
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
@@ -20,7 +22,6 @@
|
|
20
22
|
# THE SOFTWARE.
|
21
23
|
|
22
24
|
# This helper script is used for daemonizing a command by executing it and
|
23
|
-
# then exiting ourselves. Used
|
24
|
-
# be safe/supported on all platforms.
|
25
|
+
# then exiting ourselves. Used because Process.spawn has no setsid support.
|
25
26
|
Process.setsid
|
26
|
-
Process.spawn(ARGV[0])
|
27
|
+
Process.spawn(ARGV[0])
|
@@ -1,16 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# daemon_controller, library for robust daemon management
|
2
|
-
# Copyright (c) 2010-
|
3
|
-
#
|
4
|
+
# Copyright (c) 2010-2025 Asynchronous B.V.
|
5
|
+
#
|
4
6
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
7
|
# of this software and associated documentation files (the "Software"), to deal
|
6
8
|
# in the Software without restriction, including without limitation the rights
|
7
9
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8
10
|
# copies of the Software, and to permit persons to whom the Software is
|
9
11
|
# furnished to do so, subject to the following conditions:
|
10
|
-
#
|
12
|
+
#
|
11
13
|
# The above copyright notice and this permission notice shall be included in
|
12
14
|
# all copies or substantial portions of the Software.
|
13
|
-
#
|
15
|
+
#
|
14
16
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
17
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
18
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
@@ -20,8 +22,8 @@
|
|
20
22
|
# THE SOFTWARE.
|
21
23
|
|
22
24
|
class DaemonController
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
25
|
+
MAJOR = 2
|
26
|
+
MINOR = 0
|
27
|
+
TINY = 0
|
28
|
+
VERSION_STRING = "#{MAJOR}.#{MINOR}.#{TINY}"
|
27
29
|
end # class DaemonController
|