602 lines
14 KiB
C
602 lines
14 KiB
C
/*
|
|
* pluma-session.c - Basic session management for pluma
|
|
* This file is part of pluma
|
|
*
|
|
* Copyright (C) 2002 Ximian, Inc.
|
|
* Copyright (C) 2005 - Paolo Maggi
|
|
*
|
|
* Author: Federico Mena-Quintero <federico@ximian.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
/*
|
|
* Modified by the pluma Team, 2002-2005. See the AUTHORS file for a
|
|
* list of people on the pluma Team.
|
|
* See the ChangeLog files for a list of changes.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
#include <libxml/tree.h>
|
|
#include <libxml/xmlwriter.h>
|
|
|
|
#include "pluma-session.h"
|
|
|
|
#include "pluma-debug.h"
|
|
#include "pluma-plugins-engine.h"
|
|
#include "pluma-prefs-manager-app.h"
|
|
#include "pluma-metadata-manager.h"
|
|
#include "pluma-window.h"
|
|
#include "pluma-app.h"
|
|
#include "pluma-commands.h"
|
|
#include "dialogs/pluma-close-confirmation-dialog.h"
|
|
#include "smclient/eggsmclient.h"
|
|
|
|
/* The master client we use for SM */
|
|
static EggSMClient *master_client = NULL;
|
|
|
|
/* global var used during quit_requested */
|
|
static GSList *window_dirty_list;
|
|
|
|
static void ask_next_confirmation (void);
|
|
|
|
#define PLUMA_SESSION_LIST_OF_DOCS_TO_SAVE "pluma-session-list-of-docs-to-save-key"
|
|
|
|
static void
|
|
save_window_session (GKeyFile *state_file,
|
|
const gchar *group_name,
|
|
PlumaWindow *window)
|
|
{
|
|
const gchar *role;
|
|
int width, height;
|
|
PlumaPanel *panel;
|
|
GList *docs, *l;
|
|
GPtrArray *doc_array;
|
|
PlumaDocument *active_document;
|
|
gchar *uri;
|
|
|
|
pluma_debug (DEBUG_SESSION);
|
|
|
|
role = gtk_window_get_role (GTK_WINDOW (window));
|
|
g_key_file_set_string (state_file, group_name, "role", role);
|
|
gtk_window_get_size (GTK_WINDOW (window), &width, &height);
|
|
g_key_file_set_integer (state_file, group_name, "width", width);
|
|
g_key_file_set_integer (state_file, group_name, "height", height);
|
|
|
|
panel = pluma_window_get_side_panel (window);
|
|
g_key_file_set_boolean (state_file, group_name, "side-panel-visible",
|
|
gtk_widget_get_visible (panel));
|
|
|
|
panel = pluma_window_get_bottom_panel (window);
|
|
g_key_file_set_boolean (state_file, group_name, "bottom-panel-visible",
|
|
gtk_widget_get_visible (panel));
|
|
|
|
active_document = pluma_window_get_active_document (window);
|
|
if (active_document)
|
|
{
|
|
uri = pluma_document_get_uri (active_document);
|
|
g_key_file_set_string (state_file, group_name,
|
|
"active-document", uri);
|
|
}
|
|
|
|
docs = pluma_window_get_documents (window);
|
|
|
|
doc_array = g_ptr_array_new ();
|
|
for (l = docs; l != NULL; l = g_list_next (l))
|
|
{
|
|
uri = pluma_document_get_uri (PLUMA_DOCUMENT (l->data));
|
|
|
|
if (uri != NULL)
|
|
g_ptr_array_add (doc_array, uri);
|
|
|
|
}
|
|
g_list_free (docs);
|
|
|
|
if (doc_array->len)
|
|
{
|
|
guint i;
|
|
|
|
g_key_file_set_string_list (state_file, group_name,
|
|
"documents",
|
|
(const char **)doc_array->pdata,
|
|
doc_array->len);
|
|
for (i = 0; i < doc_array->len; i++)
|
|
g_free (doc_array->pdata[i]);
|
|
}
|
|
g_ptr_array_free (doc_array, TRUE);
|
|
}
|
|
|
|
static void
|
|
client_save_state_cb (EggSMClient *client,
|
|
GKeyFile *state_file,
|
|
gpointer user_data)
|
|
{
|
|
const GList *windows;
|
|
gchar *group_name;
|
|
int n;
|
|
|
|
windows = pluma_app_get_windows (pluma_app_get_default ());
|
|
n = 1;
|
|
|
|
while (windows != NULL)
|
|
{
|
|
group_name = g_strdup_printf ("pluma window %d", n);
|
|
save_window_session (state_file,
|
|
group_name,
|
|
PLUMA_WINDOW (windows->data));
|
|
g_free (group_name);
|
|
|
|
windows = g_list_next (windows);
|
|
n++;
|
|
}
|
|
}
|
|
|
|
static void
|
|
window_handled (PlumaWindow *window)
|
|
{
|
|
window_dirty_list = g_slist_remove (window_dirty_list, window);
|
|
|
|
/* whee... we made it! */
|
|
if (window_dirty_list == NULL)
|
|
egg_sm_client_will_quit (master_client, TRUE);
|
|
else
|
|
ask_next_confirmation ();
|
|
}
|
|
|
|
static void
|
|
window_state_change (PlumaWindow *window,
|
|
GParamSpec *pspec,
|
|
gpointer data)
|
|
{
|
|
PlumaWindowState state;
|
|
GList *unsaved_docs;
|
|
GList *docs_to_save;
|
|
GList *l;
|
|
gboolean done = TRUE;
|
|
|
|
state = pluma_window_get_state (window);
|
|
|
|
/* we are still saving */
|
|
if (state & PLUMA_WINDOW_STATE_SAVING)
|
|
return;
|
|
|
|
unsaved_docs = pluma_window_get_unsaved_documents (window);
|
|
|
|
docs_to_save = g_object_get_data (G_OBJECT (window),
|
|
PLUMA_SESSION_LIST_OF_DOCS_TO_SAVE);
|
|
|
|
|
|
for (l = docs_to_save; l != NULL; l = l->next)
|
|
{
|
|
if (g_list_find (unsaved_docs, l->data))
|
|
{
|
|
done = FALSE;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (done)
|
|
{
|
|
g_signal_handlers_disconnect_by_func (window, window_state_change, data);
|
|
g_list_free (docs_to_save);
|
|
g_object_set_data (G_OBJECT (window),
|
|
PLUMA_SESSION_LIST_OF_DOCS_TO_SAVE,
|
|
NULL);
|
|
|
|
window_handled (window);
|
|
}
|
|
|
|
g_list_free (unsaved_docs);
|
|
}
|
|
|
|
static void
|
|
close_confirmation_dialog_response_handler (PlumaCloseConfirmationDialog *dlg,
|
|
gint response_id,
|
|
PlumaWindow *window)
|
|
{
|
|
GList *selected_documents;
|
|
GSList *l;
|
|
|
|
pluma_debug (DEBUG_COMMANDS);
|
|
|
|
switch (response_id)
|
|
{
|
|
case GTK_RESPONSE_YES:
|
|
/* save selected docs */
|
|
|
|
g_signal_connect (window,
|
|
"notify::state",
|
|
G_CALLBACK (window_state_change),
|
|
NULL);
|
|
|
|
selected_documents = pluma_close_confirmation_dialog_get_selected_documents (dlg);
|
|
|
|
g_return_if_fail (g_object_get_data (G_OBJECT (window),
|
|
PLUMA_SESSION_LIST_OF_DOCS_TO_SAVE) == NULL);
|
|
|
|
g_object_set_data (G_OBJECT (window),
|
|
PLUMA_SESSION_LIST_OF_DOCS_TO_SAVE,
|
|
selected_documents);
|
|
|
|
_pluma_cmd_file_save_documents_list (window, selected_documents);
|
|
|
|
/* FIXME: also need to lock the window to prevent further changes... */
|
|
|
|
break;
|
|
|
|
case GTK_RESPONSE_NO:
|
|
/* dont save */
|
|
window_handled (window);
|
|
break;
|
|
|
|
default:
|
|
/* disconnect window_state_changed where needed */
|
|
for (l = window_dirty_list; l != NULL; l = l->next)
|
|
g_signal_handlers_disconnect_by_func (window,
|
|
window_state_change, NULL);
|
|
g_slist_free (window_dirty_list);
|
|
window_dirty_list = NULL;
|
|
|
|
/* cancel shutdown */
|
|
egg_sm_client_will_quit (master_client, FALSE);
|
|
|
|
break;
|
|
}
|
|
|
|
gtk_widget_destroy (GTK_WIDGET (dlg));
|
|
}
|
|
|
|
static void
|
|
show_confirmation_dialog (PlumaWindow *window)
|
|
{
|
|
GList *unsaved_docs;
|
|
GtkWidget *dlg;
|
|
|
|
pluma_debug (DEBUG_SESSION);
|
|
|
|
unsaved_docs = pluma_window_get_unsaved_documents (window);
|
|
|
|
g_return_if_fail (unsaved_docs != NULL);
|
|
|
|
if (unsaved_docs->next == NULL)
|
|
{
|
|
/* There is only one unsaved document */
|
|
PlumaTab *tab;
|
|
PlumaDocument *doc;
|
|
|
|
doc = PLUMA_DOCUMENT (unsaved_docs->data);
|
|
|
|
tab = pluma_tab_get_from_document (doc);
|
|
g_return_if_fail (tab != NULL);
|
|
|
|
pluma_window_set_active_tab (window, tab);
|
|
|
|
dlg = pluma_close_confirmation_dialog_new_single (
|
|
GTK_WINDOW (window),
|
|
doc,
|
|
TRUE);
|
|
}
|
|
else
|
|
{
|
|
dlg = pluma_close_confirmation_dialog_new (GTK_WINDOW (window),
|
|
unsaved_docs,
|
|
TRUE);
|
|
}
|
|
|
|
g_list_free (unsaved_docs);
|
|
|
|
g_signal_connect (dlg,
|
|
"response",
|
|
G_CALLBACK (close_confirmation_dialog_response_handler),
|
|
window);
|
|
|
|
gtk_widget_show (dlg);
|
|
}
|
|
|
|
static void
|
|
ask_next_confirmation (void)
|
|
{
|
|
g_return_if_fail (window_dirty_list != NULL);
|
|
|
|
/* pop up the confirmation dialog for the first window
|
|
* in the dirty list. The next confirmation is asked once
|
|
* this one has been handled.
|
|
*/
|
|
show_confirmation_dialog (PLUMA_WINDOW (window_dirty_list->data));
|
|
}
|
|
|
|
/* quit_requested handler for the master client */
|
|
static void
|
|
client_quit_requested_cb (EggSMClient *client, gpointer data)
|
|
{
|
|
PlumaApp *app;
|
|
const GList *l;
|
|
|
|
pluma_debug (DEBUG_SESSION);
|
|
|
|
app = pluma_app_get_default ();
|
|
|
|
if (window_dirty_list != NULL)
|
|
{
|
|
g_critical ("global variable window_dirty_list not NULL");
|
|
window_dirty_list = NULL;
|
|
}
|
|
|
|
for (l = pluma_app_get_windows (app); l != NULL; l = l->next)
|
|
{
|
|
if (pluma_window_get_unsaved_documents (PLUMA_WINDOW (l->data)) != NULL)
|
|
{
|
|
window_dirty_list = g_slist_prepend (window_dirty_list, l->data);
|
|
}
|
|
}
|
|
|
|
/* no modified docs */
|
|
if (window_dirty_list == NULL)
|
|
{
|
|
egg_sm_client_will_quit (client, TRUE);
|
|
|
|
return;
|
|
}
|
|
|
|
ask_next_confirmation ();
|
|
|
|
pluma_debug_message (DEBUG_SESSION, "END");
|
|
}
|
|
|
|
/* quit handler for the master client */
|
|
static void
|
|
client_quit_cb (EggSMClient *client, gpointer data)
|
|
{
|
|
#if 0
|
|
pluma_debug (DEBUG_SESSION);
|
|
|
|
if (!client->save_yourself_emitted)
|
|
pluma_file_close_all ();
|
|
|
|
pluma_debug_message (DEBUG_FILE, "All files closed.");
|
|
|
|
matecomponent_mdi_destroy (MATECOMPONENT_MDI (pluma_mdi));
|
|
|
|
pluma_debug_message (DEBUG_FILE, "Unref pluma_mdi.");
|
|
|
|
g_object_unref (G_OBJECT (pluma_mdi));
|
|
|
|
pluma_debug_message (DEBUG_FILE, "Unref pluma_mdi: DONE");
|
|
|
|
pluma_debug_message (DEBUG_FILE, "Unref pluma_app_server.");
|
|
|
|
matecomponent_object_unref (pluma_app_server);
|
|
|
|
pluma_debug_message (DEBUG_FILE, "Unref pluma_app_server: DONE");
|
|
#endif
|
|
|
|
gtk_main_quit ();
|
|
}
|
|
|
|
/**
|
|
* pluma_session_init:
|
|
*
|
|
* Initializes session management support. This function should be called near
|
|
* the beginning of the program.
|
|
**/
|
|
void
|
|
pluma_session_init (void)
|
|
{
|
|
pluma_debug (DEBUG_SESSION);
|
|
|
|
if (master_client)
|
|
return;
|
|
|
|
master_client = egg_sm_client_get ();
|
|
g_signal_connect (master_client,
|
|
"save_state",
|
|
G_CALLBACK (client_save_state_cb),
|
|
NULL);
|
|
g_signal_connect (master_client,
|
|
"quit_requested",
|
|
G_CALLBACK (client_quit_requested_cb),
|
|
NULL);
|
|
g_signal_connect (master_client,
|
|
"quit",
|
|
G_CALLBACK (client_quit_cb),
|
|
NULL);
|
|
}
|
|
|
|
/**
|
|
* pluma_session_is_restored:
|
|
*
|
|
* Returns whether this pluma is running from a restarted session.
|
|
*
|
|
* Return value: TRUE if the session manager restarted us, FALSE otherwise.
|
|
* This should be used to determine whether to pay attention to command line
|
|
* arguments in case the session was not restored.
|
|
**/
|
|
gboolean
|
|
pluma_session_is_restored (void)
|
|
{
|
|
gboolean restored;
|
|
|
|
pluma_debug (DEBUG_SESSION);
|
|
|
|
if (!master_client)
|
|
return FALSE;
|
|
|
|
restored = egg_sm_client_is_resumed (master_client);
|
|
|
|
pluma_debug_message (DEBUG_SESSION, restored ? "RESTORED" : "NOT RESTORED");
|
|
|
|
return restored;
|
|
}
|
|
|
|
static void
|
|
parse_window (GKeyFile *state_file, const char *group_name)
|
|
{
|
|
PlumaWindow *window;
|
|
gchar *role, *active_document, **documents;
|
|
int width, height;
|
|
gboolean visible;
|
|
PlumaPanel *panel;
|
|
GError *error = NULL;
|
|
|
|
role = g_key_file_get_string (state_file, group_name, "role", NULL);
|
|
|
|
pluma_debug_message (DEBUG_SESSION, "Window role: %s", role);
|
|
|
|
window = _pluma_app_restore_window (pluma_app_get_default (), (gchar *) role);
|
|
g_free (role);
|
|
|
|
if (window == NULL)
|
|
{
|
|
g_warning ("Couldn't restore window");
|
|
return;
|
|
}
|
|
|
|
width = g_key_file_get_integer (state_file, group_name,
|
|
"width", &error);
|
|
if (error)
|
|
{
|
|
g_clear_error (&error);
|
|
width = -1;
|
|
}
|
|
height = g_key_file_get_integer (state_file, group_name,
|
|
"height", &error);
|
|
if (error)
|
|
{
|
|
g_clear_error (&error);
|
|
height = -1;
|
|
}
|
|
gtk_window_set_default_size (GTK_WINDOW (window), width, height);
|
|
|
|
|
|
visible = g_key_file_get_boolean (state_file, group_name,
|
|
"side-panel-visible", &error);
|
|
if (error)
|
|
{
|
|
g_clear_error (&error);
|
|
visible = FALSE;
|
|
}
|
|
|
|
panel = pluma_window_get_side_panel (window);
|
|
|
|
if (visible)
|
|
{
|
|
pluma_debug_message (DEBUG_SESSION, "Side panel visible");
|
|
gtk_widget_show (GTK_WIDGET (panel));
|
|
}
|
|
else
|
|
{
|
|
pluma_debug_message (DEBUG_SESSION, "Side panel _NOT_ visible");
|
|
gtk_widget_hide (GTK_WIDGET (panel));
|
|
}
|
|
|
|
visible = g_key_file_get_boolean (state_file, group_name,
|
|
"bottom-panel-visible", &error);
|
|
if (error)
|
|
{
|
|
g_clear_error (&error);
|
|
visible = FALSE;
|
|
}
|
|
|
|
panel = pluma_window_get_bottom_panel (window);
|
|
if (visible)
|
|
{
|
|
pluma_debug_message (DEBUG_SESSION, "Bottom panel visible");
|
|
gtk_widget_show (GTK_WIDGET (panel));
|
|
}
|
|
else
|
|
{
|
|
pluma_debug_message (DEBUG_SESSION, "Bottom panel _NOT_ visible");
|
|
gtk_widget_hide (GTK_WIDGET (panel));
|
|
}
|
|
|
|
active_document = g_key_file_get_string (state_file, group_name,
|
|
"active-document", NULL);
|
|
documents = g_key_file_get_string_list (state_file, group_name,
|
|
"documents", NULL, NULL);
|
|
if (documents)
|
|
{
|
|
int i;
|
|
gboolean jump_to = FALSE;
|
|
|
|
for (i = 0; documents[i]; i++)
|
|
{
|
|
if (active_document != NULL)
|
|
jump_to = strcmp (active_document,
|
|
documents[i]) == 0;
|
|
|
|
pluma_debug_message (DEBUG_SESSION,
|
|
"URI: %s (%s)",
|
|
documents[i],
|
|
jump_to ? "active" : "not active");
|
|
pluma_window_create_tab_from_uri (window,
|
|
documents[i],
|
|
NULL,
|
|
0,
|
|
FALSE,
|
|
jump_to);
|
|
}
|
|
g_strfreev (documents);
|
|
}
|
|
|
|
g_free (active_document);
|
|
|
|
gtk_widget_show (GTK_WIDGET (window));
|
|
}
|
|
|
|
/**
|
|
* pluma_session_load:
|
|
*
|
|
* Loads the session by fetching the necessary information from the session
|
|
* manager and opening files.
|
|
*
|
|
* Return value: TRUE if the session was loaded successfully, FALSE otherwise.
|
|
**/
|
|
gboolean
|
|
pluma_session_load (void)
|
|
{
|
|
GKeyFile *state_file;
|
|
gchar **groups;
|
|
int i;
|
|
|
|
pluma_debug (DEBUG_SESSION);
|
|
|
|
state_file = egg_sm_client_get_state_file (master_client);
|
|
if (state_file == NULL)
|
|
return FALSE;
|
|
|
|
groups = g_key_file_get_groups (state_file, NULL);
|
|
|
|
for (i = 0; groups[i] != NULL; i++)
|
|
{
|
|
if (g_str_has_prefix (groups[i], "pluma window "))
|
|
parse_window (state_file, groups[i]);
|
|
}
|
|
|
|
g_strfreev (groups);
|
|
g_key_file_free (state_file);
|
|
|
|
return TRUE;
|
|
}
|