Single instance HTTP Server using new Ethernet Interface.

Dependents:   EthHTTPServer if201410_section5 _PE2E_12-04_EthernetInterfaceServer MGAS_GR_Peach ... more

Fork of WiFlyHTTPServer by Henry Leinen

Desciprtion of the library

Overview

This is an HTTPServer library using the new MBED EthernetInterface library. It allows you to :

  • serve files from any file System
  • use Remote procedure calls
  • extend the HTTPServer functionality according to your needs, using the provided handler classes or writing new classes. The following sections will give you a brief overview of how to use the library.

Usage description

You can use the library as file server, as RPC server or a combination of both. You can even define your own behaviour by deriving from one of the classes provided.

Use as file server

You may want to look at my sample application which allows you to serve files from the internal local storage of the mbed with no modifcation of the code :

Very simple example application

#include "mbed.h"
#include "HTTPServer.h"
#include "FsHandler.h"
#include "LocalFileSystem.h"

//  Use LED1 to indicate that the main loop is still executing
DigitalOut myled(LED1);
//  Use the serial connection 'pc' to dump debug information
Serial pc(USBTX, USBRX, "pc");
//  Instantiate a HTTPServer to handle incoming requests
HTTPServer  svr;
//  Instantiate a local file system handler named 'local' which will be used later to access files on the mbed.
LocalFileSystem local("local");


