2006-12-02 02:17:50 +00:00
|
|
|
|
|
|
|
from foolscap.schema import StringConstraint, ListOf, TupleOf, Any, Nothing
|
|
|
|
from foolscap import RemoteInterface
|
|
|
|
|
2006-12-02 23:03:09 +00:00
|
|
|
Nodeid = StringConstraint(20) # base32 encoded 20-byte SHA1 hash
|
2006-12-02 02:17:50 +00:00
|
|
|
PBURL = StringConstraint()
|
2006-12-02 23:03:09 +00:00
|
|
|
Tubid = StringConstraint()
|
|
|
|
ShareData = StringConstraint(20000)
|
2006-12-02 02:17:50 +00:00
|
|
|
# these three are here because Foolscap does not yet support the kind of
|
|
|
|
# restriction I really want to apply to these.
|
2006-12-02 23:03:09 +00:00
|
|
|
RIClient_ = Any()
|
|
|
|
Referenceable_ = Any()
|
|
|
|
RIBucketWriter_ = Any()
|
2006-12-02 02:17:50 +00:00
|
|
|
|
|
|
|
class RIQueenRoster(RemoteInterface):
|
|
|
|
def hello(nodeid=Nodeid, node=RIClient_, pburl=PBURL):
|
2006-12-02 23:03:09 +00:00
|
|
|
return Nothing()
|
2006-12-02 02:17:50 +00:00
|
|
|
|
|
|
|
class RIClient(RemoteInterface):
|
|
|
|
def get_service(name=str):
|
|
|
|
return Referenceable_
|
|
|
|
def add_peers(new_peers=ListOf(TupleOf(Nodeid, PBURL), maxLength=100)):
|
2006-12-02 23:03:09 +00:00
|
|
|
return Nothing()
|
2006-12-02 02:17:50 +00:00
|
|
|
def lost_peers(lost_peers=ListOf(Nodeid)):
|
2006-12-02 23:03:09 +00:00
|
|
|
return Nothing()
|
2006-12-02 02:17:50 +00:00
|
|
|
|
|
|
|
class RIStorageServer(RemoteInterface):
|
|
|
|
def allocate_bucket(verifierid=Nodeid, bucket_num=int, size=int,
|
2006-12-02 23:03:09 +00:00
|
|
|
leaser=Tubid):
|
2006-12-02 02:17:50 +00:00
|
|
|
return RIBucketWriter_
|
|
|
|
|
|
|
|
|
|
|
|
class RIBucketWriter(RemoteInterface):
|
2006-12-02 23:03:09 +00:00
|
|
|
def write(data=ShareData):
|
|
|
|
return Nothing()
|
2006-12-02 02:17:50 +00:00
|
|
|
|
|
|
|
def set_size(size=int):
|
2006-12-02 23:03:09 +00:00
|
|
|
return Nothing()
|
2006-12-02 02:17:50 +00:00
|
|
|
|
|
|
|
def close():
|
2006-12-02 23:03:09 +00:00
|
|
|
return Nothing()
|
2006-12-02 02:17:50 +00:00
|
|
|
|
|
|
|
|