1 /* -*- Mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
3 * Copyright (C) 2008 David Zeuthen <davidz@redhat.com>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #if !defined (_GUDEV_COMPILATION) && !defined(_GUDEV_INSIDE_GUDEV_H)
22 #error "Only <gudev/gudev.h> can be included directly, this file may disappear or change contents."
25 #ifndef __G_UDEV_CLIENT_H__
26 #define __G_UDEV_CLIENT_H__
28 #include <gudev/gudevtypes.h>
32 #define G_UDEV_TYPE_CLIENT (g_udev_client_get_type ())
33 #define G_UDEV_CLIENT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_UDEV_TYPE_CLIENT, GUdevClient))
34 #define G_UDEV_CLIENT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_UDEV_TYPE_CLIENT, GUdevClientClass))
35 #define G_UDEV_IS_CLIENT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_UDEV_TYPE_CLIENT))
36 #define G_UDEV_IS_CLIENT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_UDEV_TYPE_CLIENT))
37 #define G_UDEV_CLIENT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_UDEV_TYPE_CLIENT, GUdevClientClass))
39 typedef struct _GUdevClientClass GUdevClientClass;
40 typedef struct _GUdevClientPrivate GUdevClientPrivate;
44 * @parent: Parent instance.
46 * The #GUdevClient struct is opaque and should not be accessed directly.
53 GUdevClientPrivate *priv;
58 * @parent_class: Parent class.
59 * @uevent: Signal class handler for the #GUdevClient::uevent signal.
61 * Class structure for #GUdevClient.
63 struct _GUdevClientClass
65 GObjectClass parent_class;
68 void (*uevent) (GUdevClient *client,
73 /* Padding for future expansion */
74 void (*reserved1) (void);
75 void (*reserved2) (void);
76 void (*reserved3) (void);
77 void (*reserved4) (void);
78 void (*reserved5) (void);
79 void (*reserved6) (void);
80 void (*reserved7) (void);
81 void (*reserved8) (void);
84 GType g_udev_client_get_type (void) G_GNUC_CONST;
85 GUdevClient *g_udev_client_new (const gchar* const *subsystems);
86 GList *g_udev_client_query_by_subsystem (GUdevClient *client,
87 const gchar *subsystem);
88 GUdevDevice *g_udev_client_query_by_device_number (GUdevClient *client,
90 GUdevDeviceNumber number);
91 GUdevDevice *g_udev_client_query_by_device_file (GUdevClient *client,
92 const gchar *device_file);
93 GUdevDevice *g_udev_client_query_by_sysfs_path (GUdevClient *client,
94 const gchar *sysfs_path);
95 GUdevDevice *g_udev_client_query_by_subsystem_and_name (GUdevClient *client,
96 const gchar *subsystem,
101 #endif /* __G_UDEV_CLIENT_H__ */