3dee18498e08573d44766ec8faad9e17379ce8a6
[sfa.git] / sfa / server / aggregate.py
1 ### $Id$
2 ### $URL$
3
4
5 from sfa.util.faults import *
6 from sfa.util.server import SfaServer
7 from sfa.util.namespace import hrn_to_urn
8 from sfa.server.interface import Interfaces
9 import sfa.util.xmlrpcprotocol as xmlrpcprotocol
10 import sfa.util.soapprotocol as soapprotocol
11
12
13 class Aggregate(SfaServer):
14
15     ##
16     # Create a new aggregate object.
17     #
18     # @param ip the ip address to listen on
19     # @param port the port to listen on
20     # @param key_file private key filename of registry
21     # @param cert_file certificate filename containing public key (could be a GID file)     
22     def __init__(self, ip, port, key_file, cert_file):
23         SfaServer.__init__(self, ip, port, key_file, cert_file,'aggregate')
24
25 ##
26 # Aggregates is a dictionary of aggregate connections keyed on the aggregate hrn
27
28 class Aggregates(Interfaces):
29
30     default_dict = {'aggregates': {'aggregate': [Interfaces.default_fields]}}
31  
32     def __init__(self, api, conf_file = "/etc/sfa/aggregates.xml"):
33         Interfaces.__init__(self, api, conf_file)
34         # set up a connection to the local registry
35         address = self.api.config.SFA_AGGREGATE_HOST
36         port = self.api.config.SFA_AGGREGATE_PORT
37         url = 'http://%(address)s:%(port)s' % locals()
38         local_aggregate = {'hrn': self.api.hrn,
39                            'urn': hrn_to_urn(self.api.hrn, 'authority'),
40                            'addr': address,
41                            'port': port,
42                            'url': url}
43         self.interfaces[self.api.hrn] = local_aggregate
44
45         # get connections
46         self.update(self.get_connections())