]> git.vomp.tv Git - vompclient.git/blob - channel.cc
Channel unavailable message for can't-start-stream
[vompclient.git] / channel.cc
1 /*
2     Copyright 2004-2005 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #include "channel.h"
22
23 #include "vdr.h"
24 #include "log.h"
25
26 Channel::Channel()
27 {
28   number = 0;
29   type = 0;
30   name = NULL;
31
32   index = -1;
33   vpid = 0;
34   tpid = 0;
35   numAPids = 0;
36   numDPids = 0;
37   numSPids = 0;
38
39 }
40
41 Channel::~Channel()
42 {
43   if (name) delete[] name;
44   index = -1; // just in case
45
46   for(ULONG i = 0; i < numAPids; i++) delete[] apids[i].name;
47   for(ULONG i = 0; i < numDPids; i++) delete[] dpids[i].name;
48   for(ULONG i = 0; i < numSPids; i++) delete[] spids[i].name;
49 }
50
51 void Channel::loadPids()
52 {
53   // Clear the list if this is a reload
54   if (numAPids)
55   {
56     for(ULONG i = 0; i < numAPids; i++) delete[] apids[i].name;
57     apids.clear();
58     for(ULONG i = 0; i < numDPids; i++) delete[] dpids[i].name;
59     dpids.clear();
60     for(ULONG i = 0; i < numSPids; i++) delete[] spids[i].name;
61     spids.clear();
62     vpid = 0;
63     tpid = 0;
64     numAPids = 0;
65     numDPids = 0;
66     numSPids = 0;
67   }
68
69   VDR::getInstance()->getChannelPids(this); // FIXME sort out this system
70
71   Log::getInstance()->log("Channel", Log::DEBUG, "C.%lu loaded, VPid=%lu, numApids=%lu, numDpids=%lu, numSpids=%lu TPid=%lu",
72       number, vpid, numAPids, numDPids, numSPids, tpid);
73   for (ULONG i = 0; i < numAPids; i++)
74   {
75     Log::getInstance()->log("Channel", Log::DEBUG, "APid %lu %s", apids[i].pid, apids[i].name);
76   }
77   for (ULONG i = 0; i < numDPids; i++)
78   {
79     Log::getInstance()->log("Channel", Log::DEBUG, "DPid %lu %s", dpids[i].pid, dpids[i].name);
80   }
81   for (ULONG i = 0; i < numSPids; i++)
82   {
83     Log::getInstance()->log("Channel", Log::DEBUG, "SPid %lu %s", spids[i].pid, spids[i].name);
84   }
85 }