~online-accounts/libsignon-glib/packaging

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
/* vi: set et sw=4 ts=4 cino=t0,(0: */
/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of libsignon-glib
 *
 * Copyright (C) 2009-2010 Nokia Corporation.
 *
 * Contact: Alberto Mardegan <alberto.mardegan@nokia.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * version 2.1 as published by the Free Software Foundation.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 */

#include "signon-dbus-queue.h"

typedef struct {
    SignonReadyCb callback;
    gpointer user_data;
} SignonReadyCbData;

typedef struct {
    gpointer self;
    GSList *callbacks;
} SignonReadyData;

static GQuark
_signon_object_ready_quark()
{
  static GQuark quark = 0;

  if (!quark)
    quark = g_quark_from_static_string ("signon_object_ready_quark");

  return quark;
}

static GQuark
_signon_object_error_quark()
{
  static GQuark quark = 0;

  if (!quark)
    quark = g_quark_from_static_string ("signon_object_error_quark");

  return quark;
}

static void
signon_object_invoke_ready_callbacks (SignonReadyData *rd, const GError *error)
{
    GSList *list;

    for (list = rd->callbacks; list != NULL; list = list->next)
    {
        SignonReadyCbData *cb = list->data;

        cb->callback (rd->self, error, cb->user_data);
        g_slice_free (SignonReadyCbData, cb);
    }
    g_slist_free (rd->callbacks);
}

static void
signon_ready_data_free (SignonReadyData *rd)
{
    if (rd->self)
    {
        //TODO: Signon error codes need be presented instead of 555 and 666
        GError error = { 555, 666, "Object disposed" };
        signon_object_invoke_ready_callbacks (rd, &error);
    }
    g_slice_free (SignonReadyData, rd);
}

void
_signon_object_call_when_ready (gpointer object, GQuark quark, SignonReadyCb callback,
                                gpointer user_data)
{
    SignonReadyData *rd;
    SignonReadyCbData *cb;

    g_return_if_fail (G_IS_OBJECT (object));
    g_return_if_fail (quark != 0);
    g_return_if_fail (callback != NULL);

    if (GPOINTER_TO_INT (g_object_get_qdata((GObject *)object,
                           _signon_object_ready_quark())) == TRUE)
    {
        //TODO: specify the last error in object initialization
        GError * err = g_object_get_qdata((GObject *)object,
                                          _signon_object_error_quark());
        return (*callback)(object, err, user_data);
    }

    cb = g_slice_new (SignonReadyCbData);
    cb->callback = callback;
    cb->user_data = user_data;

    rd = g_object_get_qdata ((GObject *)object, quark);
    if (!rd)
    {
        rd = g_slice_new (SignonReadyData);
        rd->self = object;
        rd->callbacks = NULL;
        g_object_set_qdata_full ((GObject *)object, quark, rd,
                                 (GDestroyNotify)signon_ready_data_free);
    }

    rd->callbacks = g_slist_append (rd->callbacks, cb);
}

void
_signon_object_ready (gpointer object, GQuark quark, GError *error)
{
    SignonReadyData *rd;

    g_object_set_qdata((GObject *)object, _signon_object_ready_quark(), GINT_TO_POINTER(TRUE));

    if(error)
        g_object_set_qdata_full ((GObject *)object, _signon_object_error_quark(),
                                 error,
                                 (GDestroyNotify)g_error_free);

    /* steal the qdata so the callbacks won't be invoked again, even if the
     * object becomes ready or is finalized while still invoking them */

    rd = g_object_steal_qdata ((GObject *)object, quark);
    if (!rd) return;

    g_object_ref (object);

    signon_object_invoke_ready_callbacks (rd, error);
    rd->self = NULL; /* so the callbacks won't be invoked again */
    signon_ready_data_free (rd);

    g_object_unref (object);

    //TODO: set some sort of ready information
}

void
_signon_object_not_ready (gpointer object)
{
    g_object_set_qdata ((GObject *)object,
                        _signon_object_ready_quark(),
                        GINT_TO_POINTER(FALSE));

    g_object_set_qdata ((GObject *)object,
                        _signon_object_error_quark(),
                        NULL);
}

const GError *
_signon_object_last_error (gpointer object)
{
    return g_object_get_qdata((GObject *)object,
                              _signon_object_error_quark());
}