libt2n: (gerd) client callbacks
[libt2n] / src / connection.cpp
1 /***************************************************************************
2  *   Copyright (C) 2006 by Gerd v. Egidy                                   *
3  *   gve@intra2net.com                                                     *
4  *                                                                         *
5  *   This library is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU Lesser General Public License version   *
7  *   2.1 as published by the Free Software Foundation.                     *
8  *                                                                         *
9  *   This library is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU Lesser General Public License for more details.                   *
13  *                                                                         *
14  *   You should have received a copy of the GNU Lesser General Public      *
15  *   License along with this program; if not, write to the                 *
16  *   Free Software Foundation, Inc.,                                       *
17  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18  ***************************************************************************/
19
20 #include <string>
21 #include <sstream>
22 #include <iostream>
23
24 #include "connection.hxx"
25
26 namespace libt2n
27 {
28
29 connection::packet_size_indicator connection::bytes_available()
30 {
31     // max packet size is unsigned int
32
33     // no size information -> no packet
34     if (buffer.size() < sizeof(unsigned int))
35         return 0;
36
37     packet_size_indicator psize=*((packet_size_indicator*)(buffer.data()));
38
39     // enough data for one packet in buffer?
40     if (buffer.size() < sizeof(unsigned int)+psize)
41         return 0;
42
43     // ok, full packet there
44     return psize;
45 }
46
47 /** @brief read a complete data packet from the buffer. The packet is removed from the
48             connection buffer.
49     @param[out] data the data package
50     @retval true if packet found
51 */
52 bool connection::get_packet(std::string& data)
53 {
54     packet_size_indicator psize;
55
56     if ((psize=bytes_available()))
57     {
58         data.assign(buffer,sizeof(unsigned int),psize);
59         buffer.erase(0,sizeof(unsigned int)+psize);
60         return true;
61     }
62     else
63         return false;
64 }
65
66 /// send a blob to the peer
67 void connection::write(const std::string& data)
68 {
69     // prepend packet size to data
70     packet_size_indicator psize=data.size();
71     std::string send_data(data);
72     send_data.insert(0,(char*)&psize,sizeof(packet_size_indicator));
73
74     real_write(send_data);
75 }
76
77 }