##// END OF EJS Templates
inotify: Simplifying init code...
inotify: Simplifying init code simplifying retry = False try: try: doA() retry = True except X: doB() retry = True except: doC() pass if retry: doD() -- into -- try: try: doA() except X: doB() except: doC() pass else: doD()

File last commit:

r8068:389e2820 default
r8068:389e2820 default
Show More
__init__.py
125 lines | 4.9 KiB | text/x-python | PythonLexer
Bryan O'Sullivan
Add inotify extension
r6239 # __init__.py - inotify-based status acceleration for Linux
#
# Copyright 2006, 2007, 2008 Bryan O'Sullivan <bos@serpentine.com>
# Copyright 2007, 2008 Brendan Cully <brendan@kublai.com>
#
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.
'''inotify-based status acceleration for Linux systems
'''
# todo: socket permissions
Martin Geisler
i18n: import _ instead of gettext
r7225 from mercurial.i18n import _
Bryan O'Sullivan
Add inotify extension
r6239 from mercurial import cmdutil, util
import client, errno, os, server, socket
from weakref import proxy
def serve(ui, repo, **opts):
'''start an inotify server for this repository'''
timeout = opts.get('timeout')
if timeout:
timeout = float(timeout) * 1e3
class service:
def init(self):
Benoit Boissinot
inotify: fix traceback when the server has been already started
r6995 try:
self.master = server.Master(ui, repo, timeout)
except server.AlreadyStartedException, inst:
raise util.Abort(str(inst))
Bryan O'Sullivan
Add inotify extension
r6239
def run(self):
try:
self.master.run()
finally:
self.master.shutdown()
service = service()
cmdutil.service(opts, initfn=service.init, runfn=service.run)
def reposetup(ui, repo):
Brendan Cully
inotify: do not attempt to monkeypatch bundlerepos
r7522 if not hasattr(repo, 'dirstate'):
Bryan O'Sullivan
Add inotify extension
r6239 return
# XXX: weakref until hg stops relying on __del__
repo = proxy(repo)
class inotifydirstate(repo.dirstate.__class__):
# Set to True if we're the inotify server, so we don't attempt
# to recurse.
inotifyserver = False
Matt Mackall
repo.status: eliminate list_
r6753 def status(self, match, ignored, clean, unknown=True):
Matt Mackall
match: remove files arg from repo.status and friends
r6603 files = match.files()
Brendan Cully
inotify: fix status . in repo.root
r7393 if '.' in files:
Dirkjan Ochtman
kill some trailing spaces
r7434 files = []
Bryan O'Sullivan
Add inotify extension
r6239 try:
Matt Mackall
repo.status: eliminate list_
r6753 if not ignored and not self.inotifyserver:
Bryan O'Sullivan
Add inotify extension
r6239 result = client.query(ui, repo, files, match, False,
Matt Mackall
repo.status: eliminate list_
r6753 clean, unknown)
Matt Mackall
inotify: add debugging mode to inotify...
r7219 if ui.config('inotify', 'debug'):
r2 = super(inotifydirstate, self).status(
match, False, clean, unknown)
for c,a,b in zip('LMARDUIC', result, r2):
for f in a:
if f not in b:
ui.warn('*** inotify: %s +%s\n' % (c, f))
for f in b:
if f not in a:
Benoit Boissinot
inotify: fix bug in formatting
r7304 ui.warn('*** inotify: %s -%s\n' % (c, f))
Matt Mackall
inotify: add debugging mode to inotify...
r7219 result = r2
Bryan O'Sullivan
Add inotify extension
r6239 if result is not None:
return result
Benoit Boissinot
inotify: workaround ENAMETOOLONG by using symlinks...
r6997 except (OSError, socket.error), err:
Brendan Cully
inotify: do not complain that inotify is not running if autostart is False
r7452 autostart = ui.configbool('inotify', 'autostart', True)
Bryan O'Sullivan
Add inotify extension
r6239 if err[0] == errno.ECONNREFUSED:
ui.warn(_('(found dead inotify server socket; '
'removing it)\n'))
os.unlink(repo.join('inotify.sock'))
Brendan Cully
inotify: do not complain that inotify is not running if autostart is False
r7452 if err[0] in (errno.ECONNREFUSED, errno.ENOENT) and autostart:
Bryan O'Sullivan
Add inotify extension
r6239 ui.debug(_('(starting inotify server)\n'))
try:
Thomas Arendsen Hein
Do not abort with inotify extension enabled, but not supported by the system....
r7329 try:
server.start(ui, repo)
except server.AlreadyStartedException, inst:
# another process may have started its own
# inotify server while this one was starting.
ui.debug(str(inst))
Bryan O'Sullivan
Add inotify extension
r6239 except Exception, inst:
ui.warn(_('could not start inotify server: '
'%s\n') % inst)
Nicolas Dumazet
inotify: Simplifying init code...
r8068 else:
# server is started, send query again
Bryan O'Sullivan
Add inotify extension
r6239 try:
Nicolas Dumazet
inotify: Simplifying init code...
r8068 return client.query(ui, repo, files, match,
Matt Mackall
repo.status: eliminate list_
r6753 ignored, clean, unknown)
Bryan O'Sullivan
Add inotify extension
r6239 except socket.error, err:
ui.warn(_('could not talk to new inotify '
Benoit Boissinot
inotify: deactivate inotify status on failure...
r6996 'server: %s\n') % err[-1])
Brendan Cully
inotify: do not complain that inotify is not running if autostart is False
r7452 elif err[0] in (errno.ECONNREFUSED, errno.ENOENT):
# silently ignore normal errors if autostart is False
ui.debug(_('(inotify server not running)\n'))
Benoit Boissinot
inotify: deactivate inotify status on failure...
r6996 else:
ui.warn(_('failed to contact inotify server: %s\n')
% err[-1])
ui.print_exc()
# replace by old status function
self.status = super(inotifydirstate, self).status
Bryan O'Sullivan
Add inotify extension
r6239
return super(inotifydirstate, self).status(
Matt Mackall
repo.status: eliminate list_
r6753 match, ignored, clean, unknown)
Bryan O'Sullivan
Add inotify extension
r6239
repo.dirstate.__class__ = inotifydirstate
cmdtable = {
'^inserve':
(serve,
[('d', 'daemon', None, _('run server in background')),
('', 'daemon-pipefds', '', _('used internally by daemon mode')),
('t', 'idle-timeout', '', _('minutes to sit idle before exiting')),
('', 'pid-file', '', _('name of file to write process ID to'))],
_('hg inserve [OPT]...')),
}