-
Notifications
You must be signed in to change notification settings - Fork 13
/
nodeconfig.py
executable file
·288 lines (244 loc) · 13 KB
/
nodeconfig.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
#!/usr/bin/env python
#
# This file is protected by Copyright. Please refer to the COPYRIGHT file
# distributed with this source distribution.
#
# This file is part of rh.RTL2832U Device.
#
# rh.RTL2832U Device is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# rh.RTL2832U Device is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see http://www.gnu.org/licenses/.
#
import os, sys, commands, logging, platform, shutil, socket
from ossie import parsers
from ossie.utils.model import _uuidgen as uuidgen
class ConfigurationError(StandardError):
pass
class NodeConfig(object):
def __init__(self, options, cmdlineProps):
# Basic setup
self._log = logging.getLogger('NodeConfig')
self.localfile_nodeprefix = '/mgr'
self.options = options
self.cmdlineProps = cmdlineProps
self.hostname = socket.gethostname()
# check domainname
if options.domainname == None:
raise ConfigurationError("A domainname is required")
# Verify the base RTL 2832U profile exists
self.rtl2832U_templates = {"spd": os.path.join(self.options.sdrroot, "dev", self.options.rtlpath[1:], "RTL2832U.spd.xml"),
"prf": os.path.join(self.options.sdrroot, "dev", self.options.rtlpath[1:], "RTL2832U.prf.xml"),
"scd": os.path.join(self.options.sdrroot, "dev", self.options.rtlpath[1:], "RTL2832U.scd.xml")}
for template in self.rtl2832U_templates.values():
if not os.path.exists(template):
raise ConfigurationError("%s missing" % template)
self.nodedir = os.path.join(self.options.sdrroot, "dev", "nodes", self.options.nodename.replace('.','/'))
self.path_to_dcd = os.path.join(self.nodedir , "DeviceManager.dcd.xml")
# Figure out where we are going to write the RTL2832U profile
if self.options.inplace:
self.rtl2832U_path = os.path.join(self.options.sdrroot, "dev", "devices", "rh", "RTL2832U")
else:
self.rtl2832U_path = os.path.join(self.nodedir, "RTL2832U")
# prep uuids
self.uuids = {}
self.uuids["softpkg" ] = 'DCE:' + uuidgen()
self.uuids["implementation" ] = 'DCE:' + uuidgen()
self.uuids["deviceconfiguration" ] = 'DCE:' + uuidgen()
self.uuids["componentfile" ] = 'DCE:' + uuidgen()
self.uuids["componentinstantiation" ] = 'DCE:' + uuidgen()
self.uuids["componentimplementation"] = 'DCE:' + uuidgen()
self.uuids["componentsoftpkg" ] = 'DCE:' + uuidgen()
self.props = {}
def register(self):
if not self.options.silent:
self._log.debug("Registering...")
self._gather_rtl_information()
self._createDeviceManagerProfile()
self._updateRTL2832UProfile()
def unregister(self):
if not self.options.silent:
self._log.debug("Unregistering...")
if os.path.isdir(self.nodedir):
if not self.options.silent:
self._log.debug(" Removing <" + self.nodedir + ">")
shutil.rmtree(self.nodedir)
def _ver2rel(self, ver):
return float(ver[0:1]) + float(ver[2:3])*0.1 + float(ver[4:5])*0.000001
def _gather_rtl_information(self):
if not self.options.silent:
self._log.debug("Checking rtl capacity...")
self.props["name"] = self.options.name
self.props["product"] = self.options.product
self.props["serial"] = self.options.serial
self.props["vendor"] = self.options.vendor
self.props["index"] = self.options.index
def _createDeviceManagerProfile(self):
#####################
# Setup environment
#####################
# make sure node hasn't already been created
if os.path.exists(self.path_to_dcd):
self._log.error("Cannot 'register' new dynamicnode. A previous configuration was found. Please 'unregister' dynamicnode first.")
sys.exit(1)
try:
if not os.path.isdir(self.nodedir):
os.makedirs(self.nodedir)
else:
if not self.options.silent:
self._log.debug("Node directory already exists; skipping directory creation")
pass
except OSError:
raise Exception, "Could not create device manager directory"
RTL2832U_componentfile = 'rh.RTL2832U_' + uuidgen()
if self.options.inplace:
compfiles = [{'id':RTL2832U_componentfile, 'localfile':os.path.join('/devices', 'rh', 'RTL2832U', 'RTL2832U.spd.xml')}]
else:
compfiles = [{'id':RTL2832U_componentfile, 'localfile':os.path.join('/nodes', self.options.nodename.replace('.','/'), 'RTL2832U', 'RTL2832U.spd.xml')}]
compplacements = [{'refid':RTL2832U_componentfile, 'instantiations':[{'id':self.uuids["componentinstantiation"], 'usagename':'rh.RTL2832U_' + self.hostname.replace('.', '_')}]}]
#####################
# DeviceManager files
#####################
if not self.options.silent:
self._log.debug("Creating DeviceManager profile <" + self.options.nodename + ">")
# set deviceconfiguration info
_dcd = parsers.DCDParser.deviceconfiguration()
_dcd.set_id(self.uuids["deviceconfiguration"])
_dcd.set_name(self.options.nodename)
_localfile = parsers.DCDParser.localfile(name=os.path.join(self.localfile_nodeprefix, 'DeviceManager.spd.xml'))
_dcd.devicemanagersoftpkg = parsers.DCDParser.devicemanagersoftpkg(localfile=_localfile)
# add componentfiles and componentfile(s)
_dcd.componentfiles = parsers.DCDParser.componentfiles()
for in_cf in compfiles:
cf = parsers.DCDParser.componentfile(type_='SPD', id_=in_cf['id'], localfile=parsers.DCDParser.localfile(name=in_cf['localfile']))
_dcd.componentfiles.add_componentfile(cf)
# add partitioning/componentplacements
_dcd.partitioning = parsers.DCDParser.partitioning()
for in_cp in compplacements:
_comp_fileref = parsers.DCDParser.componentfileref(refid=in_cp['refid'])
_comp_placement = parsers.DCDParser.componentplacement(componentfileref=_comp_fileref)
for ci in in_cp['instantiations']:
comp_inst = parsers.DCDParser.componentinstantiation(id_=ci['id'], usagename=ci['usagename'])
_comp_placement.add_componentinstantiation(comp_inst)
_dcd.partitioning.add_componentplacement(_comp_placement)
# add domainmanager lookup
if self.options.domainname:
_tmpdomainname = self.options.domainname + '/' + self.options.domainname
_dcd.domainmanager = parsers.DCDParser.domainmanager(namingservice=parsers.DCDParser.namingservice(name=_tmpdomainname))
dcd_out = open(self.path_to_dcd, 'w')
dcd_out.write(parsers.parserconfig.getVersionXML())
_dcd.export(dcd_out,0)
dcd_out.close()
def _updateRTL2832UProfile(self):
#####################
# RTL2832U files
#####################
if not self.options.silent:
self._log.debug("Creating rh.RTL2832U profile <" + self.rtl2832U_path + ">")
if not self.options.inplace:
if not os.path.exists(self.rtl2832U_path):
os.mkdir(self.rtl2832U_path)
for f in self.rtl2832U_templates.values():
shutil.copy(f, self.rtl2832U_path)
self._updateRTL2832USpd()
self._updateRTL2832UPrf()
def _updateRTL2832USpd(self):
# update the spd file
spdpath = os.path.join(self.rtl2832U_path, 'RTL2832U.spd.xml')
_spd = parsers.SPDParser.parse(spdpath)
_spd.set_id(self.uuids["componentsoftpkg"])
_spd.implementation[0].set_id(self.uuids["componentimplementation"])
# update the RTL2832U code entry if this wasn't an inplace update
if not self.options.inplace:
code = _spd.get_implementation()[0].get_code()
new_entrypoint = os.path.normpath(os.path.join(self.options.rtlpath, code.get_entrypoint()))
new_localfile = os.path.normpath(os.path.join(self.options.rtlpath, code.get_localfile().get_name()))
code.set_entrypoint(new_entrypoint)
code.get_localfile().set_name(new_localfile)
spd_out = open(spdpath, 'w')
spd_out.write(parsers.parserconfig.getVersionXML())
_spd.export(spd_out,0, name_='softpkg')
spd_out.close()
def _updateRTL2832UPrf(self):
# generate the prf file
prfpath = os.path.join(self.rtl2832U_path, 'RTL2832U.prf.xml')
_prf = parsers.PRFParser.parse(prfpath)
# Set the parameters for the target_device
for struct in _prf.get_struct():
if struct.get_name() in "target_device":
for simple in struct.get_simple():
if simple.get_name() in self.props:
simple.set_value(str(self.props[simple.get_name()]))
prf_out = open(prfpath, 'w')
prf_out.write(parsers.parserconfig.getVersionXML())
_prf.export(prf_out,0)
prf_out.close()
###########################
# Run from command line
###########################
if __name__ == "__main__":
##################
# setup arg parser
##################
from optparse import OptionParser
parser = OptionParser()
#parser.usage = "%s [options] [simple_prop1 simple_value1]..."
parser.add_option("--domainname", dest="domainname", default=None,
help="Must give a domain name")
parser.add_option("--rtlname", dest="name", default="",
help="Name of the targeted RTL")
parser.add_option("--rtlvendor", dest="vendor", default="",
help="Vendor ID of the targeted RTL")
parser.add_option("--rtlproduct", dest="product", default="",
help="Product ID of the targeted RTL")
parser.add_option("--rtlserial", dest="serial", default="",
help="Serial number of the targeted RTL")
parser.add_option("--rtlindex", dest="index", default=-1,
help="Index of the targeted RTL in the list, if none is given, -1 is used")
parser.add_option("--sdrroot", dest="sdrroot", default=os.path.expandvars("${SDRROOT}"),
help="Path to the sdr root; if none is given, ${SDRROOT} is used.")
parser.add_option("--nodename", dest="nodename", default="rh.DevMgr_RTL2832U_%s" % socket.gethostname(),
help="Desired nodename, if none is given rh.DevMgr_RTL2832U_${HOST} is used")
parser.add_option("--noinplace", dest="inplace", default=True, action="store_false",
help="Create rh.RTL2832U configuration in the node folder; default is to update the rh.RTL2832U profile in-place.")
parser.add_option("--rtlpath", dest="rtlpath", default="/devices/rh/RTL2832U",
help="The device manager file system absolute path to the rh.RTL2832U, default '/devices/rh/RTL2832U'")
parser.add_option("--silent", dest="silent", default=False, action="store_true",
help="Suppress all logging except errors")
parser.add_option("--clean", dest="clean", default=False, action="store_true",
help="Clean up the previous configuration for this node first (delete entire node)")
parser.add_option("-v", "--verbose", dest="verbose", default=False, action="store_true",
help="Enable verbose logging")
(options, args) = parser.parse_args()
# Configure logging
logging.basicConfig(format='%(name)-12s:%(levelname)-8s: %(message)s', level=logging.INFO)
if options.verbose:
logging.getLogger().setLevel(logging.DEBUG)
# grab tmp logger until class is created
_log = logging.getLogger('NodeConfig')
if len(args) % 2 == 1:
_log.error("Invalid command line arguments - properties must be specified with values")
sys.exit(1)
cmdlineProps = {}
for i in range(len(args)):
if i % 2 == 0:
cmdlineProps[args[i]] = args[i + 1]
# create instance of NodeConfig
try:
dn = NodeConfig(options, cmdlineProps)
if options.clean:
dn.unregister()
dn.register()
if not options.silent:
_log.info("RTL2832U node registration is complete")
except ConfigurationError, e:
_log.error("%s", e)
sys.exit(1)