NetServices Stack source

Dependents:   HelloWorld ServoInterfaceBoardExample1 4180_Lab4

Committer:
donatien
Date:
Wed Jul 28 10:18:21 2010 +0000
Revision:
6:b7dd7cde8ad2
Parent:
5:dd63a1e02b1b
Child:
9:c79fa4034f5b

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
donatien 0:632c9925f013 1
donatien 0:632c9925f013 2 /*
donatien 0:632c9925f013 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
donatien 0:632c9925f013 4
donatien 0:632c9925f013 5 Permission is hereby granted, free of charge, to any person obtaining a copy
donatien 0:632c9925f013 6 of this software and associated documentation files (the "Software"), to deal
donatien 0:632c9925f013 7 in the Software without restriction, including without limitation the rights
donatien 0:632c9925f013 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
donatien 0:632c9925f013 9 copies of the Software, and to permit persons to whom the Software is
donatien 0:632c9925f013 10 furnished to do so, subject to the following conditions:
donatien 0:632c9925f013 11
donatien 0:632c9925f013 12 The above copyright notice and this permission notice shall be included in
donatien 0:632c9925f013 13 all copies or substantial portions of the Software.
donatien 0:632c9925f013 14
donatien 0:632c9925f013 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
donatien 0:632c9925f013 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
donatien 0:632c9925f013 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
donatien 0:632c9925f013 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
donatien 0:632c9925f013 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
donatien 0:632c9925f013 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
donatien 0:632c9925f013 21 THE SOFTWARE.
donatien 0:632c9925f013 22 */
donatien 0:632c9925f013 23
donatien 6:b7dd7cde8ad2 24 /** \file
donatien 6:b7dd7cde8ad2 25 HTTP Server header file
donatien 6:b7dd7cde8ad2 26 */
donatien 6:b7dd7cde8ad2 27
donatien 0:632c9925f013 28 #ifndef HTTP_SERVER_H
donatien 0:632c9925f013 29 #define HTTP_SERVER_H
donatien 0:632c9925f013 30
donatien 0:632c9925f013 31 class HTTPRequestHandler;
donatien 0:632c9925f013 32 class HTTPRequestDispatcher;
donatien 0:632c9925f013 33
donatien 0:632c9925f013 34 #include "if/net/net.h"
donatien 0:632c9925f013 35 #include "HTTPRequestHandler.h"
donatien 0:632c9925f013 36 #include "HTTPRequestDispatcher.h"
donatien 0:632c9925f013 37
donatien 0:632c9925f013 38 #include <string>
donatien 0:632c9925f013 39 using std::string;
donatien 0:632c9925f013 40
donatien 0:632c9925f013 41 #include <map>
donatien 0:632c9925f013 42 using std::map;
donatien 0:632c9925f013 43
donatien 5:dd63a1e02b1b 44 ///A simple HTTP server implementation
donatien 5:dd63a1e02b1b 45 /**
donatien 5:dd63a1e02b1b 46 The HTTPServer is composed of:
donatien 5:dd63a1e02b1b 47 - The actual server (HTTPServer)
donatien 5:dd63a1e02b1b 48 - A request dispatcher, instanciated on each request (HTTPRequestDispatcher)
donatien 5:dd63a1e02b1b 49 - Request handlers instanciated by the dispatcher(deriving from HTTPRequestHandler)
donatien 5:dd63a1e02b1b 50 */
donatien 0:632c9925f013 51 class HTTPServer
donatien 0:632c9925f013 52 {
donatien 0:632c9925f013 53 public:
donatien 5:dd63a1e02b1b 54 ///Instantiates the HTTP Server
donatien 0:632c9925f013 55 HTTPServer();
donatien 0:632c9925f013 56 ~HTTPServer();
donatien 2:a4f97773c90f 57
donatien 2:a4f97773c90f 58 struct handlersComp //Used to order handlers in the right way
donatien 2:a4f97773c90f 59 {
donatien 2:a4f97773c90f 60 bool operator() (const string& handler1, const string& handler2) const
donatien 2:a4f97773c90f 61 {
donatien 2:a4f97773c90f 62 //The first handler is longer than the second one
donatien 2:a4f97773c90f 63 if (handler1.length() > handler2.length())
donatien 2:a4f97773c90f 64 return true; //Returns true if handler1 is to appear before handler2
donatien 2:a4f97773c90f 65 else if (handler1.length() < handler2.length())
donatien 2:a4f97773c90f 66 return false;
donatien 2:a4f97773c90f 67 else //To avoid the == case, sort now by address
donatien 2:a4f97773c90f 68 return ((&handler1)>(&handler2));
donatien 2:a4f97773c90f 69 }
donatien 2:a4f97773c90f 70 };
donatien 0:632c9925f013 71
donatien 5:dd63a1e02b1b 72 ///Adds a handler
donatien 5:dd63a1e02b1b 73 /**
donatien 5:dd63a1e02b1b 74 Appends a handler to the handlers list
donatien 5:dd63a1e02b1b 75 @param T : class which will be instanciated to serve these requests
donatien 5:dd63a1e02b1b 76 @param path : requests starting with this path will be served using this handler
donatien 5:dd63a1e02b1b 77 */
donatien 0:632c9925f013 78 template<typename T>
donatien 0:632c9925f013 79 void addHandler(const char* path) //Template decl in header
donatien 0:632c9925f013 80 { m_lpHandlers[path] = &T::inst; }
donatien 0:632c9925f013 81
donatien 5:dd63a1e02b1b 82 ///Starts listening
donatien 5:dd63a1e02b1b 83 /**
donatien 5:dd63a1e02b1b 84 Binds server to a specific port and starts listening
donatien 5:dd63a1e02b1b 85 @param port : port on which to listen for incoming connections
donatien 5:dd63a1e02b1b 86 */
donatien 0:632c9925f013 87 void bind(int port = 80);
donatien 0:632c9925f013 88
donatien 0:632c9925f013 89 private:
donatien 0:632c9925f013 90 friend class HTTPRequestDispatcher;
donatien 0:632c9925f013 91
donatien 0:632c9925f013 92 void onTCPSocketEvent(TCPSocketEvent e);
donatien 0:632c9925f013 93
donatien 0:632c9925f013 94 TCPSocket* m_pTCPSocket;
donatien 2:a4f97773c90f 95 map< string, HTTPRequestHandler*(*)(const char*, const char*, TCPSocket*), handlersComp > m_lpHandlers;
donatien 0:632c9925f013 96
donatien 0:632c9925f013 97 };
donatien 0:632c9925f013 98
donatien 0:632c9925f013 99 //Including handlers here for more convenience
donatien 1:abb442332fa8 100 #include "impl/RPCHandler.h"
donatien 0:632c9925f013 101 #include "impl/FSHandler.h"
donatien 0:632c9925f013 102 #include "impl/SimpleHandler.h"
donatien 0:632c9925f013 103
donatien 0:632c9925f013 104 #endif