]> git.mxchange.org Git - flightgear.git/blob - src/Network/jpg-httpd.hxx
Changes to support optional screen snap shot httpd server.
[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 - curt@flightgear.org
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., 675 Mass Ave, Cambridge, MA 02139, 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 #endif
40
41 #include "protocol.hxx"
42
43 class trJpgFactory;
44
45
46 /* simple httpd server that makes an hasty stab at following the http
47    1.1 rfc.  */
48
49 class HttpdImageChannel : public netChat
50 {
51
52     netBuffer buffer ;
53     trJpgFactory *JpgFactory;
54     
55 public:
56
57     HttpdImageChannel() : buffer(512) {
58         setTerminator("\r\n");
59         JpgFactory = new trJpgFactory();
60
61         // This is a terrible hack but it can't be initialized until
62         // after OpenGL is up an running
63         JpgFactory->init(400,300);
64     }
65
66     ~HttpdImageChannel() {
67         JpgFactory->destroy();
68         delete JpgFactory;
69     }
70
71     virtual void collectIncomingData (const char* s, int n) {
72         buffer.append(s,n);
73     }
74
75     // Handle the actual http request
76     virtual void foundTerminator (void);
77 };
78
79
80 class HttpdImageServer : private netChannel
81 {
82     virtual bool writable (void) { return false ; }
83
84     virtual void handleAccept (void) {
85         netAddress addr ;
86         int handle = accept ( &addr ) ;
87         printf("Client %s:%d connected\n", addr.getHost(), addr.getPort());
88
89         HttpdImageChannel *hc = new HttpdImageChannel;
90         hc->setHandle ( handle ) ;
91     }
92
93 public:
94
95     HttpdImageServer ( int port ) {
96         open ();
97         bind( "", port );
98         listen( 5 );
99
100         printf( "HttpdImage server started on port %d\n", port ) ;
101     }
102         
103 };
104
105
106 class FGJpegHttpd : public FGProtocol {
107
108     int port;
109     HttpdImageServer *imageServer;
110     
111 public:
112
113     inline FGJpegHttpd( int p ) { port = p; }
114
115     inline ~FGJpegHttpd() { }
116
117     bool open();
118
119     bool process();
120
121     bool close();
122 };
123
124
125 #endif // _FG_JPEG_HTTPD_HXX