1
0
Fork 0
arangodb/lib/SimpleHttpClient/GeneralClientConnection.h

264 lines
10 KiB
C++

////////////////////////////////////////////////////////////////////////////////
/// DISCLAIMER
///
/// Copyright 2014-2016 ArangoDB GmbH, Cologne, Germany
/// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany
///
/// Licensed under the Apache License, Version 2.0 (the "License");
/// you may not use this file except in compliance with the License.
/// You may obtain a copy of the License at
///
/// http://www.apache.org/licenses/LICENSE-2.0
///
/// Unless required by applicable law or agreed to in writing, software
/// distributed under the License is distributed on an "AS IS" BASIS,
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/// See the License for the specific language governing permissions and
/// limitations under the License.
///
/// Copyright holder is ArangoDB GmbH, Cologne, Germany
///
/// @author Jan Steemann
////////////////////////////////////////////////////////////////////////////////
#ifndef ARANGODB_SIMPLE_HTTP_CLIENT_GENERAL_CLIENT_CONNECTION_H
#define ARANGODB_SIMPLE_HTTP_CLIENT_GENERAL_CLIENT_CONNECTION_H 1
#include "Basics/Common.h"
#include "Basics/StringBuffer.h"
#include "Endpoint/Endpoint.h"
namespace arangodb {
namespace httpclient {
////////////////////////////////////////////////////////////////////////////////
/// @brief general client connection
////////////////////////////////////////////////////////////////////////////////
class GeneralClientConnection {
protected:
//////////////////////////////////////////////////////////////////////////////
/// @brief size of read buffer for read operations
//////////////////////////////////////////////////////////////////////////////
enum { READBUFFER_SIZE = 8192 };
private:
explicit GeneralClientConnection(GeneralClientConnection const&);
GeneralClientConnection& operator=(GeneralClientConnection const&);
public:
//////////////////////////////////////////////////////////////////////////////
/// @brief creates a new client connection
//////////////////////////////////////////////////////////////////////////////
GeneralClientConnection(Endpoint* endpoint, double, double, size_t);
GeneralClientConnection(std::unique_ptr<Endpoint>& endpoint, double, double, size_t);
//////////////////////////////////////////////////////////////////////////////
/// @brief destroys a client connection
//////////////////////////////////////////////////////////////////////////////
virtual ~GeneralClientConnection();
public:
//////////////////////////////////////////////////////////////////////////////
/// @brief create a new connection from an endpoint
//////////////////////////////////////////////////////////////////////////////
static GeneralClientConnection* factory(Endpoint*, double requestTimeout, double connectTimeout,
size_t numRetries, uint64_t sslProtocol);
static GeneralClientConnection* factory(std::unique_ptr<Endpoint>&,
double requestTimeout, double connectTimeout,
size_t numRetries, uint64_t sslProtocol);
//////////////////////////////////////////////////////////////////////////////
/// @brief return the endpoint
//////////////////////////////////////////////////////////////////////////////
Endpoint const* getEndpoint() const { return _endpoint; }
//////////////////////////////////////////////////////////////////////////////
/// @brief returns a string representation of the connection endpoint
//////////////////////////////////////////////////////////////////////////////
std::string getEndpointSpecification() const {
return _endpoint->specification();
}
//////////////////////////////////////////////////////////////////////////////
/// @brief return the connection state
//////////////////////////////////////////////////////////////////////////////
bool isConnected() const { return _isConnected; }
//////////////////////////////////////////////////////////////////////////////
/// @brief reset the number of connect attempts
//////////////////////////////////////////////////////////////////////////////
void resetNumConnectRetries() { _numConnectRetries = 0; }
//////////////////////////////////////////////////////////////////////////////
/// @brief returns the number of configured connect retries
//////////////////////////////////////////////////////////////////////////////
inline size_t connectRetries() const { return _connectRetries; }
//////////////////////////////////////////////////////////////////////////////
/// @brief connect
//////////////////////////////////////////////////////////////////////////////
bool connect();
//////////////////////////////////////////////////////////////////////////////
/// @brief disconnect
//////////////////////////////////////////////////////////////////////////////
void disconnect();
//////////////////////////////////////////////////////////////////////////////
/// @brief send data to the endpoint
//////////////////////////////////////////////////////////////////////////////
bool handleWrite(double, void const*, size_t, size_t*);
//////////////////////////////////////////////////////////////////////////////
/// @brief read data from endpoint
//////////////////////////////////////////////////////////////////////////////
bool handleRead(double, arangodb::basics::StringBuffer&, bool& connectionClosed);
//////////////////////////////////////////////////////////////////////////////
/// @brief return the endpoint
//////////////////////////////////////////////////////////////////////////////
std::string const& getErrorDetails() const { return _errorDetails; }
//////////////////////////////////////////////////////////////////////////////
/// @brief whether or not the current operation should be interrupted
//////////////////////////////////////////////////////////////////////////////
bool isInterrupted() const {
return _isInterrupted.load(std::memory_order_acquire);
}
//////////////////////////////////////////////////////////////////////////////
/// @brief interrupt the current operation
//////////////////////////////////////////////////////////////////////////////
void setInterrupted(bool value) {
_isInterrupted.store(value, std::memory_order_release);
}
protected:
//////////////////////////////////////////////////////////////////////////////
/// @brief connect
//////////////////////////////////////////////////////////////////////////////
virtual bool connectSocket() = 0;
//////////////////////////////////////////////////////////////////////////////
/// @brief disconnect
//////////////////////////////////////////////////////////////////////////////
virtual void disconnectSocket() = 0;
//////////////////////////////////////////////////////////////////////////////
/// @brief prepare connection for read/write I/O
//////////////////////////////////////////////////////////////////////////////
bool prepare(TRI_socket_t socket, double timeout, bool isWrite);
//////////////////////////////////////////////////////////////////////////////
/// @brief check whether the socket is still alive
//////////////////////////////////////////////////////////////////////////////
bool checkSocket();
//////////////////////////////////////////////////////////////////////////////
/// @brief write data to the connection
//////////////////////////////////////////////////////////////////////////////
virtual bool writeClientConnection(void const*, size_t, size_t*) = 0;
//////////////////////////////////////////////////////////////////////////////
/// @brief read data from the connection
//////////////////////////////////////////////////////////////////////////////
virtual bool readClientConnection(arangodb::basics::StringBuffer&, bool& porgress) = 0;
//////////////////////////////////////////////////////////////////////////////
/// @brief return whether the connection is readable
//////////////////////////////////////////////////////////////////////////////
virtual bool readable() = 0;
protected:
//////////////////////////////////////////////////////////////////////////////
/// @brief the underlying socket
//////////////////////////////////////////////////////////////////////////////
TRI_socket_t _socket;
//////////////////////////////////////////////////////////////////////////////
/// @brief details to errors
//////////////////////////////////////////////////////////////////////////////
mutable std::string _errorDetails;
//////////////////////////////////////////////////////////////////////////////
/// @brief endpoint to connect to
//////////////////////////////////////////////////////////////////////////////
Endpoint* _endpoint;
bool _freeEndpointOnDestruction;
//////////////////////////////////////////////////////////////////////////////
/// @brief request timeout (in seconds)
//////////////////////////////////////////////////////////////////////////////
double _requestTimeout;
//////////////////////////////////////////////////////////////////////////////
/// @brief connection timeout (in seconds)
//////////////////////////////////////////////////////////////////////////////
double _connectTimeout;
//////////////////////////////////////////////////////////////////////////////
/// @brief allowed number of connect retries
//////////////////////////////////////////////////////////////////////////////
size_t _connectRetries;
//////////////////////////////////////////////////////////////////////////////
/// @brief number of connection attempts made
//////////////////////////////////////////////////////////////////////////////
size_t _numConnectRetries;
//////////////////////////////////////////////////////////////////////////////
/// @brief whether we're connected
//////////////////////////////////////////////////////////////////////////////
bool _isConnected;
#ifdef ARANGODB_ENABLE_MAINTAINER_MODE
uint64_t _read;
uint64_t _written;
#endif
//////////////////////////////////////////////////////////////////////////////
/// @brief whether or not the current operation should be interrupted
//////////////////////////////////////////////////////////////////////////////
std::atomic<bool> _isInterrupted;
};
} // namespace httpclient
} // namespace arangodb
#endif