libt2n: (gerd) fixes, new logging concept (not working yet)
[libt2n] / src / command_client.cpp
CommitLineData
7087e187
GE
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
23#include <boost/archive/binary_oarchive.hpp>
24#include <boost/archive/binary_iarchive.hpp>
25#include <boost/archive/xml_oarchive.hpp>
26#include <boost/archive/xml_iarchive.hpp>
27#include <boost/serialization/serialization.hpp>
28#include <boost/serialization/export.hpp>
29
30#include "command_client.hxx"
31
32using namespace std;
33
34namespace libt2n
35{
36
37void command_client::send_command(command* cmd, result_container &res)
38{
39 ostringstream ofs;
40 command_container cc(cmd);
41 boost::archive::binary_oarchive oa(ofs);
42
43 // TODO: exceptions
44 oa << cc;
45
46 c.write(ofs.str());
47
48 // TODO: fix timeout
49 string resultpacket;
50 while(!c.get_packet(resultpacket))
51 c.fill_buffer();
52
53 istringstream ifs(resultpacket);
54 boost::archive::binary_iarchive ia(ifs);
55
56 // TODO: exceptions
57 ia >> res;
58}
59
60}