2 Copyright 2004-2005 Chris Tallon
4 This file is part of VOMP.
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33 #include "directory.h"
34 #include "recording.h"
40 // FIXME do some tcp connection error checking and kill it!
42 typedef vector<Event*> EventList;
43 typedef vector<Channel*> ChannelList;
51 static VDR* getInstance();
56 void findServers(vector<char*>& serverIPs);
57 void cancelFindingServer();
58 void setServerIP(char*);
61 ULLONG getResumePoint(char* fileName); // uses configLoad
67 Directory* getRecordingsList();
68 char* getRecordingSummary(char* fileName);
69 int deleteRecording(char* fileName);
70 ULLONG streamRecording(Recording* rec);
71 ULLONG rescanRecording();
73 ChannelList* getChannelsList(ULONG type);
74 int streamChannel(ULONG number);
76 UCHAR* getBlock(ULLONG position, UINT maxAmount, UINT* amountReceived);
78 EventList* getChannelSchedule(ULONG number);
79 int configSave(char* section, char* key, char* value);
80 char* configLoad(char* section, char* key);
84 const static ULONG VIDEO = 1;
85 const static ULONG RADIO = 2;
95 pthread_mutex_t mutex;
101 const static ULONG VDR_LOGIN = 1;
102 const static ULONG VDR_GETRECORDINGLIST = 2;
103 const static ULONG VDR_DELETERECORDING = 3;
104 const static ULONG VDR_GETSUMMARY = 4;
105 const static ULONG VDR_GETCHANNELLIST = 5;
106 const static ULONG VDR_STREAMCHANNEL = 6;
107 const static ULONG VDR_GETBLOCK = 7;
108 const static ULONG VDR_STOPSTREAMING = 8;
109 const static ULONG VDR_STREAMRECORDING = 9;
110 const static ULONG VDR_GETCHANNELSCHEDULE = 10;
111 const static ULONG VDR_CONFIGSAVE = 11;
112 const static ULONG VDR_CONFIGLOAD = 12;
113 const static ULONG VDR_RESCANRECORDING = 13;
118 char* extractString();
119 ULONG extractULONG();
120 ULLONG extractULLONG();