Initial GDBus code-drop from GDBus-standalone repo
[platform/upstream/glib.git] / gio / gcredentials.h
1 /* GDBus - GLib D-Bus Library
2  *
3  * Copyright (C) 2008-2009 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 G_BEGIN_DECLS
29
30 #define G_TYPE_CREDENTIALS         (g_credentials_get_type ())
31 #define G_CREDENTIALS(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_CREDENTIALS, GCredentials))
32 #define G_CREDENTIALS_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_CREDENTIALS, GCredentialsClass))
33 #define G_CREDENTIALS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_CREDENTIALS, GCredentialsClass))
34 #define G_IS_CREDENTIALS(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_CREDENTIALS))
35 #define G_IS_CREDENTIALS_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_CREDENTIALS))
36
37 typedef struct _GCredentialsClass   GCredentialsClass;
38 typedef struct _GCredentialsPrivate GCredentialsPrivate;
39
40 /**
41  * GCredentials:
42  *
43  * The #GCredentials structure contains only private data and
44  * should only be accessed using the provided API.
45  */
46 struct _GCredentials
47 {
48   /*< private >*/
49   GObject parent_instance;
50   GCredentialsPrivate *priv;
51 };
52
53 /**
54  * GCredentialsClass:
55  *
56  * Class structure for #GCredentials.
57  */
58 struct _GCredentialsClass
59 {
60   /*< private >*/
61   GObjectClass parent_class;
62
63   /* Padding for future expansion */
64   void (*_g_reserved1) (void);
65   void (*_g_reserved2) (void);
66   void (*_g_reserved3) (void);
67   void (*_g_reserved4) (void);
68   void (*_g_reserved5) (void);
69   void (*_g_reserved6) (void);
70   void (*_g_reserved7) (void);
71   void (*_g_reserved8) (void);
72 };
73
74 GType            g_credentials_get_type           (void) G_GNUC_CONST;
75
76 GCredentials    *g_credentials_new                (void);
77 GCredentials    *g_credentials_new_for_process    (void);
78 GCredentials    *g_credentials_new_for_string     (const gchar  *str,
79                                                    GError      **error);
80 gchar           *g_credentials_to_string          (GCredentials    *credentials);
81
82 gboolean         g_credentials_has_unix_user      (GCredentials    *credentials);
83 gint64           g_credentials_get_unix_user      (GCredentials    *credentials);
84 void             g_credentials_set_unix_user      (GCredentials    *credentials,
85                                                    gint64           user_id);
86
87 gboolean         g_credentials_has_unix_group     (GCredentials    *credentials);
88 gint64           g_credentials_get_unix_group     (GCredentials    *credentials);
89 void             g_credentials_set_unix_group     (GCredentials    *credentials,
90                                                    gint64           group_id);
91
92 gboolean         g_credentials_has_unix_process   (GCredentials    *credentials);
93 gint64           g_credentials_get_unix_process   (GCredentials    *credentials);
94 void             g_credentials_set_unix_process   (GCredentials    *credentials,
95                                                    gint64           process_id);
96
97 gboolean         g_credentials_has_windows_user   (GCredentials    *credentials);
98 const gchar     *g_credentials_get_windows_user   (GCredentials    *credentials);
99 void             g_credentials_set_windows_user   (GCredentials    *credentials,
100                                                    const gchar     *user_sid);
101
102 G_END_DECLS
103
104 #endif /* __G_DBUS_PROXY_H__ */