]> git.vomp.tv Git - vompclient.git/blob - channel.cc
Removal of Message::REDRAW and BoxStack handler for it
[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 #include "command.h"
26
27 Channel::Channel()
28 {
29   number = 0;
30   type = 0;
31   name = NULL;
32
33   index = -1;
34   vpid = 0;
35   tpid = 0;
36   numAPids = 0;
37   numDPids = 0;
38   numSPids = 0;
39
40 }
41
42 Channel::~Channel()
43 {
44   if (name) delete[] name;
45   index = -1; // just in case
46
47   for(ULONG i = 0; i < numAPids; i++) delete[] apids[i].name;
48   for(ULONG i = 0; i < numDPids; i++) delete[] dpids[i].name;
49   for(ULONG i = 0; i < numSPids; i++) delete[] spids[i].name;
50 }
51
52 void Channel::loadPids()
53 {
54   // Clear the list if this is a reload
55   if (numAPids)
56   {
57     for(ULONG i = 0; i < numAPids; i++) delete[] apids[i].name;
58     apids.clear();
59     for(ULONG i = 0; i < numDPids; i++) delete[] dpids[i].name;
60     dpids.clear();
61     for(ULONG i = 0; i < numSPids; i++) delete[] spids[i].name;
62     spids.clear();
63     vpid = 0;
64     tpid = 0;
65     numAPids = 0;
66     numDPids = 0;
67     numSPids = 0;
68   }
69
70   VDR::getInstance()->getChannelPids(this); // FIXME sort out this system
71   if (!VDR::getInstance()->isConnected())
72   {
73     Command::getInstance()->connectionLost();
74     return;
75   }
76         
77   Log::getInstance()->log("Channel", Log::DEBUG, "C.%lu loaded, VPid=%lu, numApids=%lu, numDpids=%lu, numSpids=%lu TPid=%lu",
78       number, vpid, numAPids, numDPids, numSPids, tpid);
79   for (ULONG i = 0; i < numAPids; i++)
80   {
81     Log::getInstance()->log("Channel", Log::DEBUG, "APid %lu %s", apids[i].pid, apids[i].name);
82   }
83   for (ULONG i = 0; i < numDPids; i++)
84   {
85     Log::getInstance()->log("Channel", Log::DEBUG, "DPid %lu %s", dpids[i].pid, dpids[i].name);
86   }
87   for (ULONG i = 0; i < numSPids; i++)
88   {
89     Log::getInstance()->log("Channel", Log::DEBUG, "SPid %lu %s", spids[i].pid, spids[i].name);
90   }
91 }