21cd3fd63b830a943bcb425e0d5deb14e5ff1b73
[myplc.git] / db-config
1 #!/usr/bin/env /usr/bin/plcsh
2 #
3 # Bootstraps the PLC database with a default administrator account and
4 # a default site, defines default slice attribute types, and
5 # creates/updates default system slices.
6 #
7 # Mark Huang <mlhuang@cs.princeton.edu>
8 # Copyright (C) 2006 The Trustees of Princeton University
9 #
10 # $Id$
11 # $HeadURL$
12
13 from plc_config import PLCConfiguration
14 import sys
15 import resource
16
17 g_url = ""
18 def GetMyPLCURL(): return g_url
19 def SetMyPLCURL(url):
20     global g_url
21     g_url = url
22
23 # Get list of existing tag types
24 g_known_tag_types = [tag_type['tagname'] for tag_type in GetTagTypes()]
25 g_known_tag_types.sort()
26
27 def SetTagType(tag_type):
28     global g_known_tag_types
29     # Create/update default slice tag types
30     if tag_type['tagname'] not in g_known_tag_types:
31         AddTagType(tag_type)
32         g_known_tag_types.append(tag_type['tagname'])
33         g_known_tag_types.sort()
34     else:
35         UpdateTagType(tag_type['tagname'], tag_type)
36
37 # Get list of existing (enabled, global) files
38 g_conf_files = GetConfFiles()
39 g_conf_files = filter(lambda conf_file: conf_file['enabled'] and \
40                     not conf_file['node_ids'] and \
41                     not conf_file['nodegroup_ids'],
42                     g_conf_files)
43 g_dests = [conf_file['dest'] for conf_file in g_conf_files]
44 g_conf_files = dict(zip(g_dests, g_conf_files))
45
46 # Get list of existing initscripts
47 g_oldinitscripts = GetInitScripts()
48 g_oldinitscript_names = [script['name'] for script in g_oldinitscripts]
49 g_oldinitscripts = dict(zip(g_oldinitscript_names, g_oldinitscripts))
50
51 def SetInitScript(initscript):
52     global g_oldinitscripts, g_oldinitscript_names
53     if initscript['name'] not in g_oldinitscript_names:
54         initscript_id = AddInitScript(initscript)
55         g_oldinitscript_names.append(initscript['name'])
56         initscript['initscript_id']=initscript_id
57         g_oldinitscripts[initscript['name']]=initscript
58     else:
59         orig_initscript = g_oldinitscripts[initscript['name']]
60         initscript_id = orig_initscript['initscript_id']
61         UpdateInitScript(initscript_id, initscript)
62         
63 def SetConfFile(conf_file):
64     global g_conf_files, g_dests
65     if conf_file['dest'] not in g_dests:
66         AddConfFile(conf_file)
67     else:
68         orig_conf_file = g_conf_files[conf_file['dest']]
69         conf_file_id = orig_conf_file['conf_file_id']
70         UpdateConfFile(conf_file_id, conf_file)
71
72 def SetSlice(slice, tags):
73     # Create or Update slice
74     slice_name = slice['name']
75     slices = GetSlices([slice_name])
76     if len(slices)==1:
77         slice_id = slices[0]['slice_id']
78         if slice.has_key('name'):
79             del slice['name']
80         UpdateSlice(slice_id, slice)
81         slice['name']=slice_name
82     else:
83         expires = None
84         if slice.has_key('expires'):
85             expires = slice['expires']
86             del slice['expires']
87         slice_id = AddSlice(slice)
88         if expires <> None:
89             UpdateSlice(slice_id, {'expires':expires})
90
91     # Get slice structure with all fields
92     slice = GetSlices([slice_name])[0]
93
94     # Create/delete all tags
95     # NOTE: update is not needed, since unspecified tags are deleted, 
96     #       and new tags are added
97     slice_tags = []
98     if slice['slice_tag_ids']:
99         # Delete unknown attributes
100         for slice_tag in GetSliceTags(slice['slice_tag_ids']):
101             if (slice_tag['tagname'], slice_tag['value']) not in tags:
102                 DeleteSliceTag(slice_tag['slice_tag_id'])
103             else:
104                 slice_tags.append((slice_tag['tagname'],slice_tag['value']))
105
106     # only add slice tags that are new
107     for (name, value) in tags:
108         if (name,value) not in slice_tags:
109             AddSliceTag(slice_name, name, value)            
110         else:
111             # NOTE: this confirms that the user-specified tag is 
112             #       returned by GetSliceTags
113             pass
114
115 def SetMessage(message):
116     messages = GetMessages([message['message_id']])
117     if len(messages)==0:
118         AddMessage(message)
119     else:
120         UpdateMessage(message['message_id'],message)
121
122 # Get all model names
123 g_pcu_models = [type['model'] for type in GetPCUTypes()]
124
125 def SetPCUType(pcu_type):
126     global g_pcu_models
127     if 'pcu_protocol_types' in pcu_type:
128         protocol_types = pcu_type['pcu_protocol_types']
129         # Take this value out of the struct.
130         del pcu_type['pcu_protocol_types']
131     else:
132         protocol_types = []
133
134     if pcu_type['model'] not in g_pcu_models:
135         # Add the name/model info into DB
136         id = AddPCUType(pcu_type)
137         # for each protocol, also add this.
138         for ptype in protocol_types:
139             AddPCUProtocolType(id, ptype)
140
141 def GetSnippets(directory):
142     filenames = []
143     if os.path.exists(directory):
144         try:
145             filenames = os.listdir(directory)
146         except OSError, e:
147             raise Exception, "Error when opening %s (%s)" % \
148                   (os.path.join(dir, file), e)
149             
150     ignored = (".bak","~",".rpmsave",".rpmnew",".orig")
151     numberedfiles = {}
152     for filename in filenames:
153         shouldIgnore = False
154         for ignore in ignored:
155             if filename.endswith(ignore):
156                 shouldIgnore = True
157                 break
158
159         if not shouldIgnore:
160             parts = filename.split('-')
161             if len(parts)>=2:
162                 name = '-'.join(parts)
163                 try:
164                     number = int(parts[0])
165                     entry = numberedfiles.get(number,[])
166                     entry.append(name)
167                     numberedfiles[number]=entry
168                 except ValueError:
169                     shouldIgnore = True
170             else:
171                 shouldIgnore = True
172
173         if shouldIgnore:
174             print "db-config: ignoring %s snippet" % filename
175
176     filenames = []
177     keys = numberedfiles.keys()
178     keys.sort()
179     for k in keys:
180         for filename in numberedfiles[k]:
181             filenames.append(filename)
182     return filenames
183
184 def main():
185     cfg = PLCConfiguration()
186     cfg.load()
187     variables = cfg.variables()
188
189     # Load variables into dictionaries
190     for category_id, (category, variablelist) in variables.iteritems():
191         globals()[category_id] = dict(zip(variablelist.keys(),
192                                           [variable['value'] for variable in variablelist.values()]))
193
194     directory="/etc/planetlab/db-config.d"
195     snippets = GetSnippets(directory)
196     for snippet in snippets:
197         fullpath = os.path.join(directory, snippet)
198         execfile(fullpath)
199
200 if __name__ == '__main__':
201     main()
202
203 # Local variables:
204 # tab-width: 4
205 # mode: python
206 # End: