mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2025-01-07 20:35:31 +00:00
RecordStore: Use Manager
This commit is contained in:
parent
3d4b547d04
commit
1a2c2f3036
3 changed files with 53 additions and 97 deletions
|
@ -323,7 +323,6 @@ static gboolean
|
||||||
start_proper (CallsApplication *self)
|
start_proper (CallsApplication *self)
|
||||||
{
|
{
|
||||||
GtkApplication *gtk_app;
|
GtkApplication *gtk_app;
|
||||||
CallsProvider *provider;
|
|
||||||
|
|
||||||
if (self->main_window)
|
if (self->main_window)
|
||||||
{
|
{
|
||||||
|
@ -332,13 +331,10 @@ start_proper (CallsApplication *self)
|
||||||
|
|
||||||
gtk_app = GTK_APPLICATION (self);
|
gtk_app = GTK_APPLICATION (self);
|
||||||
|
|
||||||
provider = calls_manager_get_real_provider (calls_manager_get_default ());
|
|
||||||
g_assert (provider != NULL);
|
|
||||||
|
|
||||||
self->ringer = calls_ringer_new ();
|
self->ringer = calls_ringer_new ();
|
||||||
g_assert (self->ringer != NULL);
|
g_assert (self->ringer != NULL);
|
||||||
|
|
||||||
self->record_store = calls_record_store_new (provider);
|
self->record_store = calls_record_store_new ();
|
||||||
g_assert (self->record_store != NULL);
|
g_assert (self->record_store != NULL);
|
||||||
|
|
||||||
self->contacts = calls_contacts_new ();
|
self->contacts = calls_contacts_new ();
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
#include "calls-record-store.h"
|
#include "calls-record-store.h"
|
||||||
#include "calls-call-record.h"
|
#include "calls-call-record.h"
|
||||||
#include "calls-enumerate.h"
|
#include "calls-manager.h"
|
||||||
#include "calls-call.h"
|
#include "calls-call.h"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
|
@ -74,7 +74,6 @@ struct _CallsRecordStore
|
||||||
GtkApplicationWindow parent_instance;
|
GtkApplicationWindow parent_instance;
|
||||||
|
|
||||||
gchar *filename;
|
gchar *filename;
|
||||||
CallsProvider *provider;
|
|
||||||
GomAdapter *adapter;
|
GomAdapter *adapter;
|
||||||
GomRepository *repository;
|
GomRepository *repository;
|
||||||
};
|
};
|
||||||
|
@ -82,14 +81,6 @@ struct _CallsRecordStore
|
||||||
G_DEFINE_TYPE (CallsRecordStore, calls_record_store, G_TYPE_LIST_STORE);
|
G_DEFINE_TYPE (CallsRecordStore, calls_record_store, G_TYPE_LIST_STORE);
|
||||||
|
|
||||||
|
|
||||||
enum {
|
|
||||||
PROP_0,
|
|
||||||
PROP_PROVIDER,
|
|
||||||
PROP_LAST_PROP,
|
|
||||||
};
|
|
||||||
static GParamSpec *props[PROP_LAST_PROP];
|
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
load_calls_fetch_cb (GomResourceGroup *group,
|
load_calls_fetch_cb (GomResourceGroup *group,
|
||||||
GAsyncResult *res,
|
GAsyncResult *res,
|
||||||
|
@ -467,28 +458,6 @@ record_call (CallsRecordStore *self,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void
|
|
||||||
call_added_cb (CallsRecordStore *self,
|
|
||||||
CallsCall *call)
|
|
||||||
{
|
|
||||||
GObject * const call_obj = G_OBJECT (call);
|
|
||||||
GDateTime *start;
|
|
||||||
|
|
||||||
g_assert (g_object_get_data (call_obj, "calls-call-start") == NULL);
|
|
||||||
start = g_date_time_new_now_local ();
|
|
||||||
g_object_set_data_full (call_obj, "calls-call-start",
|
|
||||||
start, (GDestroyNotify)g_date_time_unref);
|
|
||||||
|
|
||||||
if (!self->repository)
|
|
||||||
{
|
|
||||||
open_repo (self);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
record_call (self, call);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
update_cb (GomResource *resource,
|
update_cb (GomResource *resource,
|
||||||
GAsyncResult *res,
|
GAsyncResult *res,
|
||||||
|
@ -548,22 +517,6 @@ stamp_call (CallsCallRecord *record,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void
|
|
||||||
call_removed_cb (CallsRecordStore *self,
|
|
||||||
CallsCall *call,
|
|
||||||
const gchar *reason)
|
|
||||||
{
|
|
||||||
/* Stamp the call as ended if it hasn't already been done */
|
|
||||||
CallsCallRecord *record =
|
|
||||||
g_object_get_data (G_OBJECT (call), "calls-call-record");
|
|
||||||
|
|
||||||
if (record)
|
|
||||||
{
|
|
||||||
stamp_call (record, "end");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
state_changed_cb (CallsRecordStore *self,
|
state_changed_cb (CallsRecordStore *self,
|
||||||
CallsCallState new_state,
|
CallsCallState new_state,
|
||||||
|
@ -637,53 +590,73 @@ state_changed_cb (CallsRecordStore *self,
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
set_property (GObject *object,
|
call_added_cb (CallsRecordStore *self,
|
||||||
guint property_id,
|
CallsCall *call)
|
||||||
const GValue *value,
|
|
||||||
GParamSpec *pspec)
|
|
||||||
{
|
{
|
||||||
CallsRecordStore *self = CALLS_RECORD_STORE (object);
|
GObject * const call_obj = G_OBJECT (call);
|
||||||
|
GDateTime *start;
|
||||||
|
|
||||||
switch (property_id) {
|
g_assert (g_object_get_data (call_obj, "calls-call-start") == NULL);
|
||||||
case PROP_PROVIDER:
|
start = g_date_time_new_now_local ();
|
||||||
g_set_object (&self->provider, CALLS_PROVIDER (g_value_get_object (value)));
|
g_object_set_data_full (call_obj, "calls-call-start",
|
||||||
break;
|
start, (GDestroyNotify)g_date_time_unref);
|
||||||
|
|
||||||
default:
|
if (!self->repository)
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
{
|
||||||
break;
|
open_repo (self);
|
||||||
}
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
record_call (self, call);
|
||||||
|
|
||||||
|
g_signal_connect_swapped (call,
|
||||||
|
"state-changed",
|
||||||
|
G_CALLBACK (state_changed_cb),
|
||||||
|
self);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
set_up_provider (CallsRecordStore *self)
|
call_removed_cb (CallsRecordStore *self,
|
||||||
|
CallsCall *call,
|
||||||
|
const gchar *reason)
|
||||||
{
|
{
|
||||||
CallsEnumerateParams *params;
|
/* Stamp the call as ended if it hasn't already been done */
|
||||||
|
CallsCallRecord *record =
|
||||||
|
g_object_get_data (G_OBJECT (call), "calls-call-record");
|
||||||
|
|
||||||
params = calls_enumerate_params_new (self);
|
if (record)
|
||||||
|
{
|
||||||
|
stamp_call (record, "end");
|
||||||
|
}
|
||||||
|
|
||||||
calls_enumerate_params_add
|
g_signal_handlers_disconnect_by_data (call, self);
|
||||||
(params, CALLS_TYPE_ORIGIN, "call-added", G_CALLBACK (call_added_cb));
|
|
||||||
calls_enumerate_params_add
|
|
||||||
(params, CALLS_TYPE_ORIGIN, "call-removed", G_CALLBACK (call_removed_cb));
|
|
||||||
|
|
||||||
calls_enumerate_params_add
|
|
||||||
(params, CALLS_TYPE_CALL, "state-changed", G_CALLBACK (state_changed_cb));
|
|
||||||
|
|
||||||
calls_enumerate (self->provider, params);
|
|
||||||
|
|
||||||
g_object_unref (params);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
constructed (GObject *object)
|
constructed (GObject *object)
|
||||||
{
|
{
|
||||||
|
g_autoptr (GList) calls = NULL;
|
||||||
|
GList *c;
|
||||||
CallsRecordStore *self = CALLS_RECORD_STORE (object);
|
CallsRecordStore *self = CALLS_RECORD_STORE (object);
|
||||||
|
|
||||||
open_repo (self);
|
open_repo (self);
|
||||||
set_up_provider (self);
|
|
||||||
|
g_signal_connect_swapped (calls_manager_get_default (),
|
||||||
|
"call-add",
|
||||||
|
G_CALLBACK (call_added_cb),
|
||||||
|
self);
|
||||||
|
|
||||||
|
g_signal_connect_swapped (calls_manager_get_default (),
|
||||||
|
"call-remove",
|
||||||
|
G_CALLBACK (call_removed_cb),
|
||||||
|
self);
|
||||||
|
|
||||||
|
calls = calls_manager_get_calls (calls_manager_get_default ());
|
||||||
|
for (c = calls; c != NULL; c = c->next) {
|
||||||
|
call_added_cb (self, c->data);
|
||||||
|
}
|
||||||
|
|
||||||
G_OBJECT_CLASS (calls_record_store_parent_class)->constructed (object);
|
G_OBJECT_CLASS (calls_record_store_parent_class)->constructed (object);
|
||||||
}
|
}
|
||||||
|
@ -694,8 +667,6 @@ dispose (GObject *object)
|
||||||
{
|
{
|
||||||
CallsRecordStore *self = CALLS_RECORD_STORE (object);
|
CallsRecordStore *self = CALLS_RECORD_STORE (object);
|
||||||
|
|
||||||
g_clear_object (&self->provider);
|
|
||||||
|
|
||||||
g_list_store_remove_all (G_LIST_STORE (self));
|
g_list_store_remove_all (G_LIST_STORE (self));
|
||||||
|
|
||||||
g_clear_object (&self->repository);
|
g_clear_object (&self->repository);
|
||||||
|
@ -721,19 +692,9 @@ calls_record_store_class_init (CallsRecordStoreClass *klass)
|
||||||
{
|
{
|
||||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||||
|
|
||||||
object_class->set_property = set_property;
|
|
||||||
object_class->constructed = constructed;
|
object_class->constructed = constructed;
|
||||||
object_class->dispose = dispose;
|
object_class->dispose = dispose;
|
||||||
object_class->finalize = finalize;
|
object_class->finalize = finalize;
|
||||||
|
|
||||||
props[PROP_PROVIDER] =
|
|
||||||
g_param_spec_object ("provider",
|
|
||||||
_("Provider"),
|
|
||||||
_("An object implementing low-level call-making functionality"),
|
|
||||||
CALLS_TYPE_PROVIDER,
|
|
||||||
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
|
|
||||||
|
|
||||||
g_object_class_install_properties (object_class, PROP_LAST_PROP, props);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -748,10 +709,9 @@ calls_record_store_init (CallsRecordStore *self)
|
||||||
|
|
||||||
|
|
||||||
CallsRecordStore *
|
CallsRecordStore *
|
||||||
calls_record_store_new (CallsProvider *provider)
|
calls_record_store_new ()
|
||||||
{
|
{
|
||||||
return g_object_new (CALLS_TYPE_RECORD_STORE,
|
return g_object_new (CALLS_TYPE_RECORD_STORE,
|
||||||
"item-type", CALLS_TYPE_CALL_RECORD,
|
"item-type", CALLS_TYPE_CALL_RECORD,
|
||||||
"provider", provider,
|
|
||||||
NULL);
|
NULL);
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#ifndef CALLS_RECORD_STORE_H__
|
#ifndef CALLS_RECORD_STORE_H__
|
||||||
#define CALLS_RECORD_STORE_H__
|
#define CALLS_RECORD_STORE_H__
|
||||||
|
|
||||||
#include "calls-provider.h"
|
#include "gtk/gtk.h"
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ G_BEGIN_DECLS
|
||||||
|
|
||||||
G_DECLARE_FINAL_TYPE (CallsRecordStore, calls_record_store, CALLS, RECORD_STORE, GListStore);
|
G_DECLARE_FINAL_TYPE (CallsRecordStore, calls_record_store, CALLS, RECORD_STORE, GListStore);
|
||||||
|
|
||||||
CallsRecordStore *calls_record_store_new (CallsProvider *provider);
|
CallsRecordStore *calls_record_store_new (void);
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue