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
|
/*
* Copyright (C) 2012-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "PVRTimers.h"
#include <utility>
#include "FileItem.h"
#include "ServiceBroker.h"
#include "addons/PVRClient.h"
#include "settings/Settings.h"
#include "threads/SingleLock.h"
#include "utils/log.h"
#include "pvr/PVRJobs.h"
#include "pvr/PVRManager.h"
#include "pvr/addons/PVRClients.h"
#include "pvr/channels/PVRChannelGroupsContainer.h"
#include "pvr/epg/EpgContainer.h"
using namespace PVR;
bool CPVRTimersContainer::UpdateFromClient(const CPVRTimerInfoTagPtr &timer)
{
CSingleLock lock(m_critSection);
CPVRTimerInfoTagPtr tag = GetByClient(timer->m_iClientId, timer->m_iClientIndex);
if (!tag)
{
tag.reset(new CPVRTimerInfoTag());
tag->m_iTimerId = ++m_iLastId;
InsertTimer(tag);
}
return tag->UpdateEntry(timer);
}
CPVRTimerInfoTagPtr CPVRTimersContainer::GetByClient(int iClientId, unsigned int iClientTimerId) const
{
CSingleLock lock(m_critSection);
for (const auto startDates : m_tags)
{
for (const auto timer : startDates.second)
{
if (timer->m_iClientId == iClientId && timer->m_iClientIndex == iClientTimerId)
{
return timer;
}
}
}
return CPVRTimerInfoTagPtr();
}
void CPVRTimersContainer::InsertTimer(const CPVRTimerInfoTagPtr &newTimer)
{
auto it = m_tags.find(newTimer->m_bStartAnyTime ? CDateTime() : newTimer->StartAsUTC());
if (it == m_tags.end())
{
VecTimerInfoTag addEntry({newTimer});
m_tags.insert(std::make_pair(newTimer->m_bStartAnyTime ? CDateTime() : newTimer->StartAsUTC(), addEntry));
}
else
{
it->second.emplace_back(newTimer);
}
}
CPVRTimers::CPVRTimers(void)
: m_settings({
CSettings::SETTING_PVRPOWERMANAGEMENT_DAILYWAKEUP,
CSettings::SETTING_PVRPOWERMANAGEMENT_PREWAKEUP,
CSettings::SETTING_PVRPOWERMANAGEMENT_BACKENDIDLETIME,
CSettings::SETTING_PVRPOWERMANAGEMENT_DAILYWAKEUPTIME,
CSettings::SETTING_PVRRECORD_TIMERNOTIFICATIONS
})
{
}
CPVRTimers::~CPVRTimers(void)
{
}
bool CPVRTimers::Load(void)
{
// unload previous timers
Unload();
// (re)register observer
CServiceBroker::GetPVRManager().EpgContainer().RegisterObserver(this);
// update from clients
return Update();
}
void CPVRTimers::Unload()
{
// unregister observer
CServiceBroker::GetPVRManager().EpgContainer().UnregisterObserver(this);
// remove all tags
CSingleLock lock(m_critSection);
m_tags.clear();
}
bool CPVRTimers::Update(void)
{
{
CSingleLock lock(m_critSection);
if (m_bIsUpdating)
return false;
m_bIsUpdating = true;
}
CLog::LogFC(LOGDEBUG, LOGPVR, "Updating timers");
CPVRTimersContainer newTimerList;
std::vector<int> failedClients;
CServiceBroker::GetPVRManager().Clients()->GetTimers(&newTimerList, failedClients);
return UpdateEntries(newTimerList, failedClients);
}
bool CPVRTimers::IsRecording(void) const
{
CSingleLock lock(m_critSection);
for (MapTags::const_iterator it = m_tags.begin(); it != m_tags.end(); ++it)
for (VecTimerInfoTag::const_iterator timerIt = it->second.begin(); timerIt != it->second.end(); ++timerIt)
if ((*timerIt)->IsRecording())
return true;
return false;
}
bool CPVRTimers::UpdateEntries(const CPVRTimersContainer &timers, const std::vector<int> &failedClients)
{
bool bChanged(false);
bool bAddedOrDeleted(false);
std::vector< std::pair< int, std::string> > timerNotifications;
CSingleLock lock(m_critSection);
/* go through the timer list and check for updated or new timers */
for (MapTags::const_iterator it = timers.GetTags().begin(); it != timers.GetTags().end(); ++it)
{
for (VecTimerInfoTag::const_iterator timerIt = it->second.begin(); timerIt != it->second.end(); ++timerIt)
{
/* check if this timer is present in this container */
CPVRTimerInfoTagPtr existingTimer = GetByClient((*timerIt)->m_iClientId, (*timerIt)->m_iClientIndex);
if (existingTimer)
{
/* if it's present, update the current tag */
bool bStateChanged(existingTimer->m_state != (*timerIt)->m_state);
if (existingTimer->UpdateEntry(*timerIt))
{
bChanged = true;
existingTimer->ResetChildState();
if (bStateChanged)
{
std::string strMessage;
existingTimer->GetNotificationText(strMessage);
timerNotifications.push_back(std::make_pair((*timerIt)->m_iClientId, strMessage));
}
CLog::LogFC(LOGDEBUG, LOGPVR, "Updated timer %d on client %d",
(*timerIt)->m_iClientIndex, (*timerIt)->m_iClientId);
}
}
else
{
/* new timer */
CPVRTimerInfoTagPtr newTimer = CPVRTimerInfoTagPtr(new CPVRTimerInfoTag);
newTimer->UpdateEntry(*timerIt);
newTimer->m_iTimerId = ++m_iLastId;
InsertTimer(newTimer);
bChanged = true;
bAddedOrDeleted = true;
std::string strMessage;
newTimer->GetNotificationText(strMessage);
timerNotifications.push_back(std::make_pair(newTimer->m_iClientId, strMessage));
CLog::LogFC(LOGDEBUG, LOGPVR, "Added timer %d on client %d",
(*timerIt)->m_iClientIndex, (*timerIt)->m_iClientId);
}
}
}
/* to collect timer with changed starting time */
VecTimerInfoTag timersToMove;
/* check for deleted timers */
for (MapTags::iterator it = m_tags.begin(); it != m_tags.end();)
{
for (std::vector<CPVRTimerInfoTagPtr>::iterator it2 = it->second.begin(); it2 != it->second.end();)
{
CPVRTimerInfoTagPtr timer(*it2);
if (!timers.GetByClient(timer->m_iClientId, timer->m_iClientIndex))
{
/* timer was not found */
bool bIgnoreTimer(false);
for (const auto &failedClient : failedClients)
{
if (failedClient == timer->m_iClientId)
{
bIgnoreTimer = true;
break;
}
}
if (bIgnoreTimer)
{
++it2;
continue;
}
CLog::LogFC(LOGDEBUG, LOGPVR, "Deleted timer %d on client %d",
timer->m_iClientIndex, timer->m_iClientId);
timerNotifications.push_back(std::make_pair(timer->m_iClientId, timer->GetDeletedNotificationText()));
it2 = it->second.erase(it2);
bChanged = true;
bAddedOrDeleted = true;
}
else if ((timer->m_bStartAnyTime && it->first != CDateTime()) ||
(!timer->m_bStartAnyTime && timer->StartAsUTC() != it->first))
{
/* timer start has changed */
CLog::LogFC(LOGDEBUG, LOGPVR, "Changed start time timer %d on client %d",
timer->m_iClientIndex, timer->m_iClientId);
/* remember timer */
timersToMove.push_back(timer);
/* remove timer for now, reinsert later */
it2 = it->second.erase(it2);
bChanged = true;
bAddedOrDeleted = true;
}
else
{
++it2;
}
}
if (it->second.empty())
it = m_tags.erase(it);
else
++it;
}
/* reinsert timers with changed timer start */
for (VecTimerInfoTag::const_iterator timerIt = timersToMove.begin(); timerIt != timersToMove.end(); ++timerIt)
InsertTimer(*timerIt);
/* update child information for all parent timers */
for (const auto &tagsEntry : m_tags)
{
for (const auto &timersEntry : tagsEntry.second)
{
if (timersEntry->GetTimerRuleId() != PVR_TIMER_NO_PARENT)
{
const CPVRTimerInfoTagPtr parentTimer(GetByClient(timersEntry->m_iClientId, timersEntry->GetTimerRuleId()));
if (parentTimer)
parentTimer->UpdateChildState(timersEntry);
}
}
}
m_bIsUpdating = false;
if (bChanged)
{
UpdateChannels();
lock.Leave();
CServiceBroker::GetPVRManager().SetChanged();
CServiceBroker::GetPVRManager().NotifyObservers(bAddedOrDeleted ? ObservableMessageTimersReset : ObservableMessageTimers);
if (!timerNotifications.empty() && CServiceBroker::GetPVRManager().IsStarted())
{
CPVREventlogJob *job = new CPVREventlogJob;
/* queue notifications / fill eventlog */
for (const auto &entry : timerNotifications)
{
const CPVRClientPtr client = CServiceBroker::GetPVRManager().GetClient(entry.first);
if (client)
{
job->AddEvent(m_settings.GetBoolValue(CSettings::SETTING_PVRRECORD_TIMERNOTIFICATIONS),
false, // info, no error
client->Name(),
entry.second,
client->Icon());
}
}
CJobManager::GetInstance().AddJob(job, nullptr);
}
}
return bChanged;
}
bool CPVRTimers::KindMatchesTag(const TimerKind &eKind, const CPVRTimerInfoTagPtr &tag) const
{
return (eKind == TimerKindAny) ||
(eKind == TimerKindTV && !tag->m_bIsRadio) ||
(eKind == TimerKindRadio && tag->m_bIsRadio);
}
std::shared_ptr<CPVRTimerInfoTag> CPVRTimers::GetNextActiveTimer(const TimerKind &eKind) const
{
CSingleLock lock(m_critSection);
for (const auto &tagsEntry : m_tags)
{
for (const auto &timersEntry : tagsEntry.second)
{
if (KindMatchesTag(eKind, timersEntry) &&
timersEntry->IsActive() &&
!timersEntry->IsRecording() &&
!timersEntry->IsTimerRule() &&
!timersEntry->IsBroken())
return timersEntry;
}
}
return std::shared_ptr<CPVRTimerInfoTag>();
}
std::shared_ptr<CPVRTimerInfoTag> CPVRTimers::GetNextActiveTimer(void) const
{
return GetNextActiveTimer(TimerKindAny);
}
std::shared_ptr<CPVRTimerInfoTag> CPVRTimers::GetNextActiveTVTimer(void) const
{
return GetNextActiveTimer(TimerKindTV);
}
std::shared_ptr<CPVRTimerInfoTag> CPVRTimers::GetNextActiveRadioTimer(void) const
{
return GetNextActiveTimer(TimerKindRadio);
}
std::vector<std::shared_ptr<CPVRTimerInfoTag>> CPVRTimers::GetActiveTimers(void) const
{
std::vector<std::shared_ptr<CPVRTimerInfoTag>> tags;
CSingleLock lock(m_critSection);
for (MapTags::const_iterator it = m_tags.begin(); it != m_tags.end(); ++it)
{
for (VecTimerInfoTag::const_iterator timerIt = it->second.begin(); timerIt != it->second.end(); ++timerIt)
{
CPVRTimerInfoTagPtr current = *timerIt;
if (current->IsActive() && !current->IsTimerRule() && !current->IsBroken())
{
tags.emplace_back(current);
}
}
}
return tags;
}
int CPVRTimers::AmountActiveTimers(const TimerKind &eKind) const
{
int iReturn = 0;
CSingleLock lock(m_critSection);
for (const auto &tagsEntry : m_tags)
{
for (const auto &timersEntry : tagsEntry.second)
{
if (KindMatchesTag(eKind, timersEntry) &&
timersEntry->IsActive() &&
!timersEntry->IsTimerRule() &&
!timersEntry->IsBroken())
++iReturn;
}
}
return iReturn;
}
int CPVRTimers::AmountActiveTimers(void) const
{
return AmountActiveTimers(TimerKindAny);
}
int CPVRTimers::AmountActiveTVTimers(void) const
{
return AmountActiveTimers(TimerKindTV);
}
int CPVRTimers::AmountActiveRadioTimers(void) const
{
return AmountActiveTimers(TimerKindRadio);
}
std::vector<std::shared_ptr<CPVRTimerInfoTag>> CPVRTimers::GetActiveRecordings(const TimerKind& eKind) const
{
std::vector<std::shared_ptr<CPVRTimerInfoTag>> tags;
CSingleLock lock(m_critSection);
for (const auto &tagsEntry : m_tags)
{
for (const auto &timersEntry : tagsEntry.second)
{
if (KindMatchesTag(eKind, timersEntry) &&
timersEntry->IsRecording() &&
!timersEntry->IsTimerRule() &&
!timersEntry->IsBroken())
{
tags.emplace_back(timersEntry);
}
}
}
return tags;
}
std::vector<std::shared_ptr<CPVRTimerInfoTag>> CPVRTimers::GetActiveRecordings() const
{
return GetActiveRecordings(TimerKindAny);
}
std::vector<std::shared_ptr<CPVRTimerInfoTag>> CPVRTimers::GetActiveTVRecordings() const
{
return GetActiveRecordings(TimerKindTV);
}
std::vector<std::shared_ptr<CPVRTimerInfoTag>> CPVRTimers::GetActiveRadioRecordings() const
{
return GetActiveRecordings(TimerKindRadio);
}
int CPVRTimers::AmountActiveRecordings(const TimerKind &eKind) const
{
int iReturn = 0;
CSingleLock lock(m_critSection);
for (const auto &tagsEntry : m_tags)
{
for (const auto &timersEntry : tagsEntry.second)
{
if (KindMatchesTag(eKind, timersEntry) &&
timersEntry->IsRecording() &&
!timersEntry->IsTimerRule() &&
!timersEntry->IsBroken())
++iReturn;
}
}
return iReturn;
}
int CPVRTimers::AmountActiveRecordings(void) const
{
return AmountActiveRecordings(TimerKindAny);
}
int CPVRTimers::AmountActiveTVRecordings(void) const
{
return AmountActiveRecordings(TimerKindTV);
}
int CPVRTimers::AmountActiveRadioRecordings(void) const
{
return AmountActiveRecordings(TimerKindRadio);
}
bool CPVRTimers::HasActiveTimers(void) const
{
CSingleLock lock(m_critSection);
for (MapTags::const_iterator it = m_tags.begin(); it != m_tags.end(); ++it)
for (VecTimerInfoTag::const_iterator timerIt = it->second.begin(); timerIt != it->second.end(); ++timerIt)
if ((*timerIt)->IsActive() && !(*timerIt)->IsTimerRule() && !(*timerIt)->IsBroken())
return true;
return false;
}
/********** channel methods **********/
bool CPVRTimers::DeleteTimersOnChannel(const CPVRChannelPtr &channel, bool bDeleteTimerRules /* = true */, bool bCurrentlyActiveOnly /* = false */)
{
bool bReturn = false;
bool bChanged = false;
{
CSingleLock lock(m_critSection);
for (MapTags::reverse_iterator it = m_tags.rbegin(); it != m_tags.rend(); ++it)
{
for (VecTimerInfoTag::iterator timerIt = it->second.begin(); timerIt != it->second.end(); ++timerIt)
{
bool bDeleteActiveItem = !bCurrentlyActiveOnly || (*timerIt)->IsRecording();
bool bDeleteTimerRuleItem = bDeleteTimerRules || !(*timerIt)->IsTimerRule();
bool bChannelsMatch = (*timerIt)->HasChannel() && (*timerIt)->Channel() == channel;
if (bDeleteActiveItem && bDeleteTimerRuleItem && bChannelsMatch)
{
CLog::LogFC(LOGDEBUG, LOGPVR, "Deleted timer %d on client %d",
(*timerIt)->m_iClientIndex, (*timerIt)->m_iClientId);
bReturn = ((*timerIt)->DeleteFromClient(true) == TimerOperationResult::OK) || bReturn;
bChanged = true;
}
}
}
}
if (bChanged)
CServiceBroker::GetPVRManager().SetChanged();
CServiceBroker::GetPVRManager().NotifyObservers(ObservableMessageTimersReset);
return bReturn;
}
/********** static methods **********/
bool CPVRTimers::AddTimer(const CPVRTimerInfoTagPtr &tag)
{
return tag->AddToClient();
}
TimerOperationResult CPVRTimers::DeleteTimer(const CPVRTimerInfoTagPtr &tag, bool bForce /* = false */, bool bDeleteRule /* = false */)
{
if (!tag)
return TimerOperationResult::FAILED;
if (bDeleteRule)
{
/* delete the timer rule that scheduled this timer. */
CPVRTimerInfoTagPtr ruleTag = CServiceBroker::GetPVRManager().Timers()->GetByClient(tag->m_iClientId, tag->GetTimerRuleId());
if (!ruleTag)
{
CLog::LogF(LOGERROR, "Unable to obtain timer rule for given timer");
return TimerOperationResult::FAILED;
}
return ruleTag->DeleteFromClient(bForce);
}
return tag->DeleteFromClient(bForce);
}
bool CPVRTimers::RenameTimer(const CPVRTimerInfoTagPtr &tag, const std::string &strNewName)
{
return tag->RenameOnClient(strNewName);
}
bool CPVRTimers::UpdateTimer(const CPVRTimerInfoTagPtr &tag)
{
return tag->UpdateOnClient();
}
bool CPVRTimers::IsRecordingOnChannel(const CPVRChannel &channel) const
{
CSingleLock lock(m_critSection);
for (MapTags::const_iterator it = m_tags.begin(); it != m_tags.end(); ++it)
{
for (VecTimerInfoTag::const_iterator timerIt = it->second.begin(); timerIt != it->second.end(); ++timerIt)
{
if ((*timerIt)->IsRecording() &&
(*timerIt)->m_iClientChannelUid == channel.UniqueID() &&
(*timerIt)->m_iClientId == channel.ClientID())
return true;
}
}
return false;
}
CPVRTimerInfoTagPtr CPVRTimers::GetActiveTimerForChannel(const CPVRChannelPtr &channel) const
{
CSingleLock lock(m_critSection);
for (const auto &tagsEntry : m_tags)
{
for (const auto &timersEntry : tagsEntry.second)
{
if (timersEntry->IsRecording() &&
timersEntry->m_iClientChannelUid == channel->UniqueID() &&
timersEntry->m_iClientId == channel->ClientID())
return timersEntry;
}
}
return CPVRTimerInfoTagPtr();
}
CPVRTimerInfoTagPtr CPVRTimers::GetTimerForEpgTag(const CPVREpgInfoTagPtr &epgTag) const
{
if (epgTag)
{
CSingleLock lock(m_critSection);
for (const auto &tagsEntry : m_tags)
{
for (const auto &timersEntry : tagsEntry.second)
{
if (timersEntry->IsTimerRule())
continue;
if (timersEntry->GetEpgInfoTag(false) == epgTag)
return timersEntry;
if (timersEntry->m_iClientChannelUid != PVR_CHANNEL_INVALID_UID &&
timersEntry->m_iClientChannelUid == epgTag->UniqueChannelID())
{
if (timersEntry->UniqueBroadcastID() != EPG_TAG_INVALID_UID &&
timersEntry->UniqueBroadcastID() == epgTag->UniqueBroadcastID())
return timersEntry;
if (timersEntry->m_bIsRadio == epgTag->IsRadio() &&
timersEntry->StartAsUTC() <= epgTag->StartAsUTC() &&
timersEntry->EndAsUTC() >= epgTag->EndAsUTC())
return timersEntry;
}
}
}
}
return CPVRTimerInfoTagPtr();
}
CPVRTimerInfoTagPtr CPVRTimers::GetTimerRule(const CPVRTimerInfoTagPtr &timer) const
{
if (timer)
{
unsigned int iRuleId = timer->GetTimerRuleId();
if (iRuleId != PVR_TIMER_NO_PARENT)
{
int iClientId = timer->m_iClientId;
CSingleLock lock(m_critSection);
for (const auto &tagsEntry : m_tags)
{
for (const auto &timersEntry : tagsEntry.second)
{
if (timersEntry->m_iClientId == iClientId && timersEntry->m_iClientIndex == iRuleId)
return timersEntry;
}
}
}
}
return CPVRTimerInfoTagPtr();
}
CFileItemPtr CPVRTimers::GetTimerRule(const CFileItemPtr &item) const
{
CPVRTimerInfoTagPtr timer;
if (item && item->HasEPGInfoTag())
timer = GetTimerForEpgTag(item->GetEPGInfoTag());
else if (item && item->HasPVRTimerInfoTag())
timer = item->GetPVRTimerInfoTag();
if (timer)
{
timer = GetTimerRule(timer);
if (timer)
return CFileItemPtr(new CFileItem(timer));
}
return CFileItemPtr();
}
void CPVRTimers::Notify(const Observable &obs, const ObservableMessage msg)
{
if (msg == ObservableMessageEpgContainer)
CServiceBroker::GetPVRManager().TriggerTimersUpdate();
}
CDateTime CPVRTimers::GetNextEventTime(void) const
{
const bool dailywakup = m_settings.GetBoolValue(CSettings::SETTING_PVRPOWERMANAGEMENT_DAILYWAKEUP);
const CDateTime now = CDateTime::GetUTCDateTime();
const CDateTimeSpan prewakeup(0, 0, m_settings.GetIntValue(CSettings::SETTING_PVRPOWERMANAGEMENT_PREWAKEUP), 0);
const CDateTimeSpan idle(0, 0, m_settings.GetIntValue(CSettings::SETTING_PVRPOWERMANAGEMENT_BACKENDIDLETIME), 0);
CDateTime wakeuptime;
/* Check next active time */
const std::shared_ptr<CPVRTimerInfoTag> timer = GetNextActiveTimer();
if (timer)
{
const CDateTimeSpan prestart(0, 0, timer->MarginStart(), 0);
const CDateTime start = timer->StartAsUTC();
wakeuptime = ((start - prestart - prewakeup - idle) > now) ?
start - prestart - prewakeup :
now + idle;
}
/* check daily wake up */
if (dailywakup)
{
CDateTime dailywakeuptime;
dailywakeuptime.SetFromDBTime(m_settings.GetStringValue(CSettings::SETTING_PVRPOWERMANAGEMENT_DAILYWAKEUPTIME));
dailywakeuptime = dailywakeuptime.GetAsUTCDateTime();
dailywakeuptime.SetDateTime(
now.GetYear(), now.GetMonth(), now.GetDay(),
dailywakeuptime.GetHour(), dailywakeuptime.GetMinute(), dailywakeuptime.GetSecond()
);
if ((dailywakeuptime - idle) < now)
{
const CDateTimeSpan oneDay(1,0,0,0);
dailywakeuptime += oneDay;
}
if (!wakeuptime.IsValid() || dailywakeuptime < wakeuptime)
wakeuptime = dailywakeuptime;
}
const CDateTime retVal(wakeuptime);
return retVal;
}
void CPVRTimers::UpdateChannels(void)
{
CSingleLock lock(m_critSection);
for (MapTags::iterator it = m_tags.begin(); it != m_tags.end(); ++it)
{
for (VecTimerInfoTag::iterator timerIt = it->second.begin(); timerIt != it->second.end(); ++timerIt)
(*timerIt)->UpdateChannel();
}
}
std::vector<std::shared_ptr<CPVRTimerInfoTag>> CPVRTimers::GetAll() const
{
std::vector<std::shared_ptr<CPVRTimerInfoTag>> timers;
CSingleLock lock(m_critSection);
for (const auto& tagsEntry : m_tags)
{
for (const auto& timer : tagsEntry.second)
{
timers.emplace_back(timer);
}
}
return timers;
}
CPVRTimerInfoTagPtr CPVRTimers::GetById(unsigned int iTimerId) const
{
CPVRTimerInfoTagPtr item;
CSingleLock lock(m_critSection);
for (MapTags::const_iterator it = m_tags.begin(); !item && it != m_tags.end(); ++it)
{
for (VecTimerInfoTag::const_iterator timerIt = it->second.begin(); !item && timerIt != it->second.end(); ++timerIt)
{
if ((*timerIt)->m_iTimerId == iTimerId)
item = *timerIt;
}
}
return item;
}
|