]> git.vomp.tv Git - vompclient.git/blob - vdr.h
Display server names
[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 #include <pthread.h>
27 #include <vector>
28 #include <algorithm>
29
30 #include "defines.h"
31 #include "log.h"
32 #include "dsock.h"
33 #include "tcp.h"
34 #include "directory.h"
35 #include "recording.h"
36 #include "channel.h"
37 #include "event.h"
38 #include "rectimer.h"
39
40 using namespace std;
41
42  // FIXME do some tcp connection error checking and kill it!
43
44 typedef vector<Event*> EventList;
45 typedef vector<Channel*> ChannelList;
46 typedef vector<RecTimer*> RecTimerList;
47
48 struct RecTimerSorter     // : public binary_function<double, double, bool>
49 {
50   bool operator() (const RecTimer* a, const RecTimer* b)
51   {
52     return a->startTime < b->startTime;
53   }
54 };
55
56 struct VDRServer
57 {
58   char* ip;
59   char* name;
60 };
61
62 struct ServerSorter
63 {
64   bool operator() (const VDRServer a, const VDRServer b)
65   {
66     if (strcmp(b.name, a.name) > 0) return true;
67     return false;
68   }
69 };
70
71 class VDR
72 {
73
74   public:
75     VDR();
76     ~VDR();
77     static VDR* getInstance();
78
79     int init(int port);
80     int shutdown();
81
82     void findServers(vector<VDRServer>& servers);
83     void cancelFindingServer();
84     void setServerIP(char*);
85     int connect();
86     void disconnect();
87     ULLONG getResumePoint(char* fileName);  // uses configLoad
88
89     // protocol functions
90
91     int doLogin();
92
93     Directory* getRecordingsList();
94     char*      getRecordingSummary(char* fileName);
95     int        deleteRecording(char* fileName);
96     ULLONG     streamRecording(Recording* rec);
97     ULLONG     rescanRecording();
98
99     ChannelList* getChannelsList(ULONG type);
100     int          streamChannel(ULONG number);
101
102     UCHAR*     getBlock(ULLONG position, UINT maxAmount, UINT* amountReceived);
103     int        stopStreaming();
104     EventList* getChannelSchedule(ULONG number);
105     EventList* getChannelSchedule(ULONG number, time_t start, ULONG duration);
106     int        configSave(char* section, char* key, const char* value);
107     char*      configLoad(char* section, char* key);
108
109     RecTimerList* getRecTimersList();
110
111     // end
112
113     const static ULONG VIDEO = 1;
114     const static ULONG RADIO = 2;
115
116   private:
117     static VDR* instance;
118     Log* logger;
119     int initted;
120     int findingServer;
121     TCP* tcp;
122     int port;
123     char serverIP[16];
124     bool connected;
125     pthread_mutex_t mutex;
126
127     UCHAR* packet;
128     ULONG packetLength;
129     ULONG packetPos;
130
131     const static ULONG VDR_LOGIN               = 1;
132     const static ULONG VDR_GETRECORDINGLIST    = 2;
133     const static ULONG VDR_DELETERECORDING     = 3;
134     const static ULONG VDR_GETSUMMARY          = 4;
135     const static ULONG VDR_GETCHANNELLIST      = 5;
136     const static ULONG VDR_STREAMCHANNEL       = 6;
137     const static ULONG VDR_GETBLOCK            = 7;
138     const static ULONG VDR_STOPSTREAMING       = 8;
139     const static ULONG VDR_STREAMRECORDING     = 9;
140     const static ULONG VDR_GETCHANNELSCHEDULE  = 10;
141     const static ULONG VDR_CONFIGSAVE          = 11;
142     const static ULONG VDR_CONFIGLOAD          = 12;
143     const static ULONG VDR_RESCANRECORDING     = 13;
144     const static ULONG VDR_GETTIMERS           = 14;
145
146     int  getPacket();
147     void freePacket();
148     int  serverError();
149     char*  extractString();
150     ULONG  extractULONG();
151     ULLONG extractULLONG();
152     long   extractLONG();
153 };
154
155 #endif