2007-01-17 04:29:59 +00:00
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
import re, urllib
|
2007-07-21 22:40:36 +00:00
|
|
|
from zope.interface import implements
|
|
|
|
from twisted.python.components import registerAdapter
|
2008-02-13 03:48:37 +00:00
|
|
|
from allmydata import storage
|
2008-02-15 02:45:12 +00:00
|
|
|
from allmydata.util import base32, hashutil
|
2007-11-01 22:15:29 +00:00
|
|
|
from allmydata.interfaces import IURI, IDirnodeURI, IFileURI, IVerifierURI, \
|
2007-12-19 00:44:24 +00:00
|
|
|
IMutableFileURI, INewDirectoryURI, IReadonlyNewDirectoryURI
|
2007-07-12 23:17:49 +00:00
|
|
|
|
2007-01-17 04:29:59 +00:00
|
|
|
# the URI shall be an ascii representation of the file. It shall contain
|
|
|
|
# enough information to retrieve and validate the contents. It shall be
|
|
|
|
# expressed in a limited character set (namely [TODO]).
|
|
|
|
|
2008-02-15 02:27:47 +00:00
|
|
|
BASE32STR_128bits = '(%s{25}%s)' % (base32.BASE32CHAR, base32.BASE32CHAR_3bits)
|
|
|
|
BASE32STR_256bits = '(%s{51}%s)' % (base32.BASE32CHAR, base32.BASE32CHAR_1bits)
|
2007-12-19 00:44:24 +00:00
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
SEP='(?::|%3A)'
|
|
|
|
NUMBER='([0-9]+)'
|
2007-12-19 00:44:24 +00:00
|
|
|
|
|
|
|
# URIs (soon to be renamed "caps") are always allowed to come with a leading
|
2008-01-03 23:55:43 +00:00
|
|
|
# 'http://127.0.0.1:8123/uri/' that will be ignored.
|
2008-03-04 21:27:45 +00:00
|
|
|
OPTIONALHTTPLEAD=r'(?:https?://(?:127.0.0.1|localhost):8123/uri/)?'
|
2007-12-19 00:44:24 +00:00
|
|
|
|
2007-06-02 01:48:01 +00:00
|
|
|
|
2007-07-21 22:40:36 +00:00
|
|
|
class _BaseURI:
|
|
|
|
def __hash__(self):
|
2008-09-23 18:52:49 +00:00
|
|
|
return self.to_string().__hash__()
|
|
|
|
def __eq__(self, them):
|
|
|
|
if isinstance(them, _BaseURI):
|
|
|
|
return self.to_string() == them.to_string()
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
def __ne__(self, them):
|
|
|
|
if isinstance(them, _BaseURI):
|
|
|
|
return self.to_string() != them.to_string()
|
|
|
|
else:
|
|
|
|
return True
|
2008-01-03 23:55:43 +00:00
|
|
|
def to_human_encoding(self):
|
|
|
|
return 'http://127.0.0.1:8123/uri/'+self.to_string()
|
2007-07-21 22:40:36 +00:00
|
|
|
|
|
|
|
class CHKFileURI(_BaseURI):
|
|
|
|
implements(IURI, IFileURI)
|
|
|
|
|
2008-02-15 02:27:47 +00:00
|
|
|
STRING_RE=re.compile('^URI:CHK:'+BASE32STR_128bits+':'+
|
|
|
|
BASE32STR_256bits+':'+NUMBER+':'+NUMBER+':'+NUMBER+
|
2008-01-03 23:55:43 +00:00
|
|
|
'$')
|
|
|
|
HUMAN_RE=re.compile('^'+OPTIONALHTTPLEAD+'URI'+SEP+'CHK'+SEP+
|
2008-02-15 02:27:47 +00:00
|
|
|
BASE32STR_128bits+SEP+BASE32STR_256bits+SEP+NUMBER+
|
2008-01-03 23:55:43 +00:00
|
|
|
SEP+NUMBER+SEP+NUMBER+'$')
|
|
|
|
|
|
|
|
def __init__(self, key, uri_extension_hash, needed_shares, total_shares,
|
|
|
|
size):
|
|
|
|
self.key = key
|
|
|
|
self.uri_extension_hash = uri_extension_hash
|
|
|
|
self.needed_shares = needed_shares
|
|
|
|
self.total_shares = total_shares
|
|
|
|
self.size = size
|
2008-02-01 19:27:37 +00:00
|
|
|
self.storage_index = hashutil.storage_index_hash(self.key)
|
2008-01-03 23:55:43 +00:00
|
|
|
assert len(self.storage_index) == 16
|
2008-02-01 19:27:37 +00:00
|
|
|
self.storage_index = hashutil.storage_index_hash(key)
|
2008-01-03 23:55:43 +00:00
|
|
|
assert len(self.storage_index) == 16 # sha256 hash truncated to 128
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def init_from_human_encoding(cls, uri):
|
|
|
|
mo = cls.HUMAN_RE.search(uri)
|
|
|
|
assert mo, uri
|
2008-02-15 02:27:47 +00:00
|
|
|
return cls(base32.a2b(mo.group(1)), base32.a2b(mo.group(2)),
|
2008-01-03 23:55:43 +00:00
|
|
|
int(mo.group(3)), int(mo.group(4)), int(mo.group(5)))
|
2007-07-21 22:40:36 +00:00
|
|
|
|
2008-01-03 05:12:15 +00:00
|
|
|
@classmethod
|
|
|
|
def init_from_string(cls, uri):
|
2008-01-03 23:55:43 +00:00
|
|
|
mo = cls.STRING_RE.search(uri)
|
|
|
|
assert mo, uri
|
2008-02-15 02:27:47 +00:00
|
|
|
return cls(base32.a2b(mo.group(1)), base32.a2b(mo.group(2)),
|
2008-01-03 23:55:43 +00:00
|
|
|
int(mo.group(3)), int(mo.group(4)), int(mo.group(5)))
|
2007-07-22 01:23:15 +00:00
|
|
|
|
|
|
|
def to_string(self):
|
2007-07-21 22:40:36 +00:00
|
|
|
assert isinstance(self.needed_shares, int)
|
|
|
|
assert isinstance(self.total_shares, int)
|
|
|
|
assert isinstance(self.size, (int,long))
|
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
return ('URI:CHK:%s:%s:%d:%d:%d' %
|
2008-02-15 02:27:47 +00:00
|
|
|
(base32.b2a(self.key),
|
|
|
|
base32.b2a(self.uri_extension_hash),
|
2007-07-21 22:40:36 +00:00
|
|
|
self.needed_shares,
|
|
|
|
self.total_shares,
|
|
|
|
self.size))
|
|
|
|
|
|
|
|
def is_readonly(self):
|
|
|
|
return True
|
|
|
|
def is_mutable(self):
|
|
|
|
return False
|
|
|
|
def get_readonly(self):
|
|
|
|
return self
|
|
|
|
|
|
|
|
def get_size(self):
|
|
|
|
return self.size
|
|
|
|
|
2007-10-15 23:16:39 +00:00
|
|
|
def get_verifier(self):
|
|
|
|
return CHKFileVerifierURI(storage_index=self.storage_index,
|
|
|
|
uri_extension_hash=self.uri_extension_hash,
|
|
|
|
needed_shares=self.needed_shares,
|
|
|
|
total_shares=self.total_shares,
|
|
|
|
size=self.size)
|
|
|
|
|
|
|
|
class CHKFileVerifierURI(_BaseURI):
|
|
|
|
implements(IVerifierURI)
|
|
|
|
|
2008-02-15 02:27:47 +00:00
|
|
|
STRING_RE=re.compile('^URI:CHK-Verifier:'+BASE32STR_128bits+':'+
|
|
|
|
BASE32STR_256bits+':'+NUMBER+':'+NUMBER+':'+NUMBER)
|
2008-01-03 23:55:43 +00:00
|
|
|
HUMAN_RE=re.compile('^'+OPTIONALHTTPLEAD+'URI'+SEP+'CHK-Verifier'+SEP+
|
2008-02-15 02:27:47 +00:00
|
|
|
BASE32STR_128bits+SEP+BASE32STR_256bits+SEP+NUMBER+
|
2008-01-03 23:55:43 +00:00
|
|
|
SEP+NUMBER+SEP+NUMBER)
|
2007-12-05 00:38:31 +00:00
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
def __init__(self, storage_index, uri_extension_hash,
|
2007-12-05 00:38:31 +00:00
|
|
|
needed_shares, total_shares, size):
|
2008-01-03 23:55:43 +00:00
|
|
|
assert len(storage_index) == 16
|
2007-12-05 00:38:31 +00:00
|
|
|
self.storage_index = storage_index
|
|
|
|
self.uri_extension_hash = uri_extension_hash
|
|
|
|
self.needed_shares = needed_shares
|
|
|
|
self.total_shares = total_shares
|
|
|
|
self.size = size
|
2007-10-15 23:16:39 +00:00
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
@classmethod
|
|
|
|
def init_from_human_encoding(cls, uri):
|
|
|
|
mo = cls.HUMAN_RE.search(uri)
|
|
|
|
assert mo, uri
|
2008-02-15 02:27:47 +00:00
|
|
|
return cls(base32.a2b(mo.group(1)), base32.a2b(mo.group(2)),
|
2008-01-03 23:55:43 +00:00
|
|
|
int(mo.group(3)), int(mo.group(4)), int(mo.group(5)))
|
|
|
|
|
2008-01-03 05:12:15 +00:00
|
|
|
@classmethod
|
|
|
|
def init_from_string(cls, uri):
|
2008-01-03 23:55:43 +00:00
|
|
|
mo = cls.STRING_RE.search(uri)
|
2008-02-13 03:48:37 +00:00
|
|
|
assert mo, (uri, cls, cls.STRING_RE)
|
2008-02-15 02:27:47 +00:00
|
|
|
return cls(storage.si_a2b(mo.group(1)), base32.a2b(mo.group(2)),
|
2008-01-03 23:55:43 +00:00
|
|
|
int(mo.group(3)), int(mo.group(4)), int(mo.group(5)))
|
2007-10-15 23:16:39 +00:00
|
|
|
|
|
|
|
def to_string(self):
|
|
|
|
assert isinstance(self.needed_shares, int)
|
|
|
|
assert isinstance(self.total_shares, int)
|
|
|
|
assert isinstance(self.size, (int,long))
|
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
return ('URI:CHK-Verifier:%s:%s:%d:%d:%d' %
|
2008-02-13 03:48:37 +00:00
|
|
|
(storage.si_b2a(self.storage_index),
|
2008-02-15 02:27:47 +00:00
|
|
|
base32.b2a(self.uri_extension_hash),
|
2007-10-15 23:16:39 +00:00
|
|
|
self.needed_shares,
|
|
|
|
self.total_shares,
|
|
|
|
self.size))
|
|
|
|
|
|
|
|
|
2007-07-21 22:40:36 +00:00
|
|
|
class LiteralFileURI(_BaseURI):
|
|
|
|
implements(IURI, IFileURI)
|
|
|
|
|
2008-02-15 02:27:47 +00:00
|
|
|
STRING_RE=re.compile('^URI:LIT:'+base32.BASE32STR_anybytes+'$')
|
|
|
|
HUMAN_RE=re.compile('^'+OPTIONALHTTPLEAD+'URI'+SEP+'LIT'+SEP+base32.BASE32STR_anybytes+'$')
|
2008-01-03 23:55:43 +00:00
|
|
|
|
2007-07-21 22:40:36 +00:00
|
|
|
def __init__(self, data=None):
|
|
|
|
if data is not None:
|
|
|
|
self.data = data
|
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
@classmethod
|
|
|
|
def init_from_human_encoding(cls, uri):
|
|
|
|
mo = cls.HUMAN_RE.search(uri)
|
|
|
|
assert mo, uri
|
2008-02-15 02:27:47 +00:00
|
|
|
return cls(base32.a2b(mo.group(1)))
|
2008-01-03 23:55:43 +00:00
|
|
|
|
2008-01-03 05:12:15 +00:00
|
|
|
@classmethod
|
|
|
|
def init_from_string(cls, uri):
|
2008-01-03 23:55:43 +00:00
|
|
|
mo = cls.STRING_RE.search(uri)
|
|
|
|
assert mo, uri
|
2008-02-15 02:27:47 +00:00
|
|
|
return cls(base32.a2b(mo.group(1)))
|
2007-07-21 22:40:36 +00:00
|
|
|
|
|
|
|
def to_string(self):
|
2008-02-15 02:27:47 +00:00
|
|
|
return 'URI:LIT:%s' % base32.b2a(self.data)
|
2007-07-21 22:40:36 +00:00
|
|
|
|
|
|
|
def is_readonly(self):
|
|
|
|
return True
|
|
|
|
def is_mutable(self):
|
|
|
|
return False
|
|
|
|
def get_readonly(self):
|
|
|
|
return self
|
|
|
|
|
2007-10-15 23:16:39 +00:00
|
|
|
def get_verifier(self):
|
|
|
|
# LIT files need no verification, all the data is present in the URI
|
|
|
|
return None
|
|
|
|
|
2007-07-21 22:40:36 +00:00
|
|
|
def get_size(self):
|
|
|
|
return len(self.data)
|
|
|
|
|
2007-11-01 22:15:29 +00:00
|
|
|
class WriteableSSKFileURI(_BaseURI):
|
|
|
|
implements(IURI, IMutableFileURI)
|
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
BASE_STRING='URI:SSK:'
|
2008-02-15 02:27:47 +00:00
|
|
|
STRING_RE=re.compile('^'+BASE_STRING+BASE32STR_128bits+':'+
|
|
|
|
BASE32STR_256bits+'$')
|
2008-01-03 23:55:43 +00:00
|
|
|
HUMAN_RE=re.compile('^'+OPTIONALHTTPLEAD+'URI'+SEP+'SSK'+SEP+
|
2008-02-15 02:27:47 +00:00
|
|
|
BASE32STR_128bits+SEP+BASE32STR_256bits+'$')
|
2008-01-03 23:55:43 +00:00
|
|
|
|
2008-01-03 05:12:15 +00:00
|
|
|
def __init__(self, writekey, fingerprint):
|
2007-11-01 22:15:29 +00:00
|
|
|
self.writekey = writekey
|
|
|
|
self.readkey = hashutil.ssk_readkey_hash(writekey)
|
|
|
|
self.storage_index = hashutil.ssk_storage_index_hash(self.readkey)
|
2008-01-03 23:55:43 +00:00
|
|
|
assert len(self.storage_index) == 16
|
2007-11-01 22:15:29 +00:00
|
|
|
self.fingerprint = fingerprint
|
|
|
|
|
2008-01-03 05:12:15 +00:00
|
|
|
@classmethod
|
|
|
|
def init_from_human_encoding(cls, uri):
|
2008-01-03 23:55:43 +00:00
|
|
|
mo = cls.HUMAN_RE.search(uri)
|
|
|
|
assert mo, uri
|
2008-02-15 02:27:47 +00:00
|
|
|
return cls(base32.a2b(mo.group(1)), base32.a2b(mo.group(2)))
|
2008-01-03 05:12:15 +00:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def init_from_string(cls, uri):
|
2008-01-03 23:55:43 +00:00
|
|
|
mo = cls.STRING_RE.search(uri)
|
|
|
|
assert mo, (uri, cls)
|
2008-02-15 02:27:47 +00:00
|
|
|
return cls(base32.a2b(mo.group(1)), base32.a2b(mo.group(2)))
|
2007-11-01 22:15:29 +00:00
|
|
|
|
|
|
|
def to_string(self):
|
|
|
|
assert isinstance(self.writekey, str)
|
|
|
|
assert isinstance(self.fingerprint, str)
|
2008-02-15 02:27:47 +00:00
|
|
|
return 'URI:SSK:%s:%s' % (base32.b2a(self.writekey),
|
|
|
|
base32.b2a(self.fingerprint))
|
2007-11-01 22:15:29 +00:00
|
|
|
|
2007-12-03 21:52:42 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "<%s %s>" % (self.__class__.__name__, self.abbrev())
|
|
|
|
|
|
|
|
def abbrev(self):
|
2008-02-15 02:27:47 +00:00
|
|
|
return base32.b2a(self.writekey[:5])
|
2007-12-03 21:52:42 +00:00
|
|
|
|
2007-11-01 22:15:29 +00:00
|
|
|
def is_readonly(self):
|
|
|
|
return False
|
|
|
|
def is_mutable(self):
|
|
|
|
return True
|
|
|
|
def get_readonly(self):
|
|
|
|
return ReadonlySSKFileURI(self.readkey, self.fingerprint)
|
|
|
|
def get_verifier(self):
|
|
|
|
return SSKVerifierURI(self.storage_index, self.fingerprint)
|
|
|
|
|
|
|
|
class ReadonlySSKFileURI(_BaseURI):
|
|
|
|
implements(IURI, IMutableFileURI)
|
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
BASE_STRING='URI:SSK-RO:'
|
2008-02-15 02:27:47 +00:00
|
|
|
STRING_RE=re.compile('^URI:SSK-RO:'+BASE32STR_128bits+':'+BASE32STR_256bits+'$')
|
|
|
|
HUMAN_RE=re.compile('^'+OPTIONALHTTPLEAD+'URI'+SEP+'SSK-RO'+SEP+BASE32STR_128bits+SEP+BASE32STR_256bits+'$')
|
2008-01-03 23:55:43 +00:00
|
|
|
|
2008-01-03 05:12:15 +00:00
|
|
|
def __init__(self, readkey, fingerprint):
|
2007-11-01 22:15:29 +00:00
|
|
|
self.readkey = readkey
|
|
|
|
self.storage_index = hashutil.ssk_storage_index_hash(self.readkey)
|
2008-01-03 23:55:43 +00:00
|
|
|
assert len(self.storage_index) == 16
|
2007-11-01 22:15:29 +00:00
|
|
|
self.fingerprint = fingerprint
|
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
@classmethod
|
|
|
|
def init_from_human_encoding(cls, uri):
|
|
|
|
mo = cls.HUMAN_RE.search(uri)
|
|
|
|
assert mo, uri
|
2008-02-15 02:27:47 +00:00
|
|
|
return cls(base32.a2b(mo.group(1)), base32.a2b(mo.group(2)))
|
2008-01-03 23:55:43 +00:00
|
|
|
|
2008-01-03 05:12:15 +00:00
|
|
|
@classmethod
|
|
|
|
def init_from_string(cls, uri):
|
2008-01-03 23:55:43 +00:00
|
|
|
mo = cls.STRING_RE.search(uri)
|
|
|
|
assert mo, uri
|
2008-02-15 02:27:47 +00:00
|
|
|
return cls(base32.a2b(mo.group(1)), base32.a2b(mo.group(2)))
|
2007-11-01 22:15:29 +00:00
|
|
|
|
|
|
|
def to_string(self):
|
|
|
|
assert isinstance(self.readkey, str)
|
|
|
|
assert isinstance(self.fingerprint, str)
|
2008-02-15 02:27:47 +00:00
|
|
|
return 'URI:SSK-RO:%s:%s' % (base32.b2a(self.readkey),
|
|
|
|
base32.b2a(self.fingerprint))
|
2007-11-01 22:15:29 +00:00
|
|
|
|
2007-12-03 21:52:42 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "<%s %s>" % (self.__class__.__name__, self.abbrev())
|
|
|
|
|
|
|
|
def abbrev(self):
|
2008-02-15 02:27:47 +00:00
|
|
|
return base32.b2a(self.readkey[:5])
|
2007-12-03 21:52:42 +00:00
|
|
|
|
2007-11-01 22:15:29 +00:00
|
|
|
def is_readonly(self):
|
|
|
|
return True
|
|
|
|
def is_mutable(self):
|
|
|
|
return True
|
|
|
|
def get_readonly(self):
|
|
|
|
return self
|
|
|
|
def get_verifier(self):
|
|
|
|
return SSKVerifierURI(self.storage_index, self.fingerprint)
|
|
|
|
|
|
|
|
class SSKVerifierURI(_BaseURI):
|
|
|
|
implements(IVerifierURI)
|
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
BASE_STRING='URI:SSK-Verifier:'
|
2008-02-15 02:27:47 +00:00
|
|
|
STRING_RE=re.compile('^'+BASE_STRING+BASE32STR_128bits+':'+BASE32STR_256bits+'$')
|
2008-03-04 21:27:45 +00:00
|
|
|
HUMAN_RE=re.compile('^'+OPTIONALHTTPLEAD+'URI'+SEP+'SSK-Verifier'+SEP+BASE32STR_128bits+SEP+BASE32STR_256bits+'$')
|
2008-01-03 23:55:43 +00:00
|
|
|
|
2008-01-03 05:12:15 +00:00
|
|
|
def __init__(self, storage_index, fingerprint):
|
2008-01-03 23:55:43 +00:00
|
|
|
assert len(storage_index) == 16
|
2007-11-01 22:15:29 +00:00
|
|
|
self.storage_index = storage_index
|
|
|
|
self.fingerprint = fingerprint
|
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
@classmethod
|
|
|
|
def init_from_human_encoding(cls, uri):
|
|
|
|
mo = cls.HUMAN_RE.search(uri)
|
|
|
|
assert mo, uri
|
2008-02-15 02:27:47 +00:00
|
|
|
return cls(storage.si_a2b(mo.group(1)), base32.a2b(mo.group(2)))
|
2008-01-03 23:55:43 +00:00
|
|
|
|
2008-01-03 05:12:15 +00:00
|
|
|
@classmethod
|
|
|
|
def init_from_string(cls, uri):
|
2008-01-03 23:55:43 +00:00
|
|
|
mo = cls.STRING_RE.search(uri)
|
2008-02-13 03:48:37 +00:00
|
|
|
assert mo, (uri, cls)
|
2008-02-15 02:27:47 +00:00
|
|
|
return cls(storage.si_a2b(mo.group(1)), base32.a2b(mo.group(2)))
|
2007-11-01 22:15:29 +00:00
|
|
|
|
|
|
|
def to_string(self):
|
|
|
|
assert isinstance(self.storage_index, str)
|
|
|
|
assert isinstance(self.fingerprint, str)
|
2008-02-13 03:48:37 +00:00
|
|
|
return 'URI:SSK-Verifier:%s:%s' % (storage.si_b2a(self.storage_index),
|
2008-02-15 02:27:47 +00:00
|
|
|
base32.b2a(self.fingerprint))
|
2007-11-01 22:15:29 +00:00
|
|
|
|
2007-12-03 21:52:42 +00:00
|
|
|
class _NewDirectoryBaseURI(_BaseURI):
|
|
|
|
implements(IURI, IDirnodeURI)
|
|
|
|
def __init__(self, filenode_uri=None):
|
|
|
|
self._filenode_uri = filenode_uri
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "<%s %s>" % (self.__class__.__name__, self.abbrev())
|
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
@classmethod
|
|
|
|
def init_from_string(cls, uri):
|
|
|
|
mo = cls.BASE_STRING_RE.search(uri)
|
|
|
|
assert mo, (uri, cls)
|
|
|
|
bits = uri[mo.end():]
|
|
|
|
fn = cls.INNER_URI_CLASS.init_from_string(
|
|
|
|
cls.INNER_URI_CLASS.BASE_STRING+bits)
|
|
|
|
return cls(fn)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def init_from_human_encoding(cls, uri):
|
|
|
|
mo = cls.BASE_HUMAN_RE.search(uri)
|
2008-01-04 00:35:35 +00:00
|
|
|
assert mo, (uri, cls)
|
2008-01-03 23:55:43 +00:00
|
|
|
bits = uri[mo.end():]
|
|
|
|
while bits and bits[-1] == '/':
|
|
|
|
bits = bits[:-1]
|
|
|
|
fn = cls.INNER_URI_CLASS.init_from_string(
|
|
|
|
cls.INNER_URI_CLASS.BASE_STRING+urllib.unquote(bits))
|
|
|
|
return cls(fn)
|
|
|
|
|
|
|
|
def to_string(self):
|
|
|
|
fnuri = self._filenode_uri.to_string()
|
|
|
|
mo = re.match(self.INNER_URI_CLASS.BASE_STRING, fnuri)
|
|
|
|
assert mo, fnuri
|
|
|
|
bits = fnuri[mo.end():]
|
|
|
|
return self.BASE_STRING+bits
|
|
|
|
|
2007-12-03 21:52:42 +00:00
|
|
|
def abbrev(self):
|
|
|
|
return self._filenode_uri.to_string().split(':')[2][:5]
|
2007-11-01 22:15:29 +00:00
|
|
|
|
2007-12-03 21:52:42 +00:00
|
|
|
def get_filenode_uri(self):
|
|
|
|
return self._filenode_uri
|
|
|
|
|
|
|
|
def is_mutable(self):
|
|
|
|
return True
|
|
|
|
|
|
|
|
def get_verifier(self):
|
|
|
|
return NewDirectoryURIVerifier(self._filenode_uri.get_verifier())
|
|
|
|
|
|
|
|
class NewDirectoryURI(_NewDirectoryBaseURI):
|
|
|
|
implements(INewDirectoryURI)
|
2008-01-03 23:55:43 +00:00
|
|
|
|
|
|
|
BASE_STRING='URI:DIR2:'
|
|
|
|
BASE_STRING_RE=re.compile('^'+BASE_STRING)
|
|
|
|
BASE_HUMAN_RE=re.compile('^'+OPTIONALHTTPLEAD+'URI'+SEP+'DIR2'+SEP)
|
|
|
|
INNER_URI_CLASS=WriteableSSKFileURI
|
|
|
|
|
2007-11-01 22:15:29 +00:00
|
|
|
def __init__(self, filenode_uri=None):
|
|
|
|
if filenode_uri:
|
|
|
|
assert not filenode_uri.is_readonly()
|
2007-12-03 21:52:42 +00:00
|
|
|
_NewDirectoryBaseURI.__init__(self, filenode_uri)
|
2007-11-01 22:15:29 +00:00
|
|
|
|
|
|
|
def is_readonly(self):
|
|
|
|
return False
|
2007-12-03 21:52:42 +00:00
|
|
|
|
2007-11-01 22:15:29 +00:00
|
|
|
def get_readonly(self):
|
|
|
|
return ReadonlyNewDirectoryURI(self._filenode_uri.get_readonly())
|
|
|
|
|
2007-12-03 21:52:42 +00:00
|
|
|
class ReadonlyNewDirectoryURI(_NewDirectoryBaseURI):
|
|
|
|
implements(IReadonlyNewDirectoryURI)
|
2008-01-03 23:55:43 +00:00
|
|
|
|
|
|
|
BASE_STRING='URI:DIR2-RO:'
|
|
|
|
BASE_STRING_RE=re.compile('^'+BASE_STRING)
|
|
|
|
BASE_HUMAN_RE=re.compile('^'+OPTIONALHTTPLEAD+'URI'+SEP+'DIR2-RO'+SEP)
|
|
|
|
INNER_URI_CLASS=ReadonlySSKFileURI
|
|
|
|
|
2007-11-01 22:15:29 +00:00
|
|
|
def __init__(self, filenode_uri=None):
|
|
|
|
if filenode_uri:
|
|
|
|
assert filenode_uri.is_readonly()
|
2007-12-03 21:52:42 +00:00
|
|
|
_NewDirectoryBaseURI.__init__(self, filenode_uri)
|
2007-11-01 22:15:29 +00:00
|
|
|
|
|
|
|
def is_readonly(self):
|
|
|
|
return True
|
2007-12-03 21:52:42 +00:00
|
|
|
|
2007-11-01 22:15:29 +00:00
|
|
|
def get_readonly(self):
|
|
|
|
return self
|
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
class NewDirectoryURIVerifier(_NewDirectoryBaseURI):
|
2007-11-01 22:15:29 +00:00
|
|
|
implements(IVerifierURI)
|
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
BASE_STRING='URI:DIR2-Verifier:'
|
|
|
|
BASE_STRING_RE=re.compile('^'+BASE_STRING)
|
|
|
|
BASE_HUMAN_RE=re.compile('^'+OPTIONALHTTPLEAD+'URI'+SEP+'DIR2-Verifier'+SEP)
|
|
|
|
INNER_URI_CLASS=SSKVerifierURI
|
|
|
|
|
2007-11-01 22:15:29 +00:00
|
|
|
def __init__(self, filenode_uri=None):
|
|
|
|
if filenode_uri:
|
|
|
|
filenode_uri = IVerifierURI(filenode_uri)
|
|
|
|
self._filenode_uri = filenode_uri
|
|
|
|
|
2007-11-02 01:35:54 +00:00
|
|
|
def get_filenode_uri(self):
|
|
|
|
return self._filenode_uri
|
|
|
|
|
2007-11-01 22:15:29 +00:00
|
|
|
|
|
|
|
|
2007-07-21 22:40:36 +00:00
|
|
|
def from_string(s):
|
2008-01-03 23:55:43 +00:00
|
|
|
if s.startswith('URI:CHK:'):
|
2008-01-03 05:12:15 +00:00
|
|
|
return CHKFileURI.init_from_string(s)
|
2008-01-03 23:55:43 +00:00
|
|
|
elif s.startswith('URI:CHK-Verifier:'):
|
2008-01-03 05:12:15 +00:00
|
|
|
return CHKFileVerifierURI.init_from_string(s)
|
2008-01-03 23:55:43 +00:00
|
|
|
elif s.startswith('URI:LIT:'):
|
2008-01-03 05:12:15 +00:00
|
|
|
return LiteralFileURI.init_from_string(s)
|
2008-01-03 23:55:43 +00:00
|
|
|
elif s.startswith('URI:SSK:'):
|
2008-01-03 05:12:15 +00:00
|
|
|
return WriteableSSKFileURI.init_from_string(s)
|
2008-01-03 23:55:43 +00:00
|
|
|
elif s.startswith('URI:SSK-RO:'):
|
2008-01-03 05:12:15 +00:00
|
|
|
return ReadonlySSKFileURI.init_from_string(s)
|
2008-01-03 23:55:43 +00:00
|
|
|
elif s.startswith('URI:SSK-Verifier:'):
|
2008-01-03 05:12:15 +00:00
|
|
|
return SSKVerifierURI.init_from_string(s)
|
2008-01-03 23:55:43 +00:00
|
|
|
elif s.startswith('URI:DIR2:'):
|
2008-01-03 05:12:15 +00:00
|
|
|
return NewDirectoryURI.init_from_string(s)
|
2008-01-03 23:55:43 +00:00
|
|
|
elif s.startswith('URI:DIR2-RO:'):
|
2008-01-03 05:12:15 +00:00
|
|
|
return ReadonlyNewDirectoryURI.init_from_string(s)
|
2008-01-03 23:55:43 +00:00
|
|
|
elif s.startswith('URI:DIR2-Verifier:'):
|
2008-01-03 05:12:15 +00:00
|
|
|
return NewDirectoryURIVerifier.init_from_string(s)
|
2007-07-21 22:40:36 +00:00
|
|
|
else:
|
2007-11-01 22:15:29 +00:00
|
|
|
raise TypeError("unknown URI type: %s.." % s[:12])
|
2007-06-02 01:48:01 +00:00
|
|
|
|
2007-07-21 22:40:36 +00:00
|
|
|
registerAdapter(from_string, str, IURI)
|
2007-06-02 01:48:01 +00:00
|
|
|
|
2008-01-11 03:43:42 +00:00
|
|
|
def is_uri(s):
|
|
|
|
try:
|
|
|
|
uri = from_string(s)
|
|
|
|
return True
|
|
|
|
except (TypeError, AssertionError):
|
|
|
|
return False
|
|
|
|
|
2007-07-21 22:40:36 +00:00
|
|
|
def from_string_dirnode(s):
|
|
|
|
u = from_string(s)
|
|
|
|
assert IDirnodeURI.providedBy(u)
|
|
|
|
return u
|
2007-01-17 04:29:59 +00:00
|
|
|
|
2007-07-21 22:40:36 +00:00
|
|
|
registerAdapter(from_string_dirnode, str, IDirnodeURI)
|
2007-01-17 04:29:59 +00:00
|
|
|
|
2007-07-21 22:40:36 +00:00
|
|
|
def from_string_filenode(s):
|
|
|
|
u = from_string(s)
|
|
|
|
assert IFileURI.providedBy(u)
|
|
|
|
return u
|
|
|
|
|
|
|
|
registerAdapter(from_string_filenode, str, IFileURI)
|
2007-01-17 04:29:59 +00:00
|
|
|
|
2007-11-01 22:15:29 +00:00
|
|
|
def from_string_mutable_filenode(s):
|
|
|
|
u = from_string(s)
|
|
|
|
assert IMutableFileURI.providedBy(u)
|
|
|
|
return u
|
|
|
|
registerAdapter(from_string_mutable_filenode, str, IMutableFileURI)
|
|
|
|
|
2007-10-15 23:16:39 +00:00
|
|
|
def from_string_verifier(s):
|
|
|
|
u = from_string(s)
|
|
|
|
assert IVerifierURI.providedBy(u)
|
|
|
|
return u
|
|
|
|
registerAdapter(from_string_verifier, str, IVerifierURI)
|
|
|
|
|
2007-01-17 04:29:59 +00:00
|
|
|
|
2007-06-12 01:25:18 +00:00
|
|
|
def pack_extension(data):
|
|
|
|
pieces = []
|
|
|
|
for k in sorted(data.keys()):
|
|
|
|
value = data[k]
|
|
|
|
if isinstance(value, (int, long)):
|
|
|
|
value = "%d" % value
|
|
|
|
assert isinstance(value, str), k
|
|
|
|
assert re.match(r'^[a-zA-Z_\-]+$', k)
|
2008-01-03 23:55:43 +00:00
|
|
|
pieces.append(k + ':' + hashutil.netstring(value))
|
|
|
|
uri_extension = ''.join(pieces)
|
2007-06-12 01:25:18 +00:00
|
|
|
return uri_extension
|
|
|
|
|
|
|
|
def unpack_extension(data):
|
|
|
|
d = {}
|
|
|
|
while data:
|
2008-01-03 23:55:43 +00:00
|
|
|
colon = data.index(':')
|
2007-06-12 01:25:18 +00:00
|
|
|
key = data[:colon]
|
|
|
|
data = data[colon+1:]
|
|
|
|
|
2008-01-03 23:55:43 +00:00
|
|
|
colon = data.index(':')
|
2007-06-12 01:25:18 +00:00
|
|
|
number = data[:colon]
|
|
|
|
length = int(number)
|
|
|
|
data = data[colon+1:]
|
|
|
|
|
|
|
|
value = data[:length]
|
2008-01-03 23:55:43 +00:00
|
|
|
assert data[length] == ','
|
2007-06-12 01:25:18 +00:00
|
|
|
data = data[length+1:]
|
|
|
|
|
|
|
|
d[key] = value
|
|
|
|
|
|
|
|
# convert certain things to numbers
|
2008-01-03 23:55:43 +00:00
|
|
|
for intkey in ('size', 'segment_size', 'num_segments',
|
|
|
|
'needed_shares', 'total_shares'):
|
2007-06-12 01:25:18 +00:00
|
|
|
if intkey in d:
|
|
|
|
d[intkey] = int(d[intkey])
|
|
|
|
return d
|
|
|
|
|
2007-06-12 01:38:21 +00:00
|
|
|
|
|
|
|
def unpack_extension_readable(data):
|
|
|
|
unpacked = unpack_extension(data)
|
2008-02-06 19:48:19 +00:00
|
|
|
unpacked["UEB_hash"] = hashutil.uri_extension_hash(data)
|
2007-06-12 01:38:21 +00:00
|
|
|
for k in sorted(unpacked.keys()):
|
2008-01-03 23:55:43 +00:00
|
|
|
if 'hash' in k:
|
2008-02-15 02:27:47 +00:00
|
|
|
unpacked[k] = base32.b2a(unpacked[k])
|
2007-06-12 01:38:21 +00:00
|
|
|
return unpacked
|
2007-06-25 20:23:51 +00:00
|
|
|
|