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