From 0118d07ee4f7574d43f046dd69ba39e77376afce Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Wed, 5 Jul 2006 23:04:11 -0800 Subject: [PATCH] don't push up the doUpdate unless we did something... [git-p4: depot-paths = "//depot/": change = 822] --- FSStorage.py | 7 ++++++- ZipStorage.py | 22 ++++++++++++++++------ 2 files changed, 22 insertions(+), 7 deletions(-) diff --git a/FSStorage.py b/FSStorage.py index ad86a62..8f28de8 100644 --- a/FSStorage.py +++ b/FSStorage.py @@ -110,6 +110,7 @@ def dofileadd(cd, parent, path, name): except: pass + #log.msg('testing:', `i`, `fsname`, `fobj`) klass, kwargs = i(fsname, fobj) if klass is not None: break @@ -137,9 +138,11 @@ class FSDirectory(FSObject, StorageFolder): def doUpdate(self): # We need to rescan this dir, and see if our children has # changed any. + doupdate = False children = sets.Set(os.listdir(self.FSpath)) for i in self.pathObjmap.keys(): if i not in children: + doupdate = True # delete self.cd.delItem(self.pathObjmap[i]) del self.pathObjmap[i] @@ -152,10 +155,12 @@ class FSDirectory(FSObject, StorageFolder): nf = dofileadd(self.cd, self.id, self.FSpath, i) if nf is not None: + doupdate = True self.pathObjmap[i] = nf # sort our children self.sort(lambda x, y: cmp(x.title, y.title)) # Pass up to handle UpdateID - StorageFolder.doUpdate(self) + if doupdate: + StorageFolder.doUpdate(self) diff --git a/ZipStorage.py b/ZipStorage.py index c6779f1..536b897 100644 --- a/ZipStorage.py +++ b/ZipStorage.py @@ -17,7 +17,7 @@ import FileDIDL from DIDLLite import StorageFolder, Item, VideoItem, AudioItem, TextItem, ImageItem, Resource from FSStorage import FSObject, registerklassfun -from twisted.python import threadable, log +from twisted.python import log, threadable from twisted.spread import pb from twisted.web import http from twisted.web import server @@ -156,11 +156,11 @@ class ZipFile(ZipItem, Item): self.mimetype) Item.__init__(self, *args, **kwargs) self.url = '%s/%s' % (self.cd.urlbase, self.id) - - def doUpdate(self): self.res = Resource(self.url, 'http-get:*:%s:*' % self.mimetype) self.res.size = self.zi.file_size - Item.doUpdate(self) + + def doUpdate(self): + pass class ZipChildDir(ZipItem, StorageFolder): '''This is to represent a child dir of the zip file.''' @@ -176,10 +176,12 @@ class ZipChildDir(ZipItem, StorageFolder): self.pathObjmap = {} def doUpdate(self): + doupdate = False children = sets.Set(self.hier.keys()) for i in self.pathObjmap.keys(): if i not in children: # delete + doupdate = True self.cd.delItem(self.pathObjmap[i]) del self.pathObjmap[i] @@ -201,9 +203,12 @@ class ZipChildDir(ZipItem, StorageFolder): self.pathObjmap[i] = self.cd.addItem(self.id, klass, i, zf = self.zf, zo = self, name = pathname, mimetype = mt) + doupdate = True # sort our children self.sort(lambda x, y: cmp(x.title, y.title)) + if doupdate: + StorageFolder.doUpdate(self) def __repr__(self): return '' % len(self.pathObjmap) @@ -216,7 +221,6 @@ def genZipFile(path): #traceback.print_exc(file=log.logfile) pass - log.msg('trying tar now:', `path`) try: # Try to see if it's a tar file if path[-2:] == 'gz': @@ -248,9 +252,11 @@ class ZipObject(FSObject, StorageFolder): self.zip = genZipFile(self.FSpath) hier = buildNameHier(self.zip.namelist(), self.zip.infolist()) + doupdate = False children = sets.Set(hier.keys()) for i in self.pathObjmap.keys(): if i not in children: + doupdate = True # delete self.cd.delItem(self.pathObjmap[i]) del self.pathObjmap[i] @@ -272,12 +278,16 @@ class ZipObject(FSObject, StorageFolder): self.pathObjmap[i] = self.cd.addItem(self.id, klass, i, zf = self.zip, zo = self, name = i, mimetype = mt) + doupdate = True # sort our children self.sort(lambda x, y: cmp(x.title, y.title)) + if doupdate: + StorageFolder.doUpdate(self) + def __repr__(self): - return '' % len(self.path) + return '' % self.FSpath def detectzipfile(path, fobj): try: