1025 lines
28 KiB
C
1025 lines
28 KiB
C
/* ide-unsaved-files.c
|
|
*
|
|
* Copyright 2015-2019 Christian Hergert <christian@hergert.me>
|
|
*
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#define G_LOG_DOMAIN "ide-unsaved-files"
|
|
|
|
#include "config.h"
|
|
|
|
#include <dazzle.h>
|
|
#include <glib/gi18n.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <glib/gstdio.h>
|
|
#include <string.h>
|
|
|
|
#include <libide-io.h>
|
|
#include <libide-threading.h>
|
|
|
|
#include "ide-unsaved-file.h"
|
|
#include "ide-unsaved-file-private.h"
|
|
#include "ide-unsaved-files.h"
|
|
|
|
typedef struct
|
|
{
|
|
gint64 sequence;
|
|
GFile *file;
|
|
GBytes *content;
|
|
gchar *temp_path;
|
|
gint temp_fd;
|
|
IdeUnsavedFiles *backptr;
|
|
} UnsavedFile;
|
|
|
|
struct _IdeUnsavedFiles
|
|
{
|
|
IdeObject parent_instance;
|
|
GMutex mutex;
|
|
GPtrArray *unsaved_files;
|
|
gint64 sequence;
|
|
gchar *project_id;
|
|
};
|
|
|
|
typedef struct
|
|
{
|
|
GPtrArray *unsaved_files;
|
|
gchar *drafts_directory;
|
|
} AsyncState;
|
|
|
|
G_DEFINE_FINAL_TYPE (IdeUnsavedFiles, ide_unsaved_files, IDE_TYPE_OBJECT)
|
|
|
|
enum {
|
|
PROP_0,
|
|
PROP_PROJECT_ID,
|
|
N_PROPS
|
|
};
|
|
|
|
static GParamSpec *properties [N_PROPS];
|
|
|
|
static void ide_unsaved_files_update_locked (IdeUnsavedFiles *self,
|
|
GFile *file,
|
|
GBytes *content);
|
|
|
|
static gchar *
|
|
get_drafts_directory (IdeUnsavedFiles *self)
|
|
{
|
|
g_assert (IDE_IS_MAIN_THREAD ());
|
|
g_assert (IDE_IS_UNSAVED_FILES (self));
|
|
|
|
return g_build_filename (g_get_user_data_dir (),
|
|
ide_get_program_name (),
|
|
"drafts",
|
|
self->project_id,
|
|
NULL);
|
|
}
|
|
|
|
static void
|
|
async_state_free (gpointer data)
|
|
{
|
|
AsyncState *state = data;
|
|
|
|
if (state != NULL)
|
|
{
|
|
g_clear_pointer (&state->drafts_directory, g_free);
|
|
g_clear_pointer (&state->unsaved_files, g_ptr_array_unref);
|
|
g_slice_free (AsyncState, state);
|
|
}
|
|
}
|
|
|
|
static void
|
|
unsaved_file_free (gpointer data)
|
|
{
|
|
UnsavedFile *uf = data;
|
|
|
|
g_assert (IDE_IS_MAIN_THREAD ());
|
|
|
|
if (uf != NULL)
|
|
{
|
|
g_clear_object (&uf->file);
|
|
g_clear_pointer (&uf->content, g_bytes_unref);
|
|
|
|
if (uf->temp_path != NULL)
|
|
{
|
|
g_unlink (uf->temp_path);
|
|
g_clear_pointer (&uf->temp_path, g_free);
|
|
}
|
|
|
|
if (uf->temp_fd != -1)
|
|
{
|
|
g_close (uf->temp_fd, NULL);
|
|
uf->temp_fd = -1;
|
|
}
|
|
|
|
g_slice_free (UnsavedFile, uf);
|
|
}
|
|
}
|
|
|
|
static UnsavedFile *
|
|
unsaved_file_copy (const UnsavedFile *uf)
|
|
{
|
|
UnsavedFile *copy;
|
|
|
|
g_assert (IDE_IS_MAIN_THREAD ());
|
|
g_assert (uf != NULL);
|
|
|
|
copy = g_slice_new0 (UnsavedFile);
|
|
copy->file = g_object_ref (uf->file);
|
|
copy->content = g_bytes_ref (uf->content);
|
|
|
|
return copy;
|
|
}
|
|
|
|
static gboolean
|
|
unsaved_file_save (UnsavedFile *uf,
|
|
const gchar *path,
|
|
GError **error)
|
|
{
|
|
g_autoptr(GFile) file = NULL;
|
|
|
|
g_assert (uf != NULL);
|
|
g_assert (uf->content != NULL);
|
|
g_assert (path != NULL);
|
|
|
|
/*
|
|
* These files can be accessed by third-party programs. So we need to ensure
|
|
* those programs see either the old version of the file or the new version
|
|
* of the file. g_file_replace_contents() conveniently provides the atomic
|
|
* rename() for us.
|
|
*/
|
|
|
|
file = g_file_new_for_path (path);
|
|
|
|
return g_file_replace_contents (file,
|
|
g_bytes_get_data (uf->content, NULL),
|
|
g_bytes_get_size (uf->content),
|
|
NULL,
|
|
FALSE,
|
|
G_FILE_CREATE_REPLACE_DESTINATION,
|
|
NULL,
|
|
NULL,
|
|
error);
|
|
}
|
|
|
|
static gchar *
|
|
hash_uri (const gchar *uri)
|
|
{
|
|
GChecksum *checksum;
|
|
gchar *ret;
|
|
|
|
g_assert (uri != NULL);
|
|
|
|
checksum = g_checksum_new (G_CHECKSUM_SHA1);
|
|
g_checksum_update (checksum, (guchar *)uri, strlen (uri));
|
|
ret = g_strdup (g_checksum_get_string (checksum));
|
|
g_checksum_free (checksum);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static gchar *
|
|
get_buffers_dir (IdeContext *context)
|
|
{
|
|
g_assert (IDE_IS_CONTEXT (context));
|
|
|
|
return ide_context_cache_filename (context, "buffers", NULL);
|
|
}
|
|
|
|
static void
|
|
ide_unsaved_files_save_worker (IdeTask *task,
|
|
gpointer source_object,
|
|
gpointer task_data,
|
|
GCancellable *cancellable)
|
|
{
|
|
g_autofree gchar *manifest_path = NULL;
|
|
g_autoptr(GString) manifest = NULL;
|
|
g_autoptr(GError) write_error = NULL;
|
|
AsyncState *state = task_data;
|
|
|
|
IDE_ENTRY;
|
|
|
|
g_assert (IDE_IS_TASK (task));
|
|
g_assert (IDE_IS_UNSAVED_FILES (source_object));
|
|
g_assert (state != NULL);
|
|
g_assert (state->drafts_directory != NULL);
|
|
g_assert (state->unsaved_files != NULL);
|
|
|
|
/* ensure that the directory exists */
|
|
if (g_mkdir_with_parents (state->drafts_directory, 0700) != 0)
|
|
{
|
|
ide_task_return_new_error (task,
|
|
G_IO_ERROR,
|
|
g_io_error_from_errno (errno),
|
|
"Failed to create drafts directory");
|
|
IDE_EXIT;
|
|
}
|
|
|
|
manifest = g_string_new (NULL);
|
|
manifest_path = g_build_filename (state->drafts_directory, "manifest", NULL);
|
|
|
|
for (guint i = 0; i < state->unsaved_files->len; i++)
|
|
{
|
|
UnsavedFile *uf = g_ptr_array_index (state->unsaved_files, i);
|
|
g_autoptr(GError) error = NULL;
|
|
g_autofree gchar *path = NULL;
|
|
g_autofree gchar *uri = NULL;
|
|
g_autofree gchar *hash = NULL;
|
|
|
|
uri = g_file_get_uri (uf->file);
|
|
|
|
IDE_TRACE_MSG ("saving draft for unsaved file \"%s\"", uri);
|
|
|
|
g_string_append_printf (manifest, "%s\n", uri);
|
|
|
|
hash = hash_uri (uri);
|
|
path = g_build_filename (state->drafts_directory, hash, NULL);
|
|
|
|
if (!unsaved_file_save (uf, path, &error))
|
|
ide_object_warning (source_object,
|
|
/* translators: %s is replaced with the error message */
|
|
_("Failed to save draft: %s"),
|
|
error->message);
|
|
}
|
|
|
|
if (!g_file_set_contents (manifest_path, manifest->str, manifest->len, &write_error))
|
|
ide_task_return_error (task, g_steal_pointer (&write_error));
|
|
else
|
|
ide_task_return_boolean (task, TRUE);
|
|
|
|
IDE_EXIT;
|
|
}
|
|
|
|
static AsyncState *
|
|
async_state_new (IdeUnsavedFiles *files)
|
|
{
|
|
AsyncState *state;
|
|
|
|
g_assert (IDE_IS_MAIN_THREAD ());
|
|
g_assert (IDE_IS_UNSAVED_FILES (files));
|
|
|
|
state = g_slice_new0 (AsyncState);
|
|
state->unsaved_files = g_ptr_array_new_with_free_func (unsaved_file_free);
|
|
state->drafts_directory = get_drafts_directory (files);
|
|
|
|
return state;
|
|
}
|
|
|
|
void
|
|
ide_unsaved_files_save_async (IdeUnsavedFiles *self,
|
|
GCancellable *cancellable,
|
|
GAsyncReadyCallback callback,
|
|
gpointer user_data)
|
|
{
|
|
g_autoptr(IdeTask) task = NULL;
|
|
AsyncState *state;
|
|
|
|
IDE_ENTRY;
|
|
|
|
g_return_if_fail (IDE_IS_MAIN_THREAD ());
|
|
g_return_if_fail (IDE_IS_UNSAVED_FILES (self));
|
|
g_return_if_fail (!cancellable || G_IS_CANCELLABLE (cancellable));
|
|
|
|
state = async_state_new (self);
|
|
|
|
g_assert (state != NULL);
|
|
g_assert (state->unsaved_files != NULL);
|
|
g_assert (state->drafts_directory != NULL);
|
|
|
|
g_mutex_lock (&self->mutex);
|
|
|
|
for (guint i = 0; i < self->unsaved_files->len; i++)
|
|
{
|
|
UnsavedFile *uf = g_ptr_array_index (self->unsaved_files, i);
|
|
UnsavedFile *uf_copy = unsaved_file_copy (uf);
|
|
|
|
g_ptr_array_add (state->unsaved_files, uf_copy);
|
|
}
|
|
|
|
g_mutex_unlock (&self->mutex);
|
|
|
|
task = ide_task_new (self, cancellable, callback, user_data);
|
|
ide_task_set_source_tag (task, ide_unsaved_files_save_async);
|
|
ide_task_set_priority (task, G_PRIORITY_LOW);
|
|
ide_task_set_task_data (task, state, async_state_free);
|
|
ide_task_run_in_thread (task, ide_unsaved_files_save_worker);
|
|
|
|
IDE_EXIT;
|
|
}
|
|
|
|
gboolean
|
|
ide_unsaved_files_save_finish (IdeUnsavedFiles *files,
|
|
GAsyncResult *result,
|
|
GError **error)
|
|
{
|
|
gboolean ret;
|
|
|
|
IDE_ENTRY;
|
|
|
|
g_return_val_if_fail (IDE_IS_MAIN_THREAD (), FALSE);
|
|
g_return_val_if_fail (IDE_IS_UNSAVED_FILES (files), FALSE);
|
|
g_return_val_if_fail (IDE_IS_TASK (result), FALSE);
|
|
|
|
ret = ide_task_propagate_boolean (IDE_TASK (result), error);
|
|
|
|
IDE_RETURN (ret);
|
|
}
|
|
|
|
static void
|
|
ide_unsaved_files_restore_worker (IdeTask *task,
|
|
gpointer source_object,
|
|
gpointer task_data,
|
|
GCancellable *cancellable)
|
|
{
|
|
AsyncState *state = task_data;
|
|
g_autofree gchar *manifest_contents = NULL;
|
|
g_autofree gchar *manifest_path = NULL;
|
|
g_autoptr(GError) read_error = NULL;
|
|
IdeLineReader reader;
|
|
gchar *line;
|
|
gsize line_len;
|
|
gsize len;
|
|
|
|
IDE_ENTRY;
|
|
|
|
g_assert (IDE_IS_TASK (task));
|
|
g_assert (IDE_IS_UNSAVED_FILES (source_object));
|
|
g_assert (state != NULL);
|
|
|
|
manifest_path = g_build_filename (state->drafts_directory, "manifest", NULL);
|
|
|
|
g_debug ("Loading drafts manifest %s", manifest_path);
|
|
|
|
if (!g_file_test (manifest_path, G_FILE_TEST_IS_REGULAR))
|
|
{
|
|
ide_task_return_boolean (task, TRUE);
|
|
IDE_EXIT;
|
|
}
|
|
|
|
if (!g_file_get_contents (manifest_path, &manifest_contents, &len, &read_error))
|
|
{
|
|
ide_task_return_error (task, g_steal_pointer (&read_error));
|
|
IDE_EXIT;
|
|
}
|
|
|
|
if (len > G_MAXSSIZE)
|
|
{
|
|
ide_task_return_new_error (task,
|
|
G_IO_ERROR,
|
|
G_IO_ERROR_NO_SPACE,
|
|
"File is too large to load");
|
|
IDE_EXIT;
|
|
}
|
|
|
|
ide_line_reader_init (&reader, manifest_contents, len);
|
|
|
|
while (NULL != (line = ide_line_reader_next (&reader, &line_len)))
|
|
{
|
|
g_autoptr(GFile) file = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autofree gchar *contents = NULL;
|
|
g_autofree gchar *hash = NULL;
|
|
g_autofree gchar *path = NULL;
|
|
UnsavedFile *unsaved;
|
|
gsize data_len = 0;
|
|
|
|
line[line_len] = '\0';
|
|
|
|
if (ide_str_empty0 (line))
|
|
continue;
|
|
|
|
file = g_file_new_for_uri (line);
|
|
if (file == NULL || !g_file_query_exists (file, NULL))
|
|
continue;
|
|
|
|
hash = hash_uri (line);
|
|
path = g_build_filename (state->drafts_directory, hash, NULL);
|
|
|
|
g_debug ("Loading draft for \"%s\" from \"%s\"", line, path);
|
|
|
|
if (!g_file_get_contents (path, &contents, &data_len, &error))
|
|
{
|
|
ide_object_warning (source_object,
|
|
/* translators: the first %s is the path, th second is the error message */
|
|
"Failed to load draft for %s: %s",
|
|
line, error->message);
|
|
continue;
|
|
}
|
|
|
|
unsaved = g_slice_new0 (UnsavedFile);
|
|
unsaved->file = g_object_ref (file);
|
|
unsaved->content = g_bytes_new_take (g_steal_pointer (&contents), data_len);
|
|
|
|
g_ptr_array_add (state->unsaved_files, g_steal_pointer (&unsaved));
|
|
}
|
|
|
|
ide_task_return_boolean (task, TRUE);
|
|
|
|
IDE_EXIT;
|
|
}
|
|
|
|
void
|
|
ide_unsaved_files_restore_async (IdeUnsavedFiles *files,
|
|
GCancellable *cancellable,
|
|
GAsyncReadyCallback callback,
|
|
gpointer user_data)
|
|
{
|
|
g_autoptr(IdeTask) task = NULL;
|
|
AsyncState *state;
|
|
|
|
g_return_if_fail (IDE_IS_MAIN_THREAD ());
|
|
g_return_if_fail (IDE_IS_UNSAVED_FILES (files));
|
|
g_return_if_fail (!cancellable || G_IS_CANCELLABLE (cancellable));
|
|
g_return_if_fail (callback != NULL);
|
|
|
|
state = async_state_new (files);
|
|
|
|
task = ide_task_new (files, cancellable, callback, user_data);
|
|
ide_task_set_priority (task, G_PRIORITY_LOW);
|
|
ide_task_set_task_data (task, state, async_state_free);
|
|
ide_task_run_in_thread (task, ide_unsaved_files_restore_worker);
|
|
}
|
|
|
|
gboolean
|
|
ide_unsaved_files_restore_finish (IdeUnsavedFiles *self,
|
|
GAsyncResult *result,
|
|
GError **error)
|
|
{
|
|
AsyncState *state;
|
|
|
|
g_return_val_if_fail (IDE_IS_MAIN_THREAD (), FALSE);
|
|
g_return_val_if_fail (IDE_IS_UNSAVED_FILES (self), FALSE);
|
|
g_return_val_if_fail (IDE_IS_TASK (result), FALSE);
|
|
|
|
state = ide_task_get_task_data (IDE_TASK (result));
|
|
g_assert (state != NULL);
|
|
g_assert (state->unsaved_files != NULL);
|
|
|
|
g_mutex_lock (&self->mutex);
|
|
|
|
for (guint i = 0; i < state->unsaved_files->len; i++)
|
|
{
|
|
const UnsavedFile *uf = g_ptr_array_index (state->unsaved_files, i);
|
|
ide_unsaved_files_update_locked (self, uf->file, uf->content);
|
|
}
|
|
|
|
g_mutex_unlock (&self->mutex);
|
|
|
|
return ide_task_propagate_boolean (IDE_TASK (result), error);
|
|
}
|
|
|
|
static void
|
|
ide_unsaved_files_move_to_front_locked (IdeUnsavedFiles *self,
|
|
guint index)
|
|
{
|
|
UnsavedFile *new_front;
|
|
UnsavedFile *old_front;
|
|
|
|
g_return_if_fail (IDE_IS_MAIN_THREAD ());
|
|
g_return_if_fail (IDE_IS_UNSAVED_FILES (self));
|
|
|
|
if (index == 0)
|
|
return;
|
|
|
|
new_front = g_ptr_array_index (self->unsaved_files, index);
|
|
old_front = g_ptr_array_index (self->unsaved_files, 0);
|
|
|
|
/*
|
|
* We could shift all these items down, but it probably isn't worth
|
|
* the effort. We will just move-to-front after a miss and ping
|
|
* pong the old item back to the front.
|
|
*/
|
|
self->unsaved_files->pdata[0] = new_front;
|
|
self->unsaved_files->pdata[index] = old_front;
|
|
}
|
|
|
|
static void
|
|
ide_unsaved_files_remove_draft_locked (IdeUnsavedFiles *self,
|
|
GFile *file)
|
|
{
|
|
g_autofree gchar *drafts_directory = NULL;
|
|
g_autofree gchar *uri = NULL;
|
|
g_autofree gchar *hash = NULL;
|
|
g_autofree gchar *path = NULL;
|
|
|
|
IDE_ENTRY;
|
|
|
|
g_assert (IDE_IS_MAIN_THREAD ());
|
|
g_assert (IDE_IS_UNSAVED_FILES (self));
|
|
g_assert (G_IS_FILE (file));
|
|
|
|
drafts_directory = get_drafts_directory (self);
|
|
uri = g_file_get_uri (file);
|
|
hash = hash_uri (uri);
|
|
path = g_build_filename (drafts_directory, hash, NULL);
|
|
|
|
g_debug ("Removing draft for \"%s\"", uri);
|
|
|
|
g_unlink (path);
|
|
|
|
IDE_EXIT;
|
|
}
|
|
|
|
void
|
|
ide_unsaved_files_remove (IdeUnsavedFiles *self,
|
|
GFile *file)
|
|
{
|
|
IDE_ENTRY;
|
|
|
|
g_return_if_fail (IDE_IS_MAIN_THREAD ());
|
|
g_return_if_fail (IDE_IS_UNSAVED_FILES (self));
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
g_mutex_lock (&self->mutex);
|
|
|
|
for (guint i = 0; i < self->unsaved_files->len; i++)
|
|
{
|
|
const UnsavedFile *unsaved = g_ptr_array_index (self->unsaved_files, i);
|
|
|
|
if (g_file_equal (file, unsaved->file))
|
|
{
|
|
ide_unsaved_files_remove_draft_locked (self, file);
|
|
g_ptr_array_remove_index_fast (self->unsaved_files, i);
|
|
break;
|
|
}
|
|
}
|
|
|
|
g_mutex_unlock (&self->mutex);
|
|
|
|
IDE_EXIT;
|
|
}
|
|
|
|
static void
|
|
setup_tempfile (IdeContext *context,
|
|
GFile *file,
|
|
gint *temp_fd,
|
|
gchar **temp_path_out)
|
|
{
|
|
g_autofree gchar *tmpdir = NULL;
|
|
g_autofree gchar *name = NULL;
|
|
g_autofree gchar *shortname = NULL;
|
|
g_autofree gchar *tmpl_path = NULL;
|
|
const gchar *suffix;
|
|
|
|
g_assert (IDE_IS_MAIN_THREAD ());
|
|
g_assert (IDE_IS_CONTEXT (context));
|
|
g_assert (G_IS_FILE (file));
|
|
g_assert (temp_fd != NULL);
|
|
g_assert (temp_path_out != NULL);
|
|
|
|
*temp_fd = -1;
|
|
*temp_path_out = NULL;
|
|
|
|
/* Get the suffix for the filename so that we can add it as the suffix to
|
|
* our temporary file. That increases the chance that anything sniffing
|
|
* content-type will work correctly.
|
|
*/
|
|
name = g_file_get_basename (file);
|
|
suffix = strrchr (name, '.') ?: "";
|
|
|
|
/*
|
|
* We want to create our tempfile within a custom directory. It turns out
|
|
* that g_mkstemp_full() does not do directory checks in the template, so
|
|
* we can pass our own directory to be used instead of $TMPDIR. We need to
|
|
* control the directory so that we can ensure we have one that is available
|
|
* to both the flatpak runtime and the host system.
|
|
*/
|
|
tmpdir = get_buffers_dir (context);
|
|
shortname = g_strdup_printf ("buffer-XXXXXX%s", suffix);
|
|
tmpl_path = g_build_filename (tmpdir, shortname, NULL);
|
|
|
|
/* Ensure the directory exists */
|
|
if (!g_file_test (tmpdir, G_FILE_TEST_IS_DIR))
|
|
g_mkdir_with_parents (tmpdir, 0750);
|
|
|
|
/* Now try to open our custom tempfile in the directory we control. */
|
|
*temp_fd = g_mkstemp_full (tmpl_path, O_RDWR, 0664);
|
|
if (*temp_fd != -1)
|
|
*temp_path_out = g_steal_pointer (&tmpl_path);
|
|
}
|
|
|
|
static void
|
|
ide_unsaved_files_update_locked (IdeUnsavedFiles *self,
|
|
GFile *file,
|
|
GBytes *content)
|
|
{
|
|
UnsavedFile *unsaved;
|
|
IdeContext *context;
|
|
|
|
g_return_if_fail (IDE_IS_MAIN_THREAD ());
|
|
g_return_if_fail (IDE_IS_UNSAVED_FILES (self));
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
if (content == NULL)
|
|
{
|
|
ide_unsaved_files_remove (self, file);
|
|
return;
|
|
}
|
|
|
|
self->sequence++;
|
|
|
|
context = ide_object_get_context (IDE_OBJECT (self));
|
|
|
|
for (guint i = 0; i < self->unsaved_files->len; i++)
|
|
{
|
|
unsaved = g_ptr_array_index (self->unsaved_files, i);
|
|
|
|
if (g_file_equal (file, unsaved->file))
|
|
{
|
|
if (content != unsaved->content)
|
|
{
|
|
g_clear_pointer (&unsaved->content, g_bytes_unref);
|
|
unsaved->content = g_bytes_ref (content);
|
|
unsaved->sequence = self->sequence;
|
|
}
|
|
|
|
/*
|
|
* A file that get's updated is the most likely to get updated on
|
|
* the next attempt. Therefore, we will simply move this entry to
|
|
* the beginning of the array to increase its chances of being the
|
|
* first entry we check.
|
|
*/
|
|
if (i > 0)
|
|
ide_unsaved_files_move_to_front_locked (self, i);
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
unsaved = g_slice_new0 (UnsavedFile);
|
|
unsaved->file = g_object_ref (file);
|
|
unsaved->content = g_bytes_ref (content);
|
|
unsaved->sequence = self->sequence;
|
|
setup_tempfile (context, file, &unsaved->temp_fd, &unsaved->temp_path);
|
|
|
|
g_ptr_array_add (self->unsaved_files, unsaved);
|
|
}
|
|
|
|
void
|
|
ide_unsaved_files_update (IdeUnsavedFiles *self,
|
|
GFile *file,
|
|
GBytes *content)
|
|
{
|
|
g_assert (IDE_IS_UNSAVED_FILES (self));
|
|
g_assert (G_IS_FILE (file));
|
|
|
|
g_mutex_lock (&self->mutex);
|
|
ide_unsaved_files_update_locked (self, file, content);
|
|
g_mutex_unlock (&self->mutex);
|
|
}
|
|
|
|
/**
|
|
* ide_unsaved_files_to_array:
|
|
* @self: an #IdeUnsavedFiles
|
|
*
|
|
* This retrieves all of the unsaved file buffers known to the context.
|
|
* These are handy if you need to pass modified state to parsers such as
|
|
* clang.
|
|
*
|
|
* Call g_ptr_array_unref() on the resulting #GPtrArray when no longer in use.
|
|
*
|
|
* If you would like to hold onto an unsaved file instance, call
|
|
* ide_unsaved_file_ref() to increment its reference count.
|
|
*
|
|
* Returns: (transfer full) (element-type Ide.UnsavedFile): a #GPtrArray
|
|
* containing #IdeUnsavedFile elements.
|
|
*
|
|
* Since: 3.32
|
|
*/
|
|
GPtrArray *
|
|
ide_unsaved_files_to_array (IdeUnsavedFiles *self)
|
|
{
|
|
g_autoptr(GPtrArray) ar = NULL;
|
|
|
|
g_return_val_if_fail (IDE_IS_MAIN_THREAD (), NULL);
|
|
g_return_val_if_fail (IDE_IS_UNSAVED_FILES (self), NULL);
|
|
|
|
ar = g_ptr_array_new_with_free_func ((GDestroyNotify)ide_unsaved_file_unref);
|
|
|
|
g_mutex_lock (&self->mutex);
|
|
|
|
for (guint i = 0; i < self->unsaved_files->len; i++)
|
|
{
|
|
const UnsavedFile *uf = g_ptr_array_index (self->unsaved_files, i);
|
|
g_autoptr(IdeUnsavedFile) item = NULL;
|
|
|
|
item = _ide_unsaved_file_new (uf->file,
|
|
uf->content,
|
|
uf->temp_path,
|
|
uf->sequence);
|
|
g_ptr_array_add (ar, g_steal_pointer (&item));
|
|
}
|
|
|
|
g_mutex_unlock (&self->mutex);
|
|
|
|
return IDE_PTR_ARRAY_STEAL_FULL (&ar);
|
|
}
|
|
|
|
gboolean
|
|
ide_unsaved_files_contains (IdeUnsavedFiles *self,
|
|
GFile *file)
|
|
{
|
|
gboolean ret = FALSE;
|
|
|
|
g_return_val_if_fail (IDE_IS_MAIN_THREAD (), FALSE);
|
|
g_return_val_if_fail (IDE_IS_UNSAVED_FILES (self), FALSE);
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
g_mutex_lock (&self->mutex);
|
|
|
|
for (guint i = 0; i < self->unsaved_files->len; i++)
|
|
{
|
|
UnsavedFile *uf = g_ptr_array_index (self->unsaved_files, i);
|
|
|
|
if (g_file_equal (uf->file, file))
|
|
{
|
|
ret = TRUE;
|
|
break;
|
|
}
|
|
}
|
|
|
|
g_mutex_unlock (&self->mutex);
|
|
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* ide_unsaved_files_get_unsaved_file:
|
|
*
|
|
* Retrieves the unsaved file content for a particular file. If no unsaved
|
|
* file content is registered, %NULL is returned.
|
|
*
|
|
* Returns: (nullable) (transfer full): An #IdeUnsavedFile or %NULL.
|
|
*
|
|
* Thread safety: you may call this from any thread, as long as you
|
|
* hold a reference to @self.
|
|
*
|
|
* Since: 3.32
|
|
*/
|
|
IdeUnsavedFile *
|
|
ide_unsaved_files_get_unsaved_file (IdeUnsavedFiles *self,
|
|
GFile *file)
|
|
{
|
|
IdeUnsavedFile *ret = NULL;
|
|
|
|
IDE_ENTRY;
|
|
|
|
g_return_val_if_fail (IDE_IS_UNSAVED_FILES (self), NULL);
|
|
|
|
#ifdef IDE_ENABLE_TRACE
|
|
{
|
|
g_autofree gchar *path = g_file_get_path (file);
|
|
IDE_TRACE_MSG ("%s", path);
|
|
}
|
|
#endif
|
|
|
|
g_mutex_lock (&self->mutex);
|
|
|
|
for (guint i = 0; i < self->unsaved_files->len; i++)
|
|
{
|
|
const UnsavedFile *uf = g_ptr_array_index (self->unsaved_files, i);
|
|
|
|
if (g_file_equal (uf->file, file))
|
|
{
|
|
ret = _ide_unsaved_file_new (uf->file, uf->content, uf->temp_path, uf->sequence);
|
|
break;
|
|
}
|
|
}
|
|
|
|
g_mutex_unlock (&self->mutex);
|
|
|
|
IDE_RETURN (ret);
|
|
}
|
|
|
|
gint64
|
|
ide_unsaved_files_get_sequence (IdeUnsavedFiles *self)
|
|
{
|
|
gint64 ret;
|
|
|
|
g_return_val_if_fail (IDE_IS_UNSAVED_FILES (self), -1);
|
|
|
|
g_mutex_lock (&self->mutex);
|
|
ret = self->sequence;
|
|
g_mutex_unlock (&self->mutex);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static void
|
|
ide_unsaved_files_get_property (GObject *object,
|
|
guint prop_id,
|
|
GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
IdeUnsavedFiles *self = IDE_UNSAVED_FILES (object);
|
|
|
|
switch (prop_id)
|
|
{
|
|
case PROP_PROJECT_ID:
|
|
g_value_set_string (value, self->project_id);
|
|
break;
|
|
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
}
|
|
}
|
|
|
|
static void
|
|
ide_unsaved_files_set_property (GObject *object,
|
|
guint prop_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
IdeUnsavedFiles *self = IDE_UNSAVED_FILES (object);
|
|
|
|
switch (prop_id)
|
|
{
|
|
case PROP_PROJECT_ID:
|
|
self->project_id = g_value_dup_string (value);
|
|
g_assert (self->project_id != NULL);
|
|
break;
|
|
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
}
|
|
}
|
|
|
|
static void
|
|
ide_unsaved_files_finalize (GObject *object)
|
|
{
|
|
IdeUnsavedFiles *self = (IdeUnsavedFiles *)object;
|
|
|
|
g_assert (IDE_IS_MAIN_THREAD ());
|
|
|
|
g_clear_pointer (&self->unsaved_files, g_ptr_array_unref);
|
|
g_clear_pointer (&self->project_id, g_free);
|
|
g_mutex_clear (&self->mutex);
|
|
|
|
G_OBJECT_CLASS (ide_unsaved_files_parent_class)->finalize (object);
|
|
}
|
|
|
|
static void
|
|
ide_unsaved_files_class_init (IdeUnsavedFilesClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
object_class->finalize = ide_unsaved_files_finalize;
|
|
object_class->get_property = ide_unsaved_files_get_property;
|
|
object_class->set_property = ide_unsaved_files_set_property;
|
|
|
|
properties [PROP_PROJECT_ID] =
|
|
g_param_spec_string ("project-id",
|
|
"Project Id",
|
|
"The identifier for the project",
|
|
NULL,
|
|
(G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
|
|
|
|
g_object_class_install_properties (object_class, N_PROPS, properties);
|
|
}
|
|
|
|
static void
|
|
ide_unsaved_files_init (IdeUnsavedFiles *self)
|
|
{
|
|
g_mutex_init (&self->mutex);
|
|
self->unsaved_files = g_ptr_array_new_with_free_func (unsaved_file_free);
|
|
}
|
|
|
|
void
|
|
ide_unsaved_files_clear (IdeUnsavedFiles *self)
|
|
{
|
|
g_autoptr(GPtrArray) ar = NULL;
|
|
|
|
g_return_if_fail (IDE_IS_MAIN_THREAD ());
|
|
g_return_if_fail (IDE_IS_UNSAVED_FILES (self));
|
|
|
|
ar = ide_unsaved_files_to_array (self);
|
|
|
|
IDE_PTR_ARRAY_SET_FREE_FUNC (ar, ide_unsaved_file_unref);
|
|
|
|
g_mutex_lock (&self->mutex);
|
|
|
|
for (guint i = 0; i < ar->len; i++)
|
|
{
|
|
IdeUnsavedFile *uf = g_ptr_array_index (ar, i);
|
|
GFile *file = ide_unsaved_file_get_file (uf);
|
|
|
|
ide_unsaved_files_remove (self, file);
|
|
}
|
|
|
|
g_mutex_unlock (&self->mutex);
|
|
}
|
|
|
|
static void
|
|
ide_unsaved_files_reap_cb (GObject *object,
|
|
GAsyncResult *result,
|
|
gpointer user_data)
|
|
{
|
|
DzlDirectoryReaper *reaper = (DzlDirectoryReaper *)object;
|
|
g_autoptr(IdeTask) task = user_data;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
g_assert (DZL_IS_DIRECTORY_REAPER (reaper));
|
|
g_assert (G_IS_ASYNC_RESULT (result));
|
|
g_assert (IDE_IS_TASK (task));
|
|
|
|
if (!dzl_directory_reaper_execute_finish (reaper, result, &error))
|
|
ide_task_return_error (task, g_steal_pointer (&error));
|
|
else
|
|
ide_task_return_boolean (task, TRUE);
|
|
}
|
|
|
|
void
|
|
ide_unsaved_files_reap_async (IdeUnsavedFiles *self,
|
|
GCancellable *cancellable,
|
|
GAsyncReadyCallback callback,
|
|
gpointer user_data)
|
|
{
|
|
g_autoptr(IdeTask) task = NULL;
|
|
g_autoptr(DzlDirectoryReaper) reaper = NULL;
|
|
g_autoptr(GFile) buffersdir = NULL;
|
|
g_autofree gchar *path = NULL;
|
|
IdeContext *context;
|
|
|
|
g_return_if_fail (IDE_IS_UNSAVED_FILES (self));
|
|
g_return_if_fail (!cancellable || G_IS_CANCELLABLE (cancellable));
|
|
|
|
task = ide_task_new (self, cancellable, callback, user_data);
|
|
ide_task_set_source_tag (task, ide_unsaved_files_reap_async);
|
|
ide_task_set_priority (task, G_PRIORITY_LOW);
|
|
|
|
context = ide_object_get_context (IDE_OBJECT (self));
|
|
g_return_if_fail (context != NULL);
|
|
|
|
reaper = dzl_directory_reaper_new ();
|
|
path = get_buffers_dir (context);
|
|
buffersdir = g_file_new_for_path (path);
|
|
|
|
dzl_directory_reaper_add_directory (reaper, buffersdir, G_TIME_SPAN_DAY);
|
|
|
|
/* Now cleanup the old files */
|
|
dzl_directory_reaper_execute_async (reaper,
|
|
cancellable,
|
|
ide_unsaved_files_reap_cb,
|
|
g_steal_pointer (&task));
|
|
}
|
|
|
|
gboolean
|
|
ide_unsaved_files_reap_finish (IdeUnsavedFiles *self,
|
|
GAsyncResult *result,
|
|
GError **error)
|
|
{
|
|
g_return_val_if_fail (IDE_IS_UNSAVED_FILES (self), FALSE);
|
|
g_return_val_if_fail (IDE_IS_TASK (result), FALSE);
|
|
|
|
return ide_task_propagate_boolean (IDE_TASK (result), error);
|
|
}
|
|
|
|
/**
|
|
* ide_unsaved_files_from_context:
|
|
* @context: an #IdeContext
|
|
*
|
|
* Gets the unsaved files object for @context.
|
|
*
|
|
* Returns: (transfer none): an #IdeContext
|
|
*
|
|
* Since: 3.32
|
|
*/
|
|
IdeUnsavedFiles *
|
|
ide_unsaved_files_from_context (IdeContext *context)
|
|
{
|
|
IdeUnsavedFiles *self;
|
|
|
|
g_return_val_if_fail (IDE_IS_MAIN_THREAD (), NULL);
|
|
g_return_val_if_fail (IDE_IS_CONTEXT (context), NULL);
|
|
|
|
ide_object_lock (IDE_OBJECT (context));
|
|
self = ide_object_get_child_typed (IDE_OBJECT (context), IDE_TYPE_UNSAVED_FILES);
|
|
if (self == NULL)
|
|
{
|
|
g_autofree gchar *project_id = ide_context_dup_project_id (context);
|
|
self = g_object_new (IDE_TYPE_UNSAVED_FILES,
|
|
"project-id", project_id,
|
|
NULL);
|
|
ide_object_append (IDE_OBJECT (context), IDE_OBJECT (self));
|
|
}
|
|
ide_object_unlock (IDE_OBJECT (context));
|
|
|
|
/* Looks unsafe because we get a full ref back */
|
|
g_object_unref (self);
|
|
|
|
return self;
|
|
}
|