]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - src/session.h
Merge with trunk
[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 "xauthority.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 (*got_messages)(Session *session);
44     void (*authentication_complete)(Session *session);
45     void (*stopped)(Session *session);
46     void (*run)(Session *session);
47 } SessionClass;
48
49 typedef enum
50 {
51     SESSION_TYPE_LOCAL,
52     SESSION_TYPE_REMOTE
53 } SessionType;
54
55 #define XDG_SESSION_CLASS_USER        "user"
56 #define XDG_SESSION_CLASS_GREETER     "greeter"
57 #define XDG_SESSION_CLASS_LOCK_SCREEN "lock-screen"
58
59 GType session_get_type (void);
60
61 void session_set_pam_service (Session *session, const gchar *pam_service);
62
63 void session_set_username (Session *session, const gchar *username);
64
65 void session_set_do_authenticate (Session *session, gboolean do_authenticate);
66
67 void session_set_is_interactive (Session *session, gboolean is_interactive);
68
69 void session_set_is_guest (Session *session, gboolean is_guest);
70
71 void session_set_log_file (Session *session, const gchar *filename);
72
73 void session_set_class (Session *session, const gchar *class);
74
75 void session_set_display_server (Session *session, DisplayServer *display_server);
76
77 DisplayServer *session_get_display_server (Session *session);
78
79 void session_set_tty (Session *session, const gchar *tty);
80
81 void session_set_xdisplay (Session *session, const gchar *xdisplay);
82
83 void session_set_xauthority (Session *session, XAuthority *authority, gboolean use_system_location);
84
85 void session_set_remote_host_name (Session *session, const gchar *remote_host_name);
86
87 void session_set_env (Session *session, const gchar *name, const gchar *value);
88
89 void session_set_argv (Session *session, gchar **argv);
90
91 // FIXME: Remove
92 User *session_get_user (Session *session);
93
94 gboolean session_start (Session *session);
95
96 gboolean session_get_is_started (Session *session);
97
98 const gchar *session_get_username (Session *session);
99
100 const gchar *session_get_console_kit_cookie (Session *session);
101
102 void session_respond (Session *session, struct pam_response *response);
103
104 void session_respond_error (Session *session, int error);
105
106 int session_get_messages_length (Session *session);
107
108 const struct pam_message *session_get_messages (Session *session);
109
110 gboolean session_get_is_authenticated (Session *session);
111
112 int session_get_authentication_result (Session *session);
113
114 const gchar *session_get_authentication_result_string (Session *session);
115
116 void session_run (Session *session);
117
118 void session_lock (Session *session);
119
120 void session_unlock (Session *session);
121
122 void session_stop (Session *session);
123
124 gboolean session_get_is_stopping (Session *session);
125
126 G_END_DECLS
127
128 #endif /* SESSION_H_ */