1 // httpd.hxx -- FGFS http property manager interface / external script
4 // Written by Curtis Olson, started June 2001.
6 // Copyright (C) 2001 Curtis L. Olson - curt@flightgear.org
8 // Jpeg Image Support added August 2001
9 // by Norman Vine - nhv@cape.com
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.
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.
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.
28 #ifndef _FG_JPEG_HTTPD_HXX
29 #define _FG_JPEG_HTTPD_HXX
35 #include <plib/netChat.h>
38 # include <simgear/screen/jpgfactory.hxx>
40 // dummy it in to keep the compiler happy
51 #include "protocol.hxx"
56 /* simple httpd server that makes an hasty stab at following the http
59 class HttpdImageChannel : public netChat
63 trJpgFactory *JpgFactory;
67 HttpdImageChannel() : buffer(512) {
68 setTerminator("\r\n");
69 JpgFactory = new trJpgFactory();
71 // This is a terrible hack but it can't be initialized until
72 // after OpenGL is up an running
73 JpgFactory->init(400,300);
76 ~HttpdImageChannel() {
77 JpgFactory->destroy();
81 virtual void collectIncomingData (const char* s, int n) {
85 // Handle the actual http request
86 virtual void foundTerminator (void);
90 class HttpdImageServer : private netChannel
92 virtual bool writable (void) { return false ; }
94 virtual void handleAccept (void) {
96 int handle = accept ( &addr ) ;
97 printf("Client %s:%d connected\n", addr.getHost(), addr.getPort());
99 HttpdImageChannel *hc = new HttpdImageChannel;
100 hc->setHandle ( handle ) ;
105 HttpdImageServer ( int port ) {
110 printf( "HttpdImage server started on port %d\n", port ) ;
116 class FGJpegHttpd : public FGProtocol {
119 HttpdImageServer *imageServer;
123 inline FGJpegHttpd( int p ) { port = p; }
125 inline ~FGJpegHttpd() { }
135 #endif // _FG_JPEG_HTTPD_HXX