-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstate.c
1005 lines (895 loc) · 28.7 KB
/
state.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* GraphLCD plugin for the Video Disk Recorder
*
* status.c - status monitor class
*
* (c) 2001-2004 Carsten Siebholz <c.siebholz AT t-online de>
* (c) 2010-2012 Wolfgang Astleitner <mrwastl AT users sourceforge net>
**/
#include <ctype.h>
#include <algorithm>
#include "display.h"
#include "state.h"
#include "strfct.h"
#include <vdr/eitscan.h>
#include <vdr/i18n.h>
#if APIVERSNUM < 10503
#define trNOOP(_s) (_s)
#define trVDR(_s) tr(_s)
#endif
cGraphLCDState::cGraphLCDState(cGraphLCDDisplay * Display)
: mDisplay(Display),
first(true),
tickUsed(false)
{
mChannel.id = tChannelID::InvalidID;
mChannel.number = 0;
mChannel.name = "";
mChannel.shortName = "";
mChannel.provider = "";
mChannel.portal = "";
mChannel.source = "";
mChannel.hasTeletext = false;
mChannel.hasMultiLanguage = false;
mChannel.hasDolby = false;
mChannel.isEncrypted = false;
mChannel.isRadio = false;
mPresent.valid = false;
mPresent.startTime = 0;
mPresent.vpsTime = 0;
mPresent.duration = 0;
mPresent.title = "";
mPresent.shortText = "";
mPresent.description = "";
mFollowing.valid = false;
mFollowing.startTime = 0;
mFollowing.vpsTime = 0;
mFollowing.duration = 0;
mFollowing.title = "";
mFollowing.shortText = "";
mFollowing.description = "";
mReplay.name = "";
mReplay.loopmode = "";
mReplay.control = NULL;
mReplay.mode = eReplayNormal;
mReplay.current = 0;
mReplay.total = 0;
mOsd.currentItem = "";
mOsd.title = "";
mOsd.redButton = "";
mOsd.greenButton = "";
mOsd.yellowButton = "";
mOsd.blueButton = "";
mOsd.message = "";
mOsd.textItem = "";
mOsd.currentItemIndex = -1;
mOsd.currentTextItemScroll = 0;
mOsd.currentTextItemScrollReset = false;
mVolume.value = -1;
mVolume.lastChange = 0;
mAudio.currentTrack = -1;
mAudio.currentChannel = -1;
mAudio.lastChange = 0;
SetChannel(cDevice::CurrentChannel());
}
cGraphLCDState::~cGraphLCDState()
{
}
#if VDRVERSNUM >= 10726
void cGraphLCDState::ChannelSwitch(const cDevice * Device, int ChannelNumber, bool LiveView) {
#else
void cGraphLCDState::ChannelSwitch(const cDevice * Device, int ChannelNumber) {
bool LiveView = Device->IsPrimaryDevice() && !EITScanner.UsesDevice(Device);
#endif
//printf("graphlcd plugin: cGraphLCDState::ChannelSwitch %d %d\n", Device->CardIndex(), ChannelNumber);
if (GraphLCDSetup.PluginActive)
{
if (ChannelNumber > 0 && LiveView)
{
if (ChannelNumber == cDevice::CurrentChannel())
{
SetChannel(ChannelNumber);
}
}
}
}
void cGraphLCDState::Recording(const cDevice * Device, const char * Name, const char *FileName, bool On)
{
//printf("graphlcd plugin: cGraphLCDState::Recording %d %s\n", Device->CardIndex(), Name);
if (GraphLCDSetup.PluginActive)
{
std::vector <tRecording>::iterator it;
mutex.Lock();
it = mRecordings.begin();
while (it != mRecordings.end())
{
if (it->deviceNumber == Device->DeviceNumber()
&& it->fileName == FileName)
{
break;
}
it++;
}
if (On)
{
if (it == mRecordings.end())
{
tRecording rec;
rec.deviceNumber = Device->DeviceNumber();
rec.name = Name;
rec.fileName = FileName;
mRecordings.push_back(rec);
}
}
else
{
if (it != mRecordings.end())
mRecordings.erase(it);
}
mutex.Unlock();
mDisplay->Update();
}
}
void cGraphLCDState::Replaying(const cControl * Control, const char * Name, const char *FileName, bool On)
{
//printf("graphlcd plugin: cGraphLCDState::Replaying %s\n", Name);
if (GraphLCDSetup.PluginActive)
{
if (On)
{
mutex.Lock();
mReplay.control = (cControl *) Control;
mReplay.mode = eReplayNormal;
mReplay.name = "";
mReplay.loopmode = "";
if (Name && !isempty(Name))
{
if (GraphLCDSetup.IdentifyReplayType)
{
int slen = strlen(Name);
bool bFound = false;
///////////////////////////////////////////////////////////////////////
//Looking for mp3-Plugin Replay : [LS] (444/666) title
//
if (slen > 6 &&
*(Name+0)=='[' &&
*(Name+3)==']' &&
*(Name+5)=='(')
{
unsigned int i;
for (i=6; *(Name + i) != '\0'; ++i) //search for [xx] (xxxx) title
{
if (*(Name+i)==' ' && *(Name+i-1)==')')
{
bFound = true;
break;
}
}
if (bFound) //found MP3-Plugin replaymessage
{
unsigned int j;
// get loopmode
mReplay.loopmode = Name;
mReplay.loopmode = mReplay.loopmode.substr (0, 5);
if (mReplay.loopmode[2] == '.')
mReplay.loopmode.erase (2, 1);
if (mReplay.loopmode[1] == '.')
mReplay.loopmode.erase (1, 1);
if (mReplay.loopmode[1] == ']')
mReplay.loopmode = "";
//printf ("loopmode=<%s>\n", mReplay.loopmode.c_str ());
for (j=0;*(Name+i+j) != '\0';++j) //trim name
{
if (*(Name+i+j)!=' ')
break;
}
if (strlen(Name+i+j) > 0)
{ //if name isn't empty, then copy
mReplay.name = Name + i + j;
}
else
{ //if Name empty, set fallback title
mReplay.name = trVDR("Unknown title");
}
mReplay.mode = eReplayMusic;
}
}
///////////////////////////////////////////////////////////////////////
//Looking for DVD-Plugin Replay : 1/8 4/28, de 2/5 ac3, no 0/7, 16:9, VOLUMENAME
//cDvdPlayerControl::GerDisplayHeaderLine
// titleinfo, audiolang, spulang, aspect, title
if (!bFound)
{
if (slen>7)
{
unsigned int i,n;
for (n=0,i=0;*(Name+i) != '\0';++i)
{ //search volumelabel after 4*", " => xxx, xxx, xxx, xxx, title
if (*(Name+i)==' ' && *(Name+i-1)==',')
{
if (++n == 4)
{
bFound = true;
break;
}
}
}
if (bFound) //found DVD replaymessage
{
unsigned int j;bool b;
for (j=0;*(Name+i+j) != '\0';++j) //trim name
{
if (*(Name+i+j)!=' ')
break;
}
if (strlen(Name+i+j) > 0)
{ // if name isn't empty, then copy
mReplay.name = Name + i + j;
// replace all '_' with ' '
replace(mReplay.name.begin(), mReplay.name.end(), '_', ' ');
for (j = 0, b = true; j < mReplay.name.length(); ++j)
{
// KAPITALIZE -> Kaptialize
if (mReplay.name[j] == ' ')
b = true;
else if (b)
b = false;
else mReplay.name[j] = tolower(mReplay.name[j]);
}
}
else
{ //if Name empty, set fallback title
mReplay.name = trVDR("Unknown title");
}
mReplay.mode = eReplayDVD;
}
}
}
if (!bFound)
{
int i;
for (i=slen-1;i>0;--i)
{ //Reversesearch last Subtitle
// - filename contains '~' => subdirectory
// or filename contains '/' => subdirectory
switch (*(Name+i))
{
case '/':
{
// look for file extentsion like .xxx or .xxxx
if (slen>5 && ((*(Name+slen-4) == '.') || (*(Name+slen-5) == '.')))
{
mReplay.mode = eReplayFile;
}
else
{
break;
}
}
case '~':
{
mReplay.name = Name + i + 1;
bFound = true;
i = 0;
}
default:
break;
}
}
}
if (0 == strncmp(Name,"[image] ",8))
{
if (mReplay.mode != eReplayFile) //if'nt already Name stripped-down as filename
mReplay.name = Name + 8;
mReplay.mode = eReplayImage;
bFound = true;
}
else if (0 == strncmp(Name,"[audiocd] ",10))
{
mReplay.name = Name + 10;
mReplay.mode = eReplayAudioCD;
bFound = true;
}
if (!bFound || !GraphLCDSetup.ModifyReplayString)
{
mReplay.name = Name;
}
}
else
{
mReplay.name = Name;
}
}
mutex.Unlock();
}
else
{
mutex.Lock();
mReplay.control = NULL;
mutex.Unlock();
SetChannel(mChannel.number);
}
mDisplay->Replaying(On);
}
}
void cGraphLCDState::SetVolume(int Volume, bool Absolute)
{
//printf("graphlcd plugin: cGraphLCDState::SetVolume %d %d\n", Volume, Absolute);
if (GraphLCDSetup.PluginActive)
{
mutex.Lock();
if (!Absolute)
{
mVolume.value += Volume;
}
else
{
mVolume.value = Volume;
}
if (!first)
{
mVolume.lastChange = cTimeMs::Now();
mutex.Unlock();
mDisplay->Update();
}
else
{
// first time
first = false;
mutex.Unlock();
}
}
}
void cGraphLCDState::SetAudioTrack(int Index, const char * const *Tracks) {
if (GraphLCDSetup.PluginActive) {
mutex.Lock();
mAudio.currentTrack = Index;
mAudio.tracks.clear();
int i = 0;
while (Tracks[i]) {
mAudio.tracks.push_back(Tracks[i]);
i++;
}
mAudio.lastChange = cTimeMs::Now();
mutex.Unlock();
//mDisplay->Update(); -> will be done in SetAudioChannel
}
}
void cGraphLCDState::SetAudioChannel(int AudioChannel) {
if (GraphLCDSetup.PluginActive) {
mutex.Lock();
mAudio.currentChannel = AudioChannel;
mAudio.lastChange = cTimeMs::Now();
mutex.Unlock();
mDisplay->Update();
}
}
void cGraphLCDState::Tick()
{
//printf("graphlcd plugin: cGraphLCDState::Tick\n");
if (GraphLCDSetup.PluginActive)
{
mutex.Lock();
if (mOsd.currentTextItemScrollReset) { // mOsd.currentTextItemScroll has been read since last update? -> reset to 0
mOsd.currentTextItemScroll = 0;
mOsd.currentTextItemScrollReset = false;
}
tickUsed = true;
if (mReplay.control)
{
mReplay.control->GetReplayMode(mReplay.play, mReplay.forward, mReplay.speed);
if (mReplay.control->GetIndex(mReplay.current, mReplay.total, false))
{
mReplay.total = (mReplay.total == 0) ? 1 : mReplay.total;
}
else
{
mReplay.control = NULL;
}
}
mutex.Unlock();
}
}
void cGraphLCDState::OsdClear()
{
//esyslog("graphlcd plugin: cGraphLCDState::OsdClear\n");
if (GraphLCDSetup.PluginActive)
{
mutex.Lock();
mOsd.title = "";
mOsd.items.clear();
mOsd.currentItem = "";
mOsd.currentItemIndex = -1;
mOsd.redButton = "";
mOsd.greenButton = "";
mOsd.yellowButton = "";
mOsd.blueButton = "";
mOsd.message = "";
mOsd.textItem = "";
mOsd.currentTextItemScroll = 0;
mOsd.currentTextItemScrollReset = false;
mAudio.currentTrack = -1;
mAudio.currentChannel = -1;
mAudio.tracks.clear();
mAudio.lastChange = 0;
mutex.Unlock();
mDisplay->SetMenuClear();
}
}
void cGraphLCDState::OsdTitle(const char * Title)
{
//esyslog("graphlcd plugin: cGraphLCDState::OsdTitle '%s'\n", Title);
if (GraphLCDSetup.PluginActive)
{
mutex.Lock();
mOsd.message = "";
mOsd.title = "";
if (Title)
{
mOsd.title = Title;
// remove the time
std::string::size_type pos = mOsd.title.find('\t');
if (pos != std::string::npos)
mOsd.title.resize(pos);
mOsd.title = compactspace(mOsd.title);
}
mutex.Unlock();
mDisplay->SetMenuTitle();
}
}
void cGraphLCDState::OsdStatusMessage(const char * Message)
{
//esyslog("graphlcd plugin: cGraphLCDState::OsdStatusMessage '%s'\n", Message);
if (GraphLCDSetup.PluginActive)
{
if (GraphLCDSetup.ShowMessages)
{
mutex.Lock();
if (Message)
mOsd.message = compactspace(Message);
else
mOsd.message = "";
mutex.Unlock();
mDisplay->Update();
}
}
}
void cGraphLCDState::OsdHelpKeys(const char * Red, const char * Green, const char * Yellow, const char * Blue)
{
//esyslog("graphlcd plugin: cGraphLCDState::OsdHelpKeys %s - %s - %s - %s\n", Red, Green, Yellow, Blue);
if (GraphLCDSetup.PluginActive)
{
if (GraphLCDSetup.ShowColorButtons)
{
mutex.Lock();
mOsd.redButton = "";
mOsd.greenButton = "";
mOsd.yellowButton = "";
mOsd.blueButton = "";
if (Red)
mOsd.redButton = compactspace(Red);
if (Green)
mOsd.greenButton = compactspace(Green);
if (Yellow)
mOsd.yellowButton = compactspace(Yellow);
if (Blue)
mOsd.blueButton = compactspace(Blue);
mutex.Unlock();
}
}
}
void cGraphLCDState::OsdItem(const char * Text, int Index)
{
//esyslog("graphlcd plugin: cGraphLCDState::OsdItem %s, %d\n", Text, Index);
if (GraphLCDSetup.PluginActive)
{
if (GraphLCDSetup.ShowMenu)
{
mutex.Lock();
mOsd.message = "";
if (Text)
mOsd.items.push_back(Text);
mutex.Unlock();
//if (Text)
// mDisplay->SetOsdItem(Text);
}
}
}
void cGraphLCDState::OsdCurrentItem(const char * Text)
{
//esyslog("graphlcd plugin: cGraphLCDState::OsdCurrentItem %s\n", Text);
if (GraphLCDSetup.PluginActive)
{
if (GraphLCDSetup.ShowMenu)
{
mutex.Lock();
mOsd.message = "";
mOsd.currentItem = "";
if (Text)
{
uint32_t i;
mOsd.currentItem = Text;
mOsd.currentItemIndex = -1;
for (i = 0; i < mOsd.items.size(); i++)
{
if (mOsd.items[i].compare(mOsd.currentItem) == 0)
{
mOsd.currentItemIndex = i;
break;
}
}
if (i == mOsd.items.size())
{
// maybe this is a settings menu with edit items, so
// just one tab
std::string::size_type pos = mOsd.currentItem.find('\t');
if (pos != std::string::npos && pos == mOsd.currentItem.rfind('\t'))
{
for (i = 0; i < mOsd.items.size(); i++)
{
if (mOsd.items[i].compare(0, pos, mOsd.currentItem, 0, pos) == 0)
{
mOsd.items[i] = mOsd.currentItem;
mOsd.currentItemIndex = i;
break;
}
}
}
}
}
mutex.Unlock();
if (Text)
mDisplay->SetMenuCurrent();
}
}
}
void cGraphLCDState::OsdTextItem(const char * Text, bool Scroll)
{
//esyslog("graphlcd plugin: cGraphLCDState::OsdTextItem %s %d\n", Text, Scroll);
if (GraphLCDSetup.PluginActive)
{
mutex.Lock();
if (Text)
{
mOsd.textItem = trim(Text);
mOsd.currentTextItemScroll = 0;
mOsd.currentTextItemScrollReset = false;
} else {
mOsd.currentTextItemScroll += (Scroll) ? -1 : 1;
mDisplay->Update();
}
mutex.Unlock();
//mDisplay->SetOsdTextItem(Text, Scroll);
}
}
void cGraphLCDState::OsdChannel(const char * Text)
{
//printf("graphlcd plugin: cGraphLCDState::OsdChannel %s\n", Text);
if (GraphLCDSetup.PluginActive)
{
mDisplay->ForceUpdateBrightness();
if (Text)
mDisplay->Update();
}
}
void cGraphLCDState::OsdProgramme(time_t PresentTime, const char * PresentTitle, const char * PresentSubtitle, time_t FollowingTime, const char * FollowingTitle, const char * FollowingSubtitle)
{
//printf("graphlcd plugin: cGraphLCDState::OsdProgramme PT : %s\n", PresentTitle);
//printf("graphlcd plugin: cGraphLCDState::OsdProgramme PST: %s\n", PresentSubtitle);
//printf("graphlcd plugin: cGraphLCDState::OsdProgramme FT : %s\n", FollowingTitle);
//printf("graphlcd plugin: cGraphLCDState::OsdProgramme FST: %s\n", FollowingSubtitle);
if (GraphLCDSetup.PluginActive)
{
mDisplay->Update();
}
}
void cGraphLCDState::SetChannel(int ChannelNumber)
{
if (ChannelNumber == 0)
return;
mutex.Lock();
mChannel.number = ChannelNumber;
mPresent.startTime = 0;
mFollowing.startTime = 0;
mutex.Unlock();
if (mDisplay->GetSkin())
mDisplay->GetSkin()->SetTSEvalSwitch(cTimeMs::Now());
mDisplay->Update();
}
void cGraphLCDState::UpdateChannelInfo(void)
{
if (mChannel.number == 0)
return;
// correct stored channel number if differs from device's channel number
// e.g after switching off plugin, switching channel, re-enabling plugin
if (mChannel.number != cDevice::CurrentChannel()) {
mutex.Lock();
mChannel.number = cDevice::CurrentChannel();
mutex.Unlock();
}
#if APIVERSNUM < 20404
mutex.Lock();
#endif
#if APIVERSNUM < 20301
cChannel * ch = Channels.GetByNumber(mChannel.number);
#else
LOCK_CHANNELS_READ;
const cChannel * ch = Channels->GetByNumber(mChannel.number);
#endif
if (ch)
{
mChannel.id = ch->GetChannelID();
mChannel.name = ch->Name();
mChannel.shortName = ch->ShortName(true);
mChannel.provider = ch->Provider();
mChannel.portal = ch->PortalName();
mChannel.source = Sources.Get(ch->Source())->Description();
mChannel.hasTeletext = ch->Tpid() != 0;
mChannel.hasMultiLanguage = ch->Apid(1) != 0;
mChannel.hasDolby = ch->Dpid(0) != 0;
mChannel.isEncrypted = ch->Ca() != 0;
mChannel.isRadio = (ch->Vpid() == 0) || (ch->Vpid() == 1) || (ch->Vpid() == 0x1FFF);
}
else
{
mChannel.id = tChannelID::InvalidID;
mChannel.name = trVDR("*** Invalid Channel ***");
mChannel.shortName = trVDR("*** Invalid Channel ***");
mChannel.provider = "";
mChannel.portal = "";
mChannel.source = "";
mChannel.hasTeletext = false;
mChannel.hasMultiLanguage = false;
mChannel.hasDolby = false;
mChannel.isEncrypted = false;
mChannel.isRadio = false;
}
#if APIVERSNUM < 20404
mutex.Unlock();
#endif
}
void cGraphLCDState::UpdateEventInfo(void)
{
mutex.Lock();
const cEvent * present = NULL, * following = NULL;
#if APIVERSNUM < 20301
cSchedulesLock schedulesLock;
#else
LOCK_SCHEDULES_READ;
#endif
// backup current values
std::string currTitle = mPresent.title;
std::string currShortText = mPresent.shortText;
std::string currDescription = mPresent.description;
// reset event data to empty values
mPresent.valid = false;
mPresent.startTime = 0;
mPresent.vpsTime = 0;
mPresent.duration = 0;
mPresent.title = "";
mPresent.shortText = "";
mPresent.description = "";
mFollowing.valid = false;
mFollowing.startTime = 0;
mFollowing.vpsTime = 0;
mFollowing.duration = 0;
mFollowing.title = "";
mFollowing.shortText = "";
mFollowing.description = "";
#if APIVERSNUM < 20301
const cSchedules * schedules = cSchedules::Schedules(schedulesLock);
#else
const cSchedules * schedules = Schedules;
#endif
if (mChannel.id.Valid())
{
if (schedules)
{
const cSchedule * schedule = schedules->GetSchedule(mChannel.id);
if (schedule)
{
if ((present = schedule->GetPresentEvent()) != NULL)
{
mPresent.valid = true;
mPresent.startTime = present->StartTime();
mPresent.vpsTime = present->Vps();
mPresent.duration = present->Duration();
mPresent.title = "";
if (present->Title()) {
mPresent.title = present->Title();
}
mPresent.shortText = "";
if (present->ShortText())
mPresent.shortText = present->ShortText();
mPresent.description = "";
if (present->Description())
mPresent.description = present->Description();
}
if ((following = schedule->GetFollowingEvent()) != NULL)
{
mFollowing.valid = true;
mFollowing.startTime = following->StartTime();
mFollowing.vpsTime = following->Vps();
mFollowing.duration = following->Duration();
mFollowing.title = "";
if (following->Title())
mFollowing.title = following->Title();
mFollowing.shortText = "";
if (following->ShortText())
mFollowing.shortText = following->ShortText();
mFollowing.description = "";
if (following->Description())
mFollowing.description = following->Description();
}
}
}
}
mutex.Unlock();
}
void cGraphLCDState::UpdateReplayInfo(void)
{
mutex.Lock();
if (!tickUsed)
{
if (mReplay.control)
{
mReplay.control->GetReplayMode(mReplay.play, mReplay.forward, mReplay.speed);
if (mReplay.control->GetIndex(mReplay.current, mReplay.total, false))
{
mReplay.total = (mReplay.total == 0) ? 1 : mReplay.total;
}
else
{
mReplay.control = NULL;
}
}
}
mutex.Unlock();
}
void cGraphLCDState::Update()
{
UpdateChannelInfo();
UpdateEventInfo();
UpdateReplayInfo();
}
tChannel cGraphLCDState::GetChannelInfo()
{
tChannel ret;
mutex.Lock();
ret = mChannel;
mutex.Unlock();
return ret;
}
tEvent cGraphLCDState::GetPresentEvent()
{
tEvent ret;
mutex.Lock();
ret = mPresent;
mutex.Unlock();
return ret;
}
tEvent cGraphLCDState::GetFollowingEvent()
{
tEvent ret;
mutex.Lock();
ret = mFollowing;
mutex.Unlock();
return ret;
}
tReplayState cGraphLCDState::GetReplayState()
{
tReplayState ret;
mutex.Lock();
ret = mReplay;
mutex.Unlock();
return ret;
}
bool cGraphLCDState::IsRecording(int CardNumber)
{
bool ret = false;
std::vector <tRecording>::iterator it;
mutex.Lock();
if (CardNumber == -1 && mRecordings.size() > 0)
{
ret = true;
}
else
{
it = mRecordings.begin();
while (it != mRecordings.end())
{
if (it->deviceNumber == CardNumber)
{
ret = true;
break;
}
it++;
}
}
mutex.Unlock();
return ret;
}
std::string cGraphLCDState::Recordings(int CardNumber, int selector)
{
std::string ret = "";
std::vector <tRecording>::iterator it;
int count = 0;
mutex.Lock();
// dsyslog("%s/%s: called CardNumber=%d selector=%d", PLUGIN_NAME_I18N, __FUNCTION__, CardNumber, selector);
it = mRecordings.begin();
while (it != mRecordings.end())
{
if (CardNumber == -1 || it->deviceNumber == CardNumber)
{
count++;
if (selector > 0) {
if (count == selector) {
// dsyslog("%s/%s: selector hit CardNumber=%d selector=%d count=%d", PLUGIN_NAME_I18N, __FUNCTION__, CardNumber, selector, count);
ret += it->name;
break;
}
} else {
if (ret.length() > 0)
ret += "\n";
ret += it->name;
}
}
it++;
}
mutex.Unlock();
return ret;
}
int cGraphLCDState::NumRecordings(int CardNumber)
{
std::string ret = "";
std::vector <tRecording>::iterator it;
int count = 0;
mutex.Lock();
// dsyslog("%s/%s: called CardNumber=%d", PLUGIN_NAME_I18N, __FUNCTION__, CardNumber);
it = mRecordings.begin();
while (it != mRecordings.end())
{
if (CardNumber == -1 || it->deviceNumber == CardNumber)
{
count++;
}
it++;
}
mutex.Unlock();
return count;
}
tOsdState cGraphLCDState::GetOsdState()
{
tOsdState ret;
mutex.Lock();
ret = mOsd;
mutex.Unlock();
return ret;
}
void cGraphLCDState::ResetOsdStateScroll() {
mOsd.currentTextItemScrollReset = true;
}
tVolumeState cGraphLCDState::GetVolumeState()
{
tVolumeState ret;
mutex.Lock();
ret = mVolume;
mutex.Unlock();
return ret;
}
tAudioState cGraphLCDState::GetAudioState()
{
tAudioState ret;
mutex.Lock();
ret = mAudio;
mutex.Unlock();
return ret;
}
bool cGraphLCDState::ShowMessage()
{
bool ret;
mutex.Lock();
ret = mOsd.message.length() > 0;