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
|
/*
* 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.
*/
#pragma once
#include <map>
#include <memory>
#include <utility>
#include <vector>
#include "XBDateTime.h"
#include "settings/lib/ISettingCallback.h"
#include "pvr/PVRTypes.h"
#include "pvr/channels/PVRChannel.h"
class CFileItem;
typedef std::shared_ptr<CFileItem> CFileItemPtr;
class CFileItemList;
namespace PVR
{
#define PVR_GROUP_TYPE_DEFAULT 0
#define PVR_GROUP_TYPE_INTERNAL 1
#define PVR_GROUP_TYPE_USER_DEFINED 2
struct PVRChannelGroupMember
{
PVRChannelGroupMember() = default;
PVRChannelGroupMember(const CPVRChannelPtr _channel, const CPVRChannelNumber &_channelNumber, int _iClientPriority)
: channel(_channel), channelNumber(_channelNumber), iClientPriority(_iClientPriority) {}
CPVRChannelPtr channel;
CPVRChannelNumber channelNumber; // the number this channel has in the group
int iClientPriority = 0;
};
typedef std::vector<PVRChannelGroupMember> PVR_CHANNEL_GROUP_SORTED_MEMBERS;
typedef std::map<std::pair<int, int>, PVRChannelGroupMember> PVR_CHANNEL_GROUP_MEMBERS;
enum EpgDateType
{
EPG_FIRST_DATE = 0,
EPG_LAST_DATE = 1
};
/** A group of channels */
class CPVRChannelGroup : public Observable,
public ISettingCallback
{
friend class CPVRChannelGroupInternal;
friend class CPVRDatabase;
public:
static const int INVALID_GROUP_ID = -1;
/*!
* @brief Create a new channel group instance.
* @param bRadio True if this group holds radio channels.
* @param iGroupId The database ID of this group or INVALID_GROUP_ID if the group was not yet stored in the database.
* @param strGroupName The name of this group.
* @param allChannelsGroup The channel group containing all TV or radio channels.
*/
CPVRChannelGroup(bool bRadio, int iGroupId, const std::string& strGroupName, const std::shared_ptr<CPVRChannelGroup>& allChannelsGroup);
/*!
* @brief Create a new channel group instance from a channel group provided by an add-on.
* @param group The channel group provided by the add-on.
* @param allChannelsGroup The channel group containing all TV or radio channels.
*/
CPVRChannelGroup(const PVR_CHANNEL_GROUP& group, const std::shared_ptr<CPVRChannelGroup>& allChannelsGroup);
/*!
* @brief Copy constructor
* @param group Source group
*/
CPVRChannelGroup(const CPVRChannelGroup &group);
~CPVRChannelGroup(void) override;
bool operator ==(const CPVRChannelGroup &right) const;
bool operator !=(const CPVRChannelGroup &right) const;
/**
* Empty group member
*/
static PVRChannelGroupMember EmptyMember;
/*!
* @brief Load the channels from the database.
* @param channelsToRemove Returns the channels to be removed from all groups, if any
* @return True when loaded successfully, false otherwise.
*/
virtual bool Load(std::vector<std::shared_ptr<CPVRChannel>>& channelsToRemove);
/*!
* @return The amount of group members
*/
size_t Size(void) const;
/*!
* @brief Refresh the channel list from the clients.
* @param channelsToRemove Returns the channels to be removed from all groups, if any
*/
virtual bool Update(std::vector<std::shared_ptr<CPVRChannel>>& channelsToRemove);
/*!
* @brief Get the path of this group.
* @return the path.
*/
std::string GetPath() const;
/*!
* @brief Change the channelnumber of a group. Used by CGUIDialogPVRChannelManager. Call SortByChannelNumber() and Renumber() after all changes are done.
* @param channel The channel to change the channel number for.
* @param channelNumber The new channel number.
*/
bool SetChannelNumber(const CPVRChannelPtr &channel, const CPVRChannelNumber &channelNumber);
/*!
* @brief Search missing channel icons for all known channels.
* @param bUpdateDb If true, update the changed values in the database.
*/
void SearchAndSetChannelIcons(bool bUpdateDb = false);
/*!
* @brief Remove a channel from this container.
* @param channel The channel to remove.
* @return True if the channel was found and removed, false otherwise.
*/
virtual bool RemoveFromGroup(const CPVRChannelPtr &channel);
/*!
* @brief Add a channel to this container.
* @param channel The channel to add.
* @param channelNumber The channel number of the channel to add. Use empty channel number to add it at the end.
* @param bUseBackendChannelNumbers True, if channelNumber contains a backend channel number.
* @return True if the channel was added, false otherwise.
*/
virtual bool AddToGroup(const CPVRChannelPtr &channel, const CPVRChannelNumber &channelNumber, bool bUseBackendChannelNumbers);
/*!
* @brief Change the name of this group.
* @param strGroupName The new group name.
* @param bSaveInDb Save in the database or not.
* @return True if the something changed, false otherwise.
*/
bool SetGroupName(const std::string &strGroupName, bool bSaveInDb = false);
/*!
* @brief Persist changed or new data.
* @return True if the channel was persisted, false otherwise.
*/
bool Persist(void);
/*!
* @brief Check whether a channel is in this container.
* @param channel The channel to find.
* @return True if the channel was found, false otherwise.
*/
virtual bool IsGroupMember(const CPVRChannelPtr &channel) const;
/*!
* @brief Check whether a channel is in this container.
* @param iChannelId The db id of the channel to find.
* @return True if the channel was found, false otherwise.
*/
virtual bool IsGroupMember(int iChannelId) const;
/*!
* @brief Check if this group is the internal group containing all channels.
* @return True if it's the internal group, false otherwise.
*/
virtual bool IsInternalGroup(void) const { return m_iGroupType == PVR_GROUP_TYPE_INTERNAL; }
/*!
* @brief True if this group holds radio channels, false if it holds TV channels.
* @return True if this group holds radio channels, false if it holds TV channels.
*/
bool IsRadio(void) const { return m_bRadio; }
/*!
* @brief Set 'radio' property of this group.
* @param bIsRadio The new value for the 'radio' property.
*/
void SetRadio(bool bIsRadio) { m_bRadio = bIsRadio; }
/*!
* @brief True if sorting should be prevented when adding/updating channels to the group.
* @return True if sorting should be prevented when adding/updating channels to the group.
*/
bool PreventSortAndRenumber(void) const;
/*!
* @brief The database ID of this group.
* @return The database ID of this group.
*/
int GroupID(void) const;
/*!
* @brief Set the database ID of this group.
* @param iGroupId The new database ID.
*/
void SetGroupID(int iGroupId);
/*!
* @brief Set the type of this group.
* @param the new type for this group.
*/
void SetGroupType(int iGroupType);
/*!
* @brief Return the type of this group.
*/
int GroupType(void) const;
/*!
* @return Time group has been watched last.
*/
time_t LastWatched() const;
/*!
* @brief Last time group has been watched
* @param iLastWatched The new value.
* @return True if something changed, false otherwise.
*/
bool SetLastWatched(time_t iLastWatched);
/*!
* @brief Set if sorting and renumbering should happen after adding/updating channels to group.
* @param bPreventSortAndRenumber The new sorting and renumbering prevention value for this group.
*/
void SetPreventSortAndRenumber(bool bPreventSortAndRenumber = true);
/*!
* @brief The name of this group.
* @return The name of this group.
*/
std::string GroupName(void) const;
/*! @name Sort methods
*/
//@{
/*!
* @brief Sort the group and fix up channel numbers.
* @return True when numbering changed, false otherwise
*/
bool SortAndRenumber(void);
/*!
* @brief Remove invalid channels and updates the channel numbers.
* @return True if something changed, false otherwise.
*/
bool Renumber(void);
//@}
void OnSettingChanged(std::shared_ptr<const CSetting> setting) override;
/*!
* @brief Get a channel given it's EPG ID.
* @param iEpgID The channel EPG ID.
* @return The channel or NULL if it wasn't found.
*/
CPVRChannelPtr GetByChannelEpgID(int iEpgID) const;
/*!
* @brief The channel that was played last that has a valid client or NULL if there was none.
* @param iCurrentChannel The channelid of the current channel that is playing, or -1 if none
* @return The requested channel.
*/
CFileItemPtr GetLastPlayedChannel(int iCurrentChannel = -1) const;
/*!
* @brief Get a channel given it's channel number.
* @param channelNumber The channel number.
* @return The channel or NULL if it wasn't found.
*/
CFileItemPtr GetByChannelNumber(const CPVRChannelNumber &channelNumber) const;
/*!
* @brief Get the channel number in this group of the given channel.
* @param channel The channel to get the channel number for.
* @return The channel number in this group.
*/
CPVRChannelNumber GetChannelNumber(const CPVRChannelPtr &channel) const;
/*!
* @brief Get the next channel in this group.
* @param channel The current channel.
* @return The channel or NULL if it wasn't found.
*/
CFileItemPtr GetNextChannel(const CPVRChannelPtr &channel) const;
/*!
* @brief Get the previous channel in this group.
* @param channel The current channel.
* @return The channel or NULL if it wasn't found.
*/
CFileItemPtr GetPreviousChannel(const CPVRChannelPtr &channel) const;
/*!
* @brief Get a channel given it's channel ID.
* @param iChannelID The channel ID.
* @return The channel or NULL if it wasn't found.
*/
CPVRChannelPtr GetByChannelID(int iChannelID) const;
enum class Include
{
ALL,
ONLY_HIDDEN,
ONLY_VISIBLE
};
/*!
* @brief Get the current members of this group
* @param eFilter A filter to apply.
* @return The group members
*/
std::vector<PVRChannelGroupMember> GetMembers(Include eFilter = Include::ALL) const;
/*!
* @brief Get the list of channel numbers in a group.
* @param channelNumbers The list to store the numbers in.
*/
void GetChannelNumbers(std::vector<std::string>& channelNumbers) const;
/*!
* @brief The amount of hidden channels in this container.
* @return The amount of hidden channels in this container.
*/
virtual size_t GetNumHiddenChannels(void) const { return 0; }
/*!
* @brief Does this container holds channels.
* @return True if there is at least one channel in this container, otherwise false.
*/
bool HasChannels(void) const;
/*!
* @return True if there is at least one channel in this group with changes that haven't been persisted, false otherwise.
*/
bool HasChangedChannels(void) const;
/*!
* @return True if there is at least one new channel in this group that hasn't been persisted, false otherwise.
*/
bool HasNewChannels(void) const;
/*!
* @return True if anything changed in this group that hasn't been persisted, false otherwise.
*/
bool HasChanges(void) const;
/*!
* @brief Create an EPG table for each channel.
* @brief bForce Create the tables, even if they already have been created before.
* @return True if all tables were created successfully, false otherwise.
*/
virtual bool CreateChannelEpgs(bool bForce = false);
/*!
* @brief Get all EPG tags for all channels in this group.
* @param bIncludeChannelsWithoutEPG, for channels without EPG data, put an empty EPG tag associated with the channel into results
* @return The tags.
*/
std::vector<std::shared_ptr<CPVREpgInfoTag>> GetEPGAll(bool bIncludeChannelsWithoutEPG = false) const;
/*!
* @brief Get the start time of the first entry.
* @return The start time.
*/
CDateTime GetFirstEPGDate(void) const;
/*!
* @brief Get the end time of the last entry.
* @return The end time.
*/
CDateTime GetLastEPGDate(void) const;
bool UpdateChannel(const CFileItem &channel, bool bHidden, bool bEPGEnabled, bool bParentalLocked, int iEPGSource, int iChannelNumber, const std::string &strChannelName, const std::string &strIconPath, bool bUserSetIcon = false);
/*!
* @brief Get a channel given the channel number on the client.
* @param iUniqueChannelId The unique channel id on the client.
* @param iClientID The ID of the client.
* @return The channel or NULL if it wasn't found.
*/
CPVRChannelPtr GetByUniqueID(int iUniqueChannelId, int iClientID) const;
/*!
* @brief Get a channel group member given its storage id.
* @param id The storage id (a pair of client id and unique channel id).
* @return A reference to the group member or an empty group member if it wasn't found.
*/
PVRChannelGroupMember& GetByUniqueID(const std::pair<int, int>& id);
const PVRChannelGroupMember& GetByUniqueID(const std::pair<int, int>& id) const;
void SetHidden(bool bHidden);
bool IsHidden(void) const;
int GetPosition(void) const;
void SetPosition(int iPosition);
/*!
* @brief Check, whether channel group member data for a given pvr client are currently missing, for instance, because the client was offline when data was last queried.
* @param iClientId The id of the client.
* @return True, if data is currently missing, false otherwise.
*/
bool IsMissingChannelGroupMembersFromClient(int iClientId) const;
/*!
* @brief Check, whether channel data for a given pvr client are currently missing, for instance, because the client was offline when data was last queried.
* @param iClientId The id of the client.
* @return True, if data is currently missing, false otherwise.
*/
bool IsMissingChannelsFromClient(int iClientId) const;
protected:
CPVRChannelGroup();
/*!
* @brief Init class
*/
virtual void OnInit(void);
/*!
* @brief Load the channels stored in the database.
* @param bCompress If true, compress the database after storing the channels.
* @return The amount of channels that were added.
*/
virtual int LoadFromDb(bool bCompress = false);
/*!
* @brief Update the current channel list with the given list.
*
* Update the current channel list with the given list.
* Only the new channels will be present in the passed list after this call.
*
* @param channels The channels to use to update this list.
* @param channelsToRemove Returns the channels to be removed from all groups, if any
* @return True if everything went well, false otherwise.
*/
virtual bool UpdateGroupEntries(const CPVRChannelGroup& channels, std::vector<std::shared_ptr<CPVRChannel>>& channelsToRemove);
/*!
* @brief Add new channels to this group; updtae data.
* @param channels The new channels to use for this group.
* @param bUseBackendChannelNumbers True, if channel numbers from backends shall be used.
* @return True if everything went well, false otherwise.
*/
virtual bool AddAndUpdateChannels(const CPVRChannelGroup &channels, bool bUseBackendChannelNumbers);
/*!
* @brief Remove deleted channels from this group.
* @param channels The new channels to use for this group.
* @return The removed channels.
*/
virtual std::vector<CPVRChannelPtr> RemoveDeletedChannels(const CPVRChannelGroup &channels);
/*!
* @brief Clear this channel list.
*/
virtual void Unload(void);
/*!
* @brief Load the channels from the clients.
* @return True when loaded successfully, false otherwise.
*/
virtual bool LoadFromClients(void);
/*!
* @brief Sort the current channel list by client channel number.
*/
void SortByClientChannelNumber(void);
/*!
* @brief Sort the current channel list by channel number.
*/
void SortByChannelNumber(void);
/*!
* @brief Update the priority for all members of all channel groups.
*/
bool UpdateClientPriorities();
bool m_bRadio = false; /*!< true if this container holds radio channels, false if it holds TV channels */
int m_iGroupType = PVR_GROUP_TYPE_DEFAULT; /*!< The type of this group */
int m_iGroupId = INVALID_GROUP_ID; /*!< The ID of this group in the database */
std::string m_strGroupName; /*!< The name of this group */
bool m_bLoaded = false; /*!< True if this container is loaded, false otherwise */
bool m_bChanged = false; /*!< true if anything changed in this group that hasn't been persisted, false otherwise */
bool m_bUsingBackendChannelOrder = false; /*!< true to use the channel order from backends, false otherwise */
bool m_bUsingBackendChannelNumbers = false; /*!< true to use the channel numbers from 1 backend, false otherwise */
bool m_bPreventSortAndRenumber = false; /*!< true when sorting and renumbering should not be done after adding/updating channels to the group */
time_t m_iLastWatched = 0; /*!< last time group has been watched */
bool m_bHidden = false; /*!< true if this group is hidden, false otherwise */
int m_iPosition = 0; /*!< the position of this group within the group list */
PVR_CHANNEL_GROUP_SORTED_MEMBERS m_sortedMembers; /*!< members sorted by channel number */
PVR_CHANNEL_GROUP_MEMBERS m_members; /*!< members with key clientid+uniqueid */
mutable CCriticalSection m_critSection;
std::vector<int> m_failedClientsForChannels;
std::vector<int> m_failedClientsForChannelGroupMembers;
private:
CDateTime GetEPGDate(EpgDateType epgDateType) const;
std::shared_ptr<CPVRChannelGroup> m_allChannelsGroup;
};
}
|