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
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details:
*
* Copyright (C) 2024 Google, Inc.
*/
#include <ModemManager.h>
#define _LIBMM_INSIDE_MM
#include <libmm-glib.h>
#include "mm-iface-port-at.h"
#include "mm-log-object.h"
G_DEFINE_INTERFACE (MMIfacePortAt, mm_iface_port_at, MM_TYPE_PORT)
/*****************************************************************************/
gboolean
mm_iface_port_at_check_support (MMIfacePortAt *self,
gboolean *out_supported,
GError **error)
{
g_assert (out_supported);
/* If the object implementing the interface doesn't provide a check_support() method,
* we assume the feature is unconditionally supported. */
if (!MM_IFACE_PORT_AT_GET_IFACE (self)->check_support) {
*out_supported = TRUE;
return TRUE;
}
return MM_IFACE_PORT_AT_GET_IFACE (self)->check_support (self, out_supported, error);
}
/*****************************************************************************/
gchar *
mm_iface_port_at_command_finish (MMIfacePortAt *self,
GAsyncResult *res,
GError **error)
{
return MM_IFACE_PORT_AT_GET_IFACE (self)->command_finish (self, res, error);
}
void
mm_iface_port_at_command (MMIfacePortAt *self,
const gchar *command,
guint32 timeout_seconds,
gboolean is_raw,
gboolean allow_cached,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data)
{
g_assert (MM_IFACE_PORT_AT_GET_IFACE (self)->command);
g_assert (MM_IFACE_PORT_AT_GET_IFACE (self)->command_finish);
MM_IFACE_PORT_AT_GET_IFACE (self)->command (self,
command,
timeout_seconds,
is_raw,
allow_cached,
cancellable,
callback,
user_data);
}
/*****************************************************************************/
static void
mm_iface_port_at_default_init (MMIfacePortAtInterface *iface)
{
}
|