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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
|
/*
* Ekiga -- A VoIP and Video-Conferencing application
* Copyright (C) 2000-2009 Damien Sandras <dsandras@seconix.com>
* 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.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Ekiga is licensed under the GPL license and as a special exception, you
* have permission to link or otherwise combine this program with the
* programs OPAL, OpenH323 and PWLIB, and distribute the combination, without
* applying the requirements of the GNU GPL to the OPAL, OpenH323 and PWLIB
* programs, as long as you do follow the requirements of the GNU GPL for all
* the rest of the software thus combined.
*/
/*
* opal-gmconf-bridge.cpp - description
* ------------------------------------------
* begin : written in 2008 by Damien Sandras
* copyright : (c) 2008 by Damien Sandras
* description : declaration of an object able to do the bridging
* between gmconf and opal
*
*/
#include <iostream>
#include <boost/signals.hpp>
#include <boost/bind.hpp>
#include "config.h"
#include "gmconf.h"
#include "opal-gmconf-bridge.h"
#include "opal-call-manager.h"
#include "sip-endpoint.h"
#ifdef HAVE_H323
#include "h323-endpoint.h"
#endif
#define AUDIO_DEVICES_KEY "/apps/" PACKAGE_NAME "/devices/audio/"
#define VIDEO_DEVICES_KEY "/apps/" PACKAGE_NAME "/devices/video/"
#define PERSONAL_DATA_KEY "/apps/" PACKAGE_NAME "/general/personal_data/"
#define CALL_OPTIONS_KEY "/apps/" PACKAGE_NAME "/general/call_options/"
#define NAT_KEY "/apps/" PACKAGE_NAME "/general/nat/"
#define PROTOCOLS_KEY "/apps/" PACKAGE_NAME "/protocols/"
#define H323_KEY "/apps/" PACKAGE_NAME "/protocols/h323/"
#define SIP_KEY "/apps/" PACKAGE_NAME "/protocols/sip/"
#define PORTS_KEY "/apps/" PACKAGE_NAME "/protocols/ports/"
#define CALL_FORWARDING_KEY "/apps/" PACKAGE_NAME "/protocols/call_forwarding/"
#define AUDIO_CODECS_KEY "/apps/" PACKAGE_NAME "/codecs/audio/"
#define VIDEO_CODECS_KEY "/apps/" PACKAGE_NAME "/codecs/video/"
using namespace Opal;
ConfBridge::ConfBridge (Ekiga::Service & _service)
: Ekiga::ConfBridge (_service)
{
Ekiga::ConfKeys keys;
property_changed.connect (boost::bind (&ConfBridge::on_property_changed, this, _1, _2));
keys.push_back (PROTOCOLS_KEY "rtp_tos_field");
keys.push_back (PORTS_KEY "udp_port_range");
keys.push_back (PORTS_KEY "tcp_port_range");
keys.push_back (AUDIO_CODECS_KEY "enable_silence_detection");
keys.push_back (AUDIO_CODECS_KEY "enable_echo_cancellation");
keys.push_back (AUDIO_CODECS_KEY "media_list");
keys.push_back (VIDEO_CODECS_KEY "media_list");
keys.push_back (AUDIO_CODECS_KEY "maximum_jitter_buffer");
keys.push_back (VIDEO_CODECS_KEY "maximum_video_tx_bitrate");
keys.push_back (VIDEO_CODECS_KEY "maximum_video_rx_bitrate");
keys.push_back (VIDEO_CODECS_KEY "temporal_spatial_tradeoff");
keys.push_back (VIDEO_DEVICES_KEY "size");
keys.push_back (VIDEO_DEVICES_KEY "max_frame_rate");
keys.push_back (SIP_KEY "forward_host");
keys.push_back (SIP_KEY "outbound_proxy_host");
keys.push_back (SIP_KEY "dtmf_mode");
keys.push_back (SIP_KEY "binding_timeout");
keys.push_back (PERSONAL_DATA_KEY "full_name");
keys.push_back (CALL_FORWARDING_KEY "forward_on_no_answer");
keys.push_back (CALL_FORWARDING_KEY "forward_on_busy");
keys.push_back (CALL_FORWARDING_KEY "always_forward");
keys.push_back (CALL_OPTIONS_KEY "no_answer_timeout");
keys.push_back (CALL_OPTIONS_KEY "auto_answer");
keys.push_back (H323_KEY "enable_h245_tunneling");
keys.push_back (H323_KEY "enable_early_h245");
keys.push_back (H323_KEY "enable_fast_start");
keys.push_back (H323_KEY "dtmf_mode");
keys.push_back (H323_KEY "forward_host");
keys.push_back (H323_KEY "enable_h239");
keys.push_back (H323_KEY "video_role");
keys.push_back (NAT_KEY "stun_server");
keys.push_back (NAT_KEY "enable_stun");
load (keys);
}
void ConfBridge::on_property_changed (std::string key, GmConfEntry *entry)
{
CallManager & manager = (CallManager &) service;
//
// Video options
//
if (key == VIDEO_CODECS_KEY "maximum_video_tx_bitrate") {
CallManager::VideoOptions options;
manager.get_video_options (options);
options.maximum_transmitted_bitrate = gm_conf_entry_get_int (entry);
PTRACE(4, "OpalConfBridge\tmaximum_video_tx_bitrate set to " << options.maximum_transmitted_bitrate << "kb/s");
manager.set_video_options (options);
}
else if (key == VIDEO_CODECS_KEY "temporal_spatial_tradeoff") {
CallManager::VideoOptions options;
manager.get_video_options (options);
options.temporal_spatial_tradeoff = gm_conf_entry_get_int (entry);
manager.set_video_options (options);
}
else if (key == VIDEO_DEVICES_KEY "size") {
CallManager::VideoOptions options;
manager.get_video_options (options);
options.size = gm_conf_entry_get_int (entry);
manager.set_video_options (options);
}
else if (key == VIDEO_DEVICES_KEY "max_frame_rate") {
CallManager::VideoOptions options;
manager.get_video_options (options);
options.maximum_frame_rate = gm_conf_entry_get_int (entry);
if ( (options.maximum_frame_rate < 1) || (options.maximum_frame_rate > 30) ) {
PTRACE(1, "OpalConfBridge\t" << VIDEO_DEVICES_KEY "max_frame_rate" << " out of range, ajusting to 30");
options.maximum_frame_rate = 30;
}
manager.set_video_options (options);
}
else if (key == VIDEO_CODECS_KEY "maximum_video_rx_bitrate") {
CallManager::VideoOptions options;
manager.get_video_options (options);
options.maximum_received_bitrate = gm_conf_entry_get_int (entry);
manager.set_video_options (options);
}
//
// NAT Key
//
else if (key == NAT_KEY "stun_server") {
gchar* stun_server = gm_conf_entry_get_string (entry);
manager.set_stun_server (stun_server ? stun_server : "stun.ekiga.net");
g_free (stun_server);
}
else if (key == NAT_KEY "enable_stun") {
manager.set_stun_enabled (gm_conf_entry_get_bool (entry));
}
//
// Jitter buffer configuration
//
else if (key == AUDIO_CODECS_KEY "maximum_jitter_buffer") {
manager.set_maximum_jitter (gm_conf_entry_get_int (entry));
}
//
// Silence detection
//
else if (key == AUDIO_CODECS_KEY "enable_silence_detection") {
manager.set_silence_detection (gm_conf_entry_get_bool (entry));
}
//
// Echo cancellation
//
else if (key == AUDIO_CODECS_KEY "enable_echo_cancellation") {
manager.set_echo_cancellation (gm_conf_entry_get_bool (entry));
}
//
// Audio & video codecs
//
else if (key == AUDIO_CODECS_KEY "media_list"
|| key == VIDEO_CODECS_KEY "media_list") {
// This is a bit longer, we are not sure the list stored in the
// configuration is complete, and it could also contain unsupported codecs
GSList *audio_codecs = NULL;
GSList *video_codecs = NULL;
if (key == AUDIO_CODECS_KEY "media_list") {
audio_codecs = gm_conf_entry_get_list (entry);
video_codecs = gm_conf_get_string_list (VIDEO_CODECS_KEY "media_list");
}
else {
video_codecs = gm_conf_entry_get_list (entry);
audio_codecs = gm_conf_get_string_list (AUDIO_CODECS_KEY "media_list");
}
Ekiga::CodecList codecs;
Ekiga::CodecList a_codecs (audio_codecs);
Ekiga::CodecList v_codecs (video_codecs);
// Update the manager codecs
codecs = a_codecs;
codecs.append (v_codecs);
manager.set_codecs (codecs);
g_slist_foreach (audio_codecs, (GFunc) g_free, NULL);
g_slist_free (audio_codecs);
g_slist_foreach (video_codecs, (GFunc) g_free, NULL);
g_slist_free (video_codecs);
// Update the GmConf keys, in case we would have missed some codecs or
// used codecs we do not really support
if (a_codecs != codecs.get_audio_list ()) {
audio_codecs = codecs.get_audio_list ().gslist ();
gm_conf_set_string_list (AUDIO_CODECS_KEY "media_list", audio_codecs);
g_slist_foreach (audio_codecs, (GFunc) g_free, NULL);
g_slist_free (audio_codecs);
}
if (v_codecs != codecs.get_video_list ()) {
video_codecs = codecs.get_video_list ().gslist ();
gm_conf_set_string_list (VIDEO_CODECS_KEY "media_list", video_codecs);
g_slist_foreach (video_codecs, (GFunc) g_free, NULL);
g_slist_free (video_codecs);
}
}
//
// SIP related keys
//
else if (key.find (SIP_KEY) != string::npos) {
boost::shared_ptr<Opal::Sip::EndPoint> sip_manager = boost::dynamic_pointer_cast<Opal::Sip::EndPoint> (manager.get_protocol_manager ("sip"));
if (sip_manager) {
if (key == SIP_KEY "outbound_proxy_host") {
gchar* str = gm_conf_entry_get_string (entry);
if (str != NULL)
sip_manager->set_outbound_proxy (str);
g_free (str);
}
else if (key == SIP_KEY "dtmf_mode") {
sip_manager->set_dtmf_mode (gm_conf_entry_get_int (entry));
}
else if (key == SIP_KEY "forward_host") {
gchar* str = gm_conf_entry_get_string (entry);
if (str != NULL)
sip_manager->set_forward_uri (str);
g_free (str);
}
else if (key == SIP_KEY "binding_timeout") {
sip_manager->set_nat_binding_delay (gm_conf_entry_get_int (entry));
}
}
}
//
// H.323 keys
//
#ifdef HAVE_H323
else if (key.find (H323_KEY) != string::npos) {
boost::shared_ptr<Opal::H323::EndPoint> h323_manager = boost::dynamic_pointer_cast<Opal::H323::EndPoint> (manager.get_protocol_manager ("h323"));
if (h323_manager) {
if (key == H323_KEY "enable_h245_tunneling") {
h323_manager->DisableH245Tunneling (!gm_conf_entry_get_bool (entry));
}
else if (key == H323_KEY "enable_early_h245") {
h323_manager->DisableH245inSetup (!gm_conf_entry_get_bool (entry));
}
else if (key == H323_KEY "enable_fast_start") {
h323_manager->DisableFastStart (!gm_conf_entry_get_bool (entry));
}
else if (key == H323_KEY "dtmf_mode") {
h323_manager->set_dtmf_mode (gm_conf_entry_get_int (entry));
}
else if (key == H323_KEY "forward_host") {
gchar* str = gm_conf_entry_get_string (entry);
if (str != NULL)
h323_manager->set_forward_uri (str);
g_free (str);
}
else if (key == H323_KEY "video_role") {
CallManager::VideoOptions options;
manager.get_video_options (options);
options.extended_video_roles = gm_conf_entry_get_int (entry);
manager.set_video_options (options);
}
else if (key == H323_KEY "enable_h239") {
h323_manager->SetDefaultH239Control(gm_conf_entry_get_bool (entry));
}
}
}
#endif
//
// Personal Data Key
//
else if (key == PERSONAL_DATA_KEY "full_name") {
gchar* str = gm_conf_entry_get_string (entry);
if (str != NULL)
manager.set_display_name (str);
g_free (str);
}
//
// Misc keys
//
else if (key == CALL_FORWARDING_KEY "forward_on_no_answer") {
manager.set_forward_on_no_answer (gm_conf_entry_get_bool (entry));
}
else if (key == CALL_FORWARDING_KEY "forward_on_busy") {
manager.set_forward_on_busy (gm_conf_entry_get_bool (entry));
}
else if (key == CALL_FORWARDING_KEY "always_forward") {
manager.set_unconditional_forward (gm_conf_entry_get_bool (entry));
}
else if (key == CALL_OPTIONS_KEY "no_answer_timeout") {
manager.set_reject_delay (gm_conf_entry_get_int (entry));
}
else if (key == CALL_OPTIONS_KEY "auto_answer") {
manager.set_auto_answer (gm_conf_entry_get_bool (entry));
}
else if (key == PROTOCOLS_KEY "rtp_tos_field") {
manager.set_rtp_tos (gm_conf_entry_get_int (entry));
}
//
// Ports keys
//
else if (key == PORTS_KEY "udp_port_range"
|| key == PORTS_KEY "tcp_port_range") {
gchar* ports = NULL;
gchar **couple = NULL;
unsigned min_port = 0;
unsigned max_port = 0;
ports = gm_conf_entry_get_string (entry);
if (ports)
couple = g_strsplit (ports, ":", 2);
g_free (ports);
if (couple && couple [0])
min_port = atoi (couple [0]);
if (couple && couple [1])
max_port = atoi (couple [1]);
if (key == PORTS_KEY "udp_port_range")
manager.set_udp_ports (min_port, max_port);
else
manager.set_tcp_ports (min_port, max_port);
g_strfreev (couple);
}
}
|