1 from config import config, ConfigSubsection, ConfigSelection, ConfigFloat, \
2 ConfigSatlist, ConfigYesNo, ConfigInteger, ConfigSubList, ConfigNothing, \
3 ConfigSubDict, ConfigOnOff, ConfigDateTime
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
12 from time import localtime, mktime
13 from datetime import datetime
17 def getConfigSatlist(orbpos, satlist):
21 default_orbpos = orbpos
23 return ConfigSatlist(satlist, default_orbpos)
25 def tryOpen(filename):
27 procFile = open(filename)
33 def getConfiguredSats(self):
34 return self.configuredSatellites
36 def addSatellite(self, sec, orbpos):
37 sec.addSatellite(orbpos)
38 self.configuredSatellites.add(orbpos)
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):
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)
59 sec.setVoltageMode(switchParam.HV)
60 sec.setToneMode(switchParam.HILO)
61 sec.setCommandOrder(0)
64 sec.setDiSEqCMode(diseqcmode)
65 sec.setToneburst(toneburstmode)
66 sec.setCommittedCommand(diseqcpos)
67 sec.setUncommittedCommand(0) # SENDNO
68 #print "set orbpos to:" + str(orbpos)
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)
84 for x in self.NimManager.satList:
85 print "Add sat " + str(x[0])
86 self.addSatellite(sec, int(x[0]))
89 sec.setRotorPosNum(0) # USALS
91 sec.setLNBSlotMask(tunermask)
93 def setSatposDepends(self, sec, nim1, nim2):
94 print "tuner", nim1, "depends on satpos of", nim2
95 sec.setTunerDepends(nim1, nim2)
97 def linkNIMs(self, sec, nim1, nim2):
98 print "link tuner", nim1, "to tuner", nim2
99 sec.setTunerLinked(nim1, nim2)
101 def getRoot(self, slotid, connto):
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
107 visited.append(connto)
111 sec = secClass.getInstance()
112 self.configuredSatellites = Set()
113 sec.clear() ## this do unlinking NIMs too !!
114 print "sec config cleared"
117 self.satposdepends = { }
120 nim_slots = self.NimManager.nim_slots
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))
127 eDVBResourceManager.getInstance().setFrontendSlotInformations(used_nim_slots)
129 for slot in nim_slots:
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)
153 for slot in nim_slots:
156 if slot.isCompatible("DVB-S"):
157 print "slot: " + str(x) + " configmode: " + str(nim.configMode.value)
158 print "diseqcmode: ", nim.diseqcMode.value
159 if nim.configMode.value in [ "loopthrough", "satposdepends", "nothing" ]:
162 sec.setSlotNotLinked(x)
163 if nim.configMode.value == "equal":
165 elif nim.configMode.value == "simple": #simple config
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
183 laValue = rotorParam.SOUTH
184 if nim.longitudeOrientation.value == "east":
185 loValue = rotorParam.EAST
187 loValue = rotorParam.WEST
191 if nim.powerMeasurement.value:
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]
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"
214 def updateAdvanced(self, sec, slotid):
216 for x in range(1,129):
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)
223 for x in self.NimManager.satList:
224 print "add", x[0], "to", lnb
225 lnbSat[lnb].append(x[0])
227 for x in self.NimManager.satList:
228 lnb = int(config.Nims[slotid].advanced.sat[x[0]].lnb.value)
230 print "add", x[0], "to", lnb
231 lnbSat[lnb].append(x[0])
233 for x in range(1,129):
234 if len(lnbSat[x]) > 0:
235 currLnb = config.Nims[slotid].advanced.lnb[x]
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)
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)
259 # if currLnb.output_12v.value == "0V":
260 # pass # nyi in drivers
261 # elif currLnb.output_12v.value == "12V":
262 # pass # nyi in drivers
264 if currLnb.increased_voltage.value:
265 sec.setLNBIncreasedVoltage(lnbParam.ON)
267 sec.setLNBIncreasedVoltage(lnbParam.OFF)
269 dm = currLnb.diseqcMode.value
271 sec.setDiSEqCMode(diseqcParam.NONE)
273 sec.setDiSEqCMode(diseqcParam.V1_0)
275 sec.setDiSEqCMode(diseqcParam.V1_1)
277 sec.setDiSEqCMode(diseqcParam.V1_2)
279 if self.satposdepends.has_key(slotid): # only useable with rotors
280 tunermask |= (1 << self.satposdepends[slotid])
283 if currLnb.toneburst.value == "none":
284 sec.setToneburst(diseqcParam.NO)
285 elif currLnb.toneburst.value == "A":
286 sec.setToneburst(diseqcParam.A)
287 elif currLnb.toneburst.value == "B":
288 sec.setToneburst(diseqcParam.B)
290 # Committed Diseqc Command
291 cdc = currLnb.commitedDiseqcCommand.value
293 c = { "none": diseqcParam.SENDNO,
294 "AA": diseqcParam.AA,
295 "AB": diseqcParam.AB,
296 "BA": diseqcParam.BA,
297 "BB": diseqcParam.BB }
300 sec.setCommittedCommand(c[cdc])
302 sec.setCommittedCommand(long(cdc))
304 sec.setFastDiSEqC(currLnb.fastDiseqc.value)
306 sec.setSeqRepeat(currLnb.sequenceRepeat.value)
308 if currLnb.diseqcMode.value == "1_0":
309 currCO = currLnb.commandOrder1_0.value
311 currCO = currLnb.commandOrder.value
313 udc = int(currLnb.uncommittedDiseqcCommand.value)
315 sec.setUncommittedCommand(0xF0|(udc-1))
317 sec.setUncommittedCommand(0) # SENDNO
319 sec.setRepeats({"none": 0, "one": 1, "two": 2, "three": 3}[currLnb.diseqcRepeats.value])
321 setCommandOrder = False
323 # 0 "committed, toneburst",
324 # 1 "toneburst, committed",
325 # 2 "committed, uncommitted, toneburst",
326 # 3 "toneburst, committed, uncommitted",
327 # 4 "uncommitted, committed, toneburst"
328 # 5 "toneburst, uncommitted, commmitted"
329 order_map = {"ct": 0, "tc": 1, "cut": 2, "tcu": 3, "uct": 4, "tuc": 5}
330 sec.setCommandOrder(order_map[currCO])
333 latitude = currLnb.latitude.float
334 sec.setLatitude(latitude)
335 longitude = currLnb.longitude.float
336 sec.setLongitude(longitude)
337 if currLnb.latitudeOrientation.value == "north":
338 sec.setLaDirection(rotorParam.NORTH)
340 sec.setLaDirection(rotorParam.SOUTH)
341 if currLnb.longitudeOrientation.value == "east":
342 sec.setLoDirection(rotorParam.EAST)
344 sec.setLoDirection(rotorParam.WEST)
346 if currLnb.powerMeasurement.value:
347 sec.setUseInputpower(True)
348 sec.setInputpowerDelta(currLnb.powerThreshold.value)
349 turn_speed_dict = { "fast": rotorParam.FAST, "slow": rotorParam.SLOW }
350 if turn_speed_dict.has_key(currLnb.turningSpeed.value):
351 turning_speed = turn_speed_dict[currLnb.turningSpeed.value]
353 beg_time = localtime(currLnb.fastTurningBegin.value)
354 end_time = localtime(currLnb.fastTurningEnd.value)
355 turning_speed = ((beg_time.tm_hour + 1) * 60 + beg_time.tm_min + 1) << 16
356 turning_speed |= (end_time.tm_hour + 1) * 60 + end_time.tm_min + 1
357 sec.setRotorTurningSpeed(turning_speed)
359 sec.setUseInputpower(False)
361 sec.setLNBSlotMask(tunermask)
363 # finally add the orbital positions
365 self.addSatellite(sec, y)
366 currSat = config.Nims[slotid].advanced.sat[y]
368 if currSat.voltage.value == "polarization":
369 sec.setVoltageMode(switchParam.HV)
370 elif currSat.voltage.value == "13V":
371 sec.setVoltageMode(switchParam._14V)
372 elif currSat.voltage.value == "18V":
373 sec.setVoltageMode(switchParam._18V)
375 if currSat.tonemode == "band":
376 sec.setToneMode(switchParam.HILO)
377 elif currSat.tonemode == "on":
378 sec.setToneMode(switchParam.ON)
379 elif currSat.tonemode == "off":
380 sec.setToneMode(switchParam.OFF)
382 if not currSat.usals.value and x < 125:
383 sec.setRotorPosNum(currSat.rotorposition.value)
385 sec.setRotorPosNum(0) #USALS
387 def __init__(self, nimmgr):
388 self.NimManager = nimmgr
389 self.configuredSatellites = Set()
393 def __init__(self, slot, type, description, has_outputs = True, internally_connectable = None):
396 if type not in ["DVB-S", "DVB-C", "DVB-T", "DVB-S2", None]:
397 print "warning: unknown NIM type %s, not using." % type
401 self.description = description
402 self.has_outputs = has_outputs
403 self.internally_connectable = internally_connectable
405 def isCompatible(self, what):
408 "DVB-S": ["DVB-S", None],
409 "DVB-C": ["DVB-C", None],
410 "DVB-T": ["DVB-T", None],
411 "DVB-S2": ["DVB-S", "DVB-S2", None]
413 return what in compatible[self.type]
415 def connectableTo(self):
417 "DVB-S": ["DVB-S", "DVB-S2"],
420 "DVB-S2": ["DVB-S", "DVB-S2"]
422 return connectable[self.type]
424 def getSlotName(self):
425 # get a friendly description for a slot name.
426 # we name them "Tuner A/B/C/...", because that's what's usually written on the back
428 return _("Tuner ") + chr(ord('A') + self.slot)
430 slot_name = property(getSlotName)
433 return chr(ord('A') + self.slot)
435 def hasOutputs(self):
436 return self.has_outputs
438 def internallyConnectableTo(self):
439 return self.internally_connectable
441 slot_id = property(getSlotID)
443 def getFriendlyType(self):
452 friendly_type = property(getFriendlyType)
454 def getFriendlyFullDescription(self):
455 nim_text = self.slot_name + ": "
458 nim_text += _("(empty)")
460 nim_text += self.description + " (" + self.friendly_type + ")"
464 friendly_full_description = property(getFriendlyFullDescription)
465 config_mode = property(lambda self: config.Nims[self.slot].configMode.value)
466 config = property(lambda self: config.Nims[self.slot])
467 empty = property(lambda self: self.type is None)
470 def getConfiguredSats(self):
471 return self.sec.getConfiguredSats()
473 def getTransponders(self, pos):
474 if self.transponders.has_key(pos):
475 return self.transponders[pos]
479 def getTranspondersCable(self, nim):
480 nimConfig = config.Nims[nim]
481 if nimConfig.configMode.value != "nothing" and nimConfig.cable.scan_type.value == "provider":
482 return self.transponderscable[self.cablesList[nimConfig.cable.scan_provider.index][0]]
485 def getTranspondersTerrestrial(self, region):
486 return self.transpondersterrestrial[region]
488 def getCableDescription(self, nim):
489 return self.cablesList[config.Nims[nim].scan_provider.index][0]
491 def getCableFlags(self, nim):
492 return self.cablesList[config.Nims[nim].scan_provider.index][1]
494 def getTerrestrialDescription(self, nim):
495 return self.terrestrialsList[config.Nims[nim].terrestrial.index][0]
497 def getTerrestrialFlags(self, nim):
498 return self.terrestrialsList[config.Nims[nim].terrestrial.index][1]
500 def getSatDescription(self, pos):
501 return self.satellites[pos]
503 def readTransponders(self):
504 # read initial networks from file. we only read files which we are interested in,
505 # which means only these where a compatible tuner exists.
506 self.satellites = { }
507 self.transponders = { }
508 self.transponderscable = { }
509 self.transpondersterrestrial = { }
510 db = eDVBDB.getInstance()
511 if self.hasNimType("DVB-S"):
512 print "Reading satellites.xml"
513 db.readSatellites(self.satList, self.satellites, self.transponders)
514 # print "SATLIST", self.satList
515 # print "SATS", self.satellites
516 # print "TRANSPONDERS", self.transponders
518 if self.hasNimType("DVB-C"):
519 print "Reading cables.xml"
520 db.readCables(self.cablesList, self.transponderscable)
521 # print "CABLIST", self.cablesList
522 # print "TRANSPONDERS", self.transponders
524 if self.hasNimType("DVB-T"):
525 print "Reading terrestrial.xml"
526 db.readTerrestrials(self.terrestrialsList, self.transpondersterrestrial)
527 # print "TERLIST", self.terrestrialsList
528 # print "TRANSPONDERS", self.transpondersterrestrial
530 def enumerateNIMs(self):
531 # enum available NIMs. This is currently very dreambox-centric and uses the /proc/bus/nim_sockets interface.
532 # the result will be stored into nim_slots.
533 # the content of /proc/bus/nim_sockets looks like:
536 # Name: BCM4501 DVB-S2 NIM (internal)
539 # Name: BCM4501 DVB-S2 NIM (internal)
542 # Name: Philips TU1216
545 # Name: Alps BSBE1 702A
548 # Type will be either "DVB-S", "DVB-S2", "DVB-T", "DVB-C" or None.
550 # nim_slots is an array which has exactly one entry for each slot, even for empty ones.
553 nimfile = tryOpen("/proc/bus/nim_sockets")
561 for line in nimfile.readlines():
564 if line.strip().startswith("NIM Socket"):
565 parts = line.strip().split(" ")
566 current_slot = int(parts[2][:-1])
567 entries[current_slot] = {}
568 elif line.strip().startswith("Type:"):
569 entries[current_slot]["type"] = str(line.strip()[6:])
570 elif line.strip().startswith("Name:"):
571 entries[current_slot]["name"] = str(line.strip()[6:])
572 elif line.strip().startswith("Has_Outputs:"):
573 input = str(line.strip()[len("Has_Outputs:") + 1:])
574 entries[current_slot]["has_outputs"] = (input == "yes")
575 elif line.strip().startswith("Internally_Connectable:"):
576 input = int(line.strip()[len("Internally_Connectable:") + 1:])
577 entries[current_slot]["internally_connectable"] = input
578 elif line.strip().startswith("empty"):
579 entries[current_slot]["type"] = None
580 entries[current_slot]["name"] = _("N/A")
583 for id, entry in entries.items():
584 if not (entry.has_key("name") and entry.has_key("type")):
585 entry["name"] = _("N/A")
587 if not (entry.has_key("has_outputs")):
588 entry["has_outputs"] = True
589 if not (entry.has_key("internally_connectable")):
590 entry["internally_connectable"] = None
591 self.nim_slots.append(NIM(slot = id, description = entry["name"], type = entry["type"], has_outputs = entry["has_outputs"], internally_connectable = entry["internally_connectable"]))
593 def hasNimType(self, chktype):
594 for slot in self.nim_slots:
595 if slot.isCompatible(chktype):
599 def getNimType(self, slotid):
600 return self.nim_slots[slotid].type
602 def getNimDescription(self, slotid):
603 return self.nim_slots[slotid].friendly_full_description
605 def getNimListOfType(self, type, exception = -1):
606 # returns a list of indexes for NIMs compatible to the given type, except for 'exception'
608 for x in self.nim_slots:
609 if x.isCompatible(type) and x.slot != exception:
616 self.terrestrialsList = []
618 self.readTransponders()
619 InitNimManager(self) #init config stuff
621 # get a list with the friendly full description
624 for slot in self.nim_slots:
625 list.append(slot.friendly_full_description)
628 def getSlotCount(self):
629 return len(self.nim_slots)
631 def hasOutputs(self, slotid):
632 return self.nim_slots[slotid].hasOutputs()
634 def canConnectTo(self, slotid):
636 if self.nim_slots[slotid].internallyConnectableTo() is not None:
637 slots.append(self.nim_slots[slotid].internallyConnectableTo())
638 for type in self.nim_slots[slotid].connectableTo():
639 for slot in self.getNimListOfType(type, exception = slotid):
640 if self.hasOutputs(slot):
642 # remove nims, that have a conntectedTo reference on
643 for testnim in slots[:]:
644 for nim in self.getNimListOfType("DVB-S", slotid):
645 nimConfig = self.getNimConfig(nim)
646 if nimConfig.content.items.has_key("configMode") and nimConfig.configMode.value == "loopthrough" and int(nimConfig.connectedTo.value) == testnim:
647 slots.remove(testnim)
653 def canEqualTo(self, slotid):
654 type = self.getNimType(slotid)
655 if self.getNimConfig(slotid) == "DVB-S2":
657 nimList = self.getNimListOfType(type, slotid)
658 for nim in nimList[:]:
659 mode = self.getNimConfig(nim)
660 if mode.configMode.value == "loopthrough" or mode.configMode.value == "satposdepends":
664 def canDependOn(self, slotid):
665 type = self.getNimType(slotid)
666 if self.getNimConfig(slotid) == "DVB-S2":
668 nimList = self.getNimListOfType(type, slotid)
670 for nim in nimList[:]:
671 mode = self.getNimConfig(nim)
672 if mode.configMode.value == "simple" and mode.diseqcMode.value == "positioner":
673 alreadyConnected = False
674 for testnim in nimList:
675 testmode = self.getNimConfig(testnim)
676 if testmode.configMode.value == "satposdepends" and int(testmode.connectedTo.value) == int(nim):
677 alreadyConnected = True
679 if not alreadyConnected:
680 positionerList.append(nim)
681 return positionerList
683 def getNimConfig(self, slotid):
684 return config.Nims[slotid]
686 def getSatName(self, pos):
687 for sat in self.satList:
692 def getSatList(self):
695 def getSatListForNim(self, slotid):
697 if self.nim_slots[slotid].isCompatible("DVB-S"):
698 nim = config.Nims[slotid]
699 #print "slotid:", slotid
701 #print "self.satellites:", self.satList[config.Nims[slotid].diseqcA.index]
702 #print "diseqcA:", config.Nims[slotid].diseqcA.value
703 configMode = nim.configMode.value
705 if configMode == "equal":
706 slotid = int(nim.connectedTo.value)
707 nim = config.Nims[slotid]
708 configMode = nim.configMode.value
709 elif configMode == "loopthrough":
710 slotid = self.sec.getRoot(slotid, int(nim.connectedTo.value))
711 nim = config.Nims[slotid]
712 configMode = nim.configMode.value
714 if configMode == "simple":
715 dm = nim.diseqcMode.value
716 if dm in ["single", "toneburst_a_b", "diseqc_a_b", "diseqc_a_b_c_d"]:
717 list.append(self.satList[nim.diseqcA.index])
718 if dm in ["toneburst_a_b", "diseqc_a_b", "diseqc_a_b_c_d"]:
719 list.append(self.satList[nim.diseqcB.index])
720 if dm == "diseqc_a_b_c_d":
721 list.append(self.satList[nim.diseqcC.index])
722 list.append(self.satList[nim.diseqcD.index])
723 if dm == "positioner":
724 for x in self.satList:
726 elif configMode == "advanced":
727 for x in self.satList:
728 if int(nim.advanced.sat[x[0]].lnb.value) != 0:
732 def getRotorSatListForNim(self, slotid):
734 if self.nim_slots[slotid].isCompatible("DVB-S"):
735 #print "slotid:", slotid
736 #print "self.satellites:", self.satList[config.Nims[slotid].diseqcA.value]
737 #print "diseqcA:", config.Nims[slotid].diseqcA.value
738 configMode = config.Nims[slotid].configMode.value
739 if configMode == "simple":
740 if config.Nims[slotid].diseqcMode.value == "positioner":
741 for x in self.satList:
743 elif configMode == "advanced":
744 for x in self.satList:
745 nim = config.Nims[slotid]
746 lnbnum = int(nim.advanced.sat[x[0]].lnb.value)
748 lnb = nim.advanced.lnb[lnbnum]
749 if lnb.diseqcMode.value == "1_2":
754 config.sec = ConfigSubsection()
756 x = ConfigInteger(default=15, limits = (0, 9999))
757 x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_CONT_TONE, configElement.value))
758 config.sec.delay_after_continuous_tone_change = x
760 x = ConfigInteger(default=10, limits = (0, 9999))
761 x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_FINAL_VOLTAGE_CHANGE, configElement.value))
762 config.sec.delay_after_final_voltage_change = x
764 x = ConfigInteger(default=120, limits = (0, 9999))
765 x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_BETWEEN_DISEQC_REPEATS, configElement.value))
766 config.sec.delay_between_diseqc_repeats = x
768 x = ConfigInteger(default=50, limits = (0, 9999))
769 x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_LAST_DISEQC_CMD, configElement.value))
770 config.sec.delay_after_last_diseqc_command = x
772 x = ConfigInteger(default=50, limits = (0, 9999))
773 x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_TONEBURST, configElement.value))
774 config.sec.delay_after_toneburst = x
776 x = ConfigInteger(default=20, limits = (0, 9999))
777 x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_SWITCH_CMDS, configElement.value))
778 config.sec.delay_after_change_voltage_before_switch_command = x
780 x = ConfigInteger(default=200, limits = (0, 9999))
781 x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_SWITCH_CMDS, configElement.value))
782 config.sec.delay_after_enable_voltage_before_switch_command = x
784 x = ConfigInteger(default=700, limits = (0, 9999))
785 x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_BETWEEN_SWITCH_AND_MOTOR_CMD, configElement.value))
786 config.sec.delay_between_switch_and_motor_command = x
788 x = ConfigInteger(default=500, limits = (0, 9999))
789 x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER, configElement.value))
790 config.sec.delay_after_voltage_change_before_measure_idle_inputpower = x
792 x = ConfigInteger(default=750, limits = (0, 9999))
793 x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_MOTOR_CMD, configElement.value))
794 config.sec.delay_after_enable_voltage_before_motor_command = x
796 x = ConfigInteger(default=500, limits = (0, 9999))
797 x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_MOTOR_STOP_CMD, configElement.value))
798 config.sec.delay_after_motor_stop_command = x
800 x = ConfigInteger(default=500, limits = (0, 9999))
801 x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MOTOR_CMD, configElement.value))
802 config.sec.delay_after_voltage_change_before_motor_command = x
804 x = ConfigInteger(default=360, limits = (0, 9999))
805 x.addNotifier(lambda configElement: secClass.setParam(secClass.MOTOR_RUNNING_TIMEOUT, configElement.value))
806 config.sec.motor_running_timeout = x
808 x = ConfigInteger(default=1, limits = (0, 5))
809 x.addNotifier(lambda configElement: secClass.setParam(secClass.MOTOR_COMMAND_RETRIES, configElement.value))
810 config.sec.motor_command_retries = x
812 # TODO add support for satpos depending nims to advanced nim configuration
813 # so a second/third/fourth cable from a motorized lnb can used behind a
814 # diseqc 1.0 / diseqc 1.1 / toneburst switch
815 # the C(++) part should can handle this
816 # the configElement should be only visible when diseqc 1.2 is disabled
818 def InitNimManager(nimmgr):
821 config.Nims = ConfigSubList()
822 for x in range(len(nimmgr.nim_slots)):
823 config.Nims.append(ConfigSubsection())
825 for slot in nimmgr.nim_slots:
829 if slot.isCompatible("DVB-S"):
830 choices = { "nothing": _("nothing connected"),
831 "simple": _("simple"),
832 "advanced": _("advanced")}
833 if len(nimmgr.getNimListOfType(slot.type, exception = x)) > 0:
834 choices["equal"] = _("equal to")
835 choices["satposdepends"] = _("second cable of motorized LNB")
836 if len(nimmgr.canConnectTo(x)) > 0:
837 choices["loopthrough"] = _("loopthrough to")
838 nim.configMode = ConfigSelection(choices = choices, default = "nothing")
840 #important - check if just the 2nd one is LT only and the first one is DVB-S
841 # CHECKME: is this logic correct for >2 slots?
842 # if nim.configMode.value in ["loopthrough", "satposdepends", "equal"]:
843 # if x == 0: # first one can never be linked to anything
845 # nim.configMode.value = "simple"
846 # nim.configMode.save()
848 #FIXME: make it better
849 for y in nimmgr.nim_slots:
851 if not y.isCompatible("DVB-S"):
853 nim.configMode.value = "simple"
854 nim.configMode.save()
856 nim.diseqcMode = ConfigSelection(
858 ("single", _("Single")),
859 ("toneburst_a_b", _("Toneburst A/B")),
860 ("diseqc_a_b", _("DiSEqC A/B")),
861 ("diseqc_a_b_c_d", _("DiSEqC A/B/C/D")),
862 ("positioner", _("Positioner"))],
863 default = "diseqc_a_b")
866 for id in nimmgr.getNimListOfType("DVB-S"):
868 choices.append((str(id), nimmgr.getNimDescription(id)))
869 nim.connectedTo = ConfigSelection(choices = choices)
870 nim.diseqcA = getConfigSatlist(192, nimmgr.satList)
871 nim.diseqcB = getConfigSatlist(130, nimmgr.satList)
872 nim.diseqcC = ConfigSatlist(list = nimmgr.satList)
873 nim.diseqcD = ConfigSatlist(list = nimmgr.satList)
874 nim.positionerMode = ConfigSelection(
876 ("usals", _("USALS")),
877 ("manual", _("manual"))],
879 nim.longitude = ConfigFloat(default=[5,100], limits=[(0,359),(0,999)])
880 nim.longitudeOrientation = ConfigSelection(choices={"east": _("East"), "west": _("West")}, default = "east")
881 nim.latitude = ConfigFloat(default=[50,767], limits=[(0,359),(0,999)])
882 nim.latitudeOrientation = ConfigSelection(choices={"north": _("North"), "south": _("South")}, default="north")
883 nim.powerMeasurement = ConfigYesNo(default=True)
884 nim.powerThreshold = ConfigInteger(default=50, limits=(0, 100))
885 nim.turningSpeed = ConfigSelection(choices = [("fast", _("Fast")), ("slow", _("Slow")), ("fast epoch", _("Fast epoch")) ], default = "fast")
886 btime = datetime(1970, 1, 1, 7, 0);
887 nim.fastTurningBegin = ConfigDateTime(default = mktime(btime.timetuple()), formatstring = _("%H:%M"), increment = 900)
888 etime = datetime(1970, 1, 1, 19, 0);
889 nim.fastTurningEnd = ConfigDateTime(default = mktime(etime.timetuple()), formatstring = _("%H:%M"), increment = 900)
892 nim.advanced = ConfigSubsection()
893 tmp = [(3601, _('All Satellites 1'), 1), (3602, _('All Satellites 2'), 1), (3603, _('All Satellites 3'), 1), (3604, _('All Satellites 4'), 1)]
894 nim.advanced.sats = getConfigSatlist(192,nimmgr.satList+tmp)
895 nim.advanced.sat = ConfigSubDict()
896 lnbs = [("0", "not available")]
897 for y in range(1, 125):
898 lnbs.append((str(y), "LNB " + str(y)))
900 for x in nimmgr.satList:
901 nim.advanced.sat[x[0]] = ConfigSubsection()
902 nim.advanced.sat[x[0]].voltage = ConfigSelection(choices={"polarization": _("Polarization"), "13V": _("13 V"), "18V": _("18 V")}, default = "polarization")
903 nim.advanced.sat[x[0]].tonemode = ConfigSelection(choices={"band": _("Band"), "on": _("On"), "off": _("Off")}, default = "band")
904 nim.advanced.sat[x[0]].usals = ConfigYesNo(default=True)
905 nim.advanced.sat[x[0]].rotorposition = ConfigInteger(default=1, limits=(1, 255))
906 nim.advanced.sat[x[0]].lnb = ConfigSelection(choices = lnbs)
908 for x in range(3601, 3605):
909 nim.advanced.sat[x] = ConfigSubsection()
910 nim.advanced.sat[x].voltage = ConfigSelection(choices={"polarization": _("Polarization"), "13V": _("13 V"), "18V": _("18 V")}, default = "polarization")
911 nim.advanced.sat[x].tonemode = ConfigSelection(choices={"band": _("Band"), "on": _("On"), "off": _("Off")}, default = "band")
912 nim.advanced.sat[x].usals = ConfigYesNo(default=True)
913 nim.advanced.sat[x].rotorposition = ConfigInteger(default=1, limits=(1, 255))
915 nim.advanced.sat[x].lnb = ConfigSelection(choices = [("0", "not available"), (str(lnbnum), "LNB %d"%(lnbnum))], default="0")
917 csw = [("none", _("None")), ("AA", _("AA")), ("AB", _("AB")), ("BA", _("BA")), ("BB", _("BB"))]
918 for y in range(0, 16):
919 csw.append((str(0xF0|y), "Input " + str(y+1)))
921 ucsw = [("0", _("None"))]
922 for y in range(1, 17):
923 ucsw.append((str(y), "Input " + str(y)))
925 nim.advanced.lnb = ConfigSubList()
926 nim.advanced.lnb.append(ConfigNothing())
927 for x in range(1, 129):
928 nim.advanced.lnb.append(ConfigSubsection())
929 nim.advanced.lnb[x].lof = ConfigSelection(choices={"universal_lnb": _("Universal LNB"), "c_band": _("C-Band"), "user_defined": _("User defined")}, default="universal_lnb")
930 nim.advanced.lnb[x].lofl = ConfigInteger(default=9750, limits = (0, 99999))
931 nim.advanced.lnb[x].lofh = ConfigInteger(default=10600, limits = (0, 99999))
932 nim.advanced.lnb[x].threshold = ConfigInteger(default=11700, limits = (0, 99999))
933 # nim.advanced.lnb[x].output_12v = ConfigSelection(choices = [("0V", _("0 V")), ("12V", _("12 V"))], default="0V")
934 nim.advanced.lnb[x].increased_voltage = ConfigYesNo(default=False)
935 nim.advanced.lnb[x].toneburst = ConfigSelection(choices = [("none", _("None")), ("A", _("A")), ("B", _("B"))], default = "none")
937 nim.advanced.lnb[x].diseqcMode = ConfigSelection(choices = [("1_2", _("1.2"))], default = "1_2")
939 nim.advanced.lnb[x].diseqcMode = ConfigSelection(choices = [("none", _("None")), ("1_0", _("1.0")), ("1_1", _("1.1")), ("1_2", _("1.2"))], default = "none")
940 nim.advanced.lnb[x].commitedDiseqcCommand = ConfigSelection(choices = csw)
941 nim.advanced.lnb[x].fastDiseqc = ConfigYesNo(default=False)
942 nim.advanced.lnb[x].sequenceRepeat = ConfigYesNo(default=False)
943 nim.advanced.lnb[x].commandOrder1_0 = ConfigSelection(choices = [("ct", "committed, toneburst"), ("tc", "toneburst, committed")], default = "ct")
944 nim.advanced.lnb[x].commandOrder = ConfigSelection(choices = [
945 ("ct", "committed, toneburst"),
946 ("tc", "toneburst, committed"),
947 ("cut", "committed, uncommitted, toneburst"),
948 ("tcu", "toneburst, committed, uncommitted"),
949 ("uct", "uncommitted, committed, toneburst"),
950 ("tuc", "toneburst, uncommitted, commmitted")],
952 nim.advanced.lnb[x].uncommittedDiseqcCommand = ConfigSelection(choices = ucsw)
953 nim.advanced.lnb[x].diseqcRepeats = ConfigSelection(choices = [("none", _("None")), ("one", _("One")), ("two", _("Two")), ("three", _("Three"))], default = "none")
954 nim.advanced.lnb[x].longitude = ConfigFloat(default = [5,100], limits = [(0,359),(0,999)])
955 nim.advanced.lnb[x].longitudeOrientation = ConfigSelection(choices = [("east", _("East")), ("west", _("West"))], default = "east")
956 nim.advanced.lnb[x].latitude = ConfigFloat(default = [50,767], limits = [(0,359),(0,999)])
957 nim.advanced.lnb[x].latitudeOrientation = ConfigSelection(choices = [("north", _("North")), ("south", _("South"))], default = "north")
958 nim.advanced.lnb[x].powerMeasurement = ConfigYesNo(default=True)
959 nim.advanced.lnb[x].powerThreshold = ConfigInteger(default=50, limits=(0, 100))
960 nim.advanced.lnb[x].turningSpeed = ConfigSelection(choices = [("fast", _("Fast")), ("slow", _("Slow")), ("fast epoch", _("Fast epoch"))], default = "fast")
961 btime = datetime(1970, 1, 1, 7, 0);
962 nim.advanced.lnb[x].fastTurningBegin = ConfigDateTime(default=mktime(btime.timetuple()), formatstring = _("%H:%M"), increment = 600)
963 etime = datetime(1970, 1, 1, 19, 0);
964 nim.advanced.lnb[x].fastTurningEnd = ConfigDateTime(default=mktime(etime.timetuple()), formatstring = _("%H:%M"), increment = 600)
965 elif slot.isCompatible("DVB-C"):
966 nim.configMode = ConfigSelection(
968 "enabled": _("enabled"),
969 "nothing": _("nothing connected"),
974 for x in nimmgr.cablesList:
975 list.append((str(n), x[0]))
977 nim.cable = ConfigSubsection()
978 possible_scan_types = [("bands", _("Frequency bands")), ("steps", _("Frequency steps"))]
980 possible_scan_types.append(("provider", _("Provider")))
981 nim.cable.scan_provider = ConfigSelection(default = "0", choices = list)
982 nim.cable.scan_type = ConfigSelection(default = "bands", choices = possible_scan_types)
983 nim.cable.scan_band_EU_VHF_I = ConfigYesNo(default = True)
984 nim.cable.scan_band_EU_MID = ConfigYesNo(default = True)
985 nim.cable.scan_band_EU_VHF_III = ConfigYesNo(default = True)
986 nim.cable.scan_band_EU_UHF_IV = ConfigYesNo(default = True)
987 nim.cable.scan_band_EU_UHF_V = ConfigYesNo(default = True)
988 nim.cable.scan_band_EU_SUPER = ConfigYesNo(default = True)
989 nim.cable.scan_band_EU_HYPER = ConfigYesNo(default = True)
990 nim.cable.scan_band_US_LOW = ConfigYesNo(default = False)
991 nim.cable.scan_band_US_MID = ConfigYesNo(default = False)
992 nim.cable.scan_band_US_HIGH = ConfigYesNo(default = False)
993 nim.cable.scan_band_US_SUPER = ConfigYesNo(default = False)
994 nim.cable.scan_band_US_HYPER = ConfigYesNo(default = False)
995 nim.cable.scan_frequency_steps = ConfigInteger(default = 1000, limits = (1000, 10000))
996 nim.cable.scan_mod_qam16 = ConfigYesNo(default = False)
997 nim.cable.scan_mod_qam32 = ConfigYesNo(default = False)
998 nim.cable.scan_mod_qam64 = ConfigYesNo(default = True)
999 nim.cable.scan_mod_qam128 = ConfigYesNo(default = False)
1000 nim.cable.scan_mod_qam256 = ConfigYesNo(default = True)
1001 nim.cable.scan_sr_6900 = ConfigYesNo(default = True)
1002 nim.cable.scan_sr_6875 = ConfigYesNo(default = True)
1003 nim.cable.scan_sr_ext1 = ConfigInteger(default = 0, limits = (0, 7230))
1004 nim.cable.scan_sr_ext2 = ConfigInteger(default = 0, limits = (0, 7230))
1005 elif slot.isCompatible("DVB-T"):
1006 nim.configMode = ConfigSelection(
1008 "enabled": _("enabled"),
1009 "nothing": _("nothing connected"),
1011 default = "enabled")
1014 for x in nimmgr.terrestrialsList:
1015 list.append((str(n), x[0]))
1017 nim.terrestrial = ConfigSelection(choices = list)
1018 nim.terrestrial_5V = ConfigOnOff()
1020 nim.configMode = ConfigSelection(choices = { "nothing": _("disabled") }, default="nothing");
1021 print "pls add support for this frontend type!"
1024 nimmgr.sec = SecConfigure(nimmgr)
1026 nimmanager = NimManager()