X-Git-Url: https://projects.mako.cc/source/mw/blobdiff_plain/d0e89ce145d159159ae8b73a1bf45a9de3aaefaf..90afbee67cd871468f755c9a9769d53adca9941c:/src/mw/metadir.py diff --git a/src/mw/metadir.py b/src/mw/metadir.py index ab99288..67e0b09 100644 --- a/src/mw/metadir.py +++ b/src/mw/metadir.py @@ -51,6 +51,10 @@ class Metadir(object): sys.exit(1) else: os.mkdir(self.location, 0755) + # metadir versioning + fd = file(os.path.join(self.location, 'version'), 'w') + fd.write('1') # XXX THIS API VERSION NOT LOCKED IN YET + fd.close() # create config self.config = ConfigParser.RawConfigParser() self.config.add_section('remote') @@ -62,28 +66,55 @@ class Metadir(object): # create cache/pagedict fd = file(os.path.join(self.location, 'cache', 'pagedict'), 'w') fd.write(json.dumps({})) + fd.close() # create cache/pages/ os.mkdir(os.path.join(self.location, 'cache', 'pages'), 0755) - def pagedict_add(self, pagename, pageid): + def pagedict_add(self, pagename, pageid, currentrv): fd = file(os.path.join(self.location, 'cache', 'pagedict'), 'r+') pagedict = json.loads(fd.read()) - pagedict[pagename] = int(pageid) + pagedict[pagename] = {'id': int(pageid), 'currentrv': int(currentrv)} fd.seek(0) fd.write(json.dumps(pagedict)) fd.truncate() + fd.close() - def pages_add_rev(self, pageid, rv): + def get_pageid_from_pagename(self, pagename): + fd = file(os.path.join(self.location, 'cache', 'pagedict'), 'r') + pagedict = json.loads(fd.read()) + if pagename in pagedict.keys(): + return pagedict[pagename] + else: + return None + + def pages_add_rv(self, pageid, rv): pagefile = os.path.join(self.location, 'cache', 'pages', str(pageid)) fd = file(pagefile, 'w+') - pagedata = json.loads(fd.read()) + pagedata_raw = fd.read() + if pagedata_raw == '': + pagedata = {} + else: + pagedata = json.loads(pagedata_raw) rvid = int(rv['revid']) - if pageid not in pagedata.keys(): - pagedata[pageid] = {} - pagedata[pageid][rvid] = { + pagedata[rvid] = { 'user': rv['user'], 'timestamp': rv['timestamp'], 'content': rv['*'], } fd.seek(0) fd.write(json.dumps(pagedata)) fd.truncate() + fd.close() + + def pages_get_rv_list(self, pageid): + pagefile = os.path.join(self.location, 'cache', 'pages', str(pageid)) + fd = file(pagefile, 'r') + pagedata = json.loads(fd.read()) + rvs = [int(x) for x in pagedata.keys()] + rvs.sort() + return rvs + + def pages_get_rv(self, pageid, rvid): + pagefile = os.path.join(self.location, 'cache', 'pages', str(pageid)) + fd = file(pagefile, 'r') + pagedata = json.loads(fd.read()) + return pagedata[str(rvid)]