]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - src/session.h
Name X modules with standard naming format
[sojka/lightdm.git] / src / session.h
1 /*
2  * Copyright (C) 2010-2011 Robert Ancell.
3  * Author: Robert Ancell <robert.ancell@canonical.com>
4  * 
5  * This program is free software: you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License as published by the Free Software
7  * Foundation, either version 3 of the License, or (at your option) any later
8  * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
9  * license.
10  */
11
12 #ifndef SESSION_H_
13 #define SESSION_H_
14
15 #include <glib-object.h>
16
17 #include <security/pam_appl.h>
18
19 #include "display-server.h"
20 #include "accounts.h"
21 #include "x-authority.h"
22
23 G_BEGIN_DECLS
24
25 #define SESSION_TYPE           (session_get_type())
26 #define SESSION(obj)           (G_TYPE_CHECK_INSTANCE_CAST ((obj), SESSION_TYPE, Session))
27 #define SESSION_CLASS(klass)   (G_TYPE_CHECK_CLASS_CAST ((klass), SESSION_TYPE, SessionClass))
28 #define SESSION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SESSION_TYPE, SessionClass))
29
30 typedef struct SessionPrivate SessionPrivate;
31
32 typedef struct
33 {
34     GObject         parent_instance;
35     SessionPrivate *priv;
36 } Session;
37
38 typedef struct
39 {
40     GObjectClass parent_class;
41
42     gboolean (*start)(Session *session);
43     void (*run)(Session *session);
44     void (*stop)(Session *session);
45
46     void (*got_messages)(Session *session);
47     void (*authentication_complete)(Session *session);
48     void (*stopped)(Session *session);
49 } SessionClass;
50
51 typedef enum
52 {
53     SESSION_TYPE_LOCAL,
54     SESSION_TYPE_REMOTE
55 } SessionType;
56
57 #define XDG_SESSION_CLASS_USER        "user"
58 #define XDG_SESSION_CLASS_GREETER     "greeter"
59 #define XDG_SESSION_CLASS_LOCK_SCREEN "lock-screen"
60
61 GType session_get_type (void);
62
63 void session_set_pam_service (Session *session, const gchar *pam_service);
64
65 void session_set_username (Session *session, const gchar *username);
66
67 void session_set_do_authenticate (Session *session, gboolean do_authenticate);
68
69 void session_set_is_interactive (Session *session, gboolean is_interactive);
70
71 void session_set_is_guest (Session *session, gboolean is_guest);
72
73 gboolean session_get_is_guest (Session *session);
74
75 void session_set_log_file (Session *session, const gchar *filename);
76
77 void session_set_class (Session *session, const gchar *class);
78
79 void session_set_display_server (Session *session, DisplayServer *display_server);
80
81 DisplayServer *session_get_display_server (Session *session);
82
83 void session_set_tty (Session *session, const gchar *tty);
84
85 void session_set_xdisplay (Session *session, const gchar *xdisplay);
86
87 void session_set_x_authority (Session *session, XAuthority *authority, gboolean use_system_location);
88
89 void session_set_remote_host_name (Session *session, const gchar *remote_host_name);
90
91 void session_set_env (Session *session, const gchar *name, const gchar *value);
92
93 void session_set_argv (Session *session, gchar **argv);
94
95 // FIXME: Remove
96 User *session_get_user (Session *session);
97
98 gboolean session_start (Session *session);
99
100 gboolean session_get_is_started (Session *session);
101
102 const gchar *session_get_username (Session *session);
103
104 const gchar *session_get_console_kit_cookie (Session *session);
105
106 void session_respond (Session *session, struct pam_response *response);
107
108 void session_respond_error (Session *session, int error);
109
110 int session_get_messages_length (Session *session);
111
112 const struct pam_message *session_get_messages (Session *session);
113
114 gboolean session_get_is_authenticated (Session *session);
115
116 int session_get_authentication_result (Session *session);
117
118 const gchar *session_get_authentication_result_string (Session *session);
119
120 void session_run (Session *session);
121
122 void session_lock (Session *session);
123
124 void session_unlock (Session *session);
125
126 void session_stop (Session *session);
127
128 gboolean session_get_is_stopping (Session *session);
129
130 G_END_DECLS
131
132 #endif /* SESSION_H_ */