X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=src%2Fsocket_client.cpp;h=9f0064bf23d35c3ca8c29edf73ff797470d2b1ba;hp=6b5b481400c9b88a3106f8b489a6463e0f6dbc3b;hb=19facd8558fe2e32ce843860b40631ebe03ff3cf;hpb=fb3345ada7ea94225b78994fd50e3de693a2a3d5 diff --git a/src/socket_client.cpp b/src/socket_client.cpp index 6b5b481..9f0064b 100644 --- a/src/socket_client.cpp +++ b/src/socket_client.cpp @@ -1,21 +1,24 @@ -/*************************************************************************** - * Copyright (C) 2006 by Gerd v. Egidy * - * gve@intra2net.com * - * * - * This library is free software; you can redistribute it and/or modify * - * it under the terms of the GNU Lesser General Public License version * - * 2.1 as published by the Free Software Foundation. * - * * - * This library 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 Lesser General Public License for more details. * - * * - * You should have received a copy of the GNU Lesser 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 (C) 2006 by Intra2net AG - Gerd v. Egidy + +The software in this package is distributed under the GNU General +Public License version 2 (with a special exception described below). + +A copy of GNU General Public License (GPL) is included in this distribution, +in the file COPYING.GPL. + +As a special exception, if other files instantiate templates or use macros +or inline functions from this file, or you compile this file and link it +with other works to produce a work based on this file, this file +does not by itself cause the resulting work to be covered +by the GNU General Public License. + +However the source code for this file must still be made available +in accordance with section (3) of the GNU General Public License. + +This exception does not invalidate any other reasons why a work based +on this file might be covered by the GNU General Public License. +*/ #include #include @@ -66,6 +69,7 @@ socket_client_connection::socket_client_connection(int _port, const std::string& { lastErrorMsg=e.what(); LOGSTREAM(debug,"tcp connect error: " << lastErrorMsg); + // FIXME: Don't call virtual function in constructor. Currently not dangerous but bad design. close(); } @@ -94,6 +98,7 @@ socket_client_connection::socket_client_connection(const std::string& _path, { lastErrorMsg=e.what(); LOGSTREAM(debug,"unix connect error: " << lastErrorMsg); + // FIXME: Don't call virtual function in constructor. Currently not dangerous close(); } @@ -101,6 +106,16 @@ socket_client_connection::socket_client_connection(const std::string& _path, do_callbacks(new_connection); } +/** + * Destructor. Closes an open connection. + */ +socket_client_connection::~socket_client_connection() +{ + // Destructor of socket_handler will close the socket! +} + + +/// establish a connection via tcp void socket_client_connection::tcp_connect(int max_retries) { struct sockaddr_in sock_addr; @@ -140,6 +155,7 @@ void socket_client_connection::tcp_connect(int max_retries) } } +/// establish a connection via unix-socket void socket_client_connection::unix_connect(int max_retries) { struct sockaddr_un unix_addr; @@ -168,10 +184,22 @@ void socket_client_connection::unix_connect(int max_retries) } } +/// execute a connect on a prepared socket (tcp or unix) respecting timeouts void socket_client_connection::connect_with_timeout(struct sockaddr *sock_addr,unsigned int sockaddr_size) { set_socket_options(sock); + /* non-blocking mode */ + int flflags; + flflags=fcntl(sock,F_GETFL,0); + if (flflags < 0) + EXCEPTIONSTREAM(error,t2n_communication_error,"fcntl error on socket: " << strerror(errno)); + + flflags &= (O_NONBLOCK ^ 0xFFFF); + if (fcntl(sock,F_SETFL,flflags) < 0) + EXCEPTIONSTREAM(error,t2n_communication_error,"fcntl error on socket: " << strerror(errno)); + + LOGSTREAM(debug,"connect_with_timeout()"); int ret=::connect(sock,sock_addr, sockaddr_size);