libt2n: (tomj) make result_container's has_exception and has_result a bit more robust
[libt2n] / src / command_client.hxx
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#ifndef __LIBT2N_COMMAND_CLIENT
20#define __LIBT2N_COMMAND_CLIENT
21
b5922184
GE
22#include <functional>
23#include <string>
24
7087e187
GE
25#include "client.hxx"
26#include "container.hxx"
27
28namespace libt2n
29{
30
31/// a client sending out commands to a server
32class command_client
33{
0ea6d528 34 public:
2c49df2a
GE
35 static const long long command_timeout_usec_default=90000000;
36 static const long long hello_timeout_usec_default=30000000;
37
7087e187 38 private:
fb3345ad 39 client_connection *c;
7087e187 40
45a2ebc9
GE
41 long long hello_timeout_usec;
42 long long command_timeout_usec;
43
8104c8f7 44 void read_hello();
45a2ebc9 45 std::string read_packet(const long long &usec_timeout);
b2ba0928 46 bool check_hello(const std::string& hellostr);
8104c8f7 47
56f3994d 48 // TODO: Deny access to copy constructor or use boost::shared_ptr
b5922184
GE
49 std::auto_ptr<t2n_exception> constructorException;
50
7087e187 51 public:
fb3345ad 52 command_client(client_connection* _c,
2c49df2a
GE
53 long long _command_timeout_usec=command_timeout_usec_default,
54 long long _hello_timeout_usec=hello_timeout_usec_default);
38de59c2 55 virtual ~command_client() {}
7087e187 56
fb3345ad 57 void replace_connection(client_connection* _c);
af84dfb5 58
7087e187 59 void send_command(command* cmd, result_container &res);
a64066eb
GE
60
61 void set_command_timeout_usec(long long _command_timeout_usec=command_timeout_usec_default)
62 { command_timeout_usec=_command_timeout_usec; }
63 void set_hello_timeout_usec(long long _hello_timeout_usec=hello_timeout_usec_default)
64 { hello_timeout_usec=_hello_timeout_usec; }
65 long long get_command_timeout_usec(void)
66 { return command_timeout_usec; }
67 long long get_hello_timeout_usec(void)
68 { return hello_timeout_usec; }
b5922184
GE
69 bool is_connection_closed(void)
70 { return c->is_closed(); }
71 t2n_exception* get_constuctor_exception(void)
72 { return constructorException.get(); }
7087e187
GE
73};
74
75}
76
77#endif
78