]> git.mxchange.org Git - flightgear.git/blob - src/Network/jpg-httpd.hxx
Use SG_LOG instead of printf
[flightgear.git] / src / Network / jpg-httpd.hxx
1 // httpd.hxx -- FGFS http property manager interface / external script
2 //              and control class
3 //
4 // Written by Curtis Olson, started June 2001.
5 //
6 // Copyright (C) 2001  Curtis L. Olson - http://www.flightgear.org/~curt
7 //
8 // Jpeg Image Support added August 2001
9 //  by Norman Vine - nhv@cape.com
10 //
11 // This program is free software; you can redistribute it and/or
12 // modify it under the terms of the GNU General Public License as
13 // published by the Free Software Foundation; either version 2 of the
14 // License, or (at your option) any later version.
15 //
16 // This program is distributed in the hope that it will be useful, but
17 // WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 // General Public License for more details.
20 //
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24 //
25 // $Id$
26
27
28 #ifndef _FG_JPEG_HTTPD_HXX
29 #define _FG_JPEG_HTTPD_HXX
30
31 #ifdef HAVE_CONFIG_H
32 #  include <config.h>
33 #endif
34
35 #include <plib/netChat.h>
36
37 #ifdef FG_JPEG_SERVER
38 #  include <simgear/screen/jpgfactory.hxx>
39 #else
40 // dummy it in to keep the compiler happy
41 class trJpgFactory {
42 public:
43     trJpgFactory();
44     void init(int, int);
45     void destroy();
46     int render();
47   void *data();
48 };
49 #endif
50
51 #include "protocol.hxx"
52
53 class trJpgFactory;
54
55
56 /* simple httpd server that makes an hasty stab at following the http
57    1.1 rfc.  */
58
59 class HttpdImageChannel : public netChat
60 {
61
62     netBuffer buffer ;
63     trJpgFactory *JpgFactory;
64     
65 public:
66
67     HttpdImageChannel() : buffer(512) {
68
69         int nWidth  = fgGetInt( "/sim/startup/xsize", 800 );
70         int nHeight = fgGetInt( "/sim/startup/ysize", 600 );
71
72         setTerminator("\r\n");
73         JpgFactory = new trJpgFactory();
74         JpgFactory -> init( nWidth, nHeight );
75     }
76
77     ~HttpdImageChannel() {
78         JpgFactory -> destroy();
79         delete JpgFactory;
80     }
81
82     virtual void collectIncomingData (const char* s, int n) {
83         buffer.append(s,n);
84     }
85
86     // Handle the actual http request
87     virtual void foundTerminator (void);
88 };
89
90
91 class HttpdImageServer : private netChannel
92 {
93     virtual bool writable (void) { return false ; }
94
95     virtual void handleAccept (void) {
96         netAddress addr ;
97         int handle = accept ( &addr ) ;
98         SG_LOG( SG_IO, SG_INFO, "Client " << addr.getHost() << ":" << addr.getPort() << " connected" );
99
100         HttpdImageChannel *hc = new HttpdImageChannel;
101         hc->setHandle ( handle ) ;
102     }
103
104 public:
105
106     HttpdImageServer ( int port ) {
107         open ();
108         bind( "", port );
109         listen( 5 );
110
111         printf( "HttpdImage server started on port %d\n", port ) ;
112     }
113         
114 };
115
116
117 class FGJpegHttpd : public FGProtocol {
118
119     int port;
120     HttpdImageServer *imageServer;
121     
122 public:
123
124     inline FGJpegHttpd( int p ) { port = p; }
125
126     inline ~FGJpegHttpd() { }
127
128     bool open();
129
130     bool process();
131
132     bool close();
133 };
134
135
136 #endif // _FG_JPEG_HTTPD_HXX