common/tcpclient.h

Go to the documentation of this file.
00001 
00004 /* Copyright (C) 2007 Olly Betts
00005  *
00006  * This program is free software; you can redistribute it and/or
00007  * modify it under the terms of the GNU General Public License as
00008  * published by the Free Software Foundation; either version 2 of the
00009  * License, or (at your option) any later version.
00010  *
00011  * This program is distributed in the hope that it will be useful,
00012  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014  * GNU General Public License for more details.
00015  *
00016  * You should have received a copy of the GNU General Public License
00017  * along with this program; if not, write to the Free Software
00018  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
00019  */
00020 
00021 #ifndef XAPIAN_INCLUDED_TCPCLIENT_H
00022 #define XAPIAN_INCLUDED_TCPCLIENT_H
00023 
00024 #include "remote-database.h"
00025 
00026 #ifdef __WIN32__
00027 # define SOCKET_INITIALIZER_MIXIN private WinsockInitializer,
00028 #else
00029 # define SOCKET_INITIALIZER_MIXIN
00030 #endif
00031 
00036 class TcpClient : SOCKET_INITIALIZER_MIXIN public RemoteDatabase {
00038     void operator=(const TcpClient &);
00039 
00041     TcpClient(const TcpClient &);
00042 
00053     static int open_socket(const std::string & hostname, int port,
00054                            int msecs_timeout_connect);
00055 
00062     static std::string get_tcpcontext(const std::string & hostname, int port);
00063 
00064   public:
00076     TcpClient(const std::string & hostname, int port,
00077               int msecs_timeout, int msecs_timeout_connect, bool writable)
00078         : RemoteDatabase(open_socket(hostname, port, msecs_timeout_connect),
00079                          msecs_timeout, get_tcpcontext(hostname, port),
00080                          writable) { }
00081 
00083     ~TcpClient();
00084 };
00085 
00086 #endif  // XAPIAN_INCLUDED_TCPCLIENT_H

Documentation for Xapian (version 1.0.10).
Generated on 24 Dec 2008 by Doxygen 1.5.2.