chiark / gitweb /
v4l_id: move from udev-extras
[elogind.git] / extras / gudev / gudevclient.h
1 /* -*- Mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
2  *
3  * Copyright (C) 2008 David Zeuthen <davidz@redhat.com>
4  *
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.
9  *
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.
14  *
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.
19  */
20
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."
23 #endif
24
25 #ifndef __G_UDEV_CLIENT_H__
26 #define __G_UDEV_CLIENT_H__
27
28 #include <gudev/gudevtypes.h>
29
30 G_BEGIN_DECLS
31
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))
38
39 typedef struct _GUdevClientClass   GUdevClientClass;
40 typedef struct _GUdevClientPrivate GUdevClientPrivate;
41
42 /**
43  * GUdevClient:
44  * @parent: Parent instance.
45  *
46  * The #GUdevClient struct is opaque and should not be accessed directly.
47  */
48 struct _GUdevClient
49 {
50   GObject              parent;
51
52   /*< private >*/
53   GUdevClientPrivate *priv;
54 };
55
56 /**
57  * GUdevClientClass:
58  * @parent_class: Parent class.
59  * @uevent: Signal class handler for the #GUdevClient::uevent signal.
60  *
61  * Class structure for #GUdevClient.
62  */
63 struct _GUdevClientClass
64 {
65   GObjectClass   parent_class;
66
67   /* signals */
68   void (*uevent) (GUdevClient  *client,
69                   const gchar  *action,
70                   GUdevDevice  *device);
71
72   /*< private >*/
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);
82 };
83
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,
89                                                         GUdevDeviceType     type,
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,
97                                                         const gchar        *name);
98
99 G_END_DECLS
100
101 #endif /* __G_UDEV_CLIENT_H__ */