# HG changeset patch # User Jun Wu # Date 1456346747 0 # Node ID cdc6319f6a7d620d4157065bdf7dfe222b662f4b # Parent b4ceadb2c439e0b04271962bf57b2429ced00755 chgserver: add a structure for confighash and mtimehash confighash and mtimehash are often used together. This patch adds a simple structure called hashstate to store them. hashstate also has a handly method called fromui to calculate the hashes from a ui object. diff -r b4ceadb2c439 -r cdc6319f6a7d hgext/chgserver.py --- a/hgext/chgserver.py Fri Feb 26 14:59:39 2016 +0000 +++ b/hgext/chgserver.py Wed Feb 24 20:45:47 2016 +0000 @@ -144,6 +144,22 @@ pass return _hashlist(map(trystat, paths))[:12] +class hashstate(object): + """a structure storing confighash, mtimehash, paths used for mtimehash""" + def __init__(self, confighash, mtimehash, mtimepaths): + self.confighash = confighash + self.mtimehash = mtimehash + self.mtimepaths = mtimepaths + + @staticmethod + def fromui(ui, mtimepaths=None): + if mtimepaths is None: + mtimepaths = _getmtimepaths(ui) + confighash = _confighash(ui) + mtimehash = _mtimehash(mtimepaths) + _log('confighash = %s mtimehash = %s\n' % (confighash, mtimehash)) + return hashstate(confighash, mtimehash, mtimepaths) + # copied from hgext/pager.py:uisetup() def _setuppagercmd(ui, options, cmd): if not ui.formatted():