Show More
@@ -1,781 +1,784 b'' | |||
|
1 | 1 | # server.py - inotify status server |
|
2 | 2 | # |
|
3 | 3 | # Copyright 2006, 2007, 2008 Bryan O'Sullivan <bos@serpentine.com> |
|
4 | 4 | # Copyright 2007, 2008 Brendan Cully <brendan@kublai.com> |
|
5 | 5 | # |
|
6 | 6 | # This software may be used and distributed according to the terms of the |
|
7 | 7 | # GNU General Public License version 2, incorporated herein by reference. |
|
8 | 8 | |
|
9 | 9 | from mercurial.i18n import _ |
|
10 | 10 | from mercurial import osutil, util |
|
11 | 11 | import common |
|
12 | 12 | import errno, os, select, socket, stat, struct, sys, tempfile, time |
|
13 | 13 | |
|
14 | 14 | try: |
|
15 | 15 | import linux as inotify |
|
16 | 16 | from linux import watcher |
|
17 | 17 | except ImportError: |
|
18 | 18 | raise |
|
19 | 19 | |
|
20 | 20 | class AlreadyStartedException(Exception): pass |
|
21 | 21 | |
|
22 | 22 | def join(a, b): |
|
23 | 23 | if a: |
|
24 | 24 | if a[-1] == '/': |
|
25 | 25 | return a + b |
|
26 | 26 | return a + '/' + b |
|
27 | 27 | return b |
|
28 | 28 | |
|
29 | 29 | walk_ignored_errors = (errno.ENOENT, errno.ENAMETOOLONG) |
|
30 | 30 | |
|
31 | 31 | def walkrepodirs(repo): |
|
32 | 32 | '''Iterate over all subdirectories of this repo. |
|
33 | 33 | Exclude the .hg directory, any nested repos, and ignored dirs.''' |
|
34 | 34 | rootslash = repo.root + os.sep |
|
35 | 35 | |
|
36 | 36 | def walkit(dirname, top): |
|
37 | 37 | fullpath = rootslash + dirname |
|
38 | 38 | try: |
|
39 | 39 | for name, kind in osutil.listdir(fullpath): |
|
40 | 40 | if kind == stat.S_IFDIR: |
|
41 | 41 | if name == '.hg': |
|
42 | 42 | if not top: |
|
43 | 43 | return |
|
44 | 44 | else: |
|
45 | 45 | d = join(dirname, name) |
|
46 | 46 | if repo.dirstate._ignore(d): |
|
47 | 47 | continue |
|
48 | 48 | for subdir in walkit(d, False): |
|
49 | 49 | yield subdir |
|
50 | 50 | except OSError, err: |
|
51 | 51 | if err.errno not in walk_ignored_errors: |
|
52 | 52 | raise |
|
53 | 53 | yield fullpath |
|
54 | 54 | |
|
55 | 55 | return walkit('', True) |
|
56 | 56 | |
|
57 | 57 | def walk(repo, root): |
|
58 | 58 | '''Like os.walk, but only yields regular files.''' |
|
59 | 59 | |
|
60 | 60 | # This function is critical to performance during startup. |
|
61 | 61 | |
|
62 | 62 | rootslash = repo.root + os.sep |
|
63 | 63 | |
|
64 | 64 | def walkit(root, reporoot): |
|
65 | 65 | files, dirs = [], [] |
|
66 | 66 | |
|
67 | 67 | try: |
|
68 | 68 | fullpath = rootslash + root |
|
69 | 69 | for name, kind in osutil.listdir(fullpath): |
|
70 | 70 | if kind == stat.S_IFDIR: |
|
71 | 71 | if name == '.hg': |
|
72 | 72 | if not reporoot: |
|
73 | 73 | return |
|
74 | 74 | else: |
|
75 | 75 | dirs.append(name) |
|
76 | 76 | path = join(root, name) |
|
77 | 77 | if repo.dirstate._ignore(path): |
|
78 | 78 | continue |
|
79 | 79 | for result in walkit(path, False): |
|
80 | 80 | yield result |
|
81 | 81 | elif kind in (stat.S_IFREG, stat.S_IFLNK): |
|
82 | 82 | files.append(name) |
|
83 | 83 | yield fullpath, dirs, files |
|
84 | 84 | |
|
85 | 85 | except OSError, err: |
|
86 | 86 | if err.errno not in walk_ignored_errors: |
|
87 | 87 | raise |
|
88 | 88 | |
|
89 | 89 | return walkit(root, root == '') |
|
90 | 90 | |
|
91 | 91 | def _explain_watch_limit(ui, repo, count): |
|
92 | 92 | path = '/proc/sys/fs/inotify/max_user_watches' |
|
93 | 93 | try: |
|
94 | 94 | limit = int(file(path).read()) |
|
95 | 95 | except IOError, err: |
|
96 | 96 | if err.errno != errno.ENOENT: |
|
97 | 97 | raise |
|
98 | 98 | raise util.Abort(_('this system does not seem to ' |
|
99 | 99 | 'support inotify')) |
|
100 | 100 | ui.warn(_('*** the current per-user limit on the number ' |
|
101 | 101 | 'of inotify watches is %s\n') % limit) |
|
102 | 102 | ui.warn(_('*** this limit is too low to watch every ' |
|
103 | 103 | 'directory in this repository\n')) |
|
104 | 104 | ui.warn(_('*** counting directories: ')) |
|
105 | 105 | ndirs = len(list(walkrepodirs(repo))) |
|
106 | 106 | ui.warn(_('found %d\n') % ndirs) |
|
107 | 107 | newlimit = min(limit, 1024) |
|
108 | 108 | while newlimit < ((limit + ndirs) * 1.1): |
|
109 | 109 | newlimit *= 2 |
|
110 | 110 | ui.warn(_('*** to raise the limit from %d to %d (run as root):\n') % |
|
111 | 111 | (limit, newlimit)) |
|
112 | 112 | ui.warn(_('*** echo %d > %s\n') % (newlimit, path)) |
|
113 | 113 | raise util.Abort(_('cannot watch %s until inotify watch limit is raised') |
|
114 | 114 | % repo.root) |
|
115 | 115 | |
|
116 | 116 | class repowatcher(object): |
|
117 | 117 | poll_events = select.POLLIN |
|
118 | 118 | statuskeys = 'almr!?' |
|
119 | 119 | mask = ( |
|
120 | 120 | inotify.IN_ATTRIB | |
|
121 | 121 | inotify.IN_CREATE | |
|
122 | 122 | inotify.IN_DELETE | |
|
123 | 123 | inotify.IN_DELETE_SELF | |
|
124 | 124 | inotify.IN_MODIFY | |
|
125 | 125 | inotify.IN_MOVED_FROM | |
|
126 | 126 | inotify.IN_MOVED_TO | |
|
127 | 127 | inotify.IN_MOVE_SELF | |
|
128 | 128 | inotify.IN_ONLYDIR | |
|
129 | 129 | inotify.IN_UNMOUNT | |
|
130 | 130 | 0) |
|
131 | 131 | |
|
132 | 132 | def __init__(self, ui, repo, master): |
|
133 | 133 | self.ui = ui |
|
134 | 134 | self.repo = repo |
|
135 | 135 | self.wprefix = self.repo.wjoin('') |
|
136 | 136 | self.timeout = None |
|
137 | 137 | self.master = master |
|
138 | 138 | try: |
|
139 | 139 | self.watcher = watcher.watcher() |
|
140 | 140 | except OSError, err: |
|
141 | 141 | raise util.Abort(_('inotify service not available: %s') % |
|
142 | 142 | err.strerror) |
|
143 | 143 | self.threshold = watcher.threshold(self.watcher) |
|
144 | 144 | self.registered = True |
|
145 | 145 | self.fileno = self.watcher.fileno |
|
146 | 146 | |
|
147 | 147 | self.tree = {} |
|
148 | 148 | self.statcache = {} |
|
149 | 149 | self.statustrees = dict([(s, {}) for s in self.statuskeys]) |
|
150 | 150 | |
|
151 | 151 | self.watches = 0 |
|
152 | 152 | self.last_event = None |
|
153 | 153 | |
|
154 | 154 | self.lastevent = {} |
|
155 | 155 | |
|
156 | 156 | self.ds_info = self.dirstate_info() |
|
157 | 157 | self.handle_timeout() |
|
158 | 158 | self.scan() |
|
159 | 159 | |
|
160 | 160 | def event_time(self): |
|
161 | 161 | last = self.last_event |
|
162 | 162 | now = time.time() |
|
163 | 163 | self.last_event = now |
|
164 | 164 | |
|
165 | 165 | if last is None: |
|
166 | 166 | return 'start' |
|
167 | 167 | delta = now - last |
|
168 | 168 | if delta < 5: |
|
169 | 169 | return '+%.3f' % delta |
|
170 | 170 | if delta < 50: |
|
171 | 171 | return '+%.2f' % delta |
|
172 | 172 | return '+%.1f' % delta |
|
173 | 173 | |
|
174 | 174 | def dirstate_info(self): |
|
175 | 175 | try: |
|
176 | 176 | st = os.lstat(self.repo.join('dirstate')) |
|
177 | 177 | return st.st_mtime, st.st_ino |
|
178 | 178 | except OSError, err: |
|
179 | 179 | if err.errno != errno.ENOENT: |
|
180 | 180 | raise |
|
181 | 181 | return 0, 0 |
|
182 | 182 | |
|
183 | 183 | def add_watch(self, path, mask): |
|
184 | 184 | if not path: |
|
185 | 185 | return |
|
186 | 186 | if self.watcher.path(path) is None: |
|
187 | 187 | if self.ui.debugflag: |
|
188 | 188 | self.ui.note(_('watching %r\n') % path[len(self.wprefix):]) |
|
189 | 189 | try: |
|
190 | 190 | self.watcher.add(path, mask) |
|
191 | 191 | self.watches += 1 |
|
192 | 192 | except OSError, err: |
|
193 | 193 | if err.errno in (errno.ENOENT, errno.ENOTDIR): |
|
194 | 194 | return |
|
195 | 195 | if err.errno != errno.ENOSPC: |
|
196 | 196 | raise |
|
197 | 197 | _explain_watch_limit(self.ui, self.repo, self.watches) |
|
198 | 198 | |
|
199 | 199 | def setup(self): |
|
200 | 200 | self.ui.note(_('watching directories under %r\n') % self.repo.root) |
|
201 | 201 | self.add_watch(self.repo.path, inotify.IN_DELETE) |
|
202 | 202 | self.check_dirstate() |
|
203 | 203 | |
|
204 | 204 | def wpath(self, evt): |
|
205 | 205 | path = evt.fullpath |
|
206 | 206 | if path == self.repo.root: |
|
207 | 207 | return '' |
|
208 | 208 | if path.startswith(self.wprefix): |
|
209 | 209 | return path[len(self.wprefix):] |
|
210 | 210 | raise 'wtf? ' + path |
|
211 | 211 | |
|
212 | 212 | def dir(self, tree, path): |
|
213 | 213 | if path: |
|
214 | 214 | for name in path.split('/'): |
|
215 | 215 | tree = tree.setdefault(name, {}) |
|
216 | 216 | return tree |
|
217 | 217 | |
|
218 | 218 | def lookup(self, path, tree): |
|
219 | 219 | if path: |
|
220 | 220 | try: |
|
221 | 221 | for name in path.split('/'): |
|
222 | 222 | tree = tree[name] |
|
223 | 223 | except KeyError: |
|
224 | 224 | return 'x' |
|
225 | 225 | except TypeError: |
|
226 | 226 | return 'd' |
|
227 | 227 | return tree |
|
228 | 228 | |
|
229 | 229 | def split(self, path): |
|
230 | 230 | c = path.rfind('/') |
|
231 | 231 | if c == -1: |
|
232 | 232 | return '', path |
|
233 | 233 | return path[:c], path[c+1:] |
|
234 | 234 | |
|
235 | 235 | def filestatus(self, fn, st): |
|
236 | 236 | try: |
|
237 | 237 | type_, mode, size, time = self.repo.dirstate._map[fn][:4] |
|
238 | 238 | except KeyError: |
|
239 | 239 | type_ = '?' |
|
240 | 240 | if type_ == 'n': |
|
241 | 241 | st_mode, st_size, st_mtime = st |
|
242 | 242 | if size == -1: |
|
243 | 243 | return 'l' |
|
244 | 244 | if size and (size != st_size or (mode ^ st_mode) & 0100): |
|
245 | 245 | return 'm' |
|
246 | 246 | if time != int(st_mtime): |
|
247 | 247 | return 'l' |
|
248 | 248 | return 'n' |
|
249 | 249 | if type_ == '?' and self.repo.dirstate._ignore(fn): |
|
250 | 250 | return 'i' |
|
251 | 251 | return type_ |
|
252 | 252 | |
|
253 | 253 | def updatefile(self, wfn, osstat): |
|
254 | 254 | ''' |
|
255 | 255 | update the file entry of an existing file. |
|
256 | 256 | |
|
257 | 257 | osstat: (mode, size, time) tuple, as returned by os.lstat(wfn) |
|
258 | 258 | ''' |
|
259 | 259 | |
|
260 | 260 | self._updatestatus(wfn, self.filestatus(wfn, osstat)) |
|
261 | 261 | |
|
262 | 262 | def deletefile(self, wfn, oldstatus): |
|
263 | 263 | ''' |
|
264 | 264 | update the entry of a file which has been deleted. |
|
265 | 265 | |
|
266 | 266 | oldstatus: char in statuskeys, status of the file before deletion |
|
267 | 267 | ''' |
|
268 | 268 | if oldstatus == 'r': |
|
269 | 269 | newstatus = 'r' |
|
270 | 270 | elif oldstatus in 'almn': |
|
271 | 271 | newstatus = '!' |
|
272 | 272 | else: |
|
273 | 273 | newstatus = None |
|
274 | 274 | |
|
275 | 275 | self.statcache.pop(wfn, None) |
|
276 | 276 | self._updatestatus(wfn, newstatus) |
|
277 | 277 | |
|
278 | 278 | def _updatestatus(self, wfn, newstatus): |
|
279 | 279 | ''' |
|
280 | 280 | Update the stored status of a file or directory. |
|
281 | 281 | |
|
282 | 282 | newstatus: - char in (statuskeys + 'ni'), new status to apply. |
|
283 | 283 | - or None, to stop tracking wfn |
|
284 | 284 | ''' |
|
285 | 285 | root, fn = self.split(wfn) |
|
286 | 286 | d = self.dir(self.tree, root) |
|
287 | 287 | |
|
288 | 288 | oldstatus = d.get(fn) |
|
289 | 289 | # oldstatus can be either: |
|
290 | 290 | # - None : fn is new |
|
291 | 291 | # - a char in statuskeys: fn is a (tracked) file |
|
292 | 292 | # - a dict: fn is a directory |
|
293 | 293 | isdir = isinstance(oldstatus, dict) |
|
294 | 294 | |
|
295 | 295 | if self.ui.debugflag and oldstatus != newstatus: |
|
296 | 296 | if isdir: |
|
297 | 297 | self.ui.note(_('status: %r dir(%d) -> %s\n') % |
|
298 | 298 | (wfn, len(oldstatus), newstatus)) |
|
299 | 299 | else: |
|
300 | 300 | self.ui.note(_('status: %r %s -> %s\n') % |
|
301 | 301 | (wfn, oldstatus, newstatus)) |
|
302 | 302 | if not isdir: |
|
303 | 303 | if oldstatus and oldstatus in self.statuskeys \ |
|
304 | 304 | and oldstatus != newstatus: |
|
305 | 305 | del self.dir(self.statustrees[oldstatus], root)[fn] |
|
306 | 306 | if newstatus and newstatus != 'i': |
|
307 | 307 | d[fn] = newstatus |
|
308 | 308 | if newstatus in self.statuskeys: |
|
309 | 309 | dd = self.dir(self.statustrees[newstatus], root) |
|
310 | 310 | if oldstatus != newstatus or fn not in dd: |
|
311 | 311 | dd[fn] = newstatus |
|
312 | 312 | else: |
|
313 | 313 | d.pop(fn, None) |
|
314 | 314 | |
|
315 | 315 | |
|
316 | 316 | def check_deleted(self, key): |
|
317 | 317 | # Files that had been deleted but were present in the dirstate |
|
318 | 318 | # may have vanished from the dirstate; we must clean them up. |
|
319 | 319 | nuke = [] |
|
320 | 320 | for wfn, ignore in self.walk(key, self.statustrees[key]): |
|
321 | 321 | if wfn not in self.repo.dirstate: |
|
322 | 322 | nuke.append(wfn) |
|
323 | 323 | for wfn in nuke: |
|
324 | 324 | root, fn = self.split(wfn) |
|
325 | 325 | del self.dir(self.statustrees[key], root)[fn] |
|
326 | 326 | del self.dir(self.tree, root)[fn] |
|
327 | 327 | |
|
328 | 328 | def scan(self, topdir=''): |
|
329 | 329 | ds = self.repo.dirstate._map.copy() |
|
330 | 330 | self.add_watch(join(self.repo.root, topdir), self.mask) |
|
331 | 331 | for root, dirs, files in walk(self.repo, topdir): |
|
332 | 332 | for d in dirs: |
|
333 | 333 | self.add_watch(join(root, d), self.mask) |
|
334 | 334 | wroot = root[len(self.wprefix):] |
|
335 | 335 | d = self.dir(self.tree, wroot) |
|
336 | 336 | for fn in files: |
|
337 | 337 | wfn = join(wroot, fn) |
|
338 | 338 | self.updatefile(wfn, self.getstat(wfn)) |
|
339 | 339 | ds.pop(wfn, None) |
|
340 | 340 | wtopdir = topdir |
|
341 | 341 | if wtopdir and wtopdir[-1] != '/': |
|
342 | 342 | wtopdir += '/' |
|
343 | 343 | for wfn, state in ds.iteritems(): |
|
344 | 344 | if not wfn.startswith(wtopdir): |
|
345 | 345 | continue |
|
346 | 346 | try: |
|
347 | 347 | st = self.stat(wfn) |
|
348 | 348 | except OSError: |
|
349 | 349 | status = state[0] |
|
350 | 350 | self.deletefile(wfn, status) |
|
351 | 351 | else: |
|
352 | 352 | self.updatefile(wfn, st) |
|
353 | 353 | self.check_deleted('!') |
|
354 | 354 | self.check_deleted('r') |
|
355 | 355 | |
|
356 | 356 | def check_dirstate(self): |
|
357 | 357 | ds_info = self.dirstate_info() |
|
358 | 358 | if ds_info == self.ds_info: |
|
359 | 359 | return |
|
360 | 360 | self.ds_info = ds_info |
|
361 | 361 | if not self.ui.debugflag: |
|
362 | 362 | self.last_event = None |
|
363 | 363 | self.ui.note(_('%s dirstate reload\n') % self.event_time()) |
|
364 | 364 | self.repo.dirstate.invalidate() |
|
365 | 365 | self.handle_timeout() |
|
366 | 366 | self.scan() |
|
367 | 367 | self.ui.note(_('%s end dirstate reload\n') % self.event_time()) |
|
368 | 368 | |
|
369 | 369 | def walk(self, states, tree, prefix=''): |
|
370 | 370 | # This is the "inner loop" when talking to the client. |
|
371 | 371 | |
|
372 | 372 | for name, val in tree.iteritems(): |
|
373 | 373 | path = join(prefix, name) |
|
374 | 374 | try: |
|
375 | 375 | if val in states: |
|
376 | 376 | yield path, val |
|
377 | 377 | except TypeError: |
|
378 | 378 | for p in self.walk(states, val, path): |
|
379 | 379 | yield p |
|
380 | 380 | |
|
381 | 381 | def update_hgignore(self): |
|
382 | 382 | # An update of the ignore file can potentially change the |
|
383 | 383 | # states of all unknown and ignored files. |
|
384 | 384 | |
|
385 | 385 | # XXX If the user has other ignore files outside the repo, or |
|
386 | 386 | # changes their list of ignore files at run time, we'll |
|
387 | 387 | # potentially never see changes to them. We could get the |
|
388 | 388 | # client to report to us what ignore data they're using. |
|
389 | 389 | # But it's easier to do nothing than to open that can of |
|
390 | 390 | # worms. |
|
391 | 391 | |
|
392 | 392 | if '_ignore' in self.repo.dirstate.__dict__: |
|
393 | 393 | delattr(self.repo.dirstate, '_ignore') |
|
394 | 394 | self.ui.note(_('rescanning due to .hgignore change\n')) |
|
395 | 395 | self.handle_timeout() |
|
396 | 396 | self.scan() |
|
397 | 397 | |
|
398 | 398 | def getstat(self, wpath): |
|
399 | 399 | try: |
|
400 | 400 | return self.statcache[wpath] |
|
401 | 401 | except KeyError: |
|
402 | 402 | try: |
|
403 | 403 | return self.stat(wpath) |
|
404 | 404 | except OSError, err: |
|
405 | 405 | if err.errno != errno.ENOENT: |
|
406 | 406 | raise |
|
407 | 407 | |
|
408 | 408 | def stat(self, wpath): |
|
409 | 409 | try: |
|
410 | 410 | st = os.lstat(join(self.wprefix, wpath)) |
|
411 | 411 | ret = st.st_mode, st.st_size, st.st_mtime |
|
412 | 412 | self.statcache[wpath] = ret |
|
413 | 413 | return ret |
|
414 | 414 | except OSError: |
|
415 | 415 | self.statcache.pop(wpath, None) |
|
416 | 416 | raise |
|
417 | 417 | |
|
418 | def eventaction(code): | |
|
419 | def decorator(f): | |
|
420 | def wrapper(self, wpath): | |
|
421 | if code == 'm' and wpath in self.lastevent and \ | |
|
422 | self.lastevent[wpath] in 'cm': | |
|
423 | return | |
|
424 | self.lastevent[wpath] = code | |
|
425 | self.timeout = 250 | |
|
426 | ||
|
427 | f(self, wpath) | |
|
428 | ||
|
429 | wrapper.func_name = f.func_name | |
|
430 | return wrapper | |
|
431 | return decorator | |
|
432 | ||
|
433 | @eventaction('c') | |
|
418 | 434 | def created(self, wpath): |
|
419 | 435 | if wpath == '.hgignore': |
|
420 | 436 | self.update_hgignore() |
|
421 | 437 | try: |
|
422 | 438 | st = self.stat(wpath) |
|
423 | 439 | if stat.S_ISREG(st[0]): |
|
424 | 440 | self.updatefile(wpath, st) |
|
425 | 441 | except OSError: |
|
426 | 442 | pass |
|
427 | 443 | |
|
444 | @eventaction('m') | |
|
428 | 445 | def modified(self, wpath): |
|
429 | 446 | if wpath == '.hgignore': |
|
430 | 447 | self.update_hgignore() |
|
431 | 448 | try: |
|
432 | 449 | st = self.stat(wpath) |
|
433 | 450 | if stat.S_ISREG(st[0]): |
|
434 | 451 | if self.repo.dirstate[wpath] in 'lmn': |
|
435 | 452 | self.updatefile(wpath, st) |
|
436 | 453 | except OSError: |
|
437 | 454 | pass |
|
438 | 455 | |
|
456 | @eventaction('d') | |
|
439 | 457 | def deleted(self, wpath): |
|
440 | 458 | if wpath == '.hgignore': |
|
441 | 459 | self.update_hgignore() |
|
442 | 460 | elif wpath.startswith('.hg/'): |
|
443 | 461 | if wpath == '.hg/wlock': |
|
444 | 462 | self.check_dirstate() |
|
445 | 463 | return |
|
446 | 464 | |
|
447 | 465 | self.deletefile(wpath, self.repo.dirstate[wpath]) |
|
448 | 466 | |
|
449 | def work(self, wpath, evt): | |
|
450 | try: | |
|
451 | if evt == 'c': | |
|
452 | self.created(wpath) | |
|
453 | elif evt == 'm': | |
|
454 | if wpath in self.lastevent and self.lastevent[wpath] in 'cm': | |
|
455 | return | |
|
456 | self.modified(wpath) | |
|
457 | elif evt == 'd': | |
|
458 | self.deleted(wpath) | |
|
459 | ||
|
460 | self.lastevent[wpath] = evt | |
|
461 | finally: | |
|
462 | self.timeout = 250 | |
|
463 | ||
|
464 | 467 | def process_create(self, wpath, evt): |
|
465 | 468 | if self.ui.debugflag: |
|
466 | 469 | self.ui.note(_('%s event: created %s\n') % |
|
467 | 470 | (self.event_time(), wpath)) |
|
468 | 471 | |
|
469 | 472 | if evt.mask & inotify.IN_ISDIR: |
|
470 | 473 | self.scan(wpath) |
|
471 | 474 | else: |
|
472 |
self. |
|
|
475 | self.created(wpath) | |
|
473 | 476 | |
|
474 | 477 | def process_delete(self, wpath, evt): |
|
475 | 478 | if self.ui.debugflag: |
|
476 | 479 | self.ui.note(_('%s event: deleted %s\n') % |
|
477 | 480 | (self.event_time(), wpath)) |
|
478 | 481 | |
|
479 | 482 | if evt.mask & inotify.IN_ISDIR: |
|
480 | 483 | tree = self.dir(self.tree, wpath).copy() |
|
481 | 484 | for wfn, ignore in self.walk('?', tree): |
|
482 | 485 | self.deletefile(join(wpath, wfn), '?') |
|
483 | 486 | self.scan(wpath) |
|
484 | 487 | else: |
|
485 |
self. |
|
|
488 | self.deleted(wpath) | |
|
486 | 489 | |
|
487 | 490 | def process_modify(self, wpath, evt): |
|
488 | 491 | if self.ui.debugflag: |
|
489 | 492 | self.ui.note(_('%s event: modified %s\n') % |
|
490 | 493 | (self.event_time(), wpath)) |
|
491 | 494 | |
|
492 | 495 | if not (evt.mask & inotify.IN_ISDIR): |
|
493 |
self. |
|
|
496 | self.modified(wpath) | |
|
494 | 497 | |
|
495 | 498 | def process_unmount(self, evt): |
|
496 | 499 | self.ui.warn(_('filesystem containing %s was unmounted\n') % |
|
497 | 500 | evt.fullpath) |
|
498 | 501 | sys.exit(0) |
|
499 | 502 | |
|
500 | 503 | def handle_event(self, fd, event): |
|
501 | 504 | if self.ui.debugflag: |
|
502 | 505 | self.ui.note(_('%s readable: %d bytes\n') % |
|
503 | 506 | (self.event_time(), self.threshold.readable())) |
|
504 | 507 | if not self.threshold(): |
|
505 | 508 | if self.registered: |
|
506 | 509 | if self.ui.debugflag: |
|
507 | 510 | self.ui.note(_('%s below threshold - unhooking\n') % |
|
508 | 511 | (self.event_time())) |
|
509 | 512 | self.master.poll.unregister(fd) |
|
510 | 513 | self.registered = False |
|
511 | 514 | self.timeout = 250 |
|
512 | 515 | else: |
|
513 | 516 | self.read_events() |
|
514 | 517 | |
|
515 | 518 | def read_events(self, bufsize=None): |
|
516 | 519 | events = self.watcher.read(bufsize) |
|
517 | 520 | if self.ui.debugflag: |
|
518 | 521 | self.ui.note(_('%s reading %d events\n') % |
|
519 | 522 | (self.event_time(), len(events))) |
|
520 | 523 | for evt in events: |
|
521 | 524 | wpath = self.wpath(evt) |
|
522 | 525 | if evt.mask & inotify.IN_UNMOUNT: |
|
523 | 526 | self.process_unmount(wpath, evt) |
|
524 | 527 | elif evt.mask & (inotify.IN_MODIFY | inotify.IN_ATTRIB): |
|
525 | 528 | self.process_modify(wpath, evt) |
|
526 | 529 | elif evt.mask & (inotify.IN_DELETE | inotify.IN_DELETE_SELF | |
|
527 | 530 | inotify.IN_MOVED_FROM): |
|
528 | 531 | self.process_delete(wpath, evt) |
|
529 | 532 | elif evt.mask & (inotify.IN_CREATE | inotify.IN_MOVED_TO): |
|
530 | 533 | self.process_create(wpath, evt) |
|
531 | 534 | |
|
532 | 535 | self.lastevent.clear() |
|
533 | 536 | |
|
534 | 537 | def handle_timeout(self): |
|
535 | 538 | if not self.registered: |
|
536 | 539 | if self.ui.debugflag: |
|
537 | 540 | self.ui.note(_('%s hooking back up with %d bytes readable\n') % |
|
538 | 541 | (self.event_time(), self.threshold.readable())) |
|
539 | 542 | self.read_events(0) |
|
540 | 543 | self.master.poll.register(self, select.POLLIN) |
|
541 | 544 | self.registered = True |
|
542 | 545 | |
|
543 | 546 | self.timeout = None |
|
544 | 547 | |
|
545 | 548 | def shutdown(self): |
|
546 | 549 | self.watcher.close() |
|
547 | 550 | |
|
548 | 551 | def debug(self): |
|
549 | 552 | """ |
|
550 | 553 | Returns a sorted list of relatives paths currently watched, |
|
551 | 554 | for debugging purposes. |
|
552 | 555 | """ |
|
553 | 556 | return sorted(tuple[0][len(self.wprefix):] for tuple in self.watcher) |
|
554 | 557 | |
|
555 | 558 | class server(object): |
|
556 | 559 | poll_events = select.POLLIN |
|
557 | 560 | |
|
558 | 561 | def __init__(self, ui, repo, repowatcher, timeout): |
|
559 | 562 | self.ui = ui |
|
560 | 563 | self.repo = repo |
|
561 | 564 | self.repowatcher = repowatcher |
|
562 | 565 | self.timeout = timeout |
|
563 | 566 | self.sock = socket.socket(socket.AF_UNIX) |
|
564 | 567 | self.sockpath = self.repo.join('inotify.sock') |
|
565 | 568 | self.realsockpath = None |
|
566 | 569 | try: |
|
567 | 570 | self.sock.bind(self.sockpath) |
|
568 | 571 | except socket.error, err: |
|
569 | 572 | if err[0] == errno.EADDRINUSE: |
|
570 | 573 | raise AlreadyStartedException(_('could not start server: %s') |
|
571 | 574 | % err[1]) |
|
572 | 575 | if err[0] == "AF_UNIX path too long": |
|
573 | 576 | tempdir = tempfile.mkdtemp(prefix="hg-inotify-") |
|
574 | 577 | self.realsockpath = os.path.join(tempdir, "inotify.sock") |
|
575 | 578 | try: |
|
576 | 579 | self.sock.bind(self.realsockpath) |
|
577 | 580 | os.symlink(self.realsockpath, self.sockpath) |
|
578 | 581 | except (OSError, socket.error), inst: |
|
579 | 582 | try: |
|
580 | 583 | os.unlink(self.realsockpath) |
|
581 | 584 | except: |
|
582 | 585 | pass |
|
583 | 586 | os.rmdir(tempdir) |
|
584 | 587 | if inst.errno == errno.EEXIST: |
|
585 | 588 | raise AlreadyStartedException(_('could not start server: %s') |
|
586 | 589 | % inst.strerror) |
|
587 | 590 | raise |
|
588 | 591 | else: |
|
589 | 592 | raise |
|
590 | 593 | self.sock.listen(5) |
|
591 | 594 | self.fileno = self.sock.fileno |
|
592 | 595 | |
|
593 | 596 | def handle_timeout(self): |
|
594 | 597 | pass |
|
595 | 598 | |
|
596 | 599 | def answer_stat_query(self, cs): |
|
597 | 600 | names = cs.read().split('\0') |
|
598 | 601 | |
|
599 | 602 | states = names.pop() |
|
600 | 603 | |
|
601 | 604 | self.ui.note(_('answering query for %r\n') % states) |
|
602 | 605 | |
|
603 | 606 | if self.repowatcher.timeout: |
|
604 | 607 | # We got a query while a rescan is pending. Make sure we |
|
605 | 608 | # rescan before responding, or we could give back a wrong |
|
606 | 609 | # answer. |
|
607 | 610 | self.repowatcher.handle_timeout() |
|
608 | 611 | |
|
609 | 612 | if not names: |
|
610 | 613 | def genresult(states, tree): |
|
611 | 614 | for fn, state in self.repowatcher.walk(states, tree): |
|
612 | 615 | yield fn |
|
613 | 616 | else: |
|
614 | 617 | def genresult(states, tree): |
|
615 | 618 | for fn in names: |
|
616 | 619 | l = self.repowatcher.lookup(fn, tree) |
|
617 | 620 | try: |
|
618 | 621 | if l in states: |
|
619 | 622 | yield fn |
|
620 | 623 | except TypeError: |
|
621 | 624 | for f, s in self.repowatcher.walk(states, l, fn): |
|
622 | 625 | yield f |
|
623 | 626 | |
|
624 | 627 | return ['\0'.join(r) for r in [ |
|
625 | 628 | genresult('l', self.repowatcher.statustrees['l']), |
|
626 | 629 | genresult('m', self.repowatcher.statustrees['m']), |
|
627 | 630 | genresult('a', self.repowatcher.statustrees['a']), |
|
628 | 631 | genresult('r', self.repowatcher.statustrees['r']), |
|
629 | 632 | genresult('!', self.repowatcher.statustrees['!']), |
|
630 | 633 | '?' in states |
|
631 | 634 | and genresult('?', self.repowatcher.statustrees['?']) |
|
632 | 635 | or [], |
|
633 | 636 | [], |
|
634 | 637 | 'c' in states and genresult('n', self.repowatcher.tree) or [], |
|
635 | 638 | ]] |
|
636 | 639 | |
|
637 | 640 | def answer_dbug_query(self): |
|
638 | 641 | return ['\0'.join(self.repowatcher.debug())] |
|
639 | 642 | |
|
640 | 643 | def handle_event(self, fd, event): |
|
641 | 644 | sock, addr = self.sock.accept() |
|
642 | 645 | |
|
643 | 646 | cs = common.recvcs(sock) |
|
644 | 647 | version = ord(cs.read(1)) |
|
645 | 648 | |
|
646 | 649 | if version != common.version: |
|
647 | 650 | self.ui.warn(_('received query from incompatible client ' |
|
648 | 651 | 'version %d\n') % version) |
|
649 | 652 | return |
|
650 | 653 | |
|
651 | 654 | type = cs.read(4) |
|
652 | 655 | |
|
653 | 656 | if type == 'STAT': |
|
654 | 657 | results = self.answer_stat_query(cs) |
|
655 | 658 | elif type == 'DBUG': |
|
656 | 659 | results = self.answer_dbug_query() |
|
657 | 660 | else: |
|
658 | 661 | self.ui.warn(_('unrecognized query type: %s\n') % type) |
|
659 | 662 | return |
|
660 | 663 | |
|
661 | 664 | try: |
|
662 | 665 | try: |
|
663 | 666 | v = chr(common.version) |
|
664 | 667 | |
|
665 | 668 | sock.sendall(v + type + struct.pack(common.resphdrfmts[type], |
|
666 | 669 | *map(len, results))) |
|
667 | 670 | sock.sendall(''.join(results)) |
|
668 | 671 | finally: |
|
669 | 672 | sock.shutdown(socket.SHUT_WR) |
|
670 | 673 | except socket.error, err: |
|
671 | 674 | if err[0] != errno.EPIPE: |
|
672 | 675 | raise |
|
673 | 676 | |
|
674 | 677 | def shutdown(self): |
|
675 | 678 | self.sock.close() |
|
676 | 679 | try: |
|
677 | 680 | os.unlink(self.sockpath) |
|
678 | 681 | if self.realsockpath: |
|
679 | 682 | os.unlink(self.realsockpath) |
|
680 | 683 | os.rmdir(os.path.dirname(self.realsockpath)) |
|
681 | 684 | except OSError, err: |
|
682 | 685 | if err.errno != errno.ENOENT: |
|
683 | 686 | raise |
|
684 | 687 | |
|
685 | 688 | class master(object): |
|
686 | 689 | def __init__(self, ui, repo, timeout=None): |
|
687 | 690 | self.ui = ui |
|
688 | 691 | self.repo = repo |
|
689 | 692 | self.poll = select.poll() |
|
690 | 693 | self.repowatcher = repowatcher(ui, repo, self) |
|
691 | 694 | self.server = server(ui, repo, self.repowatcher, timeout) |
|
692 | 695 | self.table = {} |
|
693 | 696 | for obj in (self.repowatcher, self.server): |
|
694 | 697 | fd = obj.fileno() |
|
695 | 698 | self.table[fd] = obj |
|
696 | 699 | self.poll.register(fd, obj.poll_events) |
|
697 | 700 | |
|
698 | 701 | def register(self, fd, mask): |
|
699 | 702 | self.poll.register(fd, mask) |
|
700 | 703 | |
|
701 | 704 | def shutdown(self): |
|
702 | 705 | for obj in self.table.itervalues(): |
|
703 | 706 | obj.shutdown() |
|
704 | 707 | |
|
705 | 708 | def run(self): |
|
706 | 709 | self.repowatcher.setup() |
|
707 | 710 | self.ui.note(_('finished setup\n')) |
|
708 | 711 | if os.getenv('TIME_STARTUP'): |
|
709 | 712 | sys.exit(0) |
|
710 | 713 | while True: |
|
711 | 714 | timeout = None |
|
712 | 715 | timeobj = None |
|
713 | 716 | for obj in self.table.itervalues(): |
|
714 | 717 | if obj.timeout is not None and (timeout is None or obj.timeout < timeout): |
|
715 | 718 | timeout, timeobj = obj.timeout, obj |
|
716 | 719 | try: |
|
717 | 720 | if self.ui.debugflag: |
|
718 | 721 | if timeout is None: |
|
719 | 722 | self.ui.note(_('polling: no timeout\n')) |
|
720 | 723 | else: |
|
721 | 724 | self.ui.note(_('polling: %sms timeout\n') % timeout) |
|
722 | 725 | events = self.poll.poll(timeout) |
|
723 | 726 | except select.error, err: |
|
724 | 727 | if err[0] == errno.EINTR: |
|
725 | 728 | continue |
|
726 | 729 | raise |
|
727 | 730 | if events: |
|
728 | 731 | for fd, event in events: |
|
729 | 732 | self.table[fd].handle_event(fd, event) |
|
730 | 733 | elif timeobj: |
|
731 | 734 | timeobj.handle_timeout() |
|
732 | 735 | |
|
733 | 736 | def start(ui, repo): |
|
734 | 737 | def closefds(ignore): |
|
735 | 738 | # (from python bug #1177468) |
|
736 | 739 | # close all inherited file descriptors |
|
737 | 740 | # Python 2.4.1 and later use /dev/urandom to seed the random module's RNG |
|
738 | 741 | # a file descriptor is kept internally as os._urandomfd (created on demand |
|
739 | 742 | # the first time os.urandom() is called), and should not be closed |
|
740 | 743 | try: |
|
741 | 744 | os.urandom(4) |
|
742 | 745 | urandom_fd = getattr(os, '_urandomfd', None) |
|
743 | 746 | except AttributeError: |
|
744 | 747 | urandom_fd = None |
|
745 | 748 | ignore.append(urandom_fd) |
|
746 | 749 | for fd in range(3, 256): |
|
747 | 750 | if fd in ignore: |
|
748 | 751 | continue |
|
749 | 752 | try: |
|
750 | 753 | os.close(fd) |
|
751 | 754 | except OSError: |
|
752 | 755 | pass |
|
753 | 756 | |
|
754 | 757 | m = master(ui, repo) |
|
755 | 758 | sys.stdout.flush() |
|
756 | 759 | sys.stderr.flush() |
|
757 | 760 | |
|
758 | 761 | pid = os.fork() |
|
759 | 762 | if pid: |
|
760 | 763 | return pid |
|
761 | 764 | |
|
762 | 765 | closefds([m.server.fileno(), m.repowatcher.fileno()]) |
|
763 | 766 | os.setsid() |
|
764 | 767 | |
|
765 | 768 | fd = os.open('/dev/null', os.O_RDONLY) |
|
766 | 769 | os.dup2(fd, 0) |
|
767 | 770 | if fd > 0: |
|
768 | 771 | os.close(fd) |
|
769 | 772 | |
|
770 | 773 | fd = os.open(ui.config('inotify', 'log', '/dev/null'), |
|
771 | 774 | os.O_RDWR | os.O_CREAT | os.O_TRUNC) |
|
772 | 775 | os.dup2(fd, 1) |
|
773 | 776 | os.dup2(fd, 2) |
|
774 | 777 | if fd > 2: |
|
775 | 778 | os.close(fd) |
|
776 | 779 | |
|
777 | 780 | try: |
|
778 | 781 | m.run() |
|
779 | 782 | finally: |
|
780 | 783 | m.shutdown() |
|
781 | 784 | os._exit(0) |
General Comments 0
You need to be logged in to leave comments.
Login now