forked from ebrahim/inorun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinosync.py
More file actions
executable file
·213 lines (177 loc) · 6 KB
/
inosync.py
File metadata and controls
executable file
·213 lines (177 loc) · 6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
#!/usr/bin/python
# vim: set fileencoding=utf-8 ts=2 sw=2 expandtab :
import os,sys
from optparse import OptionParser,make_option
from time import sleep
from syslog import *
from pyinotify import *
__author__ = "Benedikt Böhm"
__copyright__ = "Copyright (c) 2007-2008 Benedikt Böhm <bb@xnull.de>"
__version__ = 0,2,3
OPTION_LIST = [
make_option(
"-c", dest = "config",
default = "/etc/inosync/default.py",
metavar = "FILE",
help = "load configuration from FILE"),
make_option(
"-d", dest = "daemonize",
action = "store_true",
default = False,
help = "daemonize %prog"),
make_option(
"-p", dest = "pretend",
action = "store_true",
default = False,
help = "do not actually call rsync"),
make_option(
"-v", dest = "verbose",
action = "store_true",
default = False,
help = "print debugging information"),
]
DEFAULT_EVENTS = [
"IN_CLOSE_WRITE",
"IN_CREATE",
"IN_DELETE",
"IN_MOVED_FROM",
"IN_MOVED_TO"
]
class RsyncEvent(ProcessEvent):
pretend = None
def __init__(self, pretend=False):
self.pretend = pretend
def sync(self, wpath):
args = [config.rsync, "-ltrp", "--delete"]
if config.extra:
args.append(config.extra)
args.append("--bwlimit=%s" % config.rspeed)
if config.logfile:
args.append("--log-file=%s" % config.logfile)
if "rexcludes" in dir(config):
for rexclude in config.rexcludes:
args.append("--exclude=%s" % rexclude)
args.append(wpath)
rpath = config.rpaths[config.wpaths.index(wpath)]
args.append("%s")
cmd = " ".join(args)
for node in config.rnodes:
if self.pretend:
syslog("would execute `%s'" % (cmd % (node + rpath)))
else:
syslog(LOG_DEBUG, "executing %s" % (cmd % (node + rpath)))
proc = os.popen(cmd % (node + rpath))
for line in proc:
syslog(LOG_DEBUG, "[rsync] %s" % line.strip())
def process_default(self, event):
syslog(LOG_DEBUG, "caught %s on %s" % \
(event.maskname, os.path.join(event.path, event.name)))
for wpath in config.wpaths:
if os.path.realpath(wpath) in os.path.realpath(event.path):
self.sync(wpath)
break
def daemonize():
try:
pid = os.fork()
except OSError, e:
raise Exception, "%s [%d]" % (e.strerror, e.errno)
if (pid == 0):
os.setsid()
try:
pid = os.fork()
except OSError, e:
raise Exception, "%s [%d]" % (e.strerror, e.errno)
if (pid == 0):
os.chdir('/')
os.umask(0)
else:
os._exit(0)
else:
os._exit(0)
os.open("/dev/null", os.O_RDWR)
os.dup2(0, 1)
os.dup2(0, 2)
return 0
def load_config(filename):
if not os.path.isfile(filename):
raise RuntimeError, "Configuration file does not exist: %s" % filename
configdir = os.path.dirname(filename)
configfile = os.path.basename(filename)
if configfile.endswith(".py"):
configfile = configfile[0:-3]
else:
raise RuntimeError, "Configuration file must be a importable python file ending in .py"
sys.path.append(configdir)
exec("import %s as __config__" % configfile)
sys.path.remove(configdir)
global config
config = __config__
if not "wpaths" in dir(config):
raise RuntimeError, "no paths given to watch"
for wpath in config.wpaths:
if not os.path.isdir(wpath):
raise RuntimeError, "one of the watch paths does not exist: %s" % wpath
if not os.path.isabs(wpath):
config.wpaths[config.wpaths.index(wpath)] = os.path.abspath(wpath)
for owpath in config.wpaths:
for wpath in config.wpaths:
if os.path.realpath(owpath) in os.path.realpath(wpath) and wpath != owpath:
raise RuntimeError, "You cannot specify %s in wpaths which is a subdirectory of %s since it is already synced." % (wpath, owpath)
if not "rpaths" in dir(config):
raise RuntimeError, "no paths given for the transfer"
if len(config.wpaths) != len(config.rpaths):
raise RuntimeError, "the no. of remote paths must be equal to the number of watched paths"
if not "rnodes" in dir(config) or len(config.rnodes) < 1:
raise RuntimeError, "no remote nodes given"
if not "rspeed" in dir(config) or config.rspeed < 0:
config.rspeed = 0
if not "emask" in dir(config):
config.emask = DEFAULT_EVENTS
for event in config.emask:
if not event in EventsCodes.ALL_FLAGS.keys():
raise RuntimeError, "invalid inotify event: %s" % event
if not "edelay" in dir(config):
config.edelay = 10
if config.edelay < 0:
raise RuntimeError, "event delay needs to be greater or equal to 0"
if not "logfile" in dir(config):
config.logfile = None
if not "extra" in dir(config):
config.extra = ""
if not "rsync" in dir(config):
config.rsync = "/usr/bin/rsync"
if not os.path.isabs(config.rsync):
raise RuntimeError, "rsync path needs to be absolute"
if not os.path.isfile(config.rsync):
raise RuntimeError, "rsync binary does not exist: %s" % config.rsync
def main():
version = ".".join(map(str, __version__))
parser = OptionParser(option_list=OPTION_LIST,version="%prog " + version)
(options, args) = parser.parse_args()
if len(args) > 0:
parser.error("too many arguments")
logopt = LOG_PID|LOG_CONS
if not options.daemonize:
logopt |= LOG_PERROR
openlog("inosync", logopt, LOG_DAEMON)
if options.verbose:
setlogmask(LOG_UPTO(LOG_DEBUG))
else:
setlogmask(LOG_UPTO(LOG_INFO))
load_config(options.config)
if options.daemonize:
daemonize()
wm = WatchManager()
ev = RsyncEvent(options.pretend)
notifier = AsyncNotifier(wm, ev, read_freq=config.edelay)
mask = reduce(lambda x,y: x|y, [EventsCodes.ALL_FLAGS[e] for e in config.emask])
wds = wm.add_watch(config.wpaths, mask, rec=True, auto_add=True)
for wpath in config.wpaths:
syslog(LOG_DEBUG, "starting initial synchronization on %s" % wpath)
ev.sync(wpath)
syslog(LOG_DEBUG, "initial synchronization on %s done" % wpath)
syslog("resuming normal operations on %s" % wpath)
asyncore.loop()
sys.exit(0)
if __name__ == "__main__":
main()