Browse Source

detect when addItem is passed a Container class and treat it as

such..  this makes a new addObject that addContainer and addItem
both call..  addObject is internal use only...

push down the isdir and isfile stuff into defFS function...  This
means that we now have a chance to install custom directory handlers
ala DVD VIDEO_TS handler! whoot!

[git-p4: depot-paths = "//depot/": change = 803]
v0.3
John-Mark Gurney 19 years ago
parent
commit
40887b4646
2 changed files with 23 additions and 16 deletions
  1. +11
    -5
      ContentDirectory.py
  2. +12
    -11
      FSStorage.py

+ 11
- 5
ContentDirectory.py View File

@@ -39,16 +39,22 @@ class ContentDirectoryControl(UPnPPublisher, dict):
self.nextID += 1
return ret

def addContainer(self, parent, title, klass = Container, **kwargs):
ret = self.addItem(parent, klass, title, **kwargs)
def addContainer(self, parent, title, klass = Container, *args, **kwargs):
ret = self.addObject(parent, klass, title, *args, **kwargs)
self.children[ret] = self[ret]
return ret

def addItem(self, parent, klass, *args, **kwargs):
'''Takes an optional arg, content, which is a twisted.web.resource.Resource that this item provides.'''
def addItem(self, parent, klass, title, *args, **kwargs):
if issubclass(klass, Container):
return self.addContainer(parent, title, klass, *args, **kwargs)
else:
return self.addObject(parent, klass, title, *args, **kwargs)

def addObject(self, parent, klass, title, *args, **kwargs):
'''If the generated object (by klass) has an attribute content, it is installed into the web server.'''
assert isinstance(self[parent], Container)
nid = self.getnextID()
i = klass(self, nid, parent, *args, **kwargs)
i = klass(self, nid, parent, title, *args, **kwargs)
if hasattr(i, 'content'):
self.webbase.putChild(nid, i.content)
self.children[parent].append(i)


+ 12
- 11
FSStorage.py View File

@@ -96,6 +96,16 @@ mimetoklass = {
}

def defFS(path):
if os.path.isdir(path):
# new dir
return FSDirectory, { 'path': path }
elif os.path.isfile(path):
# new file - fall through to below
pass
else:
log.msg('skipping (not dir or reg): %s' % path)
return None, None

fn, ext = os.path.splitext(path)
ext = ext.lower()
try:
@@ -129,7 +139,7 @@ def dofileadd(cd, parent, path, name):
if klass is None:
return

log.msg('matched:', os.path.join(path, name), `i`)
log.msg('matched:', os.path.join(path, name), `i`, `klass`)
return cd.addItem(parent, klass, name, **kwargs)

class FSDirectory(FSObject, StorageFolder):
@@ -153,20 +163,11 @@ class FSDirectory(FSObject, StorageFolder):
del self.pathObjmap[i]

for i in children:
fname = os.path.join(self.FSpath, i)
if i in self.pathObjmap:
continue

# new object
if os.path.isdir(fname):
# new dir
nf = self.cd.addContainer(self.id, i, klass = FSDirectory, path = fname)
elif os.path.isfile(fname):
# new file
nf = dofileadd(self.cd, self.id, self.FSpath, i)
else:
nf = None
log.msg('skipping: %s' % fname)
nf = dofileadd(self.cd, self.id, self.FSpath, i)

if nf is not None:
self.pathObjmap[i] = nf


Loading…
Cancel
Save