2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * Author : Maxim Mamontov <faust@stargazer.dp.ua>
24 #include "stg/sgcp_proto.h" // Proto
25 #include "stg/sgcp_types.h" // TransportType
26 #include "stg/os_int.h"
32 typedef std::vector<std::pair<std::string, std::string> > PAIRS;
40 struct ChannelConfig {
41 struct Error : std::runtime_error {
42 Error(const std::string& message) : runtime_error(message) {}
45 ChannelConfig(std::string address);
47 STG::SGCP::TransportType transport;
63 struct Error : std::runtime_error {
64 Error(const std::string& message) : runtime_error(message) {}
67 STG_CLIENT(const std::string& address);
70 static STG_CLIENT* get();
71 static bool configure(const std::string& address);
73 RESULT request(TYPE type, const std::string& userName, const std::string& password, const PAIRS& pairs);
76 ChannelConfig m_config;
77 STG::SGCP::Proto m_proto;
79 void m_writeHeader(TYPE type, const std::string& userName, const std::string& password);
80 void m_writePairBlock(const PAIRS& source);
81 PAIRS m_readPairBlock();