]> git.vomp.tv Git - vompclient.git/blob - vdr.h
Variable width channel numbers
[vompclient.git] / vdr.h
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #ifndef VDR_H
22 #define VDR_H
23
24 #include <stdio.h>
25 #include <time.h>
26 #ifndef WIN32
27   #include <pthread.h>
28 #else
29   //Find threading replacements
30 #endif
31 #include <vector>
32 #include <algorithm>
33
34 #include "defines.h"
35 #include "log.h"
36 #include "dsock.h"
37 #include "tcp.h"
38 #include "channel.h"
39 #include "event.h"
40 #include "rectimer.h"
41 #include "recinfo.h"
42 #include "mark.h"
43 #include "wol.h"
44
45 using namespace std;
46
47 typedef vector<Event*> EventList;
48 typedef vector<Channel*> ChannelList;
49 typedef vector<RecTimer*> RecTimerList;
50 typedef vector<Mark*> MarkList;
51
52 struct VDRServer
53 {
54   char* ip;
55   char* name;
56 };
57
58 struct RecTimerSorter     // : public binary_function<double, double, bool>
59 {
60   bool operator() (const RecTimer* a, const RecTimer* b)
61   {
62     return a->startTime < b->startTime;
63   }
64 };
65
66 struct ServerSorter
67 {
68   bool operator() (const VDRServer& a, const VDRServer& b)
69   {
70     if (strcmp(b.name, a.name) > 0) return true;
71     return false;
72   }
73 };
74
75 class RecMan;
76
77 class VDR
78 {
79
80   public:
81     VDR();
82     ~VDR();
83     static VDR* getInstance();
84
85     int init(int port);
86     int shutdown();
87
88     void findServers(vector<VDRServer>& servers);
89     void cancelFindingServer();
90     void setServerIP(char*);
91     int connect();
92     void disconnect();
93     bool isConnected() { return connected; }
94     ULONG getChannelNumberWidth() { return channelNumberWidth; }
95
96     void setReceiveWindow(size_t size);
97
98     // protocol functions
99     // for the following, if result == false then the connection has died
100     //  doLogin
101     //  getRecordingList
102     //  getChannelsList
103     //  getChannelSchedule
104     //  getRecTimersList
105     // isConnected can be called after the following to determine if still ok
106     //  deleteRecording
107     //  streamRecording
108     //  positionFromFrameNumber
109     //  streamChannel
110     //  getBlock
111     //  stopStreaming
112     //  configLoad
113     //  configSave
114     //  setEventTimer
115
116     int doLogin();
117
118     bool       getRecordingsList(RecMan* recman);
119     RecInfo*   getRecInfo(char* fileName);
120     int        deleteRecording(char* fileName);
121     char*      moveRecording(char* fileName, char* newPath);
122     ULLONG     streamRecording(char* fileName, ULONG* lengthFrames);
123     ULLONG     positionFromFrameNumber(ULONG frameNumber);
124     ULONG      frameNumberFromPosition(ULLONG position);
125     bool       getNextIFrame(ULONG frameNumber, ULONG direction, ULLONG* rfilePosition, ULONG* rframeNumber, ULONG* rframeLength);
126                // Direction: 0=backwards, 1=forwards
127     MarkList*  getMarks(char* fileName);
128
129     ChannelList* getChannelsList(ULONG type);
130     int          streamChannel(ULONG number);
131     void         getChannelPids(Channel* channel);
132
133     UCHAR*     getBlock(ULLONG position, UINT maxAmount, UINT* amountReceived);
134     int        stopStreaming();
135     EventList* getChannelSchedule(ULONG number);
136     EventList* getChannelSchedule(ULONG number, time_t start, ULONG duration);
137     int        configSave(char* section, char* key, const char* value);
138     char*      configLoad(char* section, char* key);
139     ULONG      setEventTimer(char* timerString);
140
141     RecTimerList* getRecTimersList();
142
143     // end
144
145     const static ULONG VIDEO = 1;
146     const static ULONG RADIO = 2;
147
148
149
150
151     // obselete
152     ULLONG     rescanRecording(ULONG* lengthFrames);                    // FIXME obselete
153
154
155
156   private:
157     static VDR* instance;
158     Log* logger;
159     int initted;
160     int findingServer;
161     TCP* tcp;
162     int port;
163     char serverIP[16];
164     bool connected;
165
166     ULONG maxChannelNumber;
167     ULONG channelNumberWidth;
168
169 #ifndef WIN32
170     pthread_mutex_t mutex;
171 #else
172     HANDLE mutex;
173 #endif
174
175     UCHAR* packet;
176     ULONG packetLength;
177     ULONG packetPos;
178
179     const static ULONG VDR_LOGIN               = 1;
180     const static ULONG VDR_GETRECORDINGLIST    = 2;
181     const static ULONG VDR_DELETERECORDING     = 3;
182     const static ULONG VDR_GETCHANNELLIST      = 5;
183     const static ULONG VDR_STREAMCHANNEL       = 6;
184     const static ULONG VDR_GETBLOCK            = 7;
185     const static ULONG VDR_STOPSTREAMING       = 8;
186     const static ULONG VDR_STREAMRECORDING     = 9;
187     const static ULONG VDR_GETCHANNELSCHEDULE  = 10;
188     const static ULONG VDR_CONFIGSAVE          = 11;
189     const static ULONG VDR_CONFIGLOAD          = 12;
190     const static ULONG VDR_RESCANRECORDING     = 13;  // FIXME obselete
191     const static ULONG VDR_GETTIMERS           = 14;
192     const static ULONG VDR_SETTIMER            = 15;
193     const static ULONG VDR_POSFROMFRAME        = 16;
194     const static ULONG VDR_FRAMEFROMPOS        = 17;
195     const static ULONG VDR_MOVERECORDING       = 18;
196     const static ULONG VDR_GETNEXTIFRAME       = 19;
197     const static ULONG VDR_GETRECINFO          = 20;
198     const static ULONG VDR_GETMARKS            = 21;
199     const static ULONG VDR_GETCHANNELPIDS      = 22;
200
201     int  getPacket();
202     void freePacket();
203     int  serverError();
204     char*  extractString();
205     UCHAR  extractUCHAR();
206     ULONG  extractULONG();
207     ULLONG extractULLONG();
208     long   extractLONG();
209 };
210
211 #endif
212
213 /*
214
215 index.vdr file format for video:
216
217 For every video frame:
218 {
219   File offset    4 bytes
220   Picture type   1 byte
221   File number    1 byte
222   Zero           2 bytes
223 }
224
225 Picture types:
226
227 #define NO_PICTURE 0
228 #define I_FRAME    1
229 #define P_FRAME    2
230 #define B_FRAME    3
231
232 */