summaryrefslogtreecommitdiff
path: root/telepathy-ytstenut-glib/tests/server-passing-service.c
blob: f34a04e6cbca7a5c01231799ad23f0fa5e6d0915 (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
/*
 * passing-service.c - demo to appear as a service and then disappear
 *
 * Copyright (C) 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.1 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, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include "config.h"

#include <telepathy-glib/util.h>

#include <telepathy-ytstenut-glib/telepathy-ytstenut-glib.h>

static GMainLoop *loop = NULL;
static TpYtsAccountManager *am = NULL;

static void
getoutofhere (void)
{
  g_main_loop_quit (loop);
}

static gboolean
timeout_cb (gpointer data)
{
  g_object_unref (data);
  getoutofhere ();
  return FALSE;
}

static void
got_account (TpAccount *account,
    gpointer user_data)
{
  const gchar *service = user_data;
  TpYtsClient *client = tp_yts_client_new (service, account);

  tp_yts_client_add_names (client,
      "en_GB", "Magic Icecream Maker",
      "en_US", "Magic Icecream Vendor",
      "fr", "Machine à Glace Magique",
      NULL);

  tp_yts_client_add_capabilities (client,
      "urn:ytstenut:capabilities:video",
      "urn:ytstenut:data:jingle:rtp",
      NULL);

  tp_yts_client_add_interests (client,
      "urn:ytstenut:capabilities:slipping-on-bananaskins",
      NULL);

  tp_yts_client_register (client, NULL);

  g_timeout_add_seconds (10, timeout_cb, client);

  g_object_unref (account);
}

static void
account_prepared_cb (GObject *source_object,
    GAsyncResult *result,
    gpointer user_data)
{
  TpAccount *account = TP_ACCOUNT (source_object);
  GError *error = NULL;

  if (!tp_account_prepare_finish (account, result, &error))
    {
      g_print ("failed to prepare account: %s\n", error->message);
      g_clear_error (&error);
      getoutofhere ();
      return;
    }

  got_account (account, user_data);
}

int
main (int argc,
    char **argv)
{
  TpAccount *account;
  gchar *path;

  if (argc < 3 || !tp_dbus_check_valid_interface_name (argv[2], NULL))
    {
      g_print ("usage: %s [account] [service name]\n", argv[0]);
      return 1;
    }

  g_type_init ();

  am = tp_yts_account_manager_dup ();

  path = g_strdup_printf ("%s%s", TP_ACCOUNT_OBJECT_PATH_BASE, argv[1]);
  account = tp_yts_account_manager_ensure_account (am, path, NULL);
  g_free (path);

  tp_account_prepare_async (account, NULL, account_prepared_cb, argv[2]);

  loop = g_main_loop_new (NULL, FALSE);
  g_main_loop_run (loop);

  g_main_loop_unref (loop);

  g_object_unref (account);
  g_object_unref (am);

  return 0;
}