Merge branch 'gdbus-merge'
[platform/upstream/glib.git] / gio / gcredentials.h
1 /* GDBus - GLib D-Bus Library
2  *
3  * Copyright (C) 2008-2010 Red Hat, Inc.
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
16  * Public 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  * Author: David Zeuthen <davidz@redhat.com>
21  */
22
23 #ifndef __G_CREDENTIALS_H__
24 #define __G_CREDENTIALS_H__
25
26 #include <gio/giotypes.h>
27
28 #ifdef G_OS_UNIX
29 /* To get the uid_t type */
30 #include <unistd.h>
31 #include <sys/types.h>
32 #endif
33
34 G_BEGIN_DECLS
35
36 #define G_TYPE_CREDENTIALS         (g_credentials_get_type ())
37 #define G_CREDENTIALS(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_CREDENTIALS, GCredentials))
38 #define G_CREDENTIALS_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_CREDENTIALS, GCredentialsClass))
39 #define G_CREDENTIALS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_CREDENTIALS, GCredentialsClass))
40 #define G_IS_CREDENTIALS(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_CREDENTIALS))
41 #define G_IS_CREDENTIALS_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_CREDENTIALS))
42
43 typedef struct _GCredentialsClass   GCredentialsClass;
44 typedef struct _GCredentialsPrivate GCredentialsPrivate;
45
46 /**
47  * GCredentials:
48  *
49  * The #GCredentials structure contains only private data and
50  * should only be accessed using the provided API.
51  *
52  * Since: 2.26
53  */
54 struct _GCredentials
55 {
56   /*< private >*/
57   GObject parent_instance;
58   GCredentialsPrivate *priv;
59 };
60
61 /**
62  * GCredentialsClass:
63  *
64  * Class structure for #GCredentials.
65  *
66  * Since: 2.26
67  */
68 struct _GCredentialsClass
69 {
70   /*< private >*/
71   GObjectClass parent_class;
72
73   /* Padding for future expansion */
74   void (*_g_reserved1) (void);
75   void (*_g_reserved2) (void);
76   void (*_g_reserved3) (void);
77   void (*_g_reserved4) (void);
78   void (*_g_reserved5) (void);
79   void (*_g_reserved6) (void);
80   void (*_g_reserved7) (void);
81   void (*_g_reserved8) (void);
82 };
83
84 GType            g_credentials_get_type           (void) G_GNUC_CONST;
85
86 GCredentials    *g_credentials_new                (void);
87
88 gchar           *g_credentials_to_string          (GCredentials    *credentials);
89
90 gpointer         g_credentials_get_native         (GCredentials    *credentials);
91 void             g_credentials_set_native         (GCredentials    *credentials,
92                                                    gpointer         native);
93
94 gboolean         g_credentials_is_same_user       (GCredentials    *credentials,
95                                                    GCredentials    *other_credentials,
96                                                    GError         **error);
97
98 #ifdef G_OS_UNIX
99 uid_t            g_credentials_get_unix_user      (GCredentials    *credentials,
100                                                    GError         **error);
101 gboolean         g_credentials_set_unix_user      (GCredentials    *credentials,
102                                                    uid_t           uid,
103                                                    GError         **error);
104 #endif
105
106 G_END_DECLS
107
108 #endif /* __G_DBUS_PROXY_H__ */