2006-02-17 14:47:45 +00:00
|
|
|
/* <!-- copyright */
|
|
|
|
/*
|
|
|
|
* aria2 - a simple utility for downloading files faster
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
/* copyright --> */
|
|
|
|
#ifndef _D_SOCKET_CORE_H_
|
|
|
|
#define _D_SOCKET_CORE_H_
|
|
|
|
|
|
|
|
#include <string>
|
2006-02-21 12:27:17 +00:00
|
|
|
#include <utility>
|
2006-02-17 18:51:12 +00:00
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBSSL
|
|
|
|
// for SSL
|
|
|
|
# include <openssl/ssl.h>
|
|
|
|
#endif // HAVE_LIBSSL
|
2006-02-17 14:47:45 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
class SocketCore {
|
|
|
|
friend class Socket;
|
|
|
|
private:
|
|
|
|
// socket endpoint descriptor
|
|
|
|
int sockfd;
|
|
|
|
// reference counter for this object.
|
|
|
|
int use;
|
2006-02-17 18:51:12 +00:00
|
|
|
bool secure;
|
|
|
|
#ifdef HAVE_LIBSSL
|
|
|
|
// for SSL
|
|
|
|
SSL_CTX* sslCtx;
|
|
|
|
SSL* ssl;
|
|
|
|
#endif // HAVE_LIBSSL
|
2006-02-21 12:27:17 +00:00
|
|
|
void init();
|
|
|
|
SocketCore(int sockfd);
|
2006-02-17 14:47:45 +00:00
|
|
|
public:
|
|
|
|
SocketCore();
|
|
|
|
~SocketCore();
|
|
|
|
|
2006-03-01 07:00:39 +00:00
|
|
|
/**
|
|
|
|
* Creates a socket and listens form connection on it.
|
|
|
|
*/
|
2006-02-21 12:27:17 +00:00
|
|
|
void beginListen();
|
2006-03-01 07:00:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Stores host address and port of this socket to addrinfo.
|
|
|
|
* @param addrinfo placeholder to store host address and port.
|
|
|
|
*/
|
2006-02-21 12:27:17 +00:00
|
|
|
void getAddrInfo(pair<string, int>& addrinfo) const;
|
2006-03-01 07:00:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Accepts incoming connection on this socket.
|
|
|
|
* You must call beginListen() before calling this method.
|
|
|
|
* @return accepted socket. The caller must delete it after using it.
|
|
|
|
*/
|
2006-02-21 12:27:17 +00:00
|
|
|
SocketCore* acceptConnection() const;
|
2006-03-01 07:00:39 +00:00
|
|
|
|
2006-02-17 14:47:45 +00:00
|
|
|
/**
|
|
|
|
* Connects to the server named host and the destination port is port.
|
2006-03-01 07:00:39 +00:00
|
|
|
* This method makes socket non-blocking mode.
|
|
|
|
* To make the socket blocking mode again, call setBlockingMode() after
|
2006-02-17 14:47:45 +00:00
|
|
|
* the connection is established.
|
2006-03-01 07:00:39 +00:00
|
|
|
* @param host hostname or ip address to connect to
|
|
|
|
* @param port service port number to connect to
|
2006-02-17 14:47:45 +00:00
|
|
|
*/
|
|
|
|
void establishConnection(string host, int port);
|
|
|
|
|
2006-03-01 07:00:39 +00:00
|
|
|
/**
|
|
|
|
* Makes this socket blocking mode.
|
|
|
|
*/
|
2006-02-21 12:27:17 +00:00
|
|
|
void setBlockingMode() const;
|
2006-02-17 14:47:45 +00:00
|
|
|
|
2006-03-01 07:00:39 +00:00
|
|
|
/**
|
|
|
|
* Closes the connection of this socket.
|
|
|
|
*/
|
2006-02-17 14:47:45 +00:00
|
|
|
void closeConnection();
|
|
|
|
|
2006-03-01 07:00:39 +00:00
|
|
|
/**
|
|
|
|
* Checks whether this socket is available for writing.
|
|
|
|
* @param timeout the amount of time elapsed before the checking are timed
|
|
|
|
* out.
|
|
|
|
* @return true if the socket is available for writing,
|
|
|
|
* otherwise returns false.
|
|
|
|
*/
|
2006-02-21 12:27:17 +00:00
|
|
|
bool isWritable(int timeout) const;
|
2006-02-17 14:47:45 +00:00
|
|
|
|
2006-03-01 07:00:39 +00:00
|
|
|
/**
|
|
|
|
* Checks whether this socket is available for reading.
|
|
|
|
* @param timeout the amount of time elapsed before the checking are timed
|
|
|
|
* out.
|
|
|
|
* @return true if the socket is available for reading,
|
|
|
|
* otherwise returns false.
|
|
|
|
*/
|
2006-02-21 12:27:17 +00:00
|
|
|
bool isReadable(int timeout) const;
|
2006-02-17 14:47:45 +00:00
|
|
|
|
2006-03-01 07:00:39 +00:00
|
|
|
/**
|
|
|
|
* Writes characters into this socket. data is a pointer pointing the first
|
|
|
|
* byte of the data and len is the length of data.
|
|
|
|
* This method internally calls isWritable(). The parmeter timeout is used
|
|
|
|
* for this method call.
|
|
|
|
* @param data data to write
|
|
|
|
* @param len length of data
|
|
|
|
* @param timeout the amount of time elapsed before isWritable()
|
|
|
|
* are timed out.
|
|
|
|
*/
|
2006-02-21 12:27:17 +00:00
|
|
|
void writeData(const char* data, int len, int timeout = 5) const;
|
2006-02-17 14:47:45 +00:00
|
|
|
|
2006-03-01 07:00:39 +00:00
|
|
|
/**
|
|
|
|
* Reads up to len bytes from this socket.
|
|
|
|
* data is a pointer pointing the first
|
|
|
|
* byte of the data, which must be allocated before this method is called.
|
|
|
|
* len is the size of the allocated memory. When this method returns
|
|
|
|
* successfully, len is replaced by the size of the read data.
|
|
|
|
* This method internally calls isReadable(). The parameter timeout is used
|
|
|
|
* for this method call.
|
|
|
|
* @param data holder to store data.
|
|
|
|
* @param len the maximum size data can store. This method assigns
|
|
|
|
* the number of bytes read to len.
|
|
|
|
* @param timeout the amount of time elapsed before isReadable() are timed
|
|
|
|
* out.
|
|
|
|
*/
|
2006-02-21 12:27:17 +00:00
|
|
|
void readData(char* data, int& len, int timeout = 5) const;
|
2006-03-01 07:00:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads up to len bytes from this socket, but bytes are not removed from
|
|
|
|
* this socket.
|
|
|
|
* This method internally calls isReadable(). The parameter timeout is used
|
|
|
|
* for this method call.
|
|
|
|
* @param data holder to store data.
|
|
|
|
* @param len the maximum size data can store. This method assigns
|
|
|
|
* the number of bytes read to len.
|
|
|
|
* @param timeout the amount of time elapsed before isReadable() are timed
|
|
|
|
* out.
|
|
|
|
*/
|
2006-02-21 12:27:17 +00:00
|
|
|
void peekData(char* data, int& len, int timeout = 5) const;
|
2006-02-17 18:51:12 +00:00
|
|
|
|
|
|
|
/**
|
2006-02-17 19:04:22 +00:00
|
|
|
* Makes this socket secure.
|
|
|
|
* If the system has not OpenSSL, then this method do nothing.
|
2006-03-01 07:00:39 +00:00
|
|
|
* connection must be established before calling this method.
|
2006-02-17 18:51:12 +00:00
|
|
|
*/
|
2006-02-21 12:27:17 +00:00
|
|
|
void initiateSecureConnection() ;
|
2006-02-17 14:47:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _D_SOCKET_CORE_H_
|