bf718fd038d96274feeb4fa030f4a647f23acdb8
[enigma2.git] / lib / python / Components / NimManager.py
1 from config import config, ConfigSubsection, ConfigSelection, ConfigFloat, \
2         ConfigSatlist, ConfigYesNo, ConfigInteger, ConfigSubList, ConfigNothing, \
3         ConfigSubDict, ConfigOnOff, ConfigDateTime
4
5 from enigma import eDVBSatelliteEquipmentControl as secClass, \
6         eDVBSatelliteLNBParameters as lnbParam, \
7         eDVBSatelliteDiseqcParameters as diseqcParam, \
8         eDVBSatelliteSwitchParameters as switchParam, \
9         eDVBSatelliteRotorParameters as rotorParam, \
10         eDVBResourceManager, eDVBDB
11
12 from time import localtime, mktime
13 from datetime import datetime
14
15 from sets import Set
16
17 def getConfigSatlist(orbpos, satlist):
18         default_orbpos = None
19         for x in satlist:
20                 if x[0] == orbpos:
21                         default_orbpos = orbpos
22                         break
23         return ConfigSatlist(satlist, default_orbpos)
24
25 def tryOpen(filename):
26         try:
27                 procFile = open(filename)
28         except IOError:
29                 return None
30         return procFile
31
32 class SecConfigure:
33         def getConfiguredSats(self):
34                 return self.configuredSatellites
35
36         def addSatellite(self, sec, orbpos):
37                 sec.addSatellite(orbpos)
38                 self.configuredSatellites.add(orbpos)
39
40         def addLNBSimple(self, sec, slotid, diseqcmode, toneburstmode = diseqcParam.NO, diseqcpos = diseqcParam.SENDNO, orbpos = 0, longitude = 0, latitude = 0, loDirection = 0, laDirection = 0, turningSpeed = rotorParam.FAST, useInputPower=True, inputPowerDelta=50):
41                 if orbpos is None:
42                         return
43                 #simple defaults
44                 sec.addLNB()
45                 tunermask = 1 << slotid
46                 if self.equal.has_key(slotid):
47                         for slot in self.equal[slotid]:
48                                 tunermask |= (1 << slot)
49                 elif self.linked.has_key(slotid):
50                         for slot in self.linked[slotid]:
51                                 tunermask |= (1 << slot)
52                 sec.setLNBLOFL(9750000)
53                 sec.setLNBLOFH(10600000)
54                 sec.setLNBThreshold(11700000)
55                 sec.setLNBIncreasedVoltage(lnbParam.OFF)
56                 sec.setRepeats(0)
57                 sec.setFastDiSEqC(0)
58                 sec.setSeqRepeat(0)
59                 sec.setVoltageMode(switchParam.HV)
60                 sec.setToneMode(switchParam.HILO)
61                 sec.setCommandOrder(0)
62
63                 #user values
64                 sec.setDiSEqCMode(diseqcmode)
65                 sec.setToneburst(toneburstmode)
66                 sec.setCommittedCommand(diseqcpos)
67                 sec.setUncommittedCommand(0) # SENDNO
68                 #print "set orbpos to:" + str(orbpos)
69
70                 if 0 <= diseqcmode < 3:
71                         self.addSatellite(sec, orbpos)
72                 elif (diseqcmode == 3): # diseqc 1.2
73                         if self.satposdepends.has_key(slotid):
74                                 for slot in self.satposdepends[slotid]:
75                                         tunermask |= (1 << slot)
76                         sec.setLatitude(latitude)
77                         sec.setLaDirection(laDirection)
78                         sec.setLongitude(longitude)
79                         sec.setLoDirection(loDirection)
80                         sec.setUseInputpower(useInputPower)
81                         sec.setInputpowerDelta(inputPowerDelta)
82                         sec.setRotorTurningSpeed(turningSpeed)
83
84                         for x in self.NimManager.satList:
85                                 print "Add sat " + str(x[0])
86                                 self.addSatellite(sec, int(x[0]))
87                                 sec.setVoltageMode(switchParam.HV)
88                                 sec.setToneMode(switchParam.HILO)
89                                 sec.setRotorPosNum(0) # USALS
90                 
91                 sec.setLNBSlotMask(tunermask)
92
93         def setSatposDepends(self, sec, nim1, nim2):
94                 print "tuner", nim1, "depends on satpos of", nim2
95                 sec.setTunerDepends(nim1, nim2)
96
97         def linkNIMs(self, sec, nim1, nim2):
98                 print "link tuner", nim1, "to tuner", nim2
99                 sec.setTunerLinked(nim1, nim2)
100                 
101         def getRoot(self, slotid, connto):
102                 visited = []
103                 while (self.NimManager.getNimConfig(connto).configMode.value in ["satposdepends", "equal", "loopthrough"]):
104                         connto = int(self.NimManager.getNimConfig(connto).connectedTo.value)
105                         if connto in visited: # prevent endless loop
106                                 return slotid
107                         visited.append(connto)
108                 return connto
109
110         def update(self):
111                 sec = secClass.getInstance()
112                 self.configuredSatellites = Set()
113                 sec.clear() ## this do unlinking NIMs too !!
114                 print "sec config cleared"
115
116                 self.linked = { }
117                 self.satposdepends = { }
118                 self.equal = { }
119
120                 nim_slots = self.NimManager.nim_slots
121
122                 used_nim_slots = [ ]
123
124                 for slot in nim_slots:
125                         if slot.type is not None:
126                                 used_nim_slots.append((slot.slot, slot.description, slot.config.configMode.value != "nothing" and True or False, slot.isCompatible("DVB-S2")))
127                 eDVBResourceManager.getInstance().setFrontendSlotInformations(used_nim_slots)
128
129                 for slot in nim_slots:
130                         x = slot.slot
131                         nim = slot.config
132                         if slot.isCompatible("DVB-S"):
133                                 # save what nim we link to/are equal to/satposdepends to.
134                                 # this is stored in the *value* (not index!) of the config list
135                                 if nim.configMode.value == "equal":
136                                         connto = self.getRoot(x, int(nim.connectedTo.value))
137                                         if not self.equal.has_key(connto):
138                                                 self.equal[connto] = []
139                                         self.equal[connto].append(x)
140                                 elif nim.configMode.value == "loopthrough":
141                                         self.linkNIMs(sec, x, int(nim.connectedTo.value))
142                                         connto = self.getRoot(x, int(nim.connectedTo.value))
143                                         if not self.linked.has_key(connto):
144                                                 self.linked[connto] = []
145                                         self.linked[connto].append(x)
146                                 elif nim.configMode.value == "satposdepends":
147                                         self.setSatposDepends(sec, x, int(nim.connectedTo.value))
148                                         connto = self.getRoot(x, int(nim.connectedTo.value))
149                                         if not self.satposdepends.has_key(connto):
150                                                 self.satposdepends[connto] = []
151                                         self.satposdepends[connto].append(x)
152
153                 for slot in nim_slots:
154                         x = slot.slot
155                         nim = slot.config
156                         if slot.isCompatible("DVB-S"):
157                                 print "slot: " + str(x) + " configmode: " + str(nim.configMode.value)
158                                 if nim.configMode.value in [ "loopthrough", "satposdepends", "nothing" ]:
159                                         pass
160                                 else:
161                                         sec.setSlotNotLinked(x)
162                                         if nim.configMode.value == "equal":
163                                                 pass
164                                         elif nim.configMode.value == "simple":          #simple config
165                                                 print "diseqcmode: ", nim.diseqcMode.value
166                                                 if nim.diseqcMode.value == "single":                    #single
167                                                         self.addLNBSimple(sec, slotid = x, orbpos = nim.diseqcA.orbital_position, toneburstmode = diseqcParam.NO, diseqcmode = diseqcParam.NONE, diseqcpos = diseqcParam.SENDNO)
168                                                 elif nim.diseqcMode.value == "toneburst_a_b":           #Toneburst A/B
169                                                         self.addLNBSimple(sec, slotid = x, orbpos = nim.diseqcA.orbital_position, toneburstmode = diseqcParam.A, diseqcmode = diseqcParam.V1_0, diseqcpos = diseqcParam.SENDNO)
170                                                         self.addLNBSimple(sec, slotid = x, orbpos = nim.diseqcB.orbital_position, toneburstmode = diseqcParam.B, diseqcmode = diseqcParam.V1_0, diseqcpos = diseqcParam.SENDNO)
171                                                 elif nim.diseqcMode.value == "diseqc_a_b":              #DiSEqC A/B
172                                                         self.addLNBSimple(sec, slotid = x, orbpos = nim.diseqcA.orbital_position, toneburstmode = diseqcParam.NO, diseqcmode = diseqcParam.V1_0, diseqcpos = diseqcParam.AA)
173                                                         self.addLNBSimple(sec, slotid = x, orbpos = nim.diseqcB.orbital_position, toneburstmode = diseqcParam.NO, diseqcmode = diseqcParam.V1_0, diseqcpos = diseqcParam.AB)
174                                                 elif nim.diseqcMode.value == "diseqc_a_b_c_d":          #DiSEqC A/B/C/D
175                                                         self.addLNBSimple(sec, slotid = x, orbpos = nim.diseqcA.orbital_position, toneburstmode = diseqcParam.NO, diseqcmode = diseqcParam.V1_0, diseqcpos = diseqcParam.AA)
176                                                         self.addLNBSimple(sec, slotid = x, orbpos = nim.diseqcB.orbital_position, toneburstmode = diseqcParam.NO, diseqcmode = diseqcParam.V1_0, diseqcpos = diseqcParam.AB)
177                                                         self.addLNBSimple(sec, slotid = x, orbpos = nim.diseqcC.orbital_position, toneburstmode = diseqcParam.NO, diseqcmode = diseqcParam.V1_0, diseqcpos = diseqcParam.BA)
178                                                         self.addLNBSimple(sec, slotid = x, orbpos = nim.diseqcD.orbital_position, toneburstmode = diseqcParam.NO, diseqcmode = diseqcParam.V1_0, diseqcpos = diseqcParam.BB)
179                                                 elif nim.diseqcMode.value == "positioner":              #Positioner
180                                                         if nim.latitudeOrientation.value == "north":
181                                                                 laValue = rotorParam.NORTH
182                                                         else:
183                                                                 laValue = rotorParam.SOUTH
184                                                         if nim.longitudeOrientation.value == "east":
185                                                                 loValue = rotorParam.EAST
186                                                         else:
187                                                                 loValue = rotorParam.WEST
188                                                         inputPowerDelta=50
189                                                         useInputPower=False
190                                                         turning_speed=0
191                                                         if nim.powerMeasurement.value:
192                                                                 useInputPower=True
193                                                                 inputPowerDelta=nim.powerThreshold.value
194                                                                 turn_speed_dict = { "fast": rotorParam.FAST, "slow": rotorParam.SLOW }
195                                                                 if turn_speed_dict.has_key(nim.turningSpeed.value):
196                                                                         turning_speed = turn_speed_dict[nim.turningSpeed.value]
197                                                                 else:
198                                                                         beg_time = localtime(nim.fastTurningBegin.value)
199                                                                         end_time = localtime(nim.fastTurningEnd.value)
200                                                                         turning_speed = ((beg_time.tm_hour+1) * 60 + beg_time.tm_min + 1) << 16
201                                                                         turning_speed |= (end_time.tm_hour+1) * 60 + end_time.tm_min + 1
202                                                         self.addLNBSimple(sec, slotid = x, diseqcmode = 3,
203                                                                 longitude = nim.longitude.float,
204                                                                 loDirection = loValue,
205                                                                 latitude = nim.latitude.float,
206                                                                 laDirection = laValue,
207                                                                 turningSpeed = turning_speed,
208                                                                 useInputPower = useInputPower,
209                                                                 inputPowerDelta = inputPowerDelta)
210                                         elif nim.configMode.value == "advanced": #advanced config
211                                                 self.updateAdvanced(sec, x)
212                 print "sec config completed"
213
214         def updateAdvanced(self, sec, slotid):
215                 lnbSat = {}
216                 for x in range(1,37):
217                         lnbSat[x] = []
218
219                 #wildcard for all satellites ( for rotor )
220                 for x in range(3601, 3605):
221                         lnb = int(config.Nims[slotid].advanced.sat[x].lnb.value)
222                         if lnb != 0:
223                                 for x in self.NimManager.satList:
224                                         print "add", x[0], "to", lnb
225                                         lnbSat[lnb].append(x[0])
226
227                 for x in self.NimManager.satList:
228                         lnb = int(config.Nims[slotid].advanced.sat[x[0]].lnb.value)
229                         if lnb != 0:
230                                 print "add", x[0], "to", lnb
231                                 lnbSat[lnb].append(x[0])
232
233                 for x in range(1,37):
234                         if len(lnbSat[x]) > 0:
235                                 currLnb = config.Nims[slotid].advanced.lnb[x]
236                                 sec.addLNB()
237
238                                 tunermask = 1 << slotid
239                                 if self.equal.has_key(slotid):
240                                         for slot in self.equal[slotid]:
241                                                 tunermask |= (1 << slot)
242                                 elif self.linked.has_key(slotid):
243                                         for slot in self.linked[slotid]:
244                                                 tunermask |= (1 << slot)
245
246                                 if currLnb.lof.value == "universal_lnb":
247                                         sec.setLNBLOFL(9750000)
248                                         sec.setLNBLOFH(10600000)
249                                         sec.setLNBThreshold(11700000)
250                                 elif currLnb.lof.value == "c_band":
251                                         sec.setLNBLOFL(5150000)
252                                         sec.setLNBLOFH(5150000)
253                                         sec.setLNBThreshold(5150000)
254                                 elif currLnb.lof.value == "user_defined":
255                                         sec.setLNBLOFL(currLnb.lofl.value * 1000)
256                                         sec.setLNBLOFH(currLnb.lofh.value * 1000)
257                                         sec.setLNBThreshold(currLnb.threshold.value * 1000)
258
259 #                               if currLnb.output_12v.value == "0V":
260 #                                       pass # nyi in drivers
261 #                               elif currLnb.output_12v.value == "12V":
262 #                                       pass # nyi in drivers
263
264                                 if currLnb.increased_voltage.value:
265                                         sec.setLNBIncreasedVoltage(lnbParam.ON)
266                                 else:
267                                         sec.setLNBIncreasedVoltage(lnbParam.OFF)
268
269                                 dm = currLnb.diseqcMode.value
270                                 if dm == "none":
271                                         sec.setDiSEqCMode(diseqcParam.NONE)
272                                 elif dm == "1_0":
273                                         sec.setDiSEqCMode(diseqcParam.V1_0)
274                                 elif dm == "1_1":
275                                         sec.setDiSEqCMode(diseqcParam.V1_1)
276                                 elif dm == "1_2":
277                                         sec.setDiSEqCMode(diseqcParam.V1_2)
278
279                                 if self.satposdepends.has_key(slotid):
280                                         for slot in self.satposdepends[slotid]:
281                                                 tunermask |= (1 << slot)
282
283                                 if dm != "none":
284                                         if currLnb.toneburst.value == "none":
285                                                 sec.setToneburst(diseqcParam.NO)
286                                         elif currLnb.toneburst.value == "A":
287                                                 sec.setToneburst(diseqcParam.A)
288                                         elif currLnb.toneburst.value == "B":
289                                                 sec.setToneburst(diseqcParam.B)
290
291                                         # Committed Diseqc Command
292                                         cdc = currLnb.commitedDiseqcCommand.value
293
294                                         c = { "none": diseqcParam.SENDNO,
295                                                 "AA": diseqcParam.AA,
296                                                 "AB": diseqcParam.AB,
297                                                 "BA": diseqcParam.BA,
298                                                 "BB": diseqcParam.BB }
299
300                                         if c.has_key(cdc):
301                                                 sec.setCommittedCommand(c[cdc])
302                                         else:
303                                                 sec.setCommittedCommand(long(cdc))
304
305                                         sec.setFastDiSEqC(currLnb.fastDiseqc.value)
306
307                                         sec.setSeqRepeat(currLnb.sequenceRepeat.value)
308
309                                         if currLnb.diseqcMode.value == "1_0":
310                                                 currCO = currLnb.commandOrder1_0.value
311                                         else:
312                                                 currCO = currLnb.commandOrder.value
313
314                                                 udc = int(currLnb.uncommittedDiseqcCommand.value)
315                                                 if udc > 0:
316                                                         sec.setUncommittedCommand(0xF0|(udc-1))
317                                                 else:
318                                                         sec.setUncommittedCommand(0) # SENDNO
319
320                                                 sec.setRepeats({"none": 0, "one": 1, "two": 2, "three": 3}[currLnb.diseqcRepeats.value])
321
322                                         setCommandOrder = False
323
324                                         # 0 "committed, toneburst",
325                                         # 1 "toneburst, committed",
326                                         # 2 "committed, uncommitted, toneburst",
327                                         # 3 "toneburst, committed, uncommitted",
328                                         # 4 "uncommitted, committed, toneburst"
329                                         # 5 "toneburst, uncommitted, commmitted"
330                                         order_map = {"ct": 0, "tc": 1, "cut": 2, "tcu": 3, "uct": 4, "tuc": 5}
331                                         sec.setCommandOrder(order_map[currCO])
332
333                                 if dm == "1_2":
334                                         latitude = currLnb.latitude.float
335                                         sec.setLatitude(latitude)
336                                         longitude = currLnb.longitude.float
337                                         sec.setLongitude(longitude)
338                                         if currLnb.latitudeOrientation.value == "north":
339                                                 sec.setLaDirection(rotorParam.NORTH)
340                                         else:
341                                                 sec.setLaDirection(rotorParam.SOUTH)
342                                         if currLnb.longitudeOrientation.value == "east":
343                                                 sec.setLoDirection(rotorParam.EAST)
344                                         else:
345                                                 sec.setLoDirection(rotorParam.WEST)
346
347                                 if currLnb.powerMeasurement.value:
348                                         sec.setUseInputpower(True)
349                                         sec.setInputpowerDelta(currLnb.powerThreshold.value)
350                                         turn_speed_dict = { "fast": rotorParam.FAST, "slow": rotorParam.SLOW }
351                                         if turn_speed_dict.has_key(currLnb.turningSpeed.value):
352                                                 turning_speed = turn_speed_dict[currLnb.turningSpeed.value]
353                                         else:
354                                                 beg_time = localtime(currLnb.fastTurningBegin.value)
355                                                 end_time = localtime(currLnb.fastTurningEnd.value)
356                                                 turning_speed = ((beg_time.tm_hour + 1) * 60 + beg_time.tm_min + 1) << 16
357                                                 turning_speed |= (end_time.tm_hour + 1) * 60 + end_time.tm_min + 1
358                                         sec.setRotorTurningSpeed(turning_speed)
359                                 else:
360                                         sec.setUseInputpower(False)
361
362                                 sec.setLNBSlotMask(tunermask)
363
364                                 # finally add the orbital positions
365                                 for y in lnbSat[x]:
366                                         self.addSatellite(sec, y)
367                                         currSat = config.Nims[slotid].advanced.sat[y]
368
369                                         if currSat.voltage.value == "polarization":
370                                                 sec.setVoltageMode(switchParam.HV)
371                                         elif currSat.voltage.value == "13V":
372                                                 sec.setVoltageMode(switchParam._14V)
373                                         elif currSat.voltage.value == "18V":
374                                                 sec.setVoltageMode(switchParam._18V)
375
376                                         if currSat.tonemode.value == "band":
377                                                 sec.setToneMode(switchParam.HILO)
378                                         elif currSat.tonemode.value == "on":
379                                                 sec.setToneMode(switchParam.ON)
380                                         elif currSat.tonemode.value == "off":
381                                                 sec.setToneMode(switchParam.OFF)
382                                                 
383                                         if not currSat.usals.value and x < 34:
384                                                 sec.setRotorPosNum(currSat.rotorposition.value)
385                                         else:
386                                                 sec.setRotorPosNum(0) #USALS
387
388         def __init__(self, nimmgr):
389                 self.NimManager = nimmgr
390                 self.configuredSatellites = Set()
391                 self.update()
392
393 class NIM(object):
394         def __init__(self, slot, type, description, has_outputs = True, internally_connectable = None):
395                 self.slot = slot
396
397                 if type not in ["DVB-S", "DVB-C", "DVB-T", "DVB-S2", None]:
398                         print "warning: unknown NIM type %s, not using." % type
399                         type = None
400
401                 self.type = type
402                 self.description = description
403                 self.has_outputs = has_outputs
404                 self.internally_connectable = internally_connectable
405
406         def isCompatible(self, what):
407                 compatible = {
408                                 None: [None],
409                                 "DVB-S": ["DVB-S", None],
410                                 "DVB-C": ["DVB-C", None],
411                                 "DVB-T": ["DVB-T", None],
412                                 "DVB-S2": ["DVB-S", "DVB-S2", None]
413                         }
414                 return what in compatible[self.type]
415         
416         def connectableTo(self):
417                 connectable = {
418                                 "DVB-S": ["DVB-S", "DVB-S2"],
419                                 "DVB-C": ["DVB-C"],
420                                 "DVB-T": ["DVB-T"],
421                                 "DVB-S2": ["DVB-S", "DVB-S2"]
422                         }
423                 return connectable[self.type]
424
425         def getSlotName(self):
426                 # get a friendly description for a slot name.
427                 # we name them "Tuner A/B/C/...", because that's what's usually written on the back
428                 # of the device.
429                 return _("Tuner ") + chr(ord('A') + self.slot)
430
431         slot_name = property(getSlotName)
432
433         def getSlotID(self):
434                 return chr(ord('A') + self.slot)
435         
436         def hasOutputs(self):
437                 return self.has_outputs
438         
439         def internallyConnectableTo(self):
440                 return self.internally_connectable
441
442         slot_id = property(getSlotID)
443
444         def getFriendlyType(self):
445                 return {
446                         "DVB-S": "DVB-S", 
447                         "DVB-T": "DVB-T",
448                         "DVB-S2": "DVB-S2",
449                         "DVB-C": "DVB-C",
450                         None: _("empty")
451                         }[self.type]
452
453         friendly_type = property(getFriendlyType)
454
455         def getFriendlyFullDescription(self):
456                 nim_text = self.slot_name + ": "
457                         
458                 if self.empty:
459                         nim_text += _("(empty)")
460                 else:
461                         nim_text += self.description + " (" + self.friendly_type + ")"
462                 
463                 return nim_text
464
465         friendly_full_description = property(getFriendlyFullDescription)
466         config_mode = property(lambda self: config.Nims[self.slot].configMode.value)
467         config = property(lambda self: config.Nims[self.slot])
468         empty = property(lambda self: self.type is None)
469
470 class NimManager:
471         def getConfiguredSats(self):
472                 return self.sec.getConfiguredSats()
473
474         def getTransponders(self, pos):
475                 if self.transponders.has_key(pos):
476                         return self.transponders[pos]
477                 else:
478                         return []
479
480         def getTranspondersCable(self, nim):
481                 nimConfig = config.Nims[nim]
482                 if nimConfig.configMode.value != "nothing" and nimConfig.cable.scan_type.value == "provider":
483                         return self.transponderscable[self.cablesList[nimConfig.cable.scan_provider.index][0]]
484                 return [ ]
485
486         def getTranspondersTerrestrial(self, region):
487                 return self.transpondersterrestrial[region]
488         
489         def getCableDescription(self, nim):
490                 return self.cablesList[config.Nims[nim].scan_provider.index][0]
491
492         def getCableFlags(self, nim):
493                 return self.cablesList[config.Nims[nim].scan_provider.index][1]
494
495         def getTerrestrialDescription(self, nim):
496                 return self.terrestrialsList[config.Nims[nim].terrestrial.index][0]
497
498         def getTerrestrialFlags(self, nim):
499                 return self.terrestrialsList[config.Nims[nim].terrestrial.index][1]
500
501         def getSatDescription(self, pos):
502                 return self.satellites[pos]
503
504         def readTransponders(self):
505                 # read initial networks from file. we only read files which we are interested in,
506                 # which means only these where a compatible tuner exists.
507                 self.satellites = { }
508                 self.transponders = { }
509                 self.transponderscable = { }
510                 self.transpondersterrestrial = { }
511                 db = eDVBDB.getInstance()
512                 if self.hasNimType("DVB-S"):
513                         print "Reading satellites.xml"
514                         db.readSatellites(self.satList, self.satellites, self.transponders)
515 #                       print "SATLIST", self.satList
516 #                       print "SATS", self.satellites
517 #                       print "TRANSPONDERS", self.transponders
518
519                 if self.hasNimType("DVB-C"):
520                         print "Reading cables.xml"
521                         db.readCables(self.cablesList, self.transponderscable)
522 #                       print "CABLIST", self.cablesList
523 #                       print "TRANSPONDERS", self.transponders
524
525                 if self.hasNimType("DVB-T"):
526                         print "Reading terrestrial.xml"
527                         db.readTerrestrials(self.terrestrialsList, self.transpondersterrestrial)
528 #                       print "TERLIST", self.terrestrialsList
529 #                       print "TRANSPONDERS", self.transpondersterrestrial
530
531         def enumerateNIMs(self):
532                 # enum available NIMs. This is currently very dreambox-centric and uses the /proc/bus/nim_sockets interface.
533                 # the result will be stored into nim_slots.
534                 # the content of /proc/bus/nim_sockets looks like:
535                 # NIM Socket 0:
536                 #          Type: DVB-S
537                 #          Name: BCM4501 DVB-S2 NIM (internal)
538                 # NIM Socket 1:
539                 #          Type: DVB-S
540                 #          Name: BCM4501 DVB-S2 NIM (internal)
541                 # NIM Socket 2:
542                 #          Type: DVB-T
543                 #          Name: Philips TU1216
544                 # NIM Socket 3:
545                 #          Type: DVB-S
546                 #          Name: Alps BSBE1 702A
547                 
548                 #
549                 # Type will be either "DVB-S", "DVB-S2", "DVB-T", "DVB-C" or None.
550
551                 # nim_slots is an array which has exactly one entry for each slot, even for empty ones.
552                 self.nim_slots = [ ]
553
554                 nimfile = tryOpen("/proc/bus/nim_sockets")
555
556                 if nimfile is None:
557                         return
558
559                 current_slot = None
560
561                 entries = {}
562                 for line in nimfile.readlines():
563                         if line == "":
564                                 break
565                         if line.strip().startswith("NIM Socket"):
566                                 parts = line.strip().split(" ")
567                                 current_slot = int(parts[2][:-1])
568                                 entries[current_slot] = {}
569                         elif line.strip().startswith("Type:"):
570                                 entries[current_slot]["type"] = str(line.strip()[6:])
571                         elif line.strip().startswith("Name:"):
572                                 entries[current_slot]["name"] = str(line.strip()[6:])
573                         elif line.strip().startswith("Has_Outputs:"):
574                                 input = str(line.strip()[len("Has_Outputs:") + 1:])
575                                 entries[current_slot]["has_outputs"] = (input == "yes")
576                         elif line.strip().startswith("Internally_Connectable:"):
577                                 input = int(line.strip()[len("Internally_Connectable:") + 1:])
578                                 entries[current_slot]["internally_connectable"] = input 
579                         elif line.strip().startswith("empty"):
580                                 entries[current_slot]["type"] = None
581                                 entries[current_slot]["name"] = _("N/A")
582                 nimfile.close()
583                 
584                 for id, entry in entries.items():
585                         if not (entry.has_key("name") and entry.has_key("type")):
586                                 entry["name"] =  _("N/A")
587                                 entry["type"] = None
588                         if not (entry.has_key("has_outputs")):
589                                 entry["has_outputs"] = True
590                         if not (entry.has_key("internally_connectable")):
591                                 entry["internally_connectable"] = None
592                         self.nim_slots.append(NIM(slot = id, description = entry["name"], type = entry["type"], has_outputs = entry["has_outputs"], internally_connectable = entry["internally_connectable"]))
593
594         def hasNimType(self, chktype):
595                 for slot in self.nim_slots:
596                         if slot.isCompatible(chktype):
597                                 return True
598                 return False
599         
600         def getNimType(self, slotid):
601                 return self.nim_slots[slotid].type
602         
603         def getNimDescription(self, slotid):
604                 return self.nim_slots[slotid].friendly_full_description
605
606         def getNimListOfType(self, type, exception = -1):
607                 # returns a list of indexes for NIMs compatible to the given type, except for 'exception'
608                 list = []
609                 for x in self.nim_slots:
610                         if x.isCompatible(type) and x.slot != exception:
611                                 list.append(x.slot)
612                 return list
613
614         def __init__(self):
615                 self.satList = [ ]
616                 self.cablesList = []
617                 self.terrestrialsList = []
618                 self.enumerateNIMs()
619                 self.readTransponders()
620                 InitNimManager(self)    #init config stuff
621
622         # get a list with the friendly full description
623         def nimList(self):
624                 list = [ ]
625                 for slot in self.nim_slots:
626                         list.append(slot.friendly_full_description)
627                 return list
628         
629         def getSlotCount(self):
630                 return len(self.nim_slots)
631         
632         def hasOutputs(self, slotid):
633                 return self.nim_slots[slotid].hasOutputs()
634         
635         def canConnectTo(self, slotid):
636                 slots = []
637                 if self.nim_slots[slotid].internallyConnectableTo() is not None:
638                         slots.append(self.nim_slots[slotid].internallyConnectableTo())
639                 for type in self.nim_slots[slotid].connectableTo(): 
640                         for slot in self.getNimListOfType(type, exception = slotid):
641                                 if self.hasOutputs(slot):
642                                         slots.append(slot)
643                 # remove nims, that have a conntectedTo reference on
644                 for testnim in slots[:]:
645                         for nim in self.getNimListOfType("DVB-S", slotid):
646                                 nimConfig = self.getNimConfig(nim)
647                                 if nimConfig.content.items.has_key("configMode") and nimConfig.configMode.value == "loopthrough" and int(nimConfig.connectedTo.value) == testnim:
648                                         slots.remove(testnim)
649                                         break 
650                 slots.sort()
651                 
652                 return slots
653         
654         def canEqualTo(self, slotid):
655                 type = self.getNimType(slotid)
656                 if self.getNimConfig(slotid) == "DVB-S2":
657                         type = "DVB-S"
658                 nimList = self.getNimListOfType(type, slotid)
659                 for nim in nimList[:]:
660                         mode = self.getNimConfig(nim)
661                         if mode.configMode.value == "loopthrough" or mode.configMode.value == "satposdepends":
662                                 nimList.remove(nim)
663                 return nimList
664         
665         def canDependOn(self, slotid):
666                 type = self.getNimType(slotid)
667                 if self.getNimConfig(slotid) == "DVB-S2":
668                         type = "DVB-S"
669                 nimList = self.getNimListOfType(type, slotid)
670                 positionerList = []
671                 for nim in nimList[:]:
672                         mode = self.getNimConfig(nim)
673                         if mode.configMode.value == "simple" and mode.diseqcMode.value == "positioner":
674                                 alreadyConnected = False
675                                 for testnim in nimList:
676                                         testmode = self.getNimConfig(testnim)
677                                         if testmode.configMode.value == "satposdepends" and int(testmode.connectedTo.value) == int(nim):
678                                                 alreadyConnected = True
679                                                 break
680                                 if not alreadyConnected:
681                                         positionerList.append(nim)
682                 return positionerList
683         
684         def getNimConfig(self, slotid):
685                 return config.Nims[slotid]
686         
687         def getSatName(self, pos):
688                 for sat in self.satList:
689                         if sat[0] == pos:
690                                 return sat[1]
691                 return _("N/A")
692
693         def getSatList(self):
694                 return self.satList
695
696         def getSatListForNim(self, slotid):
697                 list = []
698                 if self.nim_slots[slotid].isCompatible("DVB-S"):
699                         nim = config.Nims[slotid]
700                         #print "slotid:", slotid
701
702                         #print "self.satellites:", self.satList[config.Nims[slotid].diseqcA.index]
703                         #print "diseqcA:", config.Nims[slotid].diseqcA.value
704                         configMode = nim.configMode.value
705
706                         if configMode == "equal":
707                                 slotid = int(nim.connectedTo.value)
708                                 nim = config.Nims[slotid]
709                                 configMode = nim.configMode.value
710                         elif configMode == "loopthrough":
711                                 slotid = self.sec.getRoot(slotid, int(nim.connectedTo.value))
712                                 nim = config.Nims[slotid]
713                                 configMode = nim.configMode.value
714
715                         if configMode == "simple":
716                                 dm = nim.diseqcMode.value
717                                 if dm in ["single", "toneburst_a_b", "diseqc_a_b", "diseqc_a_b_c_d"]:
718                                         list.append(self.satList[nim.diseqcA.index])
719                                 if dm in ["toneburst_a_b", "diseqc_a_b", "diseqc_a_b_c_d"]:
720                                         list.append(self.satList[nim.diseqcB.index])
721                                 if dm == "diseqc_a_b_c_d":
722                                         list.append(self.satList[nim.diseqcC.index])
723                                         list.append(self.satList[nim.diseqcD.index])
724                                 if dm == "positioner":
725                                         for x in self.satList:
726                                                 list.append(x)
727                         elif configMode == "advanced":
728                                 for x in range(3601, 3605):
729                                         if int(nim.advanced.sat[x].lnb.value) != 0:
730                                                 for x in self.satList:
731                                                         list.append(x)
732                                 if not list:
733                                         for x in self.satList:
734                                                 if int(nim.advanced.sat[x[0]].lnb.value) != 0:
735                                                         list.append(x)
736                 return list
737
738         def getRotorSatListForNim(self, slotid):
739                 list = []
740                 if self.nim_slots[slotid].isCompatible("DVB-S"):
741                         #print "slotid:", slotid
742                         #print "self.satellites:", self.satList[config.Nims[slotid].diseqcA.value]
743                         #print "diseqcA:", config.Nims[slotid].diseqcA.value
744                         configMode = config.Nims[slotid].configMode.value
745                         if configMode == "simple":
746                                 if config.Nims[slotid].diseqcMode.value == "positioner":
747                                         for x in self.satList:
748                                                 list.append(x)
749                         elif configMode == "advanced":
750                                 nim = config.Nims[slotid]
751                                 for x in range(3601, 3605):
752                                         if int(nim.advanced.sat[x].lnb.value) != 0:
753                                                 for x in self.satList:
754                                                         list.append(x)
755                                 if not list:
756                                         for x in self.satList:
757                                                 lnbnum = int(nim.advanced.sat[x[0]].lnb.value)
758                                                 if lnbnum != 0:
759                                                         lnb = nim.advanced.lnb[lnbnum]
760                                                         if lnb.diseqcMode.value == "1_2":
761                                                                 list.append(x)
762                 return list
763
764 def InitSecParams():
765         config.sec = ConfigSubsection()
766
767         x = ConfigInteger(default=15, limits = (0, 9999))
768         x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_CONT_TONE, configElement.value))
769         config.sec.delay_after_continuous_tone_change = x
770
771         x = ConfigInteger(default=10, limits = (0, 9999))
772         x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_FINAL_VOLTAGE_CHANGE, configElement.value))
773         config.sec.delay_after_final_voltage_change = x
774
775         x = ConfigInteger(default=120, limits = (0, 9999))
776         x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_BETWEEN_DISEQC_REPEATS, configElement.value))
777         config.sec.delay_between_diseqc_repeats = x
778
779         x = ConfigInteger(default=50, limits = (0, 9999))
780         x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_LAST_DISEQC_CMD, configElement.value))
781         config.sec.delay_after_last_diseqc_command = x
782
783         x = ConfigInteger(default=50, limits = (0, 9999))
784         x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_TONEBURST, configElement.value))
785         config.sec.delay_after_toneburst = x
786
787         x = ConfigInteger(default=20, limits = (0, 9999))
788         x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_SWITCH_CMDS, configElement.value))
789         config.sec.delay_after_change_voltage_before_switch_command = x
790
791         x = ConfigInteger(default=200, limits = (0, 9999))
792         x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_SWITCH_CMDS, configElement.value))
793         config.sec.delay_after_enable_voltage_before_switch_command = x
794
795         x = ConfigInteger(default=700, limits = (0, 9999))
796         x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_BETWEEN_SWITCH_AND_MOTOR_CMD, configElement.value))
797         config.sec.delay_between_switch_and_motor_command = x
798
799         x = ConfigInteger(default=500, limits = (0, 9999))
800         x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER, configElement.value))
801         config.sec.delay_after_voltage_change_before_measure_idle_inputpower = x
802
803         x = ConfigInteger(default=750, limits = (0, 9999))
804         x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_MOTOR_CMD, configElement.value))
805         config.sec.delay_after_enable_voltage_before_motor_command = x
806
807         x = ConfigInteger(default=500, limits = (0, 9999))
808         x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_MOTOR_STOP_CMD, configElement.value))
809         config.sec.delay_after_motor_stop_command = x
810
811         x = ConfigInteger(default=500, limits = (0, 9999))
812         x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MOTOR_CMD, configElement.value))
813         config.sec.delay_after_voltage_change_before_motor_command = x
814
815         x = ConfigInteger(default=360, limits = (0, 9999))
816         x.addNotifier(lambda configElement: secClass.setParam(secClass.MOTOR_RUNNING_TIMEOUT, configElement.value))
817         config.sec.motor_running_timeout = x
818
819         x = ConfigInteger(default=1, limits = (0, 5))
820         x.addNotifier(lambda configElement: secClass.setParam(secClass.MOTOR_COMMAND_RETRIES, configElement.value))
821         config.sec.motor_command_retries = x
822
823 # TODO add support for satpos depending nims to advanced nim configuration
824 # so a second/third/fourth cable from a motorized lnb can used behind a
825 # diseqc 1.0 / diseqc 1.1 / toneburst switch
826 # the C(++) part should can handle this
827 # the configElement should be only visible when diseqc 1.2 is disabled
828
829 def InitNimManager(nimmgr):
830         InitSecParams()
831
832         config.Nims = ConfigSubList()
833         for x in range(len(nimmgr.nim_slots)):
834                 config.Nims.append(ConfigSubsection())
835
836         for slot in nimmgr.nim_slots:
837                 x = slot.slot
838                 nim = config.Nims[x]
839                 
840                 if slot.isCompatible("DVB-S"):
841                         choices = { "nothing": _("nothing connected"),
842                                         "simple": _("simple"),
843                                         "advanced": _("advanced")}
844                         if len(nimmgr.getNimListOfType(slot.type, exception = x)) > 0:
845                                 choices["equal"] = _("equal to")
846                                 choices["satposdepends"] = _("second cable of motorized LNB")
847                         if len(nimmgr.canConnectTo(x)) > 0:
848                                 choices["loopthrough"] = _("loopthrough to")
849                         nim.configMode = ConfigSelection(choices = choices, default = "nothing")
850
851                         for y in nimmgr.nim_slots:
852                                 if y.slot == 0:
853                                         if not y.isCompatible("DVB-S"):
854                                                 # reset to simple
855                                                 nim.configMode.value = "simple"
856                                                 nim.configMode.save()
857
858                         nim.diseqcMode = ConfigSelection(
859                                 choices = [
860                                         ("single", _("Single")),
861                                         ("toneburst_a_b", _("Toneburst A/B")),
862                                         ("diseqc_a_b", _("DiSEqC A/B")),
863                                         ("diseqc_a_b_c_d", _("DiSEqC A/B/C/D")),
864                                         ("positioner", _("Positioner"))],
865                                 default = "diseqc_a_b")
866
867                         choices = []
868                         for id in nimmgr.getNimListOfType("DVB-S"):
869                                 if id != x:
870                                         choices.append((str(id), nimmgr.getNimDescription(id)))
871                         nim.connectedTo = ConfigSelection(choices = choices)
872                         nim.diseqcA = getConfigSatlist(192, nimmgr.satList)
873                         nim.diseqcB = getConfigSatlist(130, nimmgr.satList)
874                         nim.diseqcC = ConfigSatlist(list = nimmgr.satList)
875                         nim.diseqcD = ConfigSatlist(list = nimmgr.satList)
876                         nim.positionerMode = ConfigSelection(
877                                 choices = [
878                                         ("usals", _("USALS")),
879                                         ("manual", _("manual"))],
880                                 default = "usals")
881                         nim.longitude = ConfigFloat(default=[5,100], limits=[(0,359),(0,999)])
882                         nim.longitudeOrientation = ConfigSelection(choices={"east": _("East"), "west": _("West")}, default = "east")
883                         nim.latitude = ConfigFloat(default=[50,767], limits=[(0,359),(0,999)])
884                         nim.latitudeOrientation = ConfigSelection(choices={"north": _("North"), "south": _("South")}, default="north")
885                         nim.powerMeasurement = ConfigYesNo(default=True)
886                         nim.powerThreshold = ConfigInteger(default=50, limits=(0, 100))
887                         nim.turningSpeed = ConfigSelection(choices = [("fast", _("Fast")), ("slow", _("Slow")), ("fast epoch", _("Fast epoch")) ], default = "fast")
888                         btime = datetime(1970, 1, 1, 7, 0);
889                         nim.fastTurningBegin = ConfigDateTime(default = mktime(btime.timetuple()), formatstring = _("%H:%M"), increment = 900)
890                         etime = datetime(1970, 1, 1, 19, 0);
891                         nim.fastTurningEnd = ConfigDateTime(default = mktime(etime.timetuple()), formatstring = _("%H:%M"), increment = 900)
892
893                         # advanced config:
894                         nim.advanced = ConfigSubsection()
895                         tmp = [(3601, _('All Satellites')+' 1', 1), (3602, _('All Satellites')+' 2', 1), (3603, _('All Satellites')+' 3', 1), (3604, _('All Satellites')+' 4', 1)]
896                         nim.advanced.sats = getConfigSatlist(192,nimmgr.satList+tmp)
897                         nim.advanced.sat = ConfigSubDict()
898                         lnbs = [("0", "not available")]
899                         for y in range(1, 33):
900                                 lnbs.append((str(y), "LNB " + str(y)))
901
902                         for x in nimmgr.satList:
903                                 nim.advanced.sat[x[0]] = ConfigSubsection()
904                                 nim.advanced.sat[x[0]].voltage = ConfigSelection(choices={"polarization": _("Polarization"), "13V": _("13 V"), "18V": _("18 V")}, default = "polarization")
905                                 nim.advanced.sat[x[0]].tonemode = ConfigSelection(choices={"band": _("Band"), "on": _("On"), "off": _("Off")}, default = "band")
906                                 nim.advanced.sat[x[0]].usals = ConfigYesNo(default=True)
907                                 nim.advanced.sat[x[0]].rotorposition = ConfigInteger(default=1, limits=(1, 255))
908                                 nim.advanced.sat[x[0]].lnb = ConfigSelection(choices = lnbs)
909
910                         for x in range(3601, 3605):
911                                 nim.advanced.sat[x] = ConfigSubsection()
912                                 nim.advanced.sat[x].voltage = ConfigSelection(choices={"polarization": _("Polarization"), "13V": _("13 V"), "18V": _("18 V")}, default = "polarization")
913                                 nim.advanced.sat[x].tonemode = ConfigSelection(choices={"band": _("Band"), "on": _("On"), "off": _("Off")}, default = "band")
914                                 nim.advanced.sat[x].usals = ConfigYesNo(default=True)
915                                 nim.advanced.sat[x].rotorposition = ConfigInteger(default=1, limits=(1, 255))
916                                 lnbnum = 33+x-3601
917                                 nim.advanced.sat[x].lnb = ConfigSelection(choices = [("0", "not available"), (str(lnbnum), "LNB %d"%(lnbnum))], default="0")
918
919                         csw = [("none", _("None")), ("AA", _("AA")), ("AB", _("AB")), ("BA", _("BA")), ("BB", _("BB"))]
920                         for y in range(0, 16):
921                                 csw.append((str(0xF0|y), "Input " + str(y+1)))
922
923                         ucsw = [("0", _("None"))]
924                         for y in range(1, 17):
925                                 ucsw.append((str(y), "Input " + str(y)))
926
927                         nim.advanced.lnb = ConfigSubList()
928                         nim.advanced.lnb.append(ConfigNothing())
929                         for x in range(1, 37):
930                                 nim.advanced.lnb.append(ConfigSubsection())
931                                 nim.advanced.lnb[x].lof = ConfigSelection(choices={"universal_lnb": _("Universal LNB"), "c_band": _("C-Band"), "user_defined": _("User defined")}, default="universal_lnb")
932                                 nim.advanced.lnb[x].lofl = ConfigInteger(default=9750, limits = (0, 99999))
933                                 nim.advanced.lnb[x].lofh = ConfigInteger(default=10600, limits = (0, 99999))
934                                 nim.advanced.lnb[x].threshold = ConfigInteger(default=11700, limits = (0, 99999))
935 #                               nim.advanced.lnb[x].output_12v = ConfigSelection(choices = [("0V", _("0 V")), ("12V", _("12 V"))], default="0V")
936                                 nim.advanced.lnb[x].increased_voltage = ConfigYesNo(default=False)
937                                 nim.advanced.lnb[x].toneburst = ConfigSelection(choices = [("none", _("None")), ("A", _("A")), ("B", _("B"))], default = "none")
938                                 if x > 32:
939                                         nim.advanced.lnb[x].diseqcMode = ConfigSelection(choices = [("1_2", _("1.2"))], default = "1_2")
940                                 else:
941                                         nim.advanced.lnb[x].diseqcMode = ConfigSelection(choices = [("none", _("None")), ("1_0", _("1.0")), ("1_1", _("1.1")), ("1_2", _("1.2"))], default = "none")
942                                 nim.advanced.lnb[x].commitedDiseqcCommand = ConfigSelection(choices = csw)
943                                 nim.advanced.lnb[x].fastDiseqc = ConfigYesNo(default=False)
944                                 nim.advanced.lnb[x].sequenceRepeat = ConfigYesNo(default=False)
945                                 nim.advanced.lnb[x].commandOrder1_0 = ConfigSelection(choices = [("ct", "committed, toneburst"), ("tc", "toneburst, committed")], default = "ct")
946                                 nim.advanced.lnb[x].commandOrder = ConfigSelection(choices = [
947                                                 ("ct", "committed, toneburst"),
948                                                 ("tc", "toneburst, committed"),
949                                                 ("cut", "committed, uncommitted, toneburst"),
950                                                 ("tcu", "toneburst, committed, uncommitted"),
951                                                 ("uct", "uncommitted, committed, toneburst"),
952                                                 ("tuc", "toneburst, uncommitted, commmitted")],
953                                                 default="ct")
954                                 nim.advanced.lnb[x].uncommittedDiseqcCommand = ConfigSelection(choices = ucsw)
955                                 nim.advanced.lnb[x].diseqcRepeats = ConfigSelection(choices = [("none", _("None")), ("one", _("One")), ("two", _("Two")), ("three", _("Three"))], default = "none")
956                                 nim.advanced.lnb[x].longitude = ConfigFloat(default = [5,100], limits = [(0,359),(0,999)])
957                                 nim.advanced.lnb[x].longitudeOrientation = ConfigSelection(choices = [("east", _("East")), ("west", _("West"))], default = "east")
958                                 nim.advanced.lnb[x].latitude = ConfigFloat(default = [50,767], limits = [(0,359),(0,999)])
959                                 nim.advanced.lnb[x].latitudeOrientation = ConfigSelection(choices = [("north", _("North")), ("south", _("South"))], default = "north")
960                                 nim.advanced.lnb[x].powerMeasurement = ConfigYesNo(default=True)
961                                 nim.advanced.lnb[x].powerThreshold = ConfigInteger(default=50, limits=(0, 100))
962                                 nim.advanced.lnb[x].turningSpeed = ConfigSelection(choices = [("fast", _("Fast")), ("slow", _("Slow")), ("fast epoch", _("Fast epoch"))], default = "fast")
963                                 btime = datetime(1970, 1, 1, 7, 0);
964                                 nim.advanced.lnb[x].fastTurningBegin = ConfigDateTime(default=mktime(btime.timetuple()), formatstring = _("%H:%M"), increment = 600)
965                                 etime = datetime(1970, 1, 1, 19, 0);
966                                 nim.advanced.lnb[x].fastTurningEnd = ConfigDateTime(default=mktime(etime.timetuple()), formatstring = _("%H:%M"), increment = 600)
967                 elif slot.isCompatible("DVB-C"):
968                         nim.configMode = ConfigSelection(
969                                 choices = {
970                                         "enabled": _("enabled"),
971                                         "nothing": _("nothing connected"),
972                                         },
973                                 default = "enabled")
974                         list = [ ]
975                         n = 0
976                         for x in nimmgr.cablesList:
977                                 list.append((str(n), x[0]))
978                                 n += 1
979                         nim.cable = ConfigSubsection()
980                         possible_scan_types = [("bands", _("Frequency bands")), ("steps", _("Frequency steps"))]
981                         if n:
982                                 possible_scan_types.append(("provider", _("Provider")))
983                                 nim.cable.scan_provider = ConfigSelection(default = "0", choices = list)
984                         nim.cable.scan_type = ConfigSelection(default = "bands", choices = possible_scan_types)
985                         nim.cable.scan_band_EU_VHF_I = ConfigYesNo(default = True)
986                         nim.cable.scan_band_EU_MID = ConfigYesNo(default = True)
987                         nim.cable.scan_band_EU_VHF_III = ConfigYesNo(default = True)
988                         nim.cable.scan_band_EU_UHF_IV = ConfigYesNo(default = True)
989                         nim.cable.scan_band_EU_UHF_V = ConfigYesNo(default = True)
990                         nim.cable.scan_band_EU_SUPER = ConfigYesNo(default = True)
991                         nim.cable.scan_band_EU_HYPER = ConfigYesNo(default = True)
992                         nim.cable.scan_band_US_LOW = ConfigYesNo(default = False)
993                         nim.cable.scan_band_US_MID = ConfigYesNo(default = False)
994                         nim.cable.scan_band_US_HIGH = ConfigYesNo(default = False)
995                         nim.cable.scan_band_US_SUPER = ConfigYesNo(default = False)
996                         nim.cable.scan_band_US_HYPER = ConfigYesNo(default = False)
997                         nim.cable.scan_frequency_steps = ConfigInteger(default = 1000, limits = (1000, 10000))
998                         nim.cable.scan_mod_qam16 = ConfigYesNo(default = False)
999                         nim.cable.scan_mod_qam32 = ConfigYesNo(default = False)
1000                         nim.cable.scan_mod_qam64 = ConfigYesNo(default = True)
1001                         nim.cable.scan_mod_qam128 = ConfigYesNo(default = False)
1002                         nim.cable.scan_mod_qam256 = ConfigYesNo(default = True)
1003                         nim.cable.scan_sr_6900 = ConfigYesNo(default = True)
1004                         nim.cable.scan_sr_6875 = ConfigYesNo(default = True)
1005                         nim.cable.scan_sr_ext1 = ConfigInteger(default = 0, limits = (0, 7230))
1006                         nim.cable.scan_sr_ext2 = ConfigInteger(default = 0, limits = (0, 7230))
1007                 elif slot.isCompatible("DVB-T"):
1008                         nim.configMode = ConfigSelection(
1009                                 choices = {
1010                                         "enabled": _("enabled"),
1011                                         "nothing": _("nothing connected"),
1012                                         },
1013                                 default = "enabled")
1014                         list = []
1015                         n = 0
1016                         for x in nimmgr.terrestrialsList:
1017                                 list.append((str(n), x[0]))
1018                                 n += 1
1019                         nim.terrestrial = ConfigSelection(choices = list)
1020                         nim.terrestrial_5V = ConfigOnOff()
1021                 else:
1022                         nim.configMode = ConfigSelection(choices = { "nothing": _("disabled") }, default="nothing");
1023                         print "pls add support for this frontend type!"         
1024 #                       assert False
1025
1026         nimmgr.sec = SecConfigure(nimmgr)
1027
1028 nimmanager = NimManager()