creating tag sfa-0.9-11
[sfa.git] / sfa / server / aggregate.py
1 ### $Id$
2 ### $URL$
3
4
5 from sfa.util.server import SfaServer
6 from sfa.util.faults import *
7 from sfa.server.interface import Interfaces
8 import sfa.util.xmlrpcprotocol as xmlrpcprotocol
9 import sfa.util.soapprotocol as soapprotocol
10
11
12 class Aggregate(SfaServer):
13
14     ##
15     # Create a new aggregate object.
16     #
17     # @param ip the ip address to listen on
18     # @param port the port to listen on
19     # @param key_file private key filename of registry
20     # @param cert_file certificate filename containing public key (could be a GID file)     
21     def __init__(self, ip, port, key_file, cert_file):
22         SfaServer.__init__(self, ip, port, key_file, cert_file)
23         self.server.interface = '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, 'addr': address, 'port': port}
39         self.interfaces[self.api.hrn] = local_aggregate
40
41         # get connections
42         self.update(self.get_connections())