Dependents:   SimpleLCDClock readCard2Twitter_http AnalogClock_StepperMotor_NTP ServoCamV1

services/http/server/impl/RpcHandler.h

Committer:
donatien
Date:
2010-05-24
Revision:
0:a2dd0ba6cd2d
Child:
1:7043cc0db03c

File content as of revision 0:a2dd0ba6cd2d:

#ifndef RPC_HANDLER_H
#define RPC_HANDLER_H

#include "../HttpRequestHandler.h"

class RpcHandler : public HttpRequestHandler
{
public:
  RpcHandler(const char* rootPath, const char* path, TcpSocket* pTcpSocket);
  virtual ~RpcHandler();

//protected:
  static inline HttpRequestHandler* inst(const char* rootPath, const char* path, TcpSocket* pTcpSocket) { return new RpcHandler(rootPath, path, pTcpSocket); } //if we ever could do static virtual functions, this would be one

  virtual void doGet();
  virtual void doPost();
  virtual void doHead();
  
  virtual void onReadable(); //Data has been read
  virtual void onWriteable(); //Data has been written & buf is free
  virtual void onClose(); //Connection is closing

protected:
  void cleanReq(char* data);
};

#endif