summaryrefslogtreecommitdiff
path: root/ytstenut/yts-proxy.c
blob: f2ce7c11e4ea96c6fa72154ad1745a346bd336d7 (plain)
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
/*
 * Copyright © 2011 Intel Corp.
 *
 * This  library is free  software; you can  redistribute it and/or
 * modify it  under  the terms  of the  GNU Lesser  General  Public
 * License  as published  by the Free  Software  Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * 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, see
 * <http://www.gnu.org/licenses/>.
 *
 * Authored by: Rob Staudinger <robsta@linux.intel.com>
 */

#include <stdbool.h>

#include "yts-capability.h"
#include "yts-marshal.h"
#include "yts-proxy-internal.h"
#include "config.h"

static void
_capability_interface_init (YtsCapability *interface);

G_DEFINE_ABSTRACT_TYPE_WITH_CODE (YtsProxy,
                                  yts_proxy,
                                  G_TYPE_OBJECT,
                                  G_IMPLEMENT_INTERFACE (YTS_TYPE_CAPABILITY,
                                                         _capability_interface_init))

#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN PACKAGE"\0proxy\0"G_STRLOC

/**
 * SECTION: yts-proxy
 * @short_description: Represents a remote object, part of a remote service.
 *
 * A YtsProxy is a local representation of a remote object.
 */

enum {
  PROP_0,
  PROP_CAPABILITY_FQC_IDS
};

enum {
  INVOKE_SERVICE_SIGNAL,
  SERVICE_EVENT_SIGNAL,
  SERVICE_RESPONSE_SIGNAL,
  N_SIGNALS
};

static unsigned _signals[N_SIGNALS] = { 0, };

/*
 * YtsCapability implementation
 */

static void
_capability_interface_init (YtsCapability *interface)
{
  /* Nothing to do, it's just about overriding the "fqc-ids" property,
   * which has to be done in the concrete subclass of the Proxy. */
}

/*
 * YtsProxy
 */

static void
_get_property (GObject    *object,
               unsigned    property_id,
               GValue     *value,
               GParamSpec *pspec)
{
  switch (property_id) {
    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
  }
}

static void
_set_property (GObject      *object,
               unsigned      property_id,
               const GValue *value,
               GParamSpec   *pspec)
{
  switch (property_id) {
    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
  }
}

static void
_dispose (GObject *object)
{
  G_OBJECT_CLASS (yts_proxy_parent_class)->dispose (object);
}

static void
yts_proxy_class_init (YtsProxyClass *klass)
{
  GObjectClass  *object_class = G_OBJECT_CLASS (klass);

  object_class->get_property = _get_property;
  object_class->set_property = _set_property;
  object_class->dispose = _dispose;

  /* YtsCapability, needs to be overridden. */

  g_object_class_override_property (object_class,
                                    PROP_CAPABILITY_FQC_IDS,
                                    "fqc-ids");

  /**
   * YtsProxy::invoke-service:
   *
   * Internal API, not for public consumption.
   */
  _signals[INVOKE_SERVICE_SIGNAL] =
                  g_signal_new ("invoke-service",
                                YTS_TYPE_PROXY,
                                G_SIGNAL_RUN_LAST,
                                0,
                                NULL, NULL,
                                yts_marshal_VOID__STRING_STRING_BOXED,
                                G_TYPE_NONE, 3,
                                G_TYPE_STRING, G_TYPE_STRING, G_TYPE_VARIANT);

  /**
   * YtsProxy::service-event:
   * @self: object which emitted the signal.
   * @event: event name.
   * @data: event data.
   *
   * This signal delivers an event emitted by the remote object.
   *
   * Since: 0.3
   */
  _signals[SERVICE_EVENT_SIGNAL] =
                                g_signal_new ("service-event",
                                              YTS_TYPE_PROXY,
                                              G_SIGNAL_RUN_LAST,
                                              G_STRUCT_OFFSET (YtsProxyClass,
                                                               service_event),
                                              NULL, NULL,
                                              yts_marshal_VOID__STRING_BOXED,
                                              G_TYPE_NONE, 2,
                                              G_TYPE_STRING, G_TYPE_VARIANT);

  /**
   * YtsProxy::service-response:
   * @self: object which emitted the signal.
   * @invocation_id: unique invocation identifier passed to yts_proxy_invoke().
   * @data: response data.
   *
   * This signal delivers the response to a remote method invocation.
   *
   * Since: 0.3
   */
  _signals[SERVICE_RESPONSE_SIGNAL] =
                              g_signal_new ("service-response",
                                            YTS_TYPE_PROXY,
                                            G_SIGNAL_RUN_LAST,
                                            G_STRUCT_OFFSET (YtsProxyClass,
                                                             service_response),
                                            NULL, NULL,
                                            yts_marshal_VOID__STRING_BOXED,
                                            G_TYPE_NONE, 2,
                                            G_TYPE_STRING, G_TYPE_VARIANT);
}

