xed/pluma/pluma-session.c

602 lines
14 KiB
C
Raw Normal View History

2011-11-07 13:46:58 -06:00
/*
2011-11-07 16:52:18 -06:00
* pluma-session.c - Basic session management for pluma
* This file is part of pluma
2011-11-07 13:46:58 -06:00
*
* 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., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*/
/*
2011-11-07 16:52:18 -06:00
* Modified by the pluma Team, 2002-2005. See the AUTHORS file for a
* list of people on the pluma Team.
2011-11-07 13:46:58 -06:00
* 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>
2011-11-07 16:52:18 -06:00
#include "pluma-session.h"
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
#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"
2011-11-07 13:46:58 -06:00
#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);
2011-11-07 16:52:18 -06:00
#define PLUMA_SESSION_LIST_OF_DOCS_TO_SAVE "pluma-session-list-of-docs-to-save-key"
2011-11-07 13:46:58 -06:00
static void
save_window_session (GKeyFile *state_file,
const gchar *group_name,
2011-11-07 16:52:18 -06:00
PlumaWindow *window)
2011-11-07 13:46:58 -06:00
{
const gchar *role;
int width, height;
2011-11-07 16:52:18 -06:00
PlumaPanel *panel;
2011-11-07 13:46:58 -06:00
GList *docs, *l;
GPtrArray *doc_array;
2011-11-07 16:52:18 -06:00
PlumaDocument *active_document;
2011-11-07 13:46:58 -06:00
gchar *uri;
2011-11-07 16:52:18 -06:00
pluma_debug (DEBUG_SESSION);
2011-11-07 13:46:58 -06:00
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);
2011-11-07 16:52:18 -06:00
panel = pluma_window_get_side_panel (window);
2011-11-07 13:46:58 -06:00
g_key_file_set_boolean (state_file, group_name, "side-panel-visible",
GTK_WIDGET_VISIBLE (panel));
2011-11-07 16:52:18 -06:00
panel = pluma_window_get_bottom_panel (window);
2011-11-07 13:46:58 -06:00
g_key_file_set_boolean (state_file, group_name, "bottom-panel-visible",
GTK_WIDGET_VISIBLE (panel));
2011-11-07 16:52:18 -06:00
active_document = pluma_window_get_active_document (window);
2011-11-07 13:46:58 -06:00
if (active_document)
{
2011-11-07 16:52:18 -06:00
uri = pluma_document_get_uri (active_document);
2011-11-07 13:46:58 -06:00
g_key_file_set_string (state_file, group_name,
"active-document", uri);
}
2011-11-07 16:52:18 -06:00
docs = pluma_window_get_documents (window);
2011-11-07 13:46:58 -06:00
doc_array = g_ptr_array_new ();
for (l = docs; l != NULL; l = g_list_next (l))
{
2011-11-07 16:52:18 -06:00
uri = pluma_document_get_uri (PLUMA_DOCUMENT (l->data));
2011-11-07 13:46:58 -06:00
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;
2011-11-07 16:52:18 -06:00
windows = pluma_app_get_windows (pluma_app_get_default ());
2011-11-07 13:46:58 -06:00
n = 1;
while (windows != NULL)
{
2011-11-07 16:52:18 -06:00
group_name = g_strdup_printf ("pluma window %d", n);
2011-11-07 13:46:58 -06:00
save_window_session (state_file,
group_name,
2011-11-07 16:52:18 -06:00
PLUMA_WINDOW (windows->data));
2011-11-07 13:46:58 -06:00
g_free (group_name);
windows = g_list_next (windows);
n++;
}
}
static void
2011-11-07 16:52:18 -06:00
window_handled (PlumaWindow *window)
2011-11-07 13:46:58 -06:00
{
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
2011-11-07 16:52:18 -06:00
window_state_change (PlumaWindow *window,
2011-11-07 13:46:58 -06:00
GParamSpec *pspec,
gpointer data)
{
2011-11-07 16:52:18 -06:00
PlumaWindowState state;
2011-11-07 13:46:58 -06:00
GList *unsaved_docs;
GList *docs_to_save;
GList *l;
gboolean done = TRUE;
2011-11-07 16:52:18 -06:00
state = pluma_window_get_state (window);
2011-11-07 13:46:58 -06:00
/* we are still saving */
2011-11-07 16:52:18 -06:00
if (state & PLUMA_WINDOW_STATE_SAVING)
2011-11-07 13:46:58 -06:00
return;
2011-11-07 16:52:18 -06:00
unsaved_docs = pluma_window_get_unsaved_documents (window);
2011-11-07 13:46:58 -06:00
docs_to_save = g_object_get_data (G_OBJECT (window),
2011-11-07 16:52:18 -06:00
PLUMA_SESSION_LIST_OF_DOCS_TO_SAVE);
2011-11-07 13:46:58 -06:00
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),
2011-11-07 16:52:18 -06:00
PLUMA_SESSION_LIST_OF_DOCS_TO_SAVE,
2011-11-07 13:46:58 -06:00
NULL);
window_handled (window);
}
g_list_free (unsaved_docs);
}
static void
2011-11-07 16:52:18 -06:00
close_confirmation_dialog_response_handler (PlumaCloseConfirmationDialog *dlg,
2011-11-07 13:46:58 -06:00
gint response_id,
2011-11-07 16:52:18 -06:00
PlumaWindow *window)
2011-11-07 13:46:58 -06:00
{
GList *selected_documents;
GSList *l;
2011-11-07 16:52:18 -06:00
pluma_debug (DEBUG_COMMANDS);
2011-11-07 13:46:58 -06:00
switch (response_id)
{
case GTK_RESPONSE_YES:
/* save selected docs */
g_signal_connect (window,
"notify::state",
G_CALLBACK (window_state_change),
NULL);
2011-11-07 16:52:18 -06:00
selected_documents = pluma_close_confirmation_dialog_get_selected_documents (dlg);
2011-11-07 13:46:58 -06:00
g_return_if_fail (g_object_get_data (G_OBJECT (window),
2011-11-07 16:52:18 -06:00
PLUMA_SESSION_LIST_OF_DOCS_TO_SAVE) == NULL);
2011-11-07 13:46:58 -06:00
g_object_set_data (G_OBJECT (window),
2011-11-07 16:52:18 -06:00
PLUMA_SESSION_LIST_OF_DOCS_TO_SAVE,
2011-11-07 13:46:58 -06:00
selected_documents);
2011-11-07 16:52:18 -06:00
_pluma_cmd_file_save_documents_list (window, selected_documents);
2011-11-07 13:46:58 -06:00
/* 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
2011-11-07 16:52:18 -06:00
show_confirmation_dialog (PlumaWindow *window)
2011-11-07 13:46:58 -06:00
{
GList *unsaved_docs;
GtkWidget *dlg;
2011-11-07 16:52:18 -06:00
pluma_debug (DEBUG_SESSION);
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
unsaved_docs = pluma_window_get_unsaved_documents (window);
2011-11-07 13:46:58 -06:00
g_return_if_fail (unsaved_docs != NULL);
if (unsaved_docs->next == NULL)
{
/* There is only one unsaved document */
2011-11-07 16:52:18 -06:00
PlumaTab *tab;
PlumaDocument *doc;
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
doc = PLUMA_DOCUMENT (unsaved_docs->data);
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
tab = pluma_tab_get_from_document (doc);
2011-11-07 13:46:58 -06:00
g_return_if_fail (tab != NULL);
2011-11-07 16:52:18 -06:00
pluma_window_set_active_tab (window, tab);
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
dlg = pluma_close_confirmation_dialog_new_single (
2011-11-07 13:46:58 -06:00
GTK_WINDOW (window),
doc,
TRUE);
}
else
{
2011-11-07 16:52:18 -06:00
dlg = pluma_close_confirmation_dialog_new (GTK_WINDOW (window),
2011-11-07 13:46:58 -06:00
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.
*/
2011-11-07 16:52:18 -06:00
show_confirmation_dialog (PLUMA_WINDOW (window_dirty_list->data));
2011-11-07 13:46:58 -06:00
}
/* quit_requested handler for the master client */
static void
client_quit_requested_cb (EggSMClient *client, gpointer data)
{
2011-11-07 16:52:18 -06:00
PlumaApp *app;
2011-11-07 13:46:58 -06:00
const GList *l;
2011-11-07 16:52:18 -06:00
pluma_debug (DEBUG_SESSION);
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
app = pluma_app_get_default ();
2011-11-07 13:46:58 -06:00
if (window_dirty_list != NULL)
{
g_critical ("global variable window_dirty_list not NULL");
window_dirty_list = NULL;
}
2011-11-07 16:52:18 -06:00
for (l = pluma_app_get_windows (app); l != NULL; l = l->next)
2011-11-07 13:46:58 -06:00
{
2011-11-07 16:52:18 -06:00
if (pluma_window_get_unsaved_documents (PLUMA_WINDOW (l->data)) != NULL)
2011-11-07 13:46:58 -06:00
{
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 ();
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_SESSION, "END");
2011-11-07 13:46:58 -06:00
}
/* quit handler for the master client */
static void
client_quit_cb (EggSMClient *client, gpointer data)
{
#if 0
2011-11-07 16:52:18 -06:00
pluma_debug (DEBUG_SESSION);
2011-11-07 13:46:58 -06:00
if (!client->save_yourself_emitted)
2011-11-07 16:52:18 -06:00
pluma_file_close_all ();
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_FILE, "All files closed.");
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
matecomponent_mdi_destroy (MATECOMPONENT_MDI (pluma_mdi));
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_FILE, "Unref pluma_mdi.");
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
g_object_unref (G_OBJECT (pluma_mdi));
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_FILE, "Unref pluma_mdi: DONE");
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_FILE, "Unref pluma_app_server.");
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
matecomponent_object_unref (pluma_app_server);
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_FILE, "Unref pluma_app_server: DONE");
2011-11-07 13:46:58 -06:00
#endif
gtk_main_quit ();
}
/**
2011-11-07 16:52:18 -06:00
* pluma_session_init:
2011-11-07 13:46:58 -06:00
*
* Initializes session management support. This function should be called near
* the beginning of the program.
**/
void
2011-11-07 16:52:18 -06:00
pluma_session_init (void)
2011-11-07 13:46:58 -06:00
{
2011-11-07 16:52:18 -06:00
pluma_debug (DEBUG_SESSION);
2011-11-07 13:46:58 -06:00
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);
}
/**
2011-11-07 16:52:18 -06:00
* pluma_session_is_restored:
2011-11-07 13:46:58 -06:00
*
2011-11-07 16:52:18 -06:00
* Returns whether this pluma is running from a restarted session.
2011-11-07 13:46:58 -06:00
*
* 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
2011-11-07 16:52:18 -06:00
pluma_session_is_restored (void)
2011-11-07 13:46:58 -06:00
{
gboolean restored;
2011-11-07 16:52:18 -06:00
pluma_debug (DEBUG_SESSION);
2011-11-07 13:46:58 -06:00
if (!master_client)
return FALSE;
restored = egg_sm_client_is_resumed (master_client);
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_SESSION, restored ? "RESTORED" : "NOT RESTORED");
2011-11-07 13:46:58 -06:00
return restored;
}
static void
parse_window (GKeyFile *state_file, const char *group_name)
{
2011-11-07 16:52:18 -06:00
PlumaWindow *window;
2011-11-07 13:46:58 -06:00
gchar *role, *active_document, **documents;
int width, height;
gboolean visible;
2011-11-07 16:52:18 -06:00
PlumaPanel *panel;
2011-11-07 13:46:58 -06:00
GError *error = NULL;
role = g_key_file_get_string (state_file, group_name, "role", NULL);
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_SESSION, "Window role: %s", role);
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
window = _pluma_app_restore_window (pluma_app_get_default (), (gchar *) role);
2011-11-07 13:46:58 -06:00
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;
}
2011-11-07 16:52:18 -06:00
panel = pluma_window_get_side_panel (window);
2011-11-07 13:46:58 -06:00
if (visible)
{
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_SESSION, "Side panel visible");
2011-11-07 13:46:58 -06:00
gtk_widget_show (GTK_WIDGET (panel));
}
else
{
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_SESSION, "Side panel _NOT_ visible");
2011-11-07 13:46:58 -06:00
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;
}
2011-11-07 16:52:18 -06:00
panel = pluma_window_get_bottom_panel (window);
2011-11-07 13:46:58 -06:00
if (visible)
{
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_SESSION, "Bottom panel visible");
2011-11-07 13:46:58 -06:00
gtk_widget_show (GTK_WIDGET (panel));
}
else
{
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_SESSION, "Bottom panel _NOT_ visible");
2011-11-07 13:46:58 -06:00
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;
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_SESSION,
2011-11-07 13:46:58 -06:00
"URI: %s (%s)",
documents[i],
jump_to ? "active" : "not active");
2011-11-07 16:52:18 -06:00
pluma_window_create_tab_from_uri (window,
2011-11-07 13:46:58 -06:00
documents[i],
NULL,
0,
FALSE,
jump_to);
}
g_strfreev (documents);
}
g_free (active_document);
gtk_widget_show (GTK_WIDGET (window));
}
/**
2011-11-07 16:52:18 -06:00
* pluma_session_load:
2011-11-07 13:46:58 -06:00
*
* 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
2011-11-07 16:52:18 -06:00
pluma_session_load (void)
2011-11-07 13:46:58 -06:00
{
GKeyFile *state_file;
gchar **groups;
int i;
2011-11-07 16:52:18 -06:00
pluma_debug (DEBUG_SESSION);
2011-11-07 13:46:58 -06:00
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++)
{
2011-11-07 16:52:18 -06:00
if (g_str_has_prefix (groups[i], "pluma window "))
2011-11-07 13:46:58 -06:00
parse_window (state_file, groups[i]);
}
g_strfreev (groups);
g_key_file_free (state_file);
return TRUE;
}