e3d8128977e81bffc1e08eea121dbff969a3b7f7
[sfa.git] / sfa / server / sfa-clean-peer-records.py
1 #!/usr/bin/python
2
3 import sys
4 import os
5 import traceback
6 from sfa.util.namespace import *
7 from sfa.util.table import SfaTable
8 from sfa.util.prefixTree import prefixTree
9 from sfa.plc.api import SfaAPI
10 from sfa.util.config import Config
11 from sfa.trust.certificate import Keypair
12 from sfa.trust.hierarchy import Hierarchy
13 from sfa.server.registry import Registries
14 import sfa.util.xmlrpcprotocol as xmlrpcprotocol 
15 import socket
16
17 def main():
18     config = Config()
19     if not config.SFA_REGISTRY_ENABLED:
20         sys.exit(0)
21
22     # Get the path to the sfa server key/cert files from 
23     # the sfa hierarchy object
24     sfa_hierarchy = Hierarchy()
25     sfa_key_path = sfa_hierarchy.basedir
26     key_file = os.path.join(sfa_key_path, "server.key")
27     cert_file = os.path.join(sfa_key_path, "server.cert")
28     key = Keypair(filename=key_file) 
29
30     # get a connection to our local sfa registry
31     # and a valid credential
32     authority = config.SFA_INTERFACE_HRN
33     url = 'http://%s:%s/' %(config.SFA_REGISTRY_HOST, config.SFA_REGISTRY_PORT)
34     registry = xmlrpcprotocol.get_server(url, key_file, cert_file)
35     sfa_api = SfaAPI(key_file = key_file, cert_file = cert_file, interface='registry')
36     credential = sfa_api.getCredential()
37
38     # get peer registries
39     registries = Registries(sfa_api)
40     tree = prefixTree()
41     tree.load(registries.keys())
42     
43     # get local peer records
44     table = SfaTable()
45     peer_records = table.find({'~peer_authority': None})
46     found_records = []
47     hrn_dict = {}
48     for record in peer_records:
49         registry_hrn = tree.best_match(record['hrn'])
50         if registry_hrn not in hrn_dict:
51             hrn_dict[registry_hrn] = []
52         hrn_dict[registry_hrn].append(record['hrn'])
53
54     # attempt to resolve the record at the authoritative interface 
55     for registry_hrn in hrn_dict:
56         if registry_hrn in registries:
57             records = []
58             target_hrns = hrn_dict[registry_hrn]    
59             try:
60                 records = registries[registry_hrn].Resolve(target_hrns, credential)
61                 found_records.extend([record['hrn'] for record in records])
62             except ServerException:
63                 # an exception will be thrown if the record doenst exist
64                 # if so remove the record from the local registry
65                 continue
66             except:
67                 # this deosnt necessarily mean the records dont exist
68                 # lets give them the benefit of the doubt here (for now)
69                 found_records.extend(target_hrns)
70                 traceback.print_exc()
71
72     # remove what wasnt found 
73     for peer_record in peer_records:
74         if peer_record['hrn'] not in found_records:
75             registries[sfa_api.hrn].Remove(peer_record['hrn'], credential, peer_record['type'])
76                 
77 if __name__ == '__main__':
78     main()