summaryrefslogtreecommitdiff
path: root/src/kerneldevice/mm-kernel-device.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kerneldevice/mm-kernel-device.h')
-rw-r--r--src/kerneldevice/mm-kernel-device.h125
1 files changed, 125 insertions, 0 deletions
diff --git a/src/kerneldevice/mm-kernel-device.h b/src/kerneldevice/mm-kernel-device.h
new file mode 100644
index 00000000..2eed71f1
--- /dev/null
+++ b/src/kerneldevice/mm-kernel-device.h
@@ -0,0 +1,125 @@
+/* -*- 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) 2016 Velocloud, Inc.
+ */
+
+#ifndef MM_KERNEL_DEVICE_H
+#define MM_KERNEL_DEVICE_H
+
+#include <glib.h>
+#include <glib-object.h>
+
+#define MM_TYPE_KERNEL_DEVICE (mm_kernel_device_get_type ())
+#define MM_KERNEL_DEVICE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MM_TYPE_KERNEL_DEVICE, MMKernelDevice))
+#define MM_KERNEL_DEVICE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MM_TYPE_KERNEL_DEVICE, MMKernelDeviceClass))
+#define MM_IS_KERNEL_DEVICE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MM_TYPE_KERNEL_DEVICE))
+#define MM_IS_KERNEL_DEVICE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MM_TYPE_KERNEL_DEVICE))
+#define MM_KERNEL_DEVICE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MM_TYPE_KERNEL_DEVICE, MMKernelDeviceClass))
+
+typedef struct _MMKernelDevice MMKernelDevice;
+typedef struct _MMKernelDeviceClass MMKernelDeviceClass;
+typedef struct _MMKernelDevicePrivate MMKernelDevicePrivate;
+
+struct _MMKernelDevice {
+ GObject parent;
+ MMKernelDevicePrivate *priv;
+};
+
+struct _MMKernelDeviceClass {
+ GObjectClass parent;
+
+ const gchar * (* get_subsystem) (MMKernelDevice *self);
+ const gchar * (* get_name) (MMKernelDevice *self);
+ const gchar * (* get_driver) (MMKernelDevice *self);
+ const gchar * (* get_sysfs_path) (MMKernelDevice *self);
+
+ const gchar * (* get_wwandev_sysfs_path) (MMKernelDevice *self);
+
+ gint (* get_interface_number) (MMKernelDevice *self);
+ gint (* get_interface_class) (MMKernelDevice *self);
+ gint (* get_interface_subclass) (MMKernelDevice *self);
+ gint (* get_interface_protocol) (MMKernelDevice *self);
+ const gchar * (* get_interface_sysfs_path) (MMKernelDevice *self);
+ const gchar * (* get_interface_description) (MMKernelDevice *self);
+
+ const gchar * (* get_physdev_uid) (MMKernelDevice *self);
+ guint16 (* get_physdev_vid) (MMKernelDevice *self);
+ guint16 (* get_physdev_pid) (MMKernelDevice *self);
+ guint16 (* get_physdev_revision) (MMKernelDevice *self);
+ const gchar * (* get_physdev_sysfs_path) (MMKernelDevice *self);
+ const gchar * (* get_physdev_subsystem) (MMKernelDevice *self);
+ const gchar * (* get_physdev_manufacturer) (MMKernelDevice *self);
+ const gchar * (* get_physdev_product) (MMKernelDevice *self);
+
+ gboolean (* cmp) (MMKernelDevice *a, MMKernelDevice *b);
+
+ gboolean (* has_property) (MMKernelDevice *self, const gchar *property);
+ const gchar * (* get_property) (MMKernelDevice *self, const gchar *property);
+ gboolean (* has_global_property) (MMKernelDevice *self, const gchar *property);
+ const gchar * (* get_global_property) (MMKernelDevice *self, const gchar *property);
+ gboolean (* has_attribute) (MMKernelDevice *self, const gchar *attribute);
+ const gchar * (* get_attribute) (MMKernelDevice *self, const gchar *attribute);
+};
+
+GType mm_kernel_device_get_type (void);
+G_DEFINE_AUTOPTR_CLEANUP_FUNC (MMKernelDevice, g_object_unref)
+
+const gchar *mm_kernel_device_get_subsystem (MMKernelDevice *self);
+const gchar *mm_kernel_device_get_name (MMKernelDevice *self);
+const gchar *mm_kernel_device_get_driver (MMKernelDevice *self);
+const gchar *mm_kernel_device_get_sysfs_path (MMKernelDevice *self);
+
+const gchar *mm_kernel_device_get_wwandev_sysfs_path (MMKernelDevice *self);
+
+gint mm_kernel_device_get_interface_number (MMKernelDevice *self);
+gint mm_kernel_device_get_interface_class (MMKernelDevice *self);
+gint mm_kernel_device_get_interface_subclass (MMKernelDevice *self);
+gint mm_kernel_device_get_interface_protocol (MMKernelDevice *self);
+const gchar *mm_kernel_device_get_interface_sysfs_path (MMKernelDevice *self);
+const gchar *mm_kernel_device_get_interface_description (MMKernelDevice *self);
+
+const gchar *mm_kernel_device_get_physdev_uid (MMKernelDevice *self);
+guint16 mm_kernel_device_get_physdev_vid (MMKernelDevice *self);
+guint16 mm_kernel_device_get_physdev_pid (MMKernelDevice *self);
+guint16 mm_kernel_device_get_physdev_revision (MMKernelDevice *self);
+const gchar *mm_kernel_device_get_physdev_sysfs_path (MMKernelDevice *self);
+const gchar *mm_kernel_device_get_physdev_subsystem (MMKernelDevice *self);
+const gchar *mm_kernel_device_get_physdev_manufacturer (MMKernelDevice *self);
+const gchar *mm_kernel_device_get_physdev_product (MMKernelDevice *self);
+
+MMKernelDevice *mm_kernel_device_peek_lower_device (MMKernelDevice *self);
+
+gboolean mm_kernel_device_cmp (MMKernelDevice *a, MMKernelDevice *b);
+
+/* Standard properties are usually associated to single ports */
+gboolean mm_kernel_device_has_property (MMKernelDevice *self, const gchar *property);
+const gchar *mm_kernel_device_get_property (MMKernelDevice *self, const gchar *property);
+gboolean mm_kernel_device_get_property_as_boolean (MMKernelDevice *self, const gchar *property);
+gint mm_kernel_device_get_property_as_int (MMKernelDevice *self, const gchar *property);
+guint mm_kernel_device_get_property_as_int_hex (MMKernelDevice *self, const gchar *property);
+
+/* Global properties are usually associated to full devices */
+gboolean mm_kernel_device_has_global_property (MMKernelDevice *self, const gchar *property);
+const gchar *mm_kernel_device_get_global_property (MMKernelDevice *self, const gchar *property);
+gboolean mm_kernel_device_get_global_property_as_boolean (MMKernelDevice *self, const gchar *property);
+gint mm_kernel_device_get_global_property_as_int (MMKernelDevice *self, const gchar *property);
+guint mm_kernel_device_get_global_property_as_int_hex (MMKernelDevice *self, const gchar *property);
+
+/* Attributes in sysfs */
+gboolean mm_kernel_device_has_attribute (MMKernelDevice *self, const gchar *attribute);
+const gchar *mm_kernel_device_get_attribute (MMKernelDevice *self, const gchar *attribute);
+gboolean mm_kernel_device_get_attribute_as_boolean (MMKernelDevice *self, const gchar *attribute);
+gint mm_kernel_device_get_attribute_as_int (MMKernelDevice *self, const gchar *attribute);
+guint mm_kernel_device_get_attribute_as_int_hex (MMKernelDevice *self, const gchar *attribute);
+
+#endif /* MM_KERNEL_DEVICE_H */