]> git.vomp.tv Git - vompserver.git/blob - mvpclient.h
Bug fixes to new protocol
[vompserver.git] / mvpclient.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 MVPCLIENT_H
22 #define MVPCLIENT_H
23
24 #include <stdio.h>
25 #include <pthread.h>
26 #include <signal.h>
27 #include <endian.h>
28
29 #include <unistd.h> // sleep
30
31 #ifndef VOMPSTANDALONE
32 #include <vdr/recording.h>
33 #include <vdr/channels.h>
34 #include <vdr/videodir.h>
35 #include <vdr/plugin.h>
36 #include <vdr/timers.h>
37 #include <vdr/menu.h>
38 #include "recplayer.h"
39 #include "mvpreceiver.h"
40 #endif
41
42 #include "defines.h"
43 #include "tcp.h"
44 #include "config.h"
45 #include "media.h"
46
47 class ResponsePacket;
48
49 class MVPClient
50 {
51   public:
52     MVPClient(Config* baseConfig, char* configDirExtra, int tsocket);
53     ~MVPClient();
54
55     int run();
56     // not for external use
57     void run2();
58     static int getNrClients();
59
60   private:
61     static int nr_clients;
62     pthread_t runThread;
63     int initted;
64     Log* log;
65     TCP tcp;
66     Config config;
67     Config* baseConfig;
68     bool loggedIn;
69     char* configDirExtra;
70     FILE* imageFile;
71
72 #ifndef VOMPSTANDALONE
73     MVPReceiver* lp;
74     cRecordings* recordingManager;
75     RecPlayer* recplayer;
76 #endif
77
78     int processLogin(UCHAR* buffer, int length, ResponsePacket* rp);
79 #ifndef VOMPSTANDALONE
80     int processGetRecordingsList(UCHAR* data, int length, ResponsePacket* rp);
81     int processDeleteRecording(UCHAR* data, int length, ResponsePacket* rp);
82     int processMoveRecording(UCHAR* data, int length, ResponsePacket* rp);
83     int processGetChannelsList(UCHAR* data, int length, ResponsePacket* rp);
84     int processStartStreamingChannel(UCHAR* data, int length, ULONG streamID, ResponsePacket* rp);
85     int processGetBlock(UCHAR* data, int length, ResponsePacket* rp);
86     int processStopStreaming(UCHAR* data, int length, ResponsePacket* rp);
87     int processStartStreamingRecording(UCHAR* data, int length, ResponsePacket* rp);
88     int processGetChannelSchedule(UCHAR* data, int length, ResponsePacket* rp);
89     int processGetTimers(UCHAR* data, int length, ResponsePacket* rp);
90     int processSetTimer(UCHAR* data, int length, ResponsePacket* rp);
91     int processPositionFromFrameNumber(UCHAR* data, int length, ResponsePacket* rp);
92     int processFrameNumberFromPosition(UCHAR* data, int length, ResponsePacket* rp);
93     int processGetIFrame(UCHAR* data, int length, ResponsePacket* rp);
94     int processGetRecInfo(UCHAR* data, int length, ResponsePacket* rp);
95     int processGetMarks(UCHAR* data, int length, ResponsePacket* rp);
96     int processGetChannelPids(UCHAR* data, int length, ResponsePacket* rp);
97     int processDeleteTimer(UCHAR* buffer, int length, ResponsePacket* rp);
98
99     int processReScanRecording(UCHAR* data, int length, ResponsePacket* rp);           // FIXME obselete
100 #endif
101     int processConfigSave(UCHAR* data, int length, ResponsePacket* rp);
102     int processConfigLoad(UCHAR* data, int length, ResponsePacket* rp);
103     int processGetMediaList(UCHAR* data, int length, ResponsePacket* rp);
104     int processGetPicture(UCHAR* data, int length, ResponsePacket* rp);
105     int processGetImageBlock(UCHAR* data, int length, ResponsePacket* rp);
106
107     void incClients();
108     void decClients();
109
110 #ifndef VOMPSTANDALONE
111     cChannel* channelFromNumber(ULONG channelNumber);
112     void writeResumeData();
113 #endif
114     void cleanConfig();
115     void sendULONG(ULONG ul);
116
117     ULLONG ntohll(ULLONG a);
118     ULLONG htonll(ULLONG a);
119
120     void test(int num);
121     void test2();
122 };
123
124 #endif