Arquivos
hhvm/hphp/runtime/server/rpc_request_handler.h
T
Edwin Smith c4e406b62f Move runtime/base/server to runtime/server
This is an incremental step towards moving it all the way
to hphp/server.  This flattens base but doesn't untangle
the server files from lib_hphp_runtime
2013-07-15 18:13:25 -07:00

79 linhas
2.7 KiB
C++

/*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010-2013 Facebook, Inc. (http://www.facebook.com) |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
*/
#ifndef incl_HPHP_RPC_REQUEST_HANDLER_H_
#define incl_HPHP_RPC_REQUEST_HANDLER_H_
#include "hphp/runtime/server/server.h"
#include "hphp/runtime/base/execution_context.h"
namespace HPHP {
class SourceRootInfo;
class RequestURI;
class Transport;
DECLARE_BOOST_TYPES(SatelliteServerInfo);
///////////////////////////////////////////////////////////////////////////////
class RPCRequestHandler : public RequestHandler {
public:
enum class ReturnEncodeType {
Json = 1,
Serialize = 2,
};
explicit RPCRequestHandler(bool info = true);
virtual ~RPCRequestHandler();
void setServerInfo(SatelliteServerInfoPtr info) { m_serverInfo = info;}
// implementing RequestHandler
virtual void handleRequest(Transport *transport);
/**
* Force a reset before the next request.
*/
void setReset() { m_reset = true; }
time_t getLastResetTime() const { return m_lastReset; }
void setReturnEncodeType(ReturnEncodeType et) { m_returnEncodeType = et; }
ReturnEncodeType getReturnEncodeType() const { return m_returnEncodeType; }
private:
ExecutionContext *m_context;
SatelliteServerInfoPtr m_serverInfo;
int m_requestsSinceReset;
bool m_reset;
bool m_logResets;
ReturnEncodeType m_returnEncodeType;
time_t m_lastReset;
void initState();
void cleanupState();
bool needReset() const;
bool executePHPFunction(Transport *transport,
SourceRootInfo &sourceRootInfo,
ReturnEncodeType returnEncodeType);
std::string getSourceFilename(const std::string &path,
SourceRootInfo &sourceRootInfo);
};
///////////////////////////////////////////////////////////////////////////////
}
#endif // incl_HPHP_RPC_REQUEST_HANDLER_H_