File: call.c

package info (click to toggle)
xdg-desktop-portal 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,596 kB
  • sloc: ansic: 16,942; sh: 5,277; xml: 930; makefile: 167; sed: 16
file content (47 lines) | stat: -rw-r--r-- 1,380 bytes parent folder | download | duplicates (6)
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
/*
 * Copyright © 2018 Red Hat, Inc
 *
 * This program 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/>.
 *
 */

#include "call.h"

static void
call_free (Call *call)
{
  xdp_app_info_unref (call->app_info);
  g_free (call->sender);
  g_free (call);
}

void
call_init_invocation (GDBusMethodInvocation *invocation,
                      XdpAppInfo *app_info)
{
  Call *call;

  call = g_new0 (Call, 1);
  call->app_info = xdp_app_info_ref (app_info);
  call->sender = g_strdup (g_dbus_method_invocation_get_sender (invocation));

  g_object_set_data_full (G_OBJECT (invocation), "call",
                          call, (GDestroyNotify) call_free);
}

Call *
call_from_invocation (GDBusMethodInvocation *invocation)
{
  return g_object_get_data (G_OBJECT (invocation), "call");
}