First Extras-Testing Candidate Release
[pierogi] / pirkeysetmanager.cpp
1 #include "pirkeysetmanager.h"
2
3 #include "pirkeysetmetadata.h"
4 #include "pirselectkeysetform.h"
5 #include "pirkeysetwidgetitem.h"
6
7 #include "keysets/acer.h"
8 #include "keysets/aiwa.h"
9 #include "keysets/apple.h"
10 #include "keysets/bose.h"
11 #include "keysets/denon.h"
12 #include "keysets/ei.h"
13 #include "keysets/elgato.h"
14 #include "keysets/goldstar.h"
15 #include "keysets/hauppauge.h"
16 #include "keysets/hitachi.h"
17 #include "keysets/jvc.h"
18 #include "keysets/lg.h"
19 #include "keysets/magnavox.h"
20 #include "keysets/mce.h"
21 #include "keysets/mitsubishi.h"
22 #include "keysets/nokia.h"
23 #include "keysets/panasonic.h"
24 #include "keysets/philips.h"
25 #include "keysets/pinnacle.h"
26 #include "keysets/pioneer.h"
27 #include "keysets/raite.h"
28 #include "keysets/rca.h"
29 #include "keysets/sagem.h"
30 #include "keysets/samsung.h"
31 #include "keysets/sanyo.h"
32 #include "keysets/sharp.h"
33 #include "keysets/sony.h"
34 #include "keysets/tivo.h"
35 #include "keysets/toshiba.h"
36 #include "keysets/westinghouse.h"
37 #include "keysets/yamaha.h"
38 #include "keysets/zenith.h"
39
40 #include "pirexception.h"
41
42 // I'll be handling the threading of the keyset commands in this object:
43 #include <QMutex>
44
45 // Global communications mechanism:
46 extern bool stopRepeatingFlag;
47 extern QMutex stopRepeatingMutex;
48
49 // Global helper objects:
50 PIRMakeMgr makeManager;
51 PIRDeviceTypeMgr deviceManager;
52
53 // Now, on to the actual method definitions:
54
55 PIRKeysetManager::PIRKeysetManager(
56   QObject *guiObject)
57   : counter(0)
58 {
59   // Create the keysets.  Ugly!  This needs to be worked on!
60   populateKeyset(new AcerTV1(guiObject, counter++));
61   populateKeyset(new AcerPC1(guiObject, counter++));
62
63   populateKeyset(new AiwaVCR1(guiObject, counter++));
64   populateKeyset(new AiwaVCR2(guiObject, counter++));
65   populateKeyset(new AiwaVCR3(guiObject, counter++));
66   populateKeyset(new AiwaAudio1(guiObject, counter++));
67   populateKeyset(new AiwaAudio1a(guiObject, counter++));
68   populateKeyset(new AiwaAudio2(guiObject, counter++));
69   populateKeyset(new AiwaAudio2a(guiObject, counter++));
70   populateKeyset(new AiwaAudio2b(guiObject, counter++));
71   populateKeyset(new AiwaAudio2c(guiObject, counter++));
72   populateKeyset(new AiwaAudio3(guiObject, counter++));
73   populateKeyset(new AiwaAudio4(guiObject, counter++));
74   populateKeyset(new AiwaAudio5(guiObject, counter++));
75   populateKeyset(new AiwaAudio6(guiObject, counter++));
76   populateKeyset(new AiwaCarStereo1(guiObject, counter++));
77   populateKeyset(new AiwaDVD1(guiObject, counter++));
78
79   populateKeyset(new AppleWhiteRemote(guiObject, counter++));
80
81   populateKeyset(new BoseRadio1(guiObject, counter++));
82   populateKeyset(new BoseRadio2(guiObject, counter++));
83   populateKeyset(new BoseRadio3(guiObject, counter++));
84
85   populateKeyset(new DenonDVD1(guiObject, counter++));
86   populateKeyset(new DenonDVD2(guiObject, counter++));
87   populateKeyset(new DenonDVD3(guiObject, counter++));
88   populateKeyset(new DenonReceiver1(guiObject, counter++));
89   populateKeyset(new DenonReceiver1a(guiObject, counter++));
90   populateKeyset(new DenonReceiver1b(guiObject, counter++));
91   populateKeyset(new DenonReceiver1c(guiObject, counter++));
92   populateKeyset(new DenonReceiver1d(guiObject, counter++));
93   populateKeyset(new DenonReceiver1e(guiObject, counter++));
94   populateKeyset(new DenonReceiver1f(guiObject, counter++));
95   populateKeyset(new DenonReceiver2(guiObject, counter++));
96   populateKeyset(new DenonReceiver2a(guiObject, counter++));
97   populateKeyset(new DenonReceiver3(guiObject, counter++));
98   populateKeyset(new DenonAudio1(guiObject, counter++));
99   populateKeyset(new DenonAudio1a(guiObject, counter++));
100   populateKeyset(new DenonAudio1b(guiObject, counter++));
101   populateKeyset(new DenonAudio1c(guiObject, counter++));
102   populateKeyset(new DenonAudio1d(guiObject, counter++));
103   populateKeyset(new DenonAudio2(guiObject, counter++));
104   populateKeyset(new DenonAudio3(guiObject, counter++));
105   populateKeyset(new DenonAudio4(guiObject, counter++));
106
107   populateKeyset(new EiTV1(guiObject, counter++));
108
109   populateKeyset(new ElgatoEyeTV1(guiObject, counter++));
110
111   populateKeyset(new GoldStarTV1(guiObject, counter++));
112   populateKeyset(new GoldStarTV2(guiObject, counter++));
113   populateKeyset(new GoldStarVCR1(guiObject, counter++));
114   populateKeyset(new GoldStarVCR1a(guiObject, counter++));
115   populateKeyset(new GoldStarVCR1b(guiObject, counter++));
116   populateKeyset(new GoldStarVCR1c(guiObject, counter++));
117   populateKeyset(new GoldStarCD1(guiObject, counter++));
118
119   populateKeyset(new HauppaugePCTV1(guiObject, counter++));
120   populateKeyset(new HauppaugePCTV1a(guiObject, counter++));
121   populateKeyset(new HauppaugePCTV1b(guiObject, counter++));
122   populateKeyset(new HauppaugePCTV1c(guiObject, counter++));
123   populateKeyset(new HauppaugePCTV2(guiObject, counter++));
124
125   populateKeyset(new HitachiTV1(guiObject, counter++));
126   populateKeyset(new HitachiTV1a(guiObject, counter++));
127   populateKeyset(new HitachiTV1b(guiObject, counter++));
128   populateKeyset(new HitachiTV1c(guiObject, counter++));
129   populateKeyset(new HitachiTV2(guiObject, counter++));
130   populateKeyset(new HitachiTV3(guiObject, counter++));
131   populateKeyset(new HitachiProjector(guiObject, counter++));
132   populateKeyset(new HitachiDVD1(guiObject, counter++));
133   populateKeyset(new HitachiAudio1(guiObject, counter++));
134   populateKeyset(new HitachiVCR1(guiObject, counter++));
135
136   populateKeyset(new JVCSat1(guiObject, counter++));
137   populateKeyset(new JVCSat2(guiObject, counter++));
138   populateKeyset(new JVCVCR1(guiObject, counter++));
139   populateKeyset(new JVCVCR1a(guiObject, counter++));
140   populateKeyset(new JVCVCRBmode1(guiObject, counter++));
141   populateKeyset(new JVCVCRBmode1a(guiObject, counter++));
142   populateKeyset(new JVCTV1(guiObject, counter++));
143   populateKeyset(new JVCTV1a(guiObject, counter++));
144   populateKeyset(new JVCTV1b(guiObject, counter++));
145   populateKeyset(new JVCTV1c(guiObject, counter++));
146   populateKeyset(new JVCTV1d(guiObject, counter++));
147   populateKeyset(new JVCDAT1(guiObject, counter++));
148   populateKeyset(new JVCCarDeck1(guiObject, counter++));
149   populateKeyset(new JVCAudio1(guiObject, counter++));
150   populateKeyset(new JVCAudio1a(guiObject, counter++));
151   populateKeyset(new JVCAudio1b(guiObject, counter++));
152   populateKeyset(new JVCAudio2(guiObject, counter++));
153   populateKeyset(new JVCDVD1(guiObject, counter++));
154
155   populateKeyset(new LGTV1(guiObject, counter++));
156   populateKeyset(new LGTV1a(guiObject, counter++));
157   populateKeyset(new LGTV1b(guiObject, counter++));
158   populateKeyset(new LGTV1c(guiObject, counter++));
159   populateKeyset(new LGTV2(guiObject, counter++));
160   populateKeyset(new LGTV2a(guiObject, counter++));
161   populateKeyset(new LGTV2b(guiObject, counter++));
162 //  populateKeyset(new LGDisc1(guiObject, counter++));
163 //  populateKeyset(new LGDisc2(guiObject, counter++));
164 //  populateKeyset(new LGDisc2a(guiObject, counter++));
165   populateKeyset(new LGVCR1(guiObject, counter++));
166   populateKeyset(new LGVCR1a(guiObject, counter++));
167   populateKeyset(new LGVCR1b(guiObject, counter++));
168
169   populateKeyset(new MagnavoxDVD1(guiObject, counter++));
170   populateKeyset(new MagnavoxVCR1(guiObject, counter++));
171   populateKeyset(new MagnavoxConverterBox1(guiObject, counter++));
172   populateKeyset(new MagnavoxTV1(guiObject, counter++));
173
174   populateKeyset(new MCERemote1(guiObject, counter++));
175   populateKeyset(new MCERemote1a(guiObject, counter++));
176   populateKeyset(new MCERemote1b(guiObject, counter++));
177   populateKeyset(new MCERemote1c(guiObject, counter++));
178   populateKeyset(new MCERemote1d(guiObject, counter++));
179   populateKeyset(new MCERemote1e(guiObject, counter++));
180   populateKeyset(new MCERemote1f(guiObject, counter++));
181   populateKeyset(new MCERemote1g(guiObject, counter++));
182
183   populateKeyset(new MitsubishiTV1(guiObject, counter++));
184   populateKeyset(new MitsubishiTV1a(guiObject, counter++));
185   populateKeyset(new MitsubishiVCR1(guiObject, counter++));
186   populateKeyset(new MitsubishiVCR1a(guiObject, counter++));
187
188   populateKeyset(new NokiaGenericVCR(guiObject, counter++));
189
190   populateKeyset(new PanasonicCarAudio(guiObject, counter++));
191   populateKeyset(new PanasonicSat1(guiObject, counter++));
192   populateKeyset(new PanasonicSat1a(guiObject, counter++));
193   populateKeyset(new PanasonicTV1(guiObject, counter++));
194   populateKeyset(new PanasonicTV1a(guiObject, counter++));
195   populateKeyset(new PanasonicTV1b(guiObject, counter++));
196   populateKeyset(new PanasonicVCR1(guiObject, counter++));
197   populateKeyset(new PanasonicVCR1a(guiObject, counter++));
198   populateKeyset(new PanasonicVCR1b(guiObject, counter++));
199   populateKeyset(new PanasonicVCR1c(guiObject, counter++));
200   populateKeyset(new PanasonicDVD1(guiObject, counter++));
201   populateKeyset(new PanasonicDVD1a(guiObject, counter++));
202   populateKeyset(new PanasonicAudio1(guiObject, counter++));
203
204   populateKeyset(new PhilipsTV1(guiObject, counter++));
205   populateKeyset(new PhilipsTV1a(guiObject, counter++));
206   populateKeyset(new PhilipsTV1b(guiObject, counter++));
207   populateKeyset(new PhilipsTV1c(guiObject, counter++));
208   populateKeyset(new PhilipsTV1d(guiObject, counter++));
209   populateKeyset(new PhilipsTV1e(guiObject, counter++));
210   populateKeyset(new PhilipsTV1f(guiObject, counter++));
211   populateKeyset(new PhilipsTV2(guiObject, counter++));
212   populateKeyset(new PhilipsTV2a(guiObject, counter++));
213   populateKeyset(new PhilipsTV2b(guiObject, counter++));
214   populateKeyset(new PhilipsTV3(guiObject, counter++));
215   populateKeyset(new PhilipsDVD1(guiObject, counter++));
216   populateKeyset(new PhilipsDVD1a(guiObject, counter++));
217   populateKeyset(new PhilipsDVD1b(guiObject, counter++));
218   populateKeyset(new PhilipsDVD1c(guiObject, counter++));
219   populateKeyset(new PhilipsDVD1d(guiObject, counter++));
220   populateKeyset(new PhilipsDVD2(guiObject, counter++));
221   populateKeyset(new PhilipsDVD3(guiObject, counter++));
222   populateKeyset(new PhilipsDVD4(guiObject, counter++));
223   populateKeyset(new PhilipsVCR1(guiObject, counter++));
224   populateKeyset(new PhilipsVCR1a(guiObject, counter++));
225   populateKeyset(new PhilipsVCR1b(guiObject, counter++));
226   populateKeyset(new PhilipsVCR1c(guiObject, counter++));
227   populateKeyset(new PhilipsSat1(guiObject, counter++));
228   populateKeyset(new PhilipsSat2(guiObject, counter++));
229   populateKeyset(new PhilipsSat2a(guiObject, counter++));
230   populateKeyset(new PhilipsSat3(guiObject, counter++));
231   populateKeyset(new PhilipsAudio1(guiObject, counter++));
232   populateKeyset(new PhilipsAudio1a(guiObject, counter++));
233   populateKeyset(new PhilipsAudio1b(guiObject, counter++));
234   populateKeyset(new PhilipsAudio2(guiObject, counter++));
235   populateKeyset(new PhilipsAudio3(guiObject, counter++));
236   populateKeyset(new PhilipsAudio4(guiObject, counter++));
237
238   populateKeyset(new PinnaclePCTV1(guiObject, counter++));
239   populateKeyset(new PinnaclePCTV2(guiObject, counter++));
240   populateKeyset(new PinnaclePCTV3(guiObject, counter++));
241
242   populateKeyset(new PioneerTV1(guiObject, counter++));
243   populateKeyset(new PioneerTV2(guiObject, counter++));
244   populateKeyset(new PioneerTV3(guiObject, counter++));
245   populateKeyset(new PioneerAudio1(guiObject, counter++));
246   populateKeyset(new PioneerAudio1a(guiObject, counter++));
247   populateKeyset(new PioneerAudio2(guiObject, counter++));
248   populateKeyset(new PioneerAudio3(guiObject, counter++));
249   populateKeyset(new PioneerAudio4(guiObject, counter++));
250   populateKeyset(new PioneerAudio5(guiObject, counter++));
251   populateKeyset(new PioneerCD1(guiObject, counter++));
252   populateKeyset(new PioneerLaserDisc1(guiObject, counter++));
253   populateKeyset(new PioneerDVD1(guiObject, counter++));
254
255   populateKeyset(new RaiteDVD1(guiObject, counter++));
256
257   populateKeyset(new RCATV1(guiObject, counter++));
258   populateKeyset(new RCATV1a(guiObject, counter++));
259   populateKeyset(new RCATV1b(guiObject, counter++));
260 /*
261   populateKeyset(new RCAAux1(guiObject, counter++));
262   populateKeyset(new RCAAux2(guiObject, counter++));
263   populateKeyset(new RCAAux2a(guiObject, counter++));
264 */
265   populateKeyset(new RCAVCR1(guiObject, counter++));
266   populateKeyset(new RCAVCR1a(guiObject, counter++));
267   populateKeyset(new RCADVD1(guiObject, counter++));
268   populateKeyset(new RCADVD1a(guiObject, counter++));
269   populateKeyset(new RCASat1(guiObject, counter++));
270   populateKeyset(new RCASat2(guiObject, counter++));
271
272   populateKeyset(new SagemTVBox1(guiObject, counter++));
273   populateKeyset(new SagemTVBox1a(guiObject, counter++));
274
275   populateKeyset(new SamsungTV1(guiObject, counter++));
276   populateKeyset(new SamsungTV1a(guiObject, counter++));
277   populateKeyset(new SamsungTV1b(guiObject, counter++));
278   populateKeyset(new SamsungTV1c(guiObject, counter++));
279   populateKeyset(new SamsungTV1d(guiObject, counter++));
280   populateKeyset(new SamsungTV1e(guiObject, counter++));
281   populateKeyset(new SamsungTV1f(guiObject, counter++));
282   populateKeyset(new SamsungTV2(guiObject, counter++));
283   populateKeyset(new SamsungTV2a(guiObject, counter++));
284   populateKeyset(new SamsungVCR1(guiObject, counter++));
285   populateKeyset(new SamsungVCR1a(guiObject, counter++));
286   populateKeyset(new SamsungVCR1b(guiObject, counter++));
287   populateKeyset(new SamsungVCR1c(guiObject, counter++));
288   populateKeyset(new SamsungVCR1d(guiObject, counter++));
289   populateKeyset(new SamsungVCR1e(guiObject, counter++));
290   populateKeyset(new SamsungDVD1(guiObject, counter++));
291   populateKeyset(new SamsungDVD1a(guiObject, counter++));
292   populateKeyset(new SamsungDVD1b(guiObject, counter++));
293   populateKeyset(new SamsungDVD2(guiObject, counter++));
294   populateKeyset(new SamsungAC1(guiObject, counter++));
295
296   populateKeyset(new SanyoVCR1(guiObject, counter++));
297   populateKeyset(new SanyoDVD1(guiObject, counter++));
298   populateKeyset(new SanyoTV1(guiObject, counter++));
299   populateKeyset(new SanyoTV1a(guiObject, counter++));
300   populateKeyset(new SanyoTV1b(guiObject, counter++));
301   populateKeyset(new SanyoTV1c(guiObject, counter++));
302   populateKeyset(new SanyoTV1d(guiObject, counter++));
303   populateKeyset(new SanyoProjector(guiObject, counter++));
304
305   populateKeyset(new SharpTV1(guiObject, counter++));
306   populateKeyset(new SharpTV1a(guiObject, counter++));
307   populateKeyset(new SharpTV1b(guiObject, counter++));
308   populateKeyset(new SharpTV1c(guiObject, counter++));
309   populateKeyset(new SharpTV1d(guiObject, counter++));
310   populateKeyset(new SharpTV1e(guiObject, counter++));
311   populateKeyset(new SharpVCR1(guiObject, counter++));
312   populateKeyset(new SharpReceiver1(guiObject, counter++));
313
314   populateKeyset(new SonyTV1(guiObject, counter++));
315   populateKeyset(new SonyTV1a(guiObject, counter++));
316   populateKeyset(new SonyTV1b(guiObject, counter++));
317   populateKeyset(new SonyTV1c(guiObject, counter++));
318   populateKeyset(new SonyAmp1(guiObject, counter++));
319   populateKeyset(new SonyAmp2(guiObject, counter++));
320   populateKeyset(new SonyAudio1(guiObject, counter++));
321   populateKeyset(new SonyAudio1a(guiObject, counter++));
322   populateKeyset(new SonyDAT1(guiObject, counter++));
323   populateKeyset(new SonyDVD1(guiObject, counter++));
324   populateKeyset(new SonyDVD1a(guiObject, counter++));
325   populateKeyset(new SonyDVD1b(guiObject, counter++));
326   populateKeyset(new SonyDVD1c(guiObject, counter++));
327   populateKeyset(new SonyVCR1(guiObject, counter++));
328   populateKeyset(new SonyVCR1a(guiObject, counter++));
329   populateKeyset(new SonyVCR1b(guiObject, counter++));
330   populateKeyset(new SonyReceiver1(guiObject, counter++));
331
332   populateKeyset(new Tivo1(guiObject, counter++));
333   populateKeyset(new Tivo1a(guiObject, counter++));
334   populateKeyset(new Tivo1b(guiObject, counter++));
335   populateKeyset(new Tivo1c(guiObject, counter++));
336   populateKeyset(new Tivo1d(guiObject, counter++));
337
338   populateKeyset(new ToshibaTV1(guiObject, counter++));
339   populateKeyset(new ToshibaTV1a(guiObject, counter++));
340   populateKeyset(new ToshibaTV1b(guiObject, counter++));
341   populateKeyset(new ToshibaTV1c(guiObject, counter++));
342   populateKeyset(new ToshibaTV1d(guiObject, counter++));
343   populateKeyset(new ToshibaTV1e(guiObject, counter++));
344   populateKeyset(new ToshibaTV1f(guiObject, counter++));
345   populateKeyset(new ToshibaTV1g(guiObject, counter++));
346   populateKeyset(new ToshibaVCR1(guiObject, counter++));
347   populateKeyset(new ToshibaVCR1a(guiObject, counter++));
348   populateKeyset(new ToshibaDisc1(guiObject, counter++));
349   populateKeyset(new ToshibaDisc1a(guiObject, counter++));
350   populateKeyset(new ToshibaDisc1b(guiObject, counter++));
351   populateKeyset(new ToshibaDisc1c(guiObject, counter++));
352   populateKeyset(new ToshibaDisc1d(guiObject, counter++));
353
354   populateKeyset(new WestinghouseTV1(guiObject, counter++));
355   populateKeyset(new WestinghouseTV2(guiObject, counter++));
356
357   populateKeyset(new YamahaDVD1(guiObject, counter++));
358   populateKeyset(new YamahaDVD1a(guiObject, counter++));
359   populateKeyset(new YamahaAudio1(guiObject, counter++));
360   populateKeyset(new YamahaAudio1a(guiObject, counter++));
361   populateKeyset(new YamahaAudio2(guiObject, counter++));
362   populateKeyset(new YamahaAudio2a(guiObject, counter++));
363   populateKeyset(new YamahaAudio2b(guiObject, counter++));
364   populateKeyset(new YamahaAudio2c(guiObject, counter++));
365   populateKeyset(new YamahaAudio2d(guiObject, counter++));
366   populateKeyset(new YamahaAudio3(guiObject, counter++));
367   populateKeyset(new YamahaAudio4(guiObject, counter++));
368   populateKeyset(new YamahaTV1(guiObject, counter++));
369   populateKeyset(new YamahaKaraoke1(guiObject, counter++));
370
371   populateKeyset(new ZenithC32V37(guiObject, counter++));
372
373   // Start the thread running:
374   commandThread.start();
375 }
376
377
378 PIRKeysetManager::~PIRKeysetManager()
379 {
380   // Tell the keysets to stop doing any work:
381   {
382     QMutexLocker locker(&stopRepeatingMutex);
383     stopRepeatingFlag = true;
384   }
385
386   // Tell the thread that we want it to stop:
387   commandThread.exit();
388
389   // Wait for the thread to stop:
390   commandThread.wait();
391
392   // Delete all the keysets:
393   PIRKeysetCollection::iterator i = keysetsInfo.begin();
394   while (i != keysetsInfo.end())
395   {
396     if ((*i).second) delete (*i).second;
397     ++i;
398   }
399 }
400
401
402 bool PIRKeysetManager::keysetExists(
403   unsigned int keysetID) const
404 {
405   PIRKeysetCollection::const_iterator i = keysetsInfo.find(keysetID);
406
407   return (i != keysetsInfo.end());
408 }
409
410
411 bool PIRKeysetManager::findKeysetID(
412   QString make,
413   QString name,
414   unsigned int &id) const
415 {
416   // Only modify the id if we actually find a match!
417
418   PIRKeysetMakeIndex::const_iterator i = makeIndex.find(make);
419   if (i == makeIndex.end())
420   {
421     return false;
422   }
423
424   PIRKeysetNameIndex::const_iterator ii = (*i).second.find(name);
425   if (ii == (*i).second.end())
426   {
427     return false;
428   }
429
430   //  Ok, we've found it, pull out the id:
431   id = (*ii).second;
432   return true;
433 }
434
435
436 PIRKeysetWidgetItem *PIRKeysetManager::makeKeysetItem(
437   QString make,
438   QString name) const
439 {
440   unsigned int id;
441
442   if (!findKeysetID(make, name, id))
443   {
444     return NULL;
445   }
446
447   QString fullname = make;
448   fullname.append(" ");
449   fullname.append(name);
450
451   return new PIRKeysetWidgetItem(fullname, id, getMake(id));
452 }
453
454
455 bool PIRKeysetManager::hasKey(
456   unsigned int keysetID,
457   PIRKeyName name) const
458 {
459   PIRKeysetCollection::const_iterator i = keysetsInfo.find(keysetID);
460
461   if ((i == keysetsInfo.end()) || !i->second) return false;
462
463   return i->second->hasKey(name);
464 }
465
466
467 PIRMakeName PIRKeysetManager::getMake(
468   unsigned int keysetID) const
469 {
470   PIRKeysetCollection::const_iterator i = keysetsInfo.find(keysetID);
471
472   if ((i == keysetsInfo.end()) || !i->second) return Any_Make;
473
474   return i->second->getMake();
475 }
476
477
478 QString PIRKeysetManager::getDisplayName(
479   unsigned int keysetID) const
480 {
481   PIRKeysetCollection::const_iterator i = keysetsInfo.find(keysetID);
482
483   if ((i == keysetsInfo.end()) || !i->second)
484     return QString("Database Error");
485
486   return QString(i->second->getKeysetName());
487 }
488
489
490 void PIRKeysetManager::populateKeyset(
491   PIRKeysetMetaData *keyset)
492 {
493   // Set up the keyset collection:
494   keysetsInfo[keyset->getID()] = keyset;
495
496   keyset->moveProtocolToThread(&commandThread);
497
498   // Also, set up a name-based index into the collection:
499   makeIndex
500     [QString(makeManager.getMakeString(keyset->getMake()))]
501     [QString(keyset->getKeysetName())]
502     = keyset->getID();
503 }
504
505
506 void PIRKeysetManager::populateGuiWidget(
507   PIRSelectKeysetForm *skf) const
508 {
509   PIRMakeName make;
510   PIRKeysetWidgetItem *kwi;
511
512   PIRKeysetCollection::const_iterator i = keysetsInfo.begin();
513
514   while (i != keysetsInfo.end())
515   {
516     make = i->second->getMake();
517     QString tempString = makeManager.getMakeString(make);
518     tempString.append(" ");
519     tempString.append(i->second->getKeysetName());
520     kwi = new PIRKeysetWidgetItem(tempString, i->first, make);
521     i->second->populateDeviceTypes(kwi);
522     skf->addWidgetItem(kwi);
523     ++i;
524   }
525 }
526
527
528 void PIRKeysetManager::populateDeviceTypes(
529   PIRKeysetWidgetItem *kwi,
530   unsigned int keysetID) const
531 {
532   PIRKeysetCollection::const_iterator i = keysetsInfo.find(keysetID);
533   if ((i != keysetsInfo.end()) && i->second)
534   {
535     i->second->populateDeviceTypes(kwi);
536   }
537 }