X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2Fhttpd.cxx;h=206b553d62373875627eb96e006dc2f0845d4f9c;hb=a1031b052dd40ca3a4ea68dcd7f572b7d9e4bb24;hp=31d4b93375af4724799b0b1184b99a102ed29df1;hpb=674a295896a1e56d605f39874262d6f146a586a3;p=flightgear.git diff --git a/src/Network/httpd.cxx b/src/Network/httpd.cxx index 31d4b9337..206b553d6 100644 --- a/src/Network/httpd.cxx +++ b/src/Network/httpd.cxx @@ -5,9 +5,6 @@ // // Copyright (C) 2001 Curtis L. Olson - http://www.flightgear.org/~curt // -// Jpeg Image Support added August 2001 -// by Norman Vine - nhv@cape.com -// // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation; either version 2 of the @@ -37,6 +34,7 @@ #include #include +#include #include #include #include @@ -49,11 +47,98 @@ using std::string; +/* simple httpd server that makes an hasty stab at following the http + 1.1 rfc. */ + +////////////////////////////////////////////////////////////// +// class HttpdChannel +////////////////////////////////////////////////////////////// + +class HttpdChannel : public simgear::NetChat +{ + simgear::NetBuffer buffer; + + string urlEncode(string); + string urlDecode(string); + +public: + + HttpdChannel() : buffer(512) { setTerminator("\r\n"); } + + virtual void collectIncomingData (const char* s, int n) { + buffer.append(s,n); + } + + // Handle the actual http request + virtual void foundTerminator(void); +}; + + +////////////////////////////////////////////////////////////// +// class HttpdServer +////////////////////////////////////////////////////////////// + +class HttpdServer : private simgear::NetChannel +{ + virtual bool writable (void) { return false; } + + virtual void handleAccept (void) { + simgear::IPAddress addr; + int handle = accept ( &addr ); + SG_LOG( SG_IO, SG_INFO, "Client " << addr.getHost() << ":" << addr.getPort() << " connected" ); + + HttpdChannel *hc = new HttpdChannel; + hc->setHandle ( handle ); + } + +public: + + HttpdServer ( int port ); +}; + +HttpdServer::HttpdServer(int port) +{ + if (!open()) + { + SG_LOG( SG_IO, SG_ALERT, "Failed to open HTTP port."); + return; + } + + if (0 != bind( "", port )) + { + SG_LOG( SG_IO, SG_ALERT, "Failed to bind HTTP port."); + return; + } + + if (0 != listen( 5 )) + { + SG_LOG( SG_IO, SG_ALERT, "Failed to listen on HTTP port."); + return; + } + + SG_LOG(SG_IO, SG_ALERT, "Httpd server started on port " << port); +} + +////////////////////////////////////////////////////////////// +// class FGHttpd +////////////////////////////////////////////////////////////// + +FGHttpd::FGHttpd(int p) : + port(p), + server(NULL) +{ +} + +FGHttpd::~FGHttpd() +{ + delete server; +} + bool FGHttpd::open() { if ( is_enabled() ) { - SG_LOG( SG_IO, SG_ALERT, "This shouldn't happen, but the channel " - << "is already in use, ignoring" ); - return false; + SG_LOG( SG_IO, SG_ALERT, "This shouldn't happen, but the channel " + << "is already in use, ignoring" ); + return false; } server = new HttpdServer( port ); @@ -73,9 +158,13 @@ bool FGHttpd::process() { bool FGHttpd::close() { + if (!server) + return true; + SG_LOG( SG_IO, SG_INFO, "closing FGHttpd" ); delete server; + server = NULL; set_enabled( false ); return true; @@ -147,7 +236,7 @@ void HttpdChannel::foundTerminator (void) { if ( !globals->get_commands() ->execute(urlDecode(b).c_str(), &args) ) { - SG_LOG( SG_GENERAL, SG_ALERT, + SG_LOG( SG_NETWORK, SG_ALERT, "Command " << urlDecode(b) << " failed."); }