]> git.vomp.tv Git - vompclient.git/blob - channel.cc
075458154a54a93f19425d0a04addf4ef02730cc
[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   vstreamtype=2; //Mpeg2
41
42 }
43
44 Channel::~Channel()
45 {
46   if (name) delete[] name;
47   index = -1; // just in case
48
49 }
50
51 void Channel::loadPids()
52 {
53   // Clear the list if this is a reload
54   if (numAPids)
55   {
56     apids.clear();
57     dpids.clear();
58     spids.clear();
59     vpid = 0;
60     tpid = 0;
61     numAPids = 0;
62     numDPids = 0;
63     numSPids = 0;
64   }
65
66   VDR::getInstance()->getChannelPids(this); // FIXME sort out this system
67   if (!VDR::getInstance()->isConnected())
68   {
69     Command::getInstance()->connectionLost();
70     return;
71   }
72         
73   Log::getInstance()->log("Channel", Log::DEBUG, "C.%lu loaded, VPid=%lu, numApids=%lu, numDpids=%lu, numSpids=%lu TPid=%lu",
74       number, vpid, numAPids, numDPids, numSPids, tpid);
75   for (ULONG i = 0; i < numAPids; i++)
76   {
77     Log::getInstance()->log("Channel", Log::DEBUG, "APid %lu %s %d", apids[i].pid, apids[i].desc,apids[i].type);
78   }
79   for (ULONG i = 0; i < numDPids; i++)
80   {
81     Log::getInstance()->log("Channel", Log::DEBUG, "DPid %lu %s %d", dpids[i].pid, dpids[i].desc,dpids[i].type);
82   }
83   for (ULONG i = 0; i < numSPids; i++)
84   {
85     Log::getInstance()->log("Channel", Log::DEBUG, "SPid %lu %s %d %d %d", spids[i].pid, spids[i].desc,spids[i].type,spids[i].data1,spids[i].data2);
86   }
87 }