|
|
@@ -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 '<ZipChildDir: len: %d>' % 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 '<ZipObject: path: %s>' % len(self.path) |
|
|
|
return '<ZipObject: path: %s>' % self.FSpath |
|
|
|
|
|
|
|
def detectzipfile(path, fobj): |
|
|
|
try: |
|
|
|