summaryrefslogtreecommitdiff
path: root/i/marvin/src/socket/socket_client.cc
blob: 951ea6ad083faa631ecf82902075d8c156fc8ce3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/* socket_client.cc - D�finition de la classe des sockets client */
/* Simulotron - Programme de simulation de robot {{{
 *
 * Copyright (C) 2005 Nicolas Haller
 *
 * Robot APB Team/Efrei 2005.
 *        Web: http://assos.efrei.fr/robot/
 *      Email: robot AT efrei DOT fr
 *
 * 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.
 *
 * }}} */
#include "socket/socket_client.hh"
#include "socket/socket_server.hh"
#include "socket/address.hh"
#include "utils/errno_exception.hh"

#include <sys/socket.h>
#include <cerrno>

SocketClient::SocketClient (void)
{
    // Cr�e le file descriptor du socket
    socket_ = socket (PF_INET, SOCK_STREAM, 0);
    if (socket_ < 0)
	throw errno_exception ("Socket: La chaussette n'a pas pu �tre tricot�", errno);
}

SocketClient::SocketClient (SocketServer & socketServer)
{
    socket_ = socketServer.accept ();
    if (socket_ < 0)
	throw errno_exception ("Socket: Probl�me lors de la construction d'une chaussette cliente par accept", errno);
}

SocketClient::~SocketClient (void)
{
    if (socket_ >= 0)
	::close (socket_);
}

void
SocketClient::connect (const Address & address)
{
    if (::connect (socket_, address.getSockaddr (), sizeof (sockaddr_in)) < 0)
	throw errno_exception ("Socket: Impossible de mettre la chaussette", errno);
}

void
SocketClient::connect (const std::string & address, int port)
{
    connect (Address(address, port));
}

bool
SocketClient::read (std::string & strReaded, bool bloquant)
{
    int charReaded;
    char buffer[BUFFER_SIZE];
    // V�rifie si il y a quelque chose � lire et retourne si non
    if (!bloquant)
    {
	fd_set fds;
	timeval tv = {0, 0};
	FD_ZERO(&fds);
	FD_SET(socket_, &fds);
	if(select(socket_ + 1, &fds, NULL, NULL, &tv) == 0)
	    return false;
    }
    strReaded.clear();
    do
    {
	charReaded = ::read (socket_, buffer, BUFFER_SIZE - 1);
	if (charReaded < 0)
	    throw errno_exception ("SocketClient: probl�me de lecture", errno);
	//buffer[charReaded] = 0;
	//str += buffer;
	strReaded.append(buffer, charReaded);
    }while (charReaded == BUFFER_SIZE - 1);
    return true;
}

void
SocketClient::write (const std::string & str)
{
    write(reinterpret_cast<const uint8_t *>(str.data()), str.size());
}

void
SocketClient::write (const uint8_t * buffer, unsigned size)
{
    int retval;

    retval = ::write (socket_, buffer, size);
    if (retval < 0)
	throw errno_exception ("SocketClient: erreur d'�criture (write()) ", errno);
}

//int
//SocketClient::getFD(void)
//{
//    return socket_;
//}