blob: 2ad8d0ada2298883ca062481dc5e662a79edb7be [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
#ifndef _IGNITE_NETWORK_SOCKET_CLIENT
#define _IGNITE_NETWORK_SOCKET_CLIENT
#include <stddef.h>
#include <stdint.h>
namespace ignite
{
namespace network
{
/**
* Socket client implementation.
*/
class SocketClient
{
public:
/**
* Non-negative timeout operation result.
*/
struct WaitResult
{
enum T
{
/** Timeout. */
TIMEOUT = 0,
/** Success. */
SUCCESS = 1
};
};
/**
* Destructor.
*/
virtual ~SocketClient()
{
// No-op.
}
/**
* Establish connection with remote service.
*
* @param hostname Remote host name.
* @param port Service port.
* @param timeout Timeout.
* @return @c true on success and @c false on timeout.
*/
virtual bool Connect(const char* hostname, uint16_t port, int32_t timeout) = 0;
/**
* Close established connection.
*/
virtual void Close() = 0;
/**
* Send data by established connection.
*
* @param data Pointer to data to be sent.
* @param size Size of the data in bytes.
* @param timeout Timeout.
* @return Number of bytes that have been sent on success,
* WaitResult::TIMEOUT on timeout and -errno on failure.
*/
virtual int Send(const int8_t* data, size_t size, int32_t timeout) = 0;
/**
* Receive data from established connection.
*
* @param buffer Pointer to data buffer.
* @param size Size of the buffer in bytes.
* @param timeout Timeout.
* @return Number of bytes that have been received on success,
* WaitResult::TIMEOUT on timeout and -errno on failure.
*/
virtual int Receive(int8_t* buffer, size_t size, int32_t timeout) = 0;
/**
* Check if the socket is blocking or not.
* @return @c true if the socket is blocking and false otherwise.
*/
virtual bool IsBlocking() const = 0;
};
}
}
#endif //_IGNITE_NETWORK_SOCKET_CLIENT