1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
""" A resource protocol for package resources. """
# Standard library imports.
import errno, pkg_resources
# Enthought library imports.
from enthought.traits.api import HasTraits, implements
# Local imports.
from i_resource_protocol import IResourceProtocol
from no_such_resource_error import NoSuchResourceError
class PackageResourceProtocol(HasTraits):
""" A resource protocol for package resources.
This protocol uses 'pkg_resources' to find and access resources.
An address for this protocol is a string in the form::
'package/resource'
e.g::
'acme.ui.workbench/preferences.ini'
"""
implements(IResourceProtocol)
###########################################################################
# 'IResourceProtocol' interface.
###########################################################################
def file(self, address):
""" Return a readable file-like object for the specified address. """
first_forward_slash = address.index('/')
package = address[:first_forward_slash]
resource_name = address[first_forward_slash+1:]
try:
f = pkg_resources.resource_stream(package, resource_name)
except IOError, e:
if e.errno == errno.ENOENT:
raise NoSuchResourceError(address)
else:
raise
except ImportError:
raise NoSuchResourceError(address)
return f
#### EOF ######################################################################
|