int main() {

    pc.baud(460800);
    HTTPFsRequestHandler::mount("/local/", "/");
    svr.addHandler<HTTPFsRequestHandler>("/");

    if (!svr.start()) {
       error("Server not starting !");
        exit(0);
    }
    
    while(1) {
        svr.poll();
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}

Another alternative is to provide the EthernetInterface library to the HTTPServer library. This may be useful in case you need to perform other tasks with your internet connection. In this case it is necessary that you initialize the EthernetInterface and perform the connection prior to calling the start() method. Here is the example :

Sample application with re-use of existing EthernetInterface object

#include "mbed.h"
#include "HTTPServer.h"
#include "FsHandler.h"
#include "LocalFileSystem.h"
#include "EthernetInterface.h"


//  Use LED1 to indicate that the main loop is still executing
DigitalOut myled(LED1);
//  Use the serial connection 'pc' to dump debug information
Serial pc(USBTX, USBRX, "pc");
//  Instantiate a HTTPServer to handle incoming requests
HTTPServer  svr;
//  Instantiate a local file system handler named 'local' which will be used later to access files on the mbed.
LocalFileSystem local("local");
//  Create the EthernetInterface. This is optional, please see the documentation of HTTP Server's start method.
EthernetInterface eth;


int main() {

    pc.baud(460800);
    HTTPFsRequestHandler::mount("/local/", "/");
    svr.addHandler<HTTPFsRequestHandler>("/");

    //  Initialize the EthernetInterface and initiate a connection using DHCP.
    eth.init();
    eth.connect();

    // ***
    // TODO: Perform other Tasks using the ethernet connection here.
    // ****
    
    // Now start the server on port 80.
    if (!svr.start(80, &eth)) {
        error("Server not starting !");
        exit(0);
    }
    
    // The whole server activity is performed in this Loop. You can also put it into a separate RTOS Task and let it run there all the time.
    while(1) {
        svr.poll();
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}

Use as remote procedure call (RPC) server

To access objects or resources via HTTP you can make use of the RPC functionality. Each object that shall be accessible via HTTP needs to be registered before use. Here is an example which Registers the DigitalOut class for use over RPC :

RPC usage over HTTPServer

#include "mbed.h"
#include "HTTPServer.h"
#include "RpcHandler.h"
#include "mbed_rpc.h"

//  Use LED1 to indicate that the main loop is still executing
DigitalOut myled(LED1);
//  Use the serial connection 'pc' to dump debug information
Serial pc(USBTX, USBRX, "pc");
//  Instantiate a HTTPServer to handle incoming requests
HTTPServer  svr;


int main() {

    pc.baud(460800);
    RPC::add_rpc_class<RpcDigitalOut>();
    svr.addHandler<HTTPRpcRequestHandler>("/RPC");
    
    if (!svr.start()) {
        error("Server not starting !");
        exit(0);
    }
    
    while(1) {
        svr.poll();
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}

And using the above code, enter the following in the address field of your browser :

http://<your_mbed_ip>/RPC/DigitalOut/new LED4 myled4 - - > to create a new object of type DigitalOut on pin LED4 which can be referred to as 'myled4'.

and

http://<your_mbed_ip>/RPC/myled4/write 1 - - > to switch on the LED4.

Of course it is possible to Register your own objects with the standard MBED RPC functionality.

All the above Scenarios are implemented in a sample application, which will allow you to try out the functionality with basically no changes. If you want to try out the HTTP file Server, it is of course helpful to upload an html file to your MBED local storage.

Here is the sample application :

Import programEthHTTPServer

Working sample implementation for the EthernetInterface HTTPServer.

Future plans

Currently I am not considering to further extend this library. However, if someone needs extensions to this library, I will consider implementing them. Of course I will be taking care of bugfixes.

Known issues

Please note that the current implementation of the EthernetInterface seems to have an issue which results in unresponsive behaviour of the Sockets in some situations. This odd behaviour has not only been reported on my HTTPServer but also on other components using the EthernetInterface library.

Committer:
leihen
Date:
Sun May 26 20:13:28 2013 +0000
Revision:
0:7a2421e63e74
Child:
1:6b7472d5e9ee
First draft, which does not actually handle a request.
; Framework is working though.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
leihen 0:7a2421e63e74 1 /* HTTPConnection.h */
leihen 0:7a2421e63e74 2 #ifndef __HTTPConnection_H__
leihen 0:7a2421e63e74 3 #define __HTTPConnection_H__
leihen 0:7a2421e63e74 4
leihen 0:7a2421e63e74 5 #include "mbed.h"
leihen 0:7a2421e63e74 6 #include "TCPSocketConnection.h"
leihen 0:7a2421e63e74 7
leihen 0:7a2421e63e74 8 #include <string>
leihen 0:7a2421e63e74 9 #include <map>
leihen 0:7a2421e63e74 10
leihen 0:7a2421e63e74 11 enum HTTPRequestType
leihen 0:7a2421e63e74 12 {
leihen 0:7a2421e63e74 13 HTTP_RT_GET,
leihen 0:7a2421e63e74 14 HTTP_RT_POST,
leihen 0:7a2421e63e74 15 HTTP_RT_PUT,
leihen 0:7a2421e63e74 16 HTTP_RT_OPTIONS,
leihen 0:7a2421e63e74 17 HTTP_RT_HEAD,
leihen 0:7a2421e63e74 18 HTTP_RT_DELETE,
leihen 0:7a2421e63e74 19 HTTP_RT_TRACE,
leihen 0:7a2421e63e74 20 HTTP_RT_CONNECT
leihen 0:7a2421e63e74 21 };
leihen 0:7a2421e63e74 22
leihen 0:7a2421e63e74 23 struct HTTPMessage
leihen 0:7a2421e63e74 24 {
leihen 0:7a2421e63e74 25 HTTPRequestType request;
leihen 0:7a2421e63e74 26 std::string uri;
leihen 0:7a2421e63e74 27 std::string version;
leihen 0:7a2421e63e74 28 std::map<string, string> headers;
leihen 0:7a2421e63e74 29 };
leihen 0:7a2421e63e74 30
leihen 0:7a2421e63e74 31 /** class HTTPConnection, encapsulates one connection being made throught the HTTPServer
leihen 0:7a2421e63e74 32 *
leihen 0:7a2421e63e74 33 */
leihen 0:7a2421e63e74 34 class HTTPConnection {
leihen 0:7a2421e63e74 35 public:
leihen 0:7a2421e63e74 36 /** public constructor
leihen 0:7a2421e63e74 37 *
leihen 0:7a2421e63e74 38 */
leihen 0:7a2421e63e74 39 HTTPConnection ();
leihen 0:7a2421e63e74 40 ~HTTPConnection();
leihen 0:7a2421e63e74 41
leihen 0:7a2421e63e74 42 /** function to close this connection. To be called from internally.
leihen 0:7a2421e63e74 43 */
leihen 0:7a2421e63e74 44 void close();
leihen 0:7a2421e63e74 45
leihen 0:7a2421e63e74 46 /** query if this connection is closed and can be deleted.
leihen 0:7a2421e63e74 47 @returns true if connection is closed.
leihen 0:7a2421e63e74 48 */
leihen 0:7a2421e63e74 49 bool is_closed();
leihen 0:7a2421e63e74 50
leihen 0:7a2421e63e74 51 /**
leihen 0:7a2421e63e74 52 Polling function
leihen 0:7a2421e63e74 53 @returns -1 if connection is not required anymore. Can happen if a fault occured or if the connection is not needed anymore.
leihen 0:7a2421e63e74 54 */
leihen 0:7a2421e63e74 55 int poll();
leihen 0:7a2421e63e74 56
leihen 0:7a2421e63e74 57 protected:
leihen 0:7a2421e63e74 58
leihen 0:7a2421e63e74 59 TCPSocketConnection m_Tcp;
leihen 0:7a2421e63e74 60
leihen 0:7a2421e63e74 61 HTTPMessage m_Msg;
leihen 0:7a2421e63e74 62 int parse(const char *buffer);
leihen 0:7a2421e63e74 63 int parseHeader(const char *buffer);
leihen 0:7a2421e63e74 64 int receiveHeaders(const char* buffer, int nBuffSize);
leihen 0:7a2421e63e74 65 int receiveLine(char* szLine, int nMaxLen, int nTimeout = -1, char szLineTerm = '\n');
leihen 0:7a2421e63e74 66
leihen 0:7a2421e63e74 67 };
leihen 0:7a2421e63e74 68
leihen 0:7a2421e63e74 69 #endif // __HTTPConnection_H__