Webserver for peach-board

HTTPServer.h

Committer:
thudt90
Date:
2015-03-04
Revision:
0:6ec14f880a00
Child:
1:f1f734dd23ee

File content as of revision 0:6ec14f880a00:

#ifndef HTTP_SERVER
#define HTTP_SERVER

#include <map>

#include "mbed.h"
//#include "mbed_rpc.h"
#include "RequestHandler.h"
#include "Formatter.h"
#include "EthernetInterface.h"
#include "RPCCommand.h"


class HTTPServer
{
    public :
    
        HTTPServer(Formatter *f = new Formatter());
        virtual ~HTTPServer();
        
        bool init(int port);

        void run();
        
        void add_request_handler(char *name, RequestHandler* handler);
        
    private :

        void handle_request(char *buffer);
        
        TCPSocketServer socket;
        std::map<char*, RequestHandler*, bool(*)(char*, char*)> handlers;
        Formatter *formatter;
        char reply[RPC_MAX_STRING];
        RPCCommand command;
};

#endif