2018-05-17 13:16:51 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Purism SPC
|
|
|
|
*
|
|
|
|
* This file is part of Calls.
|
|
|
|
*
|
|
|
|
* Calls 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Calls 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 Calls. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Author: Bob Ham <bob.ham@puri.sm>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "calls-call.h"
|
|
|
|
#include "calls-message-source.h"
|
2021-01-28 16:05:00 +00:00
|
|
|
#include "calls-manager.h"
|
2018-05-17 13:16:51 +00:00
|
|
|
#include "enum-types.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2019-06-28 08:59:02 +00:00
|
|
|
#include <glib/gi18n.h>
|
|
|
|
|
2018-05-17 13:16:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:calls-call
|
|
|
|
* @short_description: A call.
|
|
|
|
* @Title: CallsCall
|
2018-05-23 08:52:58 +00:00
|
|
|
*
|
|
|
|
* This is the interface to a call. It has a number, name and a
|
|
|
|
* state. Only the state changes after creation. If the state is
|
|
|
|
* #CALL_CALL_STATE_INCOMING, the call can be answered with #answer.
|
|
|
|
* The call can also be hung up at any time with #hang_up.
|
|
|
|
*
|
|
|
|
* DTMF tones can be played the call using #tone_start and
|
|
|
|
* #tone_stop. Valid characters for the key are 0-9, '*', '#', 'A',
|
|
|
|
* 'B', 'C' and 'D'.
|
2018-05-17 13:16:51 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2021-04-05 04:00:10 +00:00
|
|
|
G_DEFINE_ABSTRACT_TYPE (CallsCall, calls_call, G_TYPE_OBJECT)
|
2018-05-17 13:16:51 +00:00
|
|
|
|
|
|
|
enum {
|
2021-04-05 04:00:10 +00:00
|
|
|
PROP_0,
|
|
|
|
PROP_INBOUND,
|
|
|
|
PROP_NUMBER,
|
|
|
|
PROP_NAME,
|
|
|
|
PROP_STATE,
|
2021-04-26 10:00:02 +00:00
|
|
|
PROP_PROTOCOL,
|
2021-04-05 04:00:10 +00:00
|
|
|
N_PROPS,
|
2018-05-17 13:16:51 +00:00
|
|
|
};
|
|
|
|
|
2021-04-05 04:00:10 +00:00
|
|
|
enum {
|
|
|
|
STATE_CHANGED,
|
|
|
|
N_SIGNALS,
|
|
|
|
};
|
|
|
|
|
|
|
|
static GParamSpec *properties[N_PROPS];
|
|
|
|
static guint signals[N_SIGNALS];
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
calls_call_real_get_number (CallsCall *self)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
calls_call_real_get_name (CallsCall *self)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CallsCallState
|
|
|
|
calls_call_real_get_state (CallsCall *self)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
calls_call_real_get_inbound (CallsCall *self)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2021-04-26 10:00:02 +00:00
|
|
|
static const char *
|
|
|
|
calls_call_real_get_protocol (CallsCall *self)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-04-05 04:00:10 +00:00
|
|
|
static void
|
|
|
|
calls_call_real_answer (CallsCall *self)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
calls_call_real_hang_up (CallsCall *self)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
calls_call_real_tone_start (CallsCall *self,
|
|
|
|
char key)
|
|
|
|
{
|
|
|
|
g_info ("Beep! (%c)", (int)key);
|
|
|
|
}
|
2018-05-23 08:52:58 +00:00
|
|
|
|
2018-05-17 13:16:51 +00:00
|
|
|
static void
|
2021-04-05 04:00:10 +00:00
|
|
|
calls_call_real_tone_stop (CallsCall *self,
|
|
|
|
char key)
|
2018-05-17 13:16:51 +00:00
|
|
|
{
|
2021-04-05 04:00:10 +00:00
|
|
|
g_info ("Beep end (%c)", (int)key);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
calls_call_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
CallsCall *self = CALLS_CALL (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
2018-11-09 12:38:04 +00:00
|
|
|
{
|
2021-04-05 04:00:10 +00:00
|
|
|
case PROP_INBOUND:
|
|
|
|
g_value_set_boolean (value, calls_call_get_inbound (self));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_NUMBER:
|
|
|
|
g_value_set_string (value, calls_call_get_number (self));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_NAME:
|
|
|
|
g_value_set_string (value, calls_call_get_name (self));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_STATE:
|
|
|
|
g_value_set_enum (value, calls_call_get_state (self));
|
|
|
|
break;
|
|
|
|
|
2021-04-26 10:00:02 +00:00
|
|
|
case PROP_PROTOCOL:
|
|
|
|
g_value_set_string (value, calls_call_get_protocol (self));
|
|
|
|
break;
|
|
|
|
|
2021-04-05 04:00:10 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
calls_call_class_init (CallsCallClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->get_property = calls_call_get_property;
|
|
|
|
|
|
|
|
klass->get_number = calls_call_real_get_number;
|
|
|
|
klass->get_name = calls_call_real_get_name;
|
|
|
|
klass->get_state = calls_call_real_get_state;
|
|
|
|
klass->get_inbound = calls_call_real_get_inbound;
|
2021-04-26 10:00:02 +00:00
|
|
|
klass->get_protocol = calls_call_real_get_protocol;
|
2021-04-05 04:00:10 +00:00
|
|
|
klass->answer = calls_call_real_answer;
|
|
|
|
klass->hang_up = calls_call_real_hang_up;
|
|
|
|
klass->tone_start = calls_call_real_tone_start;
|
|
|
|
klass->tone_stop = calls_call_real_tone_stop;
|
2018-05-17 13:16:51 +00:00
|
|
|
|
2021-04-05 04:00:10 +00:00
|
|
|
properties[PROP_INBOUND] =
|
2019-06-28 08:59:02 +00:00
|
|
|
g_param_spec_boolean ("inbound",
|
2020-05-29 05:38:11 +00:00
|
|
|
"Inbound",
|
|
|
|
"Whether the call is inbound",
|
2019-06-28 08:59:02 +00:00
|
|
|
FALSE,
|
2021-04-05 04:00:10 +00:00
|
|
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
|
2020-02-22 23:55:45 +00:00
|
|
|
|
2021-04-05 04:00:10 +00:00
|
|
|
properties[PROP_NUMBER] =
|
2020-02-22 23:55:45 +00:00
|
|
|
g_param_spec_string ("number",
|
2020-05-29 05:38:11 +00:00
|
|
|
"Number",
|
|
|
|
"The number the call is connected to if known",
|
|
|
|
NULL,
|
2021-04-05 04:00:10 +00:00
|
|
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
|
2020-02-22 23:55:45 +00:00
|
|
|
|
2021-04-05 04:00:10 +00:00
|
|
|
properties[PROP_NAME] =
|
2020-02-22 23:55:45 +00:00
|
|
|
g_param_spec_string ("name",
|
2020-05-29 05:38:11 +00:00
|
|
|
"Name",
|
|
|
|
"The name of the party the call is connected to, if the network provides it",
|
|
|
|
NULL,
|
2021-04-05 04:00:10 +00:00
|
|
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
|
2020-02-22 23:55:45 +00:00
|
|
|
|
2021-04-05 04:00:10 +00:00
|
|
|
properties[PROP_STATE] =
|
2020-02-22 23:55:45 +00:00
|
|
|
g_param_spec_enum ("state",
|
2020-05-29 05:38:11 +00:00
|
|
|
"State",
|
|
|
|
"The current state of the call",
|
|
|
|
CALLS_TYPE_CALL_STATE,
|
|
|
|
CALLS_CALL_STATE_ACTIVE,
|
2021-04-05 04:00:10 +00:00
|
|
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
|
|
|
|
|
2021-04-26 10:00:02 +00:00
|
|
|
properties[PROP_PROTOCOL] =
|
|
|
|
g_param_spec_string ("protocol",
|
|
|
|
"Protocol",
|
|
|
|
"The protocol used for this call",
|
|
|
|
NULL,
|
|
|
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
|
|
|
|
|
2021-04-05 04:00:10 +00:00
|
|
|
g_object_class_install_properties (object_class, N_PROPS, properties);
|
2019-06-28 08:59:02 +00:00
|
|
|
|
2018-05-23 08:52:58 +00:00
|
|
|
/**
|
|
|
|
* CallsCall::state-changed:
|
|
|
|
* @self: The #CallsCall instance.
|
2018-11-09 12:38:04 +00:00
|
|
|
* @new_state: The new state of the call.
|
|
|
|
* @old_state: The old state of the call.
|
2018-05-23 08:52:58 +00:00
|
|
|
*
|
|
|
|
* This signal is emitted when the state of the call changes, for
|
|
|
|
* example when it's answered or when the call is disconnected.
|
|
|
|
*/
|
2021-04-05 04:00:10 +00:00
|
|
|
signals[STATE_CHANGED] =
|
|
|
|
g_signal_new ("state-changed",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0, NULL, NULL, NULL,
|
|
|
|
G_TYPE_NONE,
|
|
|
|
2, CALLS_TYPE_CALL_STATE, CALLS_TYPE_CALL_STATE);
|
2018-05-17 13:16:51 +00:00
|
|
|
}
|
|
|
|
|
2021-04-05 04:00:10 +00:00
|
|
|
static void
|
|
|
|
calls_call_init (CallsCall *self)
|
|
|
|
{
|
|
|
|
}
|
2018-05-17 13:16:51 +00:00
|
|
|
|
2018-05-23 08:52:58 +00:00
|
|
|
/**
|
|
|
|
* calls_call_get_number:
|
|
|
|
* @self: a #CallsCall
|
|
|
|
*
|
|
|
|
* Get the number the call is connected to. It is possible that this
|
|
|
|
* could return NULL if the number is not known, for example if an
|
|
|
|
* incoming PTSN call has no caller ID information.
|
|
|
|
*
|
2021-04-12 14:40:00 +00:00
|
|
|
* Returns: (transfer none): the number, or NULL
|
2018-05-23 08:52:58 +00:00
|
|
|
*/
|
2021-04-05 04:00:10 +00:00
|
|
|
const char *
|
|
|
|
calls_call_get_number (CallsCall *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CALLS_IS_CALL (self), NULL);
|
|
|
|
|
|
|
|
return CALLS_CALL_GET_CLASS (self)->get_number (self);
|
|
|
|
}
|
2018-05-23 08:52:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* calls_call_get_name:
|
|
|
|
* @self: a #CallsCall
|
|
|
|
*
|
|
|
|
* Get the name of the party the call is connected to, if the network
|
|
|
|
* provides it.
|
|
|
|
*
|
2021-04-12 14:40:00 +00:00
|
|
|
* Returns the number, or NULL
|
2018-05-23 08:52:58 +00:00
|
|
|
*/
|
2021-04-05 04:00:10 +00:00
|
|
|
const char *
|
|
|
|
calls_call_get_name (CallsCall *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CALLS_IS_CALL (self), NULL);
|
|
|
|
|
|
|
|
return CALLS_CALL_GET_CLASS (self)->get_name (self);
|
|
|
|
}
|
2018-05-17 13:16:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* calls_call_get_state:
|
|
|
|
* @self: a #CallsCall
|
|
|
|
*
|
2018-05-23 08:52:58 +00:00
|
|
|
* Get the current state of the call.
|
2018-05-17 13:16:51 +00:00
|
|
|
*
|
|
|
|
* Returns: the state
|
|
|
|
*/
|
2021-04-05 04:00:10 +00:00
|
|
|
CallsCallState
|
|
|
|
calls_call_get_state (CallsCall *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CALLS_IS_CALL (self), 0);
|
|
|
|
|
|
|
|
return CALLS_CALL_GET_CLASS (self)->get_state (self);
|
|
|
|
}
|
2018-05-17 13:16:51 +00:00
|
|
|
|
2018-05-23 08:52:58 +00:00
|
|
|
/**
|
|
|
|
* calls_call_answer:
|
|
|
|
* @self: a #CallsCall
|
|
|
|
*
|
|
|
|
* If the call is incoming, answer it.
|
|
|
|
*
|
|
|
|
*/
|
2021-04-05 04:00:10 +00:00
|
|
|
void
|
|
|
|
calls_call_answer (CallsCall *self)
|
|
|
|
{
|
|
|
|
g_return_if_fail (CALLS_IS_CALL (self));
|
|
|
|
|
|
|
|
CALLS_CALL_GET_CLASS (self)->answer (self);
|
|
|
|
}
|
2018-05-23 08:52:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* calls_call_hang_up:
|
|
|
|
* @self: a #CallsCall
|
|
|
|
*
|
|
|
|
* Hang up the call.
|
|
|
|
*
|
|
|
|
*/
|
2021-04-05 04:00:10 +00:00
|
|
|
void
|
|
|
|
calls_call_hang_up (CallsCall *self)
|
|
|
|
{
|
|
|
|
g_return_if_fail (CALLS_IS_CALL (self));
|
|
|
|
|
|
|
|
CALLS_CALL_GET_CLASS (self)->hang_up (self);
|
|
|
|
}
|
2018-05-17 13:16:51 +00:00
|
|
|
|
|
|
|
|
2019-07-22 10:52:42 +00:00
|
|
|
/**
|
|
|
|
* calls_call_get_inbound:
|
|
|
|
* @self: a #CallsCall
|
|
|
|
*
|
|
|
|
* Get the direction of the call.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if inbound, FALSE if outbound.
|
|
|
|
*/
|
2021-04-05 04:00:10 +00:00
|
|
|
gboolean
|
|
|
|
calls_call_get_inbound (CallsCall *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CALLS_IS_CALL (self), FALSE);
|
|
|
|
|
|
|
|
return CALLS_CALL_GET_CLASS (self)->get_inbound (self);
|
|
|
|
}
|
2019-07-22 10:52:42 +00:00
|
|
|
|
2021-04-26 10:00:02 +00:00
|
|
|
/**
|
|
|
|
* calls_call_get_protocol:
|
|
|
|
* @self: a #CallsCall
|
|
|
|
*
|
|
|
|
* Get the protocol of the call (i.e. "tel", "sip")
|
|
|
|
*
|
|
|
|
* Returns: The protocol used or %NULL when unknown
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
calls_call_get_protocol (CallsCall *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CALLS_IS_CALL (self), NULL);
|
|
|
|
|
|
|
|
return CALLS_CALL_GET_CLASS (self)->get_protocol (self);
|
|
|
|
}
|
|
|
|
|
2018-05-17 13:16:51 +00:00
|
|
|
static inline gboolean
|
|
|
|
tone_key_is_valid (gchar key)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
(key >= '0' && key <= '9')
|
|
|
|
|| (key >= 'A' && key <= 'D')
|
|
|
|
|| key == '*'
|
|
|
|
|| key == '#';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-23 08:52:58 +00:00
|
|
|
/**
|
|
|
|
* calls_call_tone_start:
|
|
|
|
* @self: a #CallsCall
|
|
|
|
* @key: which tone to start
|
|
|
|
*
|
|
|
|
* Start playing a DTMF tone for the specified key. Implementations
|
|
|
|
* will stop playing the tone either after an implementation-specific
|
|
|
|
* timeout, or after #calls_call_tone_stop is called with the same
|
|
|
|
* value for @key.
|
|
|
|
*
|
|
|
|
*/
|
2018-05-31 10:20:17 +00:00
|
|
|
void
|
|
|
|
calls_call_tone_start (CallsCall *self,
|
|
|
|
gchar key)
|
|
|
|
{
|
|
|
|
g_return_if_fail (CALLS_IS_CALL (self));
|
|
|
|
g_return_if_fail (tone_key_is_valid (key));
|
|
|
|
|
2021-04-05 04:00:10 +00:00
|
|
|
CALLS_CALL_GET_CLASS (self)->tone_start (self, key);
|
2018-05-31 10:20:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* calls_call_tone_stoppable:
|
|
|
|
* @self: a #CallsCall
|
|
|
|
*
|
|
|
|
* Determine whether tones for this call can be stopped by calling
|
|
|
|
* #calls_call_tone_stop. Some implementations will only allow
|
|
|
|
* fixed-length tones to be played. In that case, this function
|
|
|
|
* should return FALSE.
|
|
|
|
*
|
|
|
|
* Returns: whether calls to #calls_call_tone_stop will do anything
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
calls_call_tone_stoppable (CallsCall *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CALLS_IS_CALL (self), FALSE);
|
|
|
|
|
2021-04-05 04:00:10 +00:00
|
|
|
return CALLS_CALL_GET_CLASS (self)->tone_stop != calls_call_real_tone_stop;
|
2018-05-31 10:20:17 +00:00
|
|
|
}
|
2018-05-23 08:52:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* calls_call_tone_stop:
|
|
|
|
* @self: a #CallsCall
|
|
|
|
* @key: which tone to stop
|
|
|
|
*
|
2018-05-31 10:20:17 +00:00
|
|
|
* Stop playing a DTMF tone previously started with
|
|
|
|
* #calls_call_tone_start.
|
2018-05-23 08:52:58 +00:00
|
|
|
*
|
|
|
|
*/
|
2018-05-31 10:20:17 +00:00
|
|
|
void
|
|
|
|
calls_call_tone_stop (CallsCall *self,
|
|
|
|
gchar key)
|
|
|
|
{
|
|
|
|
g_return_if_fail (CALLS_IS_CALL (self));
|
|
|
|
g_return_if_fail (tone_key_is_valid (key));
|
|
|
|
|
2021-04-05 04:00:10 +00:00
|
|
|
CALLS_CALL_GET_CLASS (self)->tone_stop (self, key);
|
2018-05-31 10:20:17 +00:00
|
|
|
}
|
2021-01-28 16:05:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* calls_call_get_contact:
|
|
|
|
* @self: a #CallsCall
|
|
|
|
*
|
|
|
|
* This a convenience function to optain the #CallsBestMatch matching the
|
|
|
|
* phone number of the #CallsCall.
|
|
|
|
*
|
2021-04-12 14:40:00 +00:00
|
|
|
* Returns: (transfer full): A #CallsBestMatch
|
2021-01-28 16:05:00 +00:00
|
|
|
*/
|
|
|
|
CallsBestMatch *
|
|
|
|
calls_call_get_contact (CallsCall *self)
|
|
|
|
{
|
2021-04-05 02:51:44 +00:00
|
|
|
CallsContactsProvider *contacts_provider;
|
|
|
|
|
|
|
|
g_return_val_if_fail (CALLS_IS_CALL (self), NULL);
|
|
|
|
|
|
|
|
contacts_provider =
|
|
|
|
calls_manager_get_contacts_provider (calls_manager_get_default ());
|
2021-01-28 16:05:00 +00:00
|
|
|
|
|
|
|
return calls_contacts_provider_lookup_phone_number (contacts_provider,
|
|
|
|
calls_call_get_number (self));
|
|
|
|
}
|
2021-04-05 04:00:10 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
calls_call_state_to_string (GString *string,
|
|
|
|
CallsCallState state)
|
|
|
|
{
|
|
|
|
GEnumClass *klass;
|
|
|
|
GEnumValue *value;
|
|
|
|
|
|
|
|
klass = g_type_class_ref (CALLS_TYPE_CALL_STATE);
|
|
|
|
|
|
|
|
value = g_enum_get_value (klass, (gint)state);
|
|
|
|
if (!value)
|
|
|
|
{
|
|
|
|
return g_string_printf (string,
|
|
|
|
"Unknown call state (%d)",
|
|
|
|
(gint)state);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_string_assign (string, value->value_nick);
|
|
|
|
string->str[0] = g_ascii_toupper (string->str[0]);
|
|
|
|
|
|
|
|
g_type_class_unref (klass);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
calls_call_state_parse_nick (CallsCallState *state,
|
|
|
|
const char *nick)
|
|
|
|
{
|
|
|
|
GEnumClass *klass;
|
|
|
|
GEnumValue *value;
|
|
|
|
gboolean ret;
|
|
|
|
|
|
|
|
g_return_val_if_fail (state != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (nick != NULL, FALSE);
|
|
|
|
|
|
|
|
klass = g_type_class_ref (CALLS_TYPE_CALL_STATE);
|
|
|
|
value = g_enum_get_value_by_nick (klass, nick);
|
|
|
|
|
|
|
|
if (value)
|
|
|
|
{
|
|
|
|
*state = (CallsCallState) value->value;
|
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_type_class_unref (klass);
|
|
|
|
return ret;
|
|
|
|
}
|