blob: beea9b8140f103a90693223dab9c90a8ab093717 [file] [log] [blame]
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* libqrtr-glib -- GLib/GIO based library to control QRTR devices
*
* 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, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*
* Copyright (C) 2019-2020 Eric Caruso <ejcaruso@chromium.org>
* Copyright (C) 2020 Aleksander Morgado <aleksander@aleksander.es>
*/
#ifndef _LIBQRTR_GLIB_QRTR_CONTROL_SOCKET_H_
#define _LIBQRTR_GLIB_QRTR_CONTROL_SOCKET_H_
#if !defined (__LIBQRTR_GLIB_H_INSIDE__) && !defined (LIBQRTR_GLIB_COMPILATION)
#error "Only <libqrtr-glib.h> can be included directly."
#endif
#include <glib-object.h>
#include <gio/gio.h>
#include "qrtr-node.h"
G_BEGIN_DECLS
/**
* SECTION: qrtr-control-socket
* @title: QrtrControlSocket
* @short_description: QRTR bus observer and device event listener
*
* #QrtrControlSocket sets up a socket that uses the QRTR IPC protocol and
* can call back into a client to tell them when new devices have appeared on
* the QRTR bus. It holds QrtrNodes that can be used to look up service and
* port information.
*/
#define QRTR_TYPE_CONTROL_SOCKET (qrtr_control_socket_get_type ())
#define QRTR_CONTROL_SOCKET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), QRTR_TYPE_CONTROL_SOCKET, QrtrControlSocket))
#define QRTR_CONTROL_SOCKET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), QRTR_TYPE_CONTROL_SOCKET, QrtrControlSocketClass))
#define QRTR_IS_CONTROL_SOCKET(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), QRTR_TYPE_CONTROL_SOCKET))
#define QRTR_IS_CONTROL_SOCKET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), QRTR_TYPE_CONTROL_SOCKET))
#define QRTR_CONTROL_SOCKET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), QRTR_TYPE_CONTROL_SOCKET, QrtrControlSocketClass))
typedef struct _QrtrControlSocket QrtrControlSocket;
typedef struct _QrtrControlSocketClass QrtrControlSocketClass;
typedef struct _QrtrControlSocketPrivate QrtrControlSocketPrivate;
struct _QrtrControlSocket {
GObject parent;
QrtrControlSocketPrivate *priv;
};
struct _QrtrControlSocketClass {
GObjectClass parent;
};
GType qrtr_control_socket_get_type (void);
/**
* QRTR_CONTROL_SOCKET_SIGNAL_NODE_ADDED:
*
* Symbol defining the #QrtrControlSocket::qrtr-node-added signal.
*/
#define QRTR_CONTROL_SOCKET_SIGNAL_NODE_ADDED "qrtr-node-added"
/**
* QRTR_CONTROL_SOCKET_SIGNAL_NODE_REMOVED:
*
* Symbol defining the #QrtrControlSocket::qrtr-node-removed signal.
*/
#define QRTR_CONTROL_SOCKET_SIGNAL_NODE_REMOVED "qrtr-node-removed"
/**
* QRTR_CONTROL_SOCKET_SIGNAL_SERVICE_ADDED:
*
* Symbol defining the #QrtrControlSocket::qrtr-service-added signal.
*/
#define QRTR_CONTROL_SOCKET_SIGNAL_SERVICE_ADDED "qrtr-service-added"
/**
* QRTR_CONTROL_SOCKET_SIGNAL_SERVICE_REMOVED:
*
* Symbol defining the #QrtrControlSocket::qrtr-service-removed signal.
*/
#define QRTR_CONTROL_SOCKET_SIGNAL_SERVICE_REMOVED "qrtr-service-removed"
/**
* qrtr_control_socket_new:
* @cancellable: optional #GCancellable object, #NULL to ignore.
* @error: Return location for error or %NULL.
*
* Creates a #QrtrControlSocket object.
*
* Returns: A newly created #QrtrControlSocket, or %NULL if @error is set.
*/
QrtrControlSocket *qrtr_control_socket_new (GCancellable *cancellable,
GError **error);
/**
* qrtr_control_socket_peek_node:
* @node_id: the QRTR bus node ID to get
*
* Returns: (transfer none): a #QrtrNode object representing the device with
* the given node ID on the QRTR bus.
*/
QrtrNode *qrtr_control_socket_peek_node (QrtrControlSocket *socket,
guint32 node_id);
/**
* qrtr_control_socket_get_node:
* @node_id: the QRTR bus node ID to get
*
* Returns: (transfer full): a #QrtrNode object representing the device with
* the given node ID on the QRTR bus.
*/
QrtrNode *qrtr_control_socket_get_node (QrtrControlSocket *socket,
guint32 node_id);
G_END_DECLS
#endif /* _LIBQRTR_GLIB_QRTR_CONTROL_SOCKET_H_ */