]> git.vomp.tv Git - vompserver.git/blob - vompclientrrproc.h
Merge branch 'scraper_support'
[vompserver.git] / vompclientrrproc.h
1 /*
2     Copyright 2008 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 #ifndef VOMPCLIENTRRPROC_H
22 #define VOMPCLIENTRRPROC_H
23
24 #include "thread.h"
25 #include "responsepacket.h"
26 #include <queue>
27 #include "serialize.h"
28
29 extern bool ResumeIDLock;
30
31 using namespace std;
32
33 class VompClient;
34 class Log;
35
36 class RequestPacket
37 {
38   public:
39     RequestPacket(ULONG requestID, ULONG opcode, UCHAR* data, ULONG dataLength)
40      : requestID(requestID), opcode(opcode), data(data), dataLength(dataLength) {}
41     
42     ULONG requestID;
43     ULONG opcode;
44     UCHAR* data;
45     ULONG dataLength;
46 };
47
48 typedef queue<RequestPacket*> RequestPacketQueue;
49
50 class VompClientRRProc : public Thread
51 {
52   public:
53     VompClientRRProc(VompClient& x);
54     ~VompClientRRProc();
55     static ULONG getProtocolVersionMin();
56     static ULONG getProtocolVersionMax();
57     
58     bool init();
59     bool recvRequest(RequestPacket*);
60
61   private:
62     bool processPacket();
63     void sendPacket(SerializeBuffer *b);
64   
65 #ifndef VOMPSTANDALONE
66     int processGetRecordingsList();
67     int processDeleteRecording();
68     int processMoveRecording();
69     int processGetChannelsList();
70     int processStartStreamingChannel();
71     int processGetBlock();
72     int processStopStreaming();
73     int processStartStreamingRecording();
74     int processGetChannelSchedule();
75     int processGetTimers();
76     int processSetTimer();
77     int processPositionFromFrameNumber();
78     int processFrameNumberFromPosition();
79     int processGetIFrame();
80     int processGetRecInfo();
81     int processGetMarks();
82     int processGetChannelPids();
83     int processDeleteTimer();
84     int processReScanRecording();           // FIXME obselete
85     int processVDRShutdown();
86     int processGetRecScraperEventType();
87     int processGetScraperMovieInfo();
88     int processGetScraperSeriesInfo();
89     int processLoadTvMedia();
90     int processLoadTvMediaRecThumb();
91     int processGetEventScraperEventType();
92     int processLoadTvMediaEventThumb();
93     int processLoadChannelLogo();
94
95 #endif
96     int processLogin();
97     int processConfigSave();
98     int processConfigLoad();
99     int processGetMediaList();
100     int processOpenMedia();
101     int processGetMediaBlock();
102     int processGetMediaInfo();
103     int processCloseMediaChannel();
104     int processGetLanguageList();
105     int processGetLanguageContent();
106     int processSetCharset();
107     
108     void threadMethod();
109
110     VompClient& x;
111     RequestPacket* req;
112     RequestPacketQueue req_queue;
113     ResponsePacket* resp;
114     static ULONG VOMP_PROTOCOL_VERSION_MIN;
115     static ULONG VOMP_PROTOCOL_VERSION_MAX;
116     
117     Log* log;
118 };
119
120 #endif
121