mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Tidy up ripple_net module
This commit is contained in:
129
modules/ripple_net/basics/HTTPClient.h
Normal file
129
modules/ripple_net/basics/HTTPClient.h
Normal file
@@ -0,0 +1,129 @@
|
||||
//------------------------------------------------------------------------------
|
||||
/*
|
||||
Copyright (c) 2011-2013, OpenCoin, Inc.
|
||||
*/
|
||||
//==============================================================================
|
||||
|
||||
#ifndef RIPPLE_NET_BASICS_HTTPCLIENT_H_INCLUDED
|
||||
#define RIPPLE_NET_BASICS_HTTPCLIENT_H_INCLUDED
|
||||
|
||||
// VFALCO TODO Make this an abstract interface.
|
||||
//
|
||||
/** Provides an asynchronous HTTPS client implementation.
|
||||
*/
|
||||
class HttpsClient
|
||||
: public boost::enable_shared_from_this <HttpsClient>
|
||||
, LeakChecked <HttpsClient>
|
||||
{
|
||||
public:
|
||||
HttpsClient (
|
||||
boost::asio::io_service& io_service,
|
||||
const unsigned short port,
|
||||
std::size_t responseMax
|
||||
);
|
||||
|
||||
// VFALCO NOTE Putting "https" is redundant, the class is
|
||||
// already called HttpsClient.
|
||||
//
|
||||
// VFALCO TODO Rename these to request, get, and next.
|
||||
//
|
||||
void httpsRequest (
|
||||
bool bSSL,
|
||||
std::deque<std::string> deqSites,
|
||||
FUNCTION_TYPE <void (boost::asio::streambuf& sb, const std::string& strHost)> build,
|
||||
boost::posix_time::time_duration timeout,
|
||||
FUNCTION_TYPE <bool (const boost::system::error_code& ecResult, int iStatus, const std::string& strData)> complete);
|
||||
|
||||
void httpsGet (
|
||||
bool bSSL,
|
||||
std::deque<std::string> deqSites,
|
||||
const std::string& strPath,
|
||||
boost::posix_time::time_duration timeout,
|
||||
FUNCTION_TYPE <bool (const boost::system::error_code& ecResult, int iStatus, const std::string& strData)> complete);
|
||||
|
||||
// VFALCO TODO These statics all belong in some HttpsClientOperations class
|
||||
//
|
||||
static void httpsGet (
|
||||
bool bSSL,
|
||||
boost::asio::io_service& io_service,
|
||||
std::deque <std::string> deqSites,
|
||||
const unsigned short port,
|
||||
const std::string& strPath,
|
||||
std::size_t responseMax,
|
||||
boost::posix_time::time_duration timeout,
|
||||
FUNCTION_TYPE <bool (const boost::system::error_code& ecResult, int iStatus, const std::string& strData)> complete);
|
||||
|
||||
static void httpsGet (
|
||||
bool bSSL,
|
||||
boost::asio::io_service& io_service,
|
||||
std::string strSite,
|
||||
const unsigned short port,
|
||||
const std::string& strPath,
|
||||
std::size_t responseMax,
|
||||
boost::posix_time::time_duration timeout,
|
||||
FUNCTION_TYPE <bool (const boost::system::error_code& ecResult, int iStatus, const std::string& strData)> complete);
|
||||
|
||||
static void httpsRequest (
|
||||
bool bSSL,
|
||||
boost::asio::io_service& io_service,
|
||||
std::string strSite,
|
||||
const unsigned short port,
|
||||
FUNCTION_TYPE <void (boost::asio::streambuf& sb, const std::string& strHost)> build,
|
||||
std::size_t responseMax,
|
||||
boost::posix_time::time_duration timeout,
|
||||
FUNCTION_TYPE <bool (const boost::system::error_code& ecResult, int iStatus, const std::string& strData)> complete);
|
||||
|
||||
static void sendSMS (boost::asio::io_service& io_service, const std::string& strText);
|
||||
|
||||
private:
|
||||
static const int maxClientHeaderBytes = 32 * 1024;
|
||||
|
||||
typedef boost::shared_ptr<HttpsClient> pointer;
|
||||
|
||||
bool mSSL;
|
||||
AutoSocket mSocket;
|
||||
boost::asio::ip::tcp::resolver mResolver;
|
||||
boost::shared_ptr<boost::asio::ip::tcp::resolver::query> mQuery;
|
||||
boost::asio::streambuf mRequest;
|
||||
boost::asio::streambuf mHeader;
|
||||
boost::asio::streambuf mResponse;
|
||||
std::string mBody;
|
||||
const unsigned short mPort;
|
||||
int mResponseMax;
|
||||
int mStatus;
|
||||
FUNCTION_TYPE<void (boost::asio::streambuf& sb, const std::string& strHost)> mBuild;
|
||||
FUNCTION_TYPE<bool (const boost::system::error_code& ecResult, int iStatus, const std::string& strData)> mComplete;
|
||||
|
||||
boost::asio::deadline_timer mDeadline;
|
||||
|
||||
// If not success, we are shutting down.
|
||||
boost::system::error_code mShutdown;
|
||||
|
||||
std::deque<std::string> mDeqSites;
|
||||
boost::posix_time::time_duration mTimeout;
|
||||
|
||||
void handleDeadline (const boost::system::error_code& ecResult);
|
||||
|
||||
void handleResolve (const boost::system::error_code& ecResult, boost::asio::ip::tcp::resolver::iterator endpoint_iterator);
|
||||
|
||||
void handleConnect (const boost::system::error_code& ecResult);
|
||||
|
||||
void handleRequest (const boost::system::error_code& ecResult);
|
||||
|
||||
void handleWrite (const boost::system::error_code& ecResult, std::size_t bytes_transferred);
|
||||
|
||||
void handleHeader (const boost::system::error_code& ecResult, std::size_t bytes_transferred);
|
||||
|
||||
void handleData (const boost::system::error_code& ecResult, std::size_t bytes_transferred);
|
||||
|
||||
void handleShutdown (const boost::system::error_code& ecResult);
|
||||
|
||||
void httpsNext ();
|
||||
|
||||
void invokeComplete (const boost::system::error_code& ecResult, int iStatus = 0, const std::string& strData = "");
|
||||
|
||||
void makeGet (const std::string& strPath, boost::asio::streambuf& sb, const std::string& strHost);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user