static void
yts_proxy_init (YtsProxy *self)
{
}

/**
 * yts_proxy_get_fqc_id:
 * @self: object on which to invoke this method.
 *
 * #YtsProxy subclasses can only implement a single FCQ-ID, so this is a
 * simplified accessor for #YtsCapability #YtsCapability:fqc-ids.
 *
 * Returns: the fully qualified capability ID of the remote object.
 *
 * Since: 0.3
 */
char *
yts_proxy_get_fqc_id (YtsProxy *self)
{
  char **fqc_ids;
  char  *fqc_id;

  g_return_val_if_fail (YTS_IS_PROXY (self), NULL);

  /* Get it from the subclass. */
  fqc_ids = yts_capability_get_fqc_ids (YTS_CAPABILITY (self));

  /* A Proxy can only ever have a single fqc-id. */
  g_return_val_if_fail (fqc_ids, NULL);
  g_return_val_if_fail (fqc_ids[0], NULL);
  g_return_val_if_fail (fqc_ids[1] == NULL, NULL);

  /* PONDERING, maybe just g_free the array and return the first element. */
  fqc_id = g_strdup (fqc_ids[0]);
  g_strfreev (fqc_ids);

  return fqc_id;
}

/**
 * yts_proxy_create_invocation_id:
 * @self: object on which to invoke this method.
 *
 * Convenience function to create a unique string ID for
 *
 * Returns: (transfer full): unique string ID.
 *
 * Since: 0.3
 */
char *
yts_proxy_create_invocation_id (YtsProxy *self)
{
  static GRand  *_rand = NULL;
  char          *invocation_id;

  /* PONDERING: introduce a typedef for the invocation-id and GSlice it. */

  if (_rand == NULL) {
    _rand = g_rand_new ();
  }

  invocation_id = g_strdup_printf ("%x", g_rand_int (_rand));

  return invocation_id;
}

/**
 * yts_proxy_invoke:
 * @self: object on which to invoke this method.
 * @invocation_id: a unique identifier for this invocation, this is going to
 *                 be passed back with the response, so it can be mapped.
 * @aspect: name of the method to invoce.
 * @arguments: arguments to pass, this must be an a{sv} that maps to argument
 *             names and types.
 *
 *
 * Invoke a method on the remote object. The response is delivered by the
 * #YtsProxy::service-response signal.
 *
 * Since: 0.3
 */
void
yts_proxy_invoke (YtsProxy  *self,
                   char const *invocation_id,
                   char const *aspect,
                   GVariant   *arguments)
{
  g_return_if_fail (YTS_IS_PROXY (self));
  g_return_if_fail (invocation_id);
  g_return_if_fail (aspect);

  g_signal_emit (self, _signals[INVOKE_SERVICE_SIGNAL], 0,
                 invocation_id,
                 aspect,
                 arguments);

  /* This is a bit hackish, ok, but it allows for creating the variant
   * in the invocation of this function. */
  if (arguments &&
      g_variant_is_floating (arguments)) {
    g_variant_unref (arguments);
  }
}

void
yts_proxy_handle_service_event (YtsProxy  *self,
                                 char const *aspect,
                                 GVariant   *arguments)
{
  g_return_if_fail (YTS_IS_PROXY (self));
  g_return_if_fail (aspect);

  g_signal_emit (self, _signals[SERVICE_EVENT_SIGNAL], 0,
                 aspect,
                 arguments);

  /* This is a bit hackish, ok, but it allows for creating the variant
   * in the invocation of this function. */
  if (arguments &&
      g_variant_is_floating (arguments)) {
    g_variant_unref (arguments);
  }
}

void
yts_proxy_handle_service_response (YtsProxy   *self,
                                    char const  *invocation_id,
                                    GVariant    *response)
{
  g_return_if_fail (YTS_IS_PROXY (self));

  g_signal_emit (self, _signals[SERVICE_RESPONSE_SIGNAL], 0,
                 invocation_id,
                 response);

  /* This is a bit hackish, ok, but it allows for creating the variant
   * in the invocation of this function. */
  if (response &&
      g_variant_is_floating (response)) {
    g_variant_unref (response);
  }
}