X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fserver%2Faggregate.py;h=a8f0a0a48146ad7afb0333a24641feaa04099756;hb=2880f8a4ec7acc3925cb865ce6b3076dd593274a;hp=c6e72563f563aead8bcc321535b9afdf95a5ecde;hpb=8112013fa34d58b4b87c3d974ab31e6c2b58372c;p=sfa.git diff --git a/sfa/server/aggregate.py b/sfa/server/aggregate.py index c6e72563..a8f0a0a4 100644 --- a/sfa/server/aggregate.py +++ b/sfa/server/aggregate.py @@ -1,12 +1,9 @@ -### $Id$ -### $URL$ +from sfa.server.sfaserver import SfaServer +from sfa.util.xrn import hrn_to_urn +from sfa.server.interface import Interfaces, Interface +from sfa.util.config import Config - -from sfa.util.server import SfaServer -from sfa.util.faults import * -from sfa.server.interface import Interfaces -import sfa.util.xmlrpcprotocol as xmlrpcprotocol -import sfa.util.soapprotocol as soapprotocol +# this truly is a server-side object class Aggregate(SfaServer): @@ -17,34 +14,27 @@ class Aggregate(SfaServer): # @param ip the ip address to listen on # @param port the port to listen on # @param key_file private key filename of registry - # @param cert_file certificate filename containing public key (could be a GID file) + # @param cert_file certificate filename containing public key (could be a GID file) def __init__(self, ip, port, key_file, cert_file): - SfaServer.__init__(self, ip, port, key_file, cert_file) - self.server.interface = 'aggregate' + SfaServer.__init__(self, ip, port, key_file, cert_file, 'aggregate') -## +# # Aggregates is a dictionary of aggregate connections keyed on the aggregate hrn +# as such it's more of a client-side thing for aggregate servers to reach their peers +# + class Aggregates(Interfaces): default_dict = {'aggregates': {'aggregate': [Interfaces.default_fields]}} - - def __init__(self, api, conf_file = "/etc/sfa/aggregates.xml"): - Interfaces.__init__(self, api, conf_file, 'ma') - - def connectAggregates(self, interfaces): - """ - Get connection details for the trusted peer aggregates from file and - create an connection to each. - """ - connections = Interfaces.get_connections(self, interfaces) - - # set up a connection to the local registry - address = self.api.config.SFA_AGGREGATE_HOST - port = self.api.config.SFA_AGGREGATE_PORT - url = 'http://%(address)s:%(port)s' % locals() - local_aggregate = {'hrn': self.api.hrn, 'addr': address, 'port': port} - self.interfaces.append(local_aggregate) - connections[self.api.hrn] = xmlrpcprotocol.get_server(url, self.api.key_file, self.api.cert_file) - return connetions + def __init__(self, conf_file="/etc/sfa/aggregates.xml"): + Interfaces.__init__(self, conf_file) + sfa_config = Config() + # set up a connection to the local aggregate + if sfa_config.SFA_AGGREGATE_ENABLED: + addr = sfa_config.SFA_AGGREGATE_HOST + port = sfa_config.SFA_AGGREGATE_PORT + hrn = sfa_config.SFA_INTERFACE_HRN + interface = Interface(hrn, addr, port) + self[hrn] = interface