2 Copyright 2004-2008 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 The new async protocol design forced the server side change from the mvpclient
23 class to the mess it is now. Maybe in a couple of versions time it will become
24 more apparent how better to design all this.
26 The reason for the class split is that with the current Thread class system,
27 you can only have one thread per object. The vompclient class would have needed
28 two, one for RR stuff and one for the keepalives.
30 So the new design is this: the VompClient class represents one connection from
31 one client as the MVPClient class did before. But because two threads are now
32 needed, a helper class VompClientRRProc contains all the RR processing functions,
33 and the thread needed to process them. All the state data is still kept in the
45 #include <unistd.h> // sleep
47 #ifndef VOMPSTANDALONE
59 #include "vompclientrrproc.h"
62 class ServerMediaFile;
63 class SerializeBuffer;
68 friend class VompClientRRProc;
71 VompClient(Config* baseConfig, char* configDir, int tsocket);
75 // not for external use
77 static int getNrClients();
80 static int nr_clients;
84 static ULLONG ntohll(ULLONG a);
85 static ULLONG htonll(ULLONG a);
87 VompClientRRProc rrproc;
101 //void cleanConfig();
103 #ifndef VOMPSTANDALONE
104 cChannel* channelFromNumber(ULONG channelNumber);
105 void writeResumeData();
108 cRecordings* recordingManager;
109 RecPlayer* recplayer;
112 ServerMediaFile *mediaprovider;
114 void setCharset(int charset);
115 int charcoding; // 1= latin1 2= UTF-8
116 cCharSetConv *charconvutf8;
117 cCharSetConv *charconvsys;