Merge pull request #3916 from techee/symtree_icons
[geany-mirror.git] / src / document.c
blobbb1d2a6a4a059148424278b23b07c29b36873039
1 /*
2 * document.c - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2005 The Geany contributors
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 * Document related actions: new, save, open, etc.
23 * Also Scintilla search actions.
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
30 #include "document.h"
32 #include "app.h"
33 #include "callbacks.h" /* for ignore_callback */
34 #include "dialogs.h"
35 #include "documentprivate.h"
36 #include "encodings.h"
37 #include "encodingsprivate.h"
38 #include "filetypesprivate.h"
39 #include "geany.h" /* FIXME: why is this needed for DOC_FILENAME()? should come from documentprivate.h/document.h */
40 #include "geanyobject.h"
41 #include "geanywraplabel.h"
42 #include "highlighting.h"
43 #include "main.h"
44 #include "msgwindow.h"
45 #include "navqueue.h"
46 #include "notebook.h"
47 #include "project.h"
48 #include "sciwrappers.h"
49 #include "sidebar.h"
50 #include "support.h"
51 #include "symbols.h"
52 #include "ui_utils.h"
53 #include "utils.h"
54 #include "vte.h"
55 #include "win32.h"
57 #ifdef HAVE_SYS_TIME_H
58 # include <sys/time.h>
59 #endif
60 #include <time.h>
62 #include <unistd.h>
63 #include <string.h>
64 #include <errno.h>
66 #ifdef HAVE_SYS_TYPES_H
67 # include <sys/types.h>
68 #endif
70 #include <stdlib.h>
72 /* gstdio.h also includes sys/stat.h */
73 #include <glib/gstdio.h>
75 /* uncomment to use GIO based file monitoring, though it is not completely stable yet */
76 /*#define USE_GIO_FILEMON 1*/
77 #include <gio/gio.h>
79 #include <gtk/gtk.h>
80 #include <gdk/gdkkeysyms.h>
83 #define USE_GIO_FILE_OPERATIONS (!file_prefs.use_safe_file_saving && file_prefs.use_gio_unsafe_file_saving)
86 GeanyFilePrefs file_prefs;
87 GPtrArray *documents_array = NULL;
90 /* an undo action, also used for redo actions */
91 typedef struct
93 GTrashStack *next; /* pointer to the next stack element(required for the GTrashStack) */
94 guint type; /* to identify the action */
95 gpointer *data; /* the old value (before the change), in case of a redo action
96 * it contains the new value */
97 } undo_action;
99 /* Custom document info bar response IDs */
100 enum
102 RESPONSE_DOCUMENT_RELOAD = 1,
103 RESPONSE_DOCUMENT_SAVE,
107 static guint doc_id_counter = 0;
110 static void document_undo_clear_stack(GTrashStack **stack);
111 static void document_undo_clear(GeanyDocument *doc);
112 static void document_undo_add_internal(GeanyDocument *doc, guint type, gpointer data);
113 static void document_redo_add(GeanyDocument *doc, guint type, gpointer data);
114 static gboolean remove_page(guint page_num);
115 static GtkWidget* document_show_message(GeanyDocument *doc, GtkMessageType msgtype,
116 void (*response_cb)(GtkWidget *info_bar, gint response_id, GeanyDocument *doc),
117 const gchar *btn_1, gint response_1,
118 const gchar *btn_2, gint response_2,
119 const gchar *btn_3, gint response_3,
120 const gchar *extra_text, const gchar *format, ...) G_GNUC_PRINTF(11, 12);
124 * Finds a document whose @c real_path field matches the given filename.
126 * @param realname The filename to search, which should be identical to the
127 * string returned by @c utils_get_real_path().
129 * @return @transfer{none} @nullable The matching document, or @c NULL.
130 * @note This is only really useful when passing a @c TMSourceFile::file_name.
131 * @see GeanyDocument::real_path.
132 * @see document_find_by_filename().
134 * @since 0.15
136 GEANY_API_SYMBOL
137 GeanyDocument* document_find_by_real_path(const gchar *realname)
139 guint i;
141 if (! realname)
142 return NULL; /* file doesn't exist on disk */
144 for (i = 0; i < documents_array->len; i++)
146 GeanyDocument *doc = documents[i];
148 if (! doc->is_valid || ! doc->real_path)
149 continue;
151 if (utils_filenamecmp(realname, doc->real_path) == 0)
153 return doc;
156 return NULL;
160 /* dereference symlinks, /../ junk in path and return locale encoding */
161 static gchar *get_real_path_from_utf8(const gchar *utf8_filename)
163 gchar *locale_name = utils_get_locale_from_utf8(utf8_filename);
164 gchar *realname = utils_get_real_path(locale_name);
166 g_free(locale_name);
167 return realname;
172 * Finds a document with the given filename.
173 * This matches either an exact GeanyDocument::file_name string, or variant
174 * filenames with relative elements in the path (e.g. @c "/dir/..//name" will
175 * match @c "/name").
177 * @param utf8_filename The filename to search (in UTF-8 encoding).
179 * @return @transfer{none} @nullable The matching document, or @c NULL.
180 * @see document_find_by_real_path().
182 GEANY_API_SYMBOL
183 GeanyDocument *document_find_by_filename(const gchar *utf8_filename)
185 guint i;
186 GeanyDocument *doc;
187 gchar *realname;
189 g_return_val_if_fail(utf8_filename != NULL, NULL);
191 /* First search GeanyDocument::file_name, so we can find documents with a
192 * filename set but not saved on disk, like vcdiff produces */
193 for (i = 0; i < documents_array->len; i++)
195 doc = documents[i];
197 if (! doc->is_valid || doc->file_name == NULL)
198 continue;
200 if (utils_filenamecmp(utf8_filename, doc->file_name) == 0)
202 return doc;
205 /* Now try matching based on the realpath(), which is unique per file on disk */
206 realname = get_real_path_from_utf8(utf8_filename);
207 doc = document_find_by_real_path(realname);
208 g_free(realname);
209 return doc;
213 /* returns the document which has sci, or NULL. */
214 GeanyDocument *document_find_by_sci(ScintillaObject *sci)
216 guint i;
218 g_return_val_if_fail(sci != NULL, NULL);
220 for (i = 0; i < documents_array->len; i++)
222 if (documents[i]->is_valid && documents[i]->editor->sci == sci)
223 return documents[i];
225 return NULL;
229 /** Lookup an old document by its ID.
230 * Useful when the corresponding document may have been closed since the
231 * ID was retrieved.
232 * @param id The ID of the document to find
233 * @return @transfer{none} @c NULL if the document is no longer open.
235 * Example:
236 * @code
237 * static guint id;
238 * GeanyDocument *doc = ...;
239 * id = doc->id; // store ID
240 * ...
241 * // time passes - the document may have been closed by now
242 * GeanyDocument *doc = document_find_by_id(id);
243 * gboolean still_open = (doc != NULL);
244 * @endcode
245 * @since 1.25. */
246 GEANY_API_SYMBOL
247 GeanyDocument *document_find_by_id(guint id)
249 guint i;
251 if (!id)
252 return NULL;
254 foreach_document(i)
256 if (documents[i]->id == id)
257 return documents[i];
259 return NULL;
263 /* gets the widget the main_widgets.notebook consider is its child for this document */
264 static GtkWidget *document_get_notebook_child(GeanyDocument *doc)
266 GtkWidget *parent;
267 GtkWidget *child;
269 g_return_val_if_fail(doc != NULL, NULL);
271 child = GTK_WIDGET(doc->editor->sci);
272 parent = gtk_widget_get_parent(child);
273 /* search for the direct notebook child, mirroring document_get_from_page() */
274 while (parent && ! GTK_IS_NOTEBOOK(parent))
276 child = parent;
277 parent = gtk_widget_get_parent(child);
280 return child;
284 /** Gets the notebook page index for a document.
285 * @param doc The document.
286 * @return The index.
287 * @since 0.19 */
288 GEANY_API_SYMBOL
289 gint document_get_notebook_page(GeanyDocument *doc)
291 GtkWidget *child = document_get_notebook_child(doc);
293 return gtk_notebook_page_num(GTK_NOTEBOOK(main_widgets.notebook), child);
298 * Recursively searches a containers children until it finds a
299 * Scintilla widget, or NULL if one was not found.
301 static ScintillaObject *locate_sci_in_container(GtkWidget *container)
303 ScintillaObject *sci = NULL;
304 GList *children, *iter;
306 g_return_val_if_fail(GTK_IS_CONTAINER(container), NULL);
308 children = gtk_container_get_children(GTK_CONTAINER(container));
309 for (iter = children; iter != NULL; iter = g_list_next(iter))
311 if (IS_SCINTILLA(iter->data))
313 sci = SCINTILLA(iter->data);
314 break;
316 else if (GTK_IS_CONTAINER(iter->data))
318 sci = locate_sci_in_container(iter->data);
319 if (IS_SCINTILLA(sci))
320 break;
321 sci = NULL;
324 g_list_free(children);
326 return sci;
330 /* Finds the document for the given notebook page widget */
331 GeanyDocument *document_get_from_notebook_child(GtkWidget *page)
333 ScintillaObject *sci;
335 g_return_val_if_fail(GTK_IS_BOX(page), NULL);
337 sci = locate_sci_in_container(page);
338 g_return_val_if_fail(IS_SCINTILLA(sci), NULL);
340 return document_find_by_sci(sci);
345 * Finds the document for the given notebook page @a page_num.
347 * @param page_num The notebook page number to search.
349 * @return @transfer{none} @nullable The corresponding document for the given notebook page, or @c NULL.
351 GEANY_API_SYMBOL
352 GeanyDocument *document_get_from_page(guint page_num)
354 GtkWidget *parent;
356 if (page_num >= documents_array->len)
357 return NULL;
359 parent = gtk_notebook_get_nth_page(GTK_NOTEBOOK(main_widgets.notebook), page_num);
361 return document_get_from_notebook_child(parent);
366 * Finds the current document.
368 * @return @transfer{none} @nullable A pointer to the current document or @c NULL if there are no opened documents.
370 GEANY_API_SYMBOL
371 GeanyDocument *document_get_current(void)
373 gint cur_page = gtk_notebook_get_current_page(GTK_NOTEBOOK(main_widgets.notebook));
375 if (cur_page == -1)
376 return NULL;
377 else
378 return document_get_from_page((guint) cur_page);
382 void document_init_doclist(void)
384 documents_array = g_ptr_array_new();
388 void document_finalize(void)
390 guint i;
392 for (i = 0; i < documents_array->len; i++)
393 g_free(documents[i]);
394 g_ptr_array_free(documents_array, TRUE);
399 * Returns the last part of the filename of the given GeanyDocument. The result is also
400 * truncated to a maximum of @a length characters in case the filename is very long.
402 * @param doc The document to use.
403 * @param length The length of the resulting string or -1 to use a default value.
405 * @return The ellipsized last part of the filename of @a doc, should be freed when no
406 * longer needed.
408 * @since 0.17
410 /* TODO make more use of this */
411 GEANY_API_SYMBOL
412 gchar *document_get_basename_for_display(GeanyDocument *doc, gint length)
414 gchar *base_name, *short_name;
416 g_return_val_if_fail(doc != NULL, NULL);
418 if (length < 0)
419 length = 30;
421 base_name = g_path_get_basename(DOC_FILENAME(doc));
422 short_name = utils_str_middle_truncate(base_name, (guint)length);
424 g_free(base_name);
426 return short_name;
430 void document_update_tab_label(GeanyDocument *doc)
432 gchar *short_name;
433 GtkWidget *parent;
435 g_return_if_fail(doc != NULL);
437 short_name = document_get_basename_for_display(doc, interface_prefs.tab_label_len);
439 /* we need to use the event box for the tooltip, labels don't get the necessary events */
440 parent = gtk_widget_get_parent(doc->priv->tab_label);
441 parent = gtk_widget_get_parent(parent);
443 gtk_label_set_text(GTK_LABEL(doc->priv->tab_label), short_name);
445 gtk_widget_set_tooltip_text(parent, DOC_FILENAME(doc));
447 g_free(short_name);
452 * Updates the tab labels, the status bar, the window title and some save-sensitive buttons
453 * according to the document's save state.
454 * This is called by Geany mostly when opening or saving files.
456 * @param doc The document to use.
457 * @param changed Whether the document state should indicate changes have been made.
459 GEANY_API_SYMBOL
460 void document_set_text_changed(GeanyDocument *doc, gboolean changed)
462 g_return_if_fail(doc != NULL);
464 doc->changed = changed;
466 if (! main_status.quitting)
468 ui_update_tab_status(doc);
469 ui_save_buttons_toggle(changed);
470 ui_set_window_title(doc);
471 ui_update_statusbar(doc, -1);
476 /* returns the next free place in the document list,
477 * or -1 if the documents_array is full */
478 static gint document_get_new_idx(void)
480 guint i;
482 for (i = 0; i < documents_array->len; i++)
484 if (documents[i]->editor == NULL)
486 return (gint) i;
489 return -1;
493 static void queue_colourise(GeanyDocument *doc)
495 if (doc->priv->colourise_needed)
496 return;
498 /* Colourise the editor before it is next drawn */
499 doc->priv->colourise_needed = TRUE;
501 /* If the editor doesn't need drawing (e.g. after saving the current
502 * document), we need to force a redraw, so the expose event is triggered.
503 * This ensures we don't start colourising before all documents are opened/saved,
504 * only once the editor is drawn. */
505 gtk_widget_queue_draw(GTK_WIDGET(doc->editor->sci));
509 #ifdef USE_GIO_FILEMON
510 static void monitor_file_changed_cb(G_GNUC_UNUSED GFileMonitor *monitor, G_GNUC_UNUSED GFile *file,
511 G_GNUC_UNUSED GFile *other_file, GFileMonitorEvent event,
512 GeanyDocument *doc)
514 g_return_if_fail(doc != NULL);
516 if (file_prefs.disk_check_timeout == 0)
517 return;
519 geany_debug("%s: event: %d previous file status: %d",
520 G_STRFUNC, event, doc->priv->file_disk_status);
521 switch (event)
523 case G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT:
525 if (doc->priv->file_disk_status == FILE_IGNORE)
526 doc->priv->file_disk_status = FILE_OK;
527 else
528 doc->priv->file_disk_status = FILE_CHANGED;
529 g_message("%s: FILE_CHANGED", G_STRFUNC);
530 break;
532 case G_FILE_MONITOR_EVENT_DELETED:
534 doc->priv->file_disk_status = FILE_CHANGED;
535 g_message("%s: FILE_MISSING", G_STRFUNC);
536 break;
538 default:
539 break;
541 if (doc->priv->file_disk_status != FILE_OK)
543 ui_update_tab_status(doc);
546 #endif
549 static void document_stop_file_monitoring(GeanyDocument *doc)
551 g_return_if_fail(doc != NULL);
553 if (doc->priv->monitor != NULL)
555 g_object_unref(doc->priv->monitor);
556 doc->priv->monitor = NULL;
561 static void monitor_file_setup(GeanyDocument *doc)
563 g_return_if_fail(doc != NULL);
564 /* Disable file monitoring completely for remote files (i.e. remote GIO files) as GFileMonitor
565 * doesn't work at all for remote files and legacy polling is too slow. */
566 if (! doc->priv->is_remote)
568 #ifdef USE_GIO_FILEMON
569 gchar *locale_filename;
571 /* stop any previous monitoring */
572 document_stop_file_monitoring(doc);
574 locale_filename = utils_get_locale_from_utf8(doc->file_name);
575 if (locale_filename != NULL && g_file_test(locale_filename, G_FILE_TEST_EXISTS))
577 /* get a file monitor and connect to the 'changed' signal */
578 GFile *file = g_file_new_for_path(locale_filename);
579 doc->priv->monitor = g_file_monitor_file(file, G_FILE_MONITOR_NONE, NULL, NULL);
580 g_signal_connect(doc->priv->monitor, "changed",
581 G_CALLBACK(monitor_file_changed_cb), doc);
583 /* we set the rate limit according to the GUI pref but it's most probably not used */
584 g_file_monitor_set_rate_limit(doc->priv->monitor, file_prefs.disk_check_timeout * 1000);
586 g_object_unref(file);
588 g_free(locale_filename);
589 #endif
591 doc->priv->file_disk_status = FILE_OK;
595 void document_try_focus(GeanyDocument *doc, GtkWidget *source_widget)
597 /* doc might not be valid e.g. if user closed a tab whilst Geany is opening files */
598 if (DOC_VALID(doc))
600 GtkWidget *sci = GTK_WIDGET(doc->editor->sci);
601 GtkWidget *focusw = gtk_window_get_focus(GTK_WINDOW(main_widgets.window));
603 if (source_widget == NULL)
604 source_widget = doc->priv->tag_tree;
606 if (focusw == source_widget)
607 gtk_widget_grab_focus(sci);
612 /* Creates a new document and editor, adding a tab in the notebook.
613 * @return The created document */
614 static GeanyDocument *document_create(const gchar *utf8_filename)
616 GeanyDocument *doc;
617 gint new_idx;
618 gint cur_pages = gtk_notebook_get_n_pages(GTK_NOTEBOOK(main_widgets.notebook));
620 if (cur_pages == 1)
622 doc = document_get_current();
623 /* remove the empty document first */
624 if (doc != NULL && doc->file_name == NULL && ! doc->changed)
625 /* prevent immediately opening another new doc with
626 * new_document_after_close pref */
627 remove_page(0);
630 new_idx = document_get_new_idx();
631 if (new_idx == -1) /* expand the array, no free places */
633 doc = g_new0(GeanyDocument, 1);
635 new_idx = documents_array->len;
636 g_ptr_array_add(documents_array, doc);
639 doc = documents[new_idx];
641 /* initialize default document settings */
642 doc->priv = g_new0(GeanyDocumentPrivate, 1);
643 doc->priv->tag_filter = g_strdup("");
644 doc->priv->symbols_group_by_type = TRUE;
645 doc->id = ++doc_id_counter;
646 doc->index = new_idx;
647 doc->file_name = g_strdup(utf8_filename);
648 doc->editor = editor_create(doc);
649 #ifndef USE_GIO_FILEMON
650 doc->priv->last_check = time(NULL);
651 #endif
653 g_datalist_init(&doc->priv->data);
655 sidebar_openfiles_add(doc); /* sets doc->iter */
657 notebook_new_tab(doc);
659 /* select document in sidebar */
661 GtkTreeSelection *sel;
663 sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(tv.tree_openfiles));
664 gtk_tree_selection_select_iter(sel, &doc->priv->iter);
667 ui_document_buttons_update();
669 doc->is_valid = TRUE; /* do this last to prevent UI updating with NULL items. */
670 return doc;
675 * Closes the given document.
677 * @param doc The document to remove.
679 * @return @c TRUE if the document was actually removed or @c FALSE otherwise.
681 * @since 0.15
683 GEANY_API_SYMBOL
684 gboolean document_close(GeanyDocument *doc)
686 g_return_val_if_fail(doc, FALSE);
688 return document_remove_page(document_get_notebook_page(doc));
692 /* Call document_remove_page() instead, this is only needed for document_create()
693 * to prevent re-opening a new document when the last document is closed (if enabled). */
694 static gboolean remove_page(guint page_num)
696 GeanyDocument *doc = document_get_from_page(page_num);
698 g_return_val_if_fail(doc != NULL, FALSE);
700 /* if we're closing all, document_account_for_unsaved() has been called already, no need to ask again. */
701 if (! main_status.closing_all && doc->changed && ! dialogs_show_unsaved_file(doc))
702 return FALSE;
704 /* tell any plugins that the document is about to be closed */
705 g_signal_emit_by_name(geany_object, "document-close", doc);
707 /* Checking real_path makes it likely the file exists on disk */
708 if (! main_status.closing_all && doc->real_path != NULL)
709 ui_add_recent_document(doc);
711 g_datalist_clear(&doc->priv->data);
713 doc->is_valid = FALSE;
714 doc->id = 0;
716 if (main_status.quitting)
718 /* we need to destroy the ScintillaWidget so our handlers on it are
719 * disconnected before we free any data they may use (like the editor).
720 * when not quitting, this is handled by removing the notebook page. */
721 gtk_notebook_remove_page(GTK_NOTEBOOK(main_widgets.notebook), page_num);
723 else
725 notebook_remove_page(page_num);
726 sidebar_remove_document(doc);
727 navqueue_remove_file(doc->file_name);
728 msgwin_status_add(_("File %s closed."), DOC_FILENAME(doc));
730 g_free(doc->encoding);
731 g_free(doc->priv->saved_encoding.encoding);
732 g_free(doc->priv->tag_filter);
733 g_free(doc->file_name);
734 g_free(doc->real_path);
735 if (doc->tm_file)
737 tm_workspace_remove_source_file(doc->tm_file);
738 tm_source_file_free(doc->tm_file);
741 if (doc->priv->tag_tree)
742 gtk_widget_destroy(doc->priv->tag_tree);
744 editor_destroy(doc->editor);
745 doc->editor = NULL; /* needs to be NULL for document_undo_clear() call below */
747 document_stop_file_monitoring(doc);
749 document_undo_clear(doc);
751 g_free(doc->priv);
753 /* reset document settings to defaults for re-use */
754 memset(doc, 0, sizeof(GeanyDocument));
756 if (gtk_notebook_get_n_pages(GTK_NOTEBOOK(main_widgets.notebook)) == 0)
758 sidebar_update_tag_list(NULL, FALSE);
759 ui_set_window_title(NULL);
760 ui_save_buttons_toggle(FALSE);
761 ui_update_popup_reundo_items(NULL);
762 ui_document_buttons_update();
763 build_menu_update(NULL);
765 return TRUE;
770 * Removes the given notebook tab at @a page_num and clears all related information
771 * in the document list.
773 * @param page_num The notebook page number to remove.
775 * @return @c TRUE if the document was actually removed or @c FALSE otherwise.
777 GEANY_API_SYMBOL
778 gboolean document_remove_page(guint page_num)
780 gboolean done = remove_page(page_num);
782 if (done && ui_prefs.new_document_after_close)
783 document_new_file_if_non_open();
785 return done;
789 /* used to keep a record of the unchanged document state encoding */
790 static void store_saved_encoding(GeanyDocument *doc)
792 g_free(doc->priv->saved_encoding.encoding);
793 doc->priv->saved_encoding.encoding = g_strdup(doc->encoding);
794 doc->priv->saved_encoding.has_bom = doc->has_bom;
798 /* Opens a new empty document only if there are no other documents open */
799 GeanyDocument *document_new_file_if_non_open(void)
801 if (gtk_notebook_get_n_pages(GTK_NOTEBOOK(main_widgets.notebook)) == 0)
802 return document_new_file(NULL, NULL, NULL);
804 return NULL;
809 * Creates a new document.
810 * Line endings in @a text will be converted to the default setting.
811 * Afterwards, the @c "document-new" signal is emitted for plugins.
813 * @param utf8_filename @nullable The file name in UTF-8 encoding, or @c NULL to open a file as "untitled".
814 * @param ft @nullable The filetype to set or @c NULL to detect it from @a filename if not @c NULL.
815 * @param text @nullable The initial content of the file (in UTF-8 encoding), or @c NULL.
817 * @return @transfer{none} The new document.
819 GEANY_API_SYMBOL
820 GeanyDocument *document_new_file(const gchar *utf8_filename, GeanyFiletype *ft, const gchar *text)
822 GeanyDocument *doc;
824 if (utf8_filename && g_path_is_absolute(utf8_filename))
826 gchar *tmp;
827 tmp = utils_strdupa(utf8_filename); /* work around const */
828 utils_tidy_path(tmp);
829 utf8_filename = tmp;
831 doc = document_create(utf8_filename);
833 g_assert(doc != NULL);
835 sci_set_undo_collection(doc->editor->sci, FALSE); /* avoid creation of an undo action */
836 if (text)
838 GString *template = g_string_new(text);
839 utils_ensure_same_eol_characters(template, file_prefs.default_eol_character);
841 sci_set_text(doc->editor->sci, template->str);
842 g_string_free(template, TRUE);
844 else
845 sci_clear_all(doc->editor->sci);
847 sci_set_eol_mode(doc->editor->sci, file_prefs.default_eol_character);
849 sci_set_undo_collection(doc->editor->sci, TRUE);
850 sci_empty_undo_buffer(doc->editor->sci);
852 doc->encoding = g_strdup(encodings[file_prefs.default_new_encoding].charset);
853 /* store the opened encoding for undo/redo */
854 store_saved_encoding(doc);
856 if (ft == NULL && utf8_filename != NULL) /* guess the filetype from the filename if one is given */
857 ft = filetypes_detect_from_document(doc);
859 document_set_filetype(doc, ft); /* also re-parses tags */
861 /* now the document is fully ready, display it (see notebook_new_tab()) */
862 gtk_widget_show(document_get_notebook_child(doc));
864 ui_set_window_title(doc);
865 build_menu_update(doc);
866 document_set_text_changed(doc, FALSE);
867 ui_document_show_hide(doc); /* update the document menu */
869 sci_set_line_numbers(doc->editor->sci, editor_prefs.show_linenumber_margin);
870 /* bring it in front, jump to the start and grab the focus */
871 editor_goto_pos(doc->editor, 0, FALSE);
873 #ifdef USE_GIO_FILEMON
874 monitor_file_setup(doc);
875 #else
876 doc->priv->mtime = 0;
877 #endif
879 /* "the" SCI signal (connect after initial setup(i.e. adding text)) */
880 g_signal_connect(doc->editor->sci, "sci-notify", G_CALLBACK(editor_sci_notify_cb), doc->editor);
882 g_signal_emit_by_name(geany_object, "document-new", doc);
884 msgwin_status_add(_("New file \"%s\" opened."),
885 DOC_FILENAME(doc));
887 return doc;
892 * Opens a document specified by @a locale_filename.
893 * Afterwards, the @c "document-open" signal is emitted for plugins.
895 * @param locale_filename The filename of the document to load, in locale encoding.
896 * @param readonly Whether to open the document in read-only mode.
897 * @param ft @nullable The filetype for the document or @c NULL to auto-detect the filetype.
898 * @param forced_enc @nullable The file encoding to use or @c NULL to auto-detect the file encoding.
900 * @return @transfer{none} @nullable The document opened or @c NULL.
902 GEANY_API_SYMBOL
903 GeanyDocument *document_open_file(const gchar *locale_filename, gboolean readonly,
904 GeanyFiletype *ft, const gchar *forced_enc)
906 return document_open_file_full(NULL, locale_filename, 0, readonly, ft, forced_enc);
910 typedef struct
912 gchar *data; /* null-terminated file data */
913 gsize len; /* string length of data */
914 gchar *enc;
915 gboolean bom;
916 time_t mtime; /* modification time, read by stat::st_mtime */
917 gboolean readonly;
918 } FileData;
921 static gboolean get_mtime(const gchar *locale_filename, time_t *time)
923 GError *error = NULL;
924 const gchar *err_msg = NULL;
926 if (USE_GIO_FILE_OPERATIONS)
928 GFile *file = g_file_new_for_path(locale_filename);
929 GFileInfo *info = g_file_query_info(file, G_FILE_ATTRIBUTE_TIME_MODIFIED, G_FILE_QUERY_INFO_NONE, NULL, &error);
931 if (info)
933 GTimeVal timeval;
935 g_file_info_get_modification_time(info, &timeval);
936 g_object_unref(info);
937 *time = timeval.tv_sec;
939 else if (error)
940 err_msg = error->message;
942 g_object_unref(file);
944 else
946 GStatBuf st;
948 if (g_stat(locale_filename, &st) == 0)
949 *time = st.st_mtime;
950 else
951 err_msg = g_strerror(errno);
954 if (err_msg)
956 gchar *utf8_filename = utils_get_utf8_from_locale(locale_filename);
958 ui_set_statusbar(TRUE, _("Could not open file %s (%s)"),
959 utf8_filename, err_msg);
960 g_free(utf8_filename);
963 if (error)
964 g_error_free(error);
966 return err_msg == NULL;
970 /* loads textfile data, verifies and converts to forced_enc or UTF-8. Also handles BOM. */
971 static gboolean load_text_file(const gchar *locale_filename, const gchar *display_filename,
972 FileData *filedata, const gchar *forced_enc)
974 GError *err = NULL;
976 filedata->data = NULL;
977 filedata->len = 0;
978 filedata->enc = NULL;
979 filedata->bom = FALSE;
980 filedata->readonly = FALSE;
982 if (!get_mtime(locale_filename, &filedata->mtime))
983 return FALSE;
985 if (USE_GIO_FILE_OPERATIONS)
987 GFile *file = g_file_new_for_path(locale_filename);
989 g_file_load_contents(file, NULL, &filedata->data, &filedata->len, NULL, &err);
990 g_object_unref(file);
992 else
993 g_file_get_contents(locale_filename, &filedata->data, &filedata->len, &err);
995 if (err)
997 ui_set_statusbar(TRUE, "%s", err->message);
998 g_error_free(err);
999 return FALSE;
1002 if (! encodings_convert_to_utf8_auto(&filedata->data, &filedata->len, forced_enc,
1003 &filedata->enc, &filedata->bom, &filedata->readonly, &err))
1005 if (forced_enc)
1006 ui_set_statusbar(TRUE, _("Failed to load file \"%s\" as %s: %s."),
1007 display_filename, forced_enc, err->message);
1008 else
1009 ui_set_statusbar(TRUE, _("Failed to load file \"%s\": %s."),
1010 display_filename, err->message);
1011 g_error_free(err);
1012 g_free(filedata->data);
1013 return FALSE;
1016 if (filedata->readonly)
1018 gchar *warn_msg = g_strdup_printf(_(
1019 "The file \"%s\" could not be opened properly and has been truncated. "
1020 "This can occur if the file contains a NULL byte. "
1021 "Be aware that saving it can cause data loss.\nThe file was set to read-only."),
1022 display_filename);
1024 if (main_status.main_window_realized)
1025 dialogs_show_msgbox(GTK_MESSAGE_WARNING, "%s", warn_msg);
1027 ui_set_statusbar(TRUE, "%s", warn_msg);
1029 g_free(warn_msg);
1032 return TRUE;
1036 /* Sets the cursor position on opening a file. First it sets the line when cl_options.goto_line
1037 * is set, otherwise it sets the line when pos is greater than zero and finally it sets the column
1038 * if cl_options.goto_column is set.
1040 * returns the new position which may have changed */
1041 static gint set_cursor_position(GeanyEditor *editor, gint pos)
1043 if (cl_options.goto_line >= 0)
1044 { /* goto line which was specified on command line and then undefine the line */
1045 sci_goto_line(editor->sci, cl_options.goto_line - 1, TRUE);
1046 editor->scroll_percent = 0.5F;
1047 cl_options.goto_line = -1;
1049 else if (pos > 0)
1051 sci_set_current_position(editor->sci, pos, FALSE);
1052 editor->scroll_percent = 0.5F;
1055 if (cl_options.goto_column >= 0)
1056 { /* goto column which was specified on command line and then undefine the column */
1058 gint new_pos = sci_get_current_position(editor->sci) + cl_options.goto_column;
1059 sci_set_current_position(editor->sci, new_pos, FALSE);
1060 editor->scroll_percent = 0.5F;
1061 cl_options.goto_column = -1;
1062 return new_pos;
1064 return sci_get_current_position(editor->sci);
1068 /* Count lines that start with some hard tabs then a soft tab. */
1069 static gboolean detect_tabs_and_spaces(GeanyEditor *editor)
1071 const GeanyIndentPrefs *iprefs = editor_get_indent_prefs(editor);
1072 ScintillaObject *sci = editor->sci;
1073 gsize count = 0;
1074 struct Sci_TextToFind ttf;
1075 gchar *soft_tab = g_strnfill((gsize)iprefs->width, ' ');
1076 gchar *regex = g_strconcat("^\t+", soft_tab, "[^ ]", NULL);
1078 g_free(soft_tab);
1080 ttf.chrg.cpMin = 0;
1081 ttf.chrg.cpMax = sci_get_length(sci);
1082 ttf.lpstrText = regex;
1083 while (1)
1085 gint pos;
1087 pos = sci_find_text(sci, SCFIND_REGEXP, &ttf);
1088 if (pos == -1)
1089 break; /* no more matches */
1090 count++;
1091 ttf.chrg.cpMin = ttf.chrgText.cpMax + 1; /* search after this match */
1093 g_free(regex);
1094 /* The 0.02 is a low weighting to ignore a few possibly accidental occurrences */
1095 return count > sci_get_line_count(sci) * 0.02;
1099 /* Detect the indent type based on counting the leading indent characters for each line.
1100 * Returns whether detection succeeded, and the detected type in *type_ upon success */
1101 gboolean document_detect_indent_type(GeanyDocument *doc, GeanyIndentType *type_)
1103 GeanyEditor *editor = doc->editor;
1104 ScintillaObject *sci = editor->sci;
1105 gint line, line_count;
1106 gsize tabs = 0, spaces = 0;
1108 if (detect_tabs_and_spaces(editor))
1110 *type_ = GEANY_INDENT_TYPE_BOTH;
1111 return TRUE;
1114 line_count = sci_get_line_count(sci);
1115 for (line = 0; line < line_count; line++)
1117 gint pos = sci_get_position_from_line(sci, line);
1118 gchar c;
1120 /* most code will have indent total <= 24, otherwise it's more likely to be
1121 * alignment than indentation */
1122 if (sci_get_line_indentation(sci, line) > 24)
1123 continue;
1125 c = sci_get_char_at(sci, pos);
1126 if (c == '\t')
1127 tabs++;
1128 /* check for at least 2 spaces */
1129 else if (c == ' ' && sci_get_char_at(sci, pos + 1) == ' ')
1130 spaces++;
1132 if (spaces == 0 && tabs == 0)
1133 return FALSE;
1135 /* the factors may need to be tweaked */
1136 if (spaces > tabs * 4)
1137 *type_ = GEANY_INDENT_TYPE_SPACES;
1138 else if (tabs > spaces * 4)
1139 *type_ = GEANY_INDENT_TYPE_TABS;
1140 else
1141 *type_ = GEANY_INDENT_TYPE_BOTH;
1143 return TRUE;
1147 /* Detect the indent width based on counting the leading indent characters for each line.
1148 * Returns whether detection succeeded, and the detected width in *width_ upon success */
1149 static gboolean detect_indent_width(GeanyEditor *editor, GeanyIndentType type, gint *width_)
1151 const GeanyIndentPrefs *iprefs = editor_get_indent_prefs(editor);
1152 ScintillaObject *sci = editor->sci;
1153 gint line, line_count;
1154 gint widths[7] = { 0 }; /* width can be from 2 to 8 */
1155 gint count, width, i;
1157 /* can't easily detect the supposed width of a tab, guess the default is OK */
1158 if (type == GEANY_INDENT_TYPE_TABS)
1159 return FALSE;
1161 /* force 8 at detection time for tab & spaces -- anyway we don't use tabs at this point */
1162 sci_set_tab_width(sci, 8);
1164 line_count = sci_get_line_count(sci);
1165 for (line = 0; line < line_count; line++)
1167 gint pos = sci_get_line_indent_position(sci, line);
1169 /* We probably don't have style info yet, because we're generally called just after
1170 * the document got created, so we can't use highlighting_is_code_style().
1171 * That's not good, but the assumption below that concerning lines start with an
1172 * asterisk (common continuation character for C/C++/Java/...) should do the trick
1173 * without removing too much legitimate lines. */
1174 if (sci_get_char_at(sci, pos) == '*')
1175 continue;
1177 width = sci_get_line_indentation(sci, line);
1178 /* most code will have indent total <= 24, otherwise it's more likely to be
1179 * alignment than indentation */
1180 if (width > 24)
1181 continue;
1182 /* < 2 is no indentation */
1183 if (width < 2)
1184 continue;
1186 for (i = G_N_ELEMENTS(widths) - 1; i >= 0; i--)
1188 if ((width % (i + 2)) == 0)
1189 widths[i]++;
1192 count = 0;
1193 width = iprefs->width;
1194 for (i = G_N_ELEMENTS(widths) - 1; i >= 0; i--)
1196 /* give large indents higher weight not to be fooled by spurious indents */
1197 if (widths[i] >= count * 1.5)
1199 width = i + 2;
1200 count = widths[i];
1204 if (count == 0)
1205 return FALSE;
1207 *width_ = width;
1208 return TRUE;
1212 /* same as detect_indent_width() but uses editor's indent type */
1213 gboolean document_detect_indent_width(GeanyDocument *doc, gint *width_)
1215 return detect_indent_width(doc->editor, doc->editor->indent_type, width_);
1219 void document_apply_indent_settings(GeanyDocument *doc)
1221 const GeanyIndentPrefs *iprefs = editor_get_indent_prefs(NULL);
1222 GeanyIndentType type = iprefs->type;
1223 gint width = iprefs->width;
1225 if (iprefs->detect_type && document_detect_indent_type(doc, &type))
1227 if (type != iprefs->type)
1229 const gchar *name = NULL;
1231 switch (type)
1233 case GEANY_INDENT_TYPE_SPACES:
1234 name = _("Spaces");
1235 break;
1236 case GEANY_INDENT_TYPE_TABS:
1237 name = _("Tabs");
1238 break;
1239 case GEANY_INDENT_TYPE_BOTH:
1240 name = _("Tabs and Spaces");
1241 break;
1243 /* For translators: first wildcard is the indentation mode (Spaces, Tabs, Tabs
1244 * and Spaces), the second one is the filename */
1245 ui_set_statusbar(TRUE, _("Setting %s indentation mode for %s."), name,
1246 DOC_FILENAME(doc));
1249 else if (doc->file_type->indent_type > -1)
1250 type = doc->file_type->indent_type;
1252 if (iprefs->detect_width && detect_indent_width(doc->editor, type, &width))
1254 if (width != iprefs->width)
1256 ui_set_statusbar(TRUE, _("Setting indentation width to %d for %s."), width,
1257 DOC_FILENAME(doc));
1260 else if (doc->file_type->indent_width > -1)
1261 width = doc->file_type->indent_width;
1263 editor_set_indent(doc->editor, type, width);
1267 void document_show_tab(GeanyDocument *doc)
1269 gtk_notebook_set_current_page(GTK_NOTEBOOK(main_widgets.notebook),
1270 document_get_notebook_page(doc));
1272 /* finally, let the editor widget grab the focus so you can start coding
1273 * right away */
1274 /* FIXME: is that actually useful?? I don't see any difference disabling this code... */
1275 if (!main_status.opening_session_files)
1276 document_try_focus(doc, NULL);
1280 /* To open a new file, set doc to NULL; filename should be locale encoded.
1281 * To reload a file, set the doc for the document to be reloaded; filename should be NULL.
1282 * pos is the cursor position, which can be overridden by --line and --column.
1283 * forced_enc can be NULL to detect the file encoding.
1284 * Returns: doc of the opened file or NULL if an error occurred. */
1285 GeanyDocument *document_open_file_full(GeanyDocument *doc, const gchar *filename, gint pos,
1286 gboolean readonly, GeanyFiletype *ft, const gchar *forced_enc)
1288 gint editor_mode;
1289 gboolean reload = (doc == NULL) ? FALSE : TRUE;
1290 gchar *utf8_filename = NULL;
1291 gchar *display_filename = NULL;
1292 gchar *locale_filename = NULL;
1293 GeanyFiletype *use_ft;
1294 FileData filedata;
1295 UndoReloadData *undo_reload_data;
1296 gboolean add_undo_reload_action;
1298 g_return_val_if_fail(doc == NULL || doc->is_valid, NULL);
1300 if (reload)
1302 utf8_filename = g_strdup(doc->file_name);
1303 locale_filename = utils_get_locale_from_utf8(utf8_filename);
1305 else
1307 /* filename must not be NULL when opening a file */
1308 g_return_val_if_fail(filename, NULL);
1310 #ifdef G_OS_WIN32
1311 /* if filename is a shortcut, try to resolve it */
1312 locale_filename = win32_get_shortcut_target(filename);
1313 #else
1314 locale_filename = g_strdup(filename);
1315 #endif
1316 /* remove relative junk */
1317 utils_tidy_path(locale_filename);
1319 /* try to get the UTF-8 equivalent for the filename, fallback to filename if error */
1320 utf8_filename = utils_get_utf8_from_locale(locale_filename);
1322 /* if file is already open, switch to it and go */
1323 doc = document_find_by_filename(utf8_filename);
1324 if (doc != NULL)
1326 ui_add_recent_document(doc); /* either add or reorder recent item */
1327 document_check_disk_status(doc, TRUE); /* force a file changed check */
1330 if (reload || doc == NULL)
1331 { /* doc possibly changed */
1332 display_filename = utils_str_middle_truncate(utf8_filename, 100);
1334 if (! load_text_file(locale_filename, display_filename, &filedata, forced_enc))
1336 g_free(display_filename);
1337 g_free(utf8_filename);
1338 g_free(locale_filename);
1339 return NULL;
1342 if (! reload)
1344 doc = document_create(utf8_filename);
1345 g_return_val_if_fail(doc != NULL, NULL); /* really should not happen */
1347 /* file exists on disk, set real_path */
1348 SETPTR(doc->real_path, utils_get_real_path(locale_filename));
1350 doc->priv->is_remote = utils_is_remote_path(locale_filename);
1351 monitor_file_setup(doc);
1354 if (! reload || ! file_prefs.keep_edit_history_on_reload)
1356 sci_set_undo_collection(doc->editor->sci, FALSE); /* avoid creation of an undo action */
1357 sci_empty_undo_buffer(doc->editor->sci);
1358 undo_reload_data = NULL;
1360 else
1362 undo_reload_data = (UndoReloadData*) g_malloc(sizeof(UndoReloadData));
1364 /* We will be adding a UNDO_RELOAD action to the undo stack that undoes
1365 * this reload. To do that, we keep collecting undo actions during
1366 * reloading, and at the end add an UNDO_RELOAD action that performs
1367 * all these actions in bulk. To keep track of how many undo actions
1368 * were added during this time, we compare the current undo-stack height
1369 * with its height at the end of the process. Note that g_trash_stack_height()
1370 * is O(N), which is a little ugly, but this seems like the most maintainable
1371 * option. */
1372 undo_reload_data->actions_count = g_trash_stack_height(&doc->priv->undo_actions);
1374 /* We use add_undo_reload_action to track any changes to the document that
1375 * require adding an undo action to revert the reload, but that do not
1376 * generate an undo action themselves. */
1377 add_undo_reload_action = FALSE;
1380 /* add the text to the ScintillaObject */
1381 sci_set_readonly(doc->editor->sci, FALSE); /* to allow replacing text */
1382 sci_set_text(doc->editor->sci, filedata.data); /* NULL terminated data */
1383 queue_colourise(doc); /* Ensure the document gets colourised. */
1385 /* detect & set line endings */
1386 editor_mode = utils_get_line_endings(filedata.data, filedata.len);
1387 if (undo_reload_data)
1389 undo_reload_data->eol_mode = editor_get_eol_char_mode(doc->editor);
1390 /* Force adding an undo-reload action if the EOL mode changed. */
1391 if (editor_mode != undo_reload_data->eol_mode)
1392 add_undo_reload_action = TRUE;
1394 sci_set_eol_mode(doc->editor->sci, editor_mode);
1395 g_free(filedata.data);
1397 sci_set_undo_collection(doc->editor->sci, TRUE);
1399 /* If reloading and the current and new encodings or BOM states differ,
1400 * add appropriate undo actions. */
1401 if (undo_reload_data)
1403 if (! utils_str_equal(doc->encoding, filedata.enc))
1404 document_undo_add(doc, UNDO_ENCODING, g_strdup(doc->encoding));
1405 if (doc->has_bom != filedata.bom)
1406 document_undo_add(doc, UNDO_BOM, GINT_TO_POINTER(doc->has_bom));
1409 doc->priv->mtime = filedata.mtime; /* get the modification time from file and keep it */
1410 g_free(doc->encoding); /* if reloading, free old encoding */
1411 doc->encoding = filedata.enc;
1412 doc->has_bom = filedata.bom;
1413 store_saved_encoding(doc); /* store the opened encoding for undo/redo */
1415 doc->readonly = readonly || filedata.readonly;
1416 sci_set_readonly(doc->editor->sci, doc->readonly);
1417 doc->priv->protected = 0;
1419 /* update line number margin width */
1420 doc->priv->line_count = sci_get_line_count(doc->editor->sci);
1421 sci_set_line_numbers(doc->editor->sci, editor_prefs.show_linenumber_margin);
1423 if (! reload)
1426 /* "the" SCI signal (connect after initial setup(i.e. adding text)) */
1427 g_signal_connect(doc->editor->sci, "sci-notify", G_CALLBACK(editor_sci_notify_cb),
1428 doc->editor);
1430 use_ft = (ft != NULL) ? ft : filetypes_detect_from_document(doc);
1432 else
1433 { /* reloading */
1434 if (undo_reload_data)
1436 /* Calculate the number of undo actions that are part of the reloading
1437 * process, and add the UNDO_RELOAD action. */
1438 undo_reload_data->actions_count =
1439 g_trash_stack_height(&doc->priv->undo_actions) - undo_reload_data->actions_count;
1441 /* We only add an undo-reload action if the document has actually changed.
1442 * At the time of writing, this condition is moot because sci_set_text
1443 * generates an undo action even when the text hasn't really changed, so
1444 * actions_count is always greater than zero. In the future this might change.
1445 * It's arguable whether we should add an undo-reload action unconditionally,
1446 * especially since it's possible (if unlikely) that there had only
1447 * been "invisible" changes to the document, such as changes in encoding and
1448 * EOL mode, but for the time being that's how we roll. */
1449 if (undo_reload_data->actions_count > 0 || add_undo_reload_action)
1450 document_undo_add(doc, UNDO_RELOAD, undo_reload_data);
1451 else
1452 g_free(undo_reload_data);
1454 /* We didn't save the document per-se, but its contents are now
1455 * synchronized with the file on disk, hence set a save point here.
1456 * We need to do this in this case only, because we don't clear
1457 * Scintilla's undo stack. */
1458 sci_set_savepoint(doc->editor->sci);
1460 else
1461 document_undo_clear(doc);
1463 use_ft = ft;
1465 /* update taglist, typedef keywords and build menu if necessary */
1466 document_set_filetype(doc, use_ft);
1468 /* set indentation settings after setting the filetype */
1469 if (reload)
1470 editor_set_indent(doc->editor, doc->editor->indent_type, doc->editor->indent_width); /* resetup sci */
1471 else
1472 document_apply_indent_settings(doc);
1474 document_set_text_changed(doc, FALSE); /* also updates tab state */
1475 ui_document_show_hide(doc); /* update the document menu */
1477 /* finally add current file to recent files menu, but not the files from the last session */
1478 if (! main_status.opening_session_files)
1479 ui_add_recent_document(doc);
1481 if (reload)
1483 g_signal_emit_by_name(geany_object, "document-reload", doc);
1484 ui_set_statusbar(TRUE, _("File %s reloaded."), display_filename);
1486 else
1488 g_signal_emit_by_name(geany_object, "document-open", doc);
1489 /* For translators: this is the status window message for opening a file. %d is the number
1490 * of the newly opened file, %s indicates whether the file is opened read-only
1491 * (it is replaced with the string ", read-only"). */
1492 msgwin_status_add(_("File %s opened (%d%s)."),
1493 display_filename, gtk_notebook_get_n_pages(GTK_NOTEBOOK(main_widgets.notebook)),
1494 (readonly) ? _(", read-only") : "");
1497 /* now the document is fully ready, display it (see notebook_new_tab()) */
1498 gtk_widget_show(document_get_notebook_child(doc));
1501 g_free(display_filename);
1502 g_free(utf8_filename);
1503 g_free(locale_filename);
1505 /* set the cursor position according to pos, cl_options.goto_line and cl_options.goto_column */
1506 pos = set_cursor_position(doc->editor, pos);
1507 /* now bring the file in front */
1508 editor_goto_pos(doc->editor, pos, FALSE);
1510 return doc;
1514 /* Takes a new line separated list of filename URIs and opens each file.
1515 * length is the length of the string */
1516 void document_open_file_list(const gchar *data, gsize length)
1518 guint i;
1519 gchar **list;
1521 g_return_if_fail(data != NULL);
1523 list = g_strsplit(data, utils_get_eol_char(utils_get_line_endings(data, length)), 0);
1525 /* stop at the end or first empty item, because last item is empty but not null */
1526 for (i = 0; list[i] != NULL && list[i][0] != '\0'; i++)
1528 gchar *filename = utils_get_path_from_uri(list[i]);
1530 if (filename == NULL)
1531 continue;
1532 document_open_file(filename, FALSE, NULL, NULL);
1533 g_free(filename);
1536 g_strfreev(list);
1541 * Opens each file in the list @a filenames.
1542 * Internally, document_open_file() is called for every list item.
1544 * @param filenames @elementtype{filename} A list of filenames to load, in locale encoding.
1545 * @param readonly Whether to open the document in read-only mode.
1546 * @param ft @nullable The filetype for the document or @c NULL to auto-detect the filetype.
1547 * @param forced_enc @nullable The file encoding to use or @c NULL to auto-detect the file encoding.
1549 GEANY_API_SYMBOL
1550 void document_open_files(const GSList *filenames, gboolean readonly, GeanyFiletype *ft,
1551 const gchar *forced_enc)
1553 const GSList *item;
1555 for (item = filenames; item != NULL; item = g_slist_next(item))
1557 document_open_file(item->data, readonly, ft, forced_enc);
1562 static void on_keep_edit_history_on_reload_response(GtkWidget *bar, gint response_id, GeanyDocument *doc)
1564 if (response_id == GTK_RESPONSE_NO)
1566 file_prefs.keep_edit_history_on_reload = FALSE;
1567 document_reload_force(doc, doc->encoding);
1569 else if (response_id == GTK_RESPONSE_CANCEL)
1571 /* this condition cannot be reached via info bar buttons, but by our code
1572 * to replace this bar with a higher priority one */
1573 file_prefs.show_keep_edit_history_on_reload_msg = TRUE;
1575 doc->priv->info_bars[MSG_TYPE_POST_RELOAD] = NULL;
1576 gtk_widget_destroy(bar);
1581 * Reloads the document with the specified file encoding.
1582 * @a forced_enc or @c NULL to auto-detect the file encoding.
1584 * @param doc The document to reload.
1585 * @param forced_enc @nullable The file encoding to use or @c NULL to auto-detect the file encoding.
1587 * @return @c TRUE if the document was actually reloaded or @c FALSE otherwise.
1589 GEANY_API_SYMBOL
1590 gboolean document_reload_force(GeanyDocument *doc, const gchar *forced_enc)
1592 gint pos = 0;
1593 GeanyDocument *new_doc;
1594 GtkWidget *bar;
1596 g_return_val_if_fail(doc != NULL, FALSE);
1598 /* Cancel resave bar if still open from previous file deletion */
1599 if (doc->priv->info_bars[MSG_TYPE_RESAVE] != NULL)
1600 gtk_info_bar_response(GTK_INFO_BAR(doc->priv->info_bars[MSG_TYPE_RESAVE]), GTK_RESPONSE_CANCEL);
1602 /* Use cancel because the response handler would call this recursively */
1603 if (doc->priv->info_bars[MSG_TYPE_RELOAD] != NULL)
1604 gtk_info_bar_response(GTK_INFO_BAR(doc->priv->info_bars[MSG_TYPE_RELOAD]), GTK_RESPONSE_CANCEL);
1606 /* try to set the cursor to the position before reloading */
1607 pos = sci_get_current_position(doc->editor->sci);
1608 new_doc = document_open_file_full(doc, NULL, pos, doc->readonly, doc->file_type, forced_enc);
1610 if (file_prefs.keep_edit_history_on_reload && file_prefs.show_keep_edit_history_on_reload_msg)
1612 bar = document_show_message(doc, GTK_MESSAGE_INFO,
1613 on_keep_edit_history_on_reload_response,
1614 GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
1615 _("Discard history"), GTK_RESPONSE_NO,
1616 NULL, 0, _("The buffer's previous state is stored in the history and "
1617 "undoing restores it. You can disable this by discarding the history upon "
1618 "reload. This message will not be displayed again but "
1619 "your choice can be changed in the various preferences."),
1620 _("The file has been reloaded."));
1621 doc->priv->info_bars[MSG_TYPE_POST_RELOAD] = bar;
1622 file_prefs.show_keep_edit_history_on_reload_msg = FALSE;
1625 return (new_doc != NULL);
1629 /* also used for reloading when forced_enc is NULL */
1630 gboolean document_reload_prompt(GeanyDocument *doc, const gchar *forced_enc)
1632 gchar *base_name;
1633 gboolean prompt, result = FALSE;
1635 g_return_val_if_fail(doc != NULL, FALSE);
1637 /* No need to reload "untitled" (non-file-backed) documents */
1638 if (doc->file_name == NULL)
1639 return FALSE;
1641 if (forced_enc == NULL)
1642 forced_enc = doc->encoding;
1644 base_name = g_path_get_basename(doc->file_name);
1645 /* don't prompt if edit history is maintained, or if file hasn't been edited at all */
1646 prompt = !file_prefs.keep_edit_history_on_reload &&
1647 (doc->changed || (document_can_undo(doc) || document_can_redo(doc)));
1649 if (!prompt || dialogs_show_question_full(NULL, _("_Reload"), GTK_STOCK_CANCEL,
1650 doc->changed ? _("Any unsaved changes will be lost.") :
1651 _("Undo history will be lost."),
1652 _("Are you sure you want to reload '%s'?"), base_name))
1654 result = document_reload_force(doc, forced_enc);
1655 if (forced_enc != NULL)
1656 ui_update_statusbar(doc, -1);
1658 g_free(base_name);
1659 return result;
1663 static void document_update_timestamp(GeanyDocument *doc, const gchar *locale_filename)
1665 #ifndef USE_GIO_FILEMON
1666 g_return_if_fail(doc != NULL);
1668 get_mtime(locale_filename, &doc->priv->mtime); /* get the modification time from file and keep it */
1669 #endif
1673 /* Sets line and column to the given position byte_pos in the document.
1674 * byte_pos is the position counted in bytes, not characters */
1675 static void get_line_column_from_pos(GeanyDocument *doc, guint byte_pos, gint *line, gint *column)
1677 gint i;
1678 gint line_start;
1680 /* for some reason we can use byte count instead of character count here */
1681 *line = sci_get_line_from_position(doc->editor->sci, byte_pos);
1682 line_start = sci_get_position_from_line(doc->editor->sci, *line);
1683 /* get the column in the line */
1684 *column = byte_pos - line_start;
1686 /* any non-ASCII characters are encoded with two bytes(UTF-8, always in Scintilla), so
1687 * skip one byte(i++) and decrease the column number which is based on byte count */
1688 for (i = line_start; i < (line_start + *column); i++)
1690 if (sci_get_char_at(doc->editor->sci, i) < 0)
1692 (*column)--;
1693 i++;
1699 static void replace_header_filename(GeanyDocument *doc)
1701 gchar *filebase;
1702 gchar *filename;
1703 struct Sci_TextToFind ttf;
1705 g_return_if_fail(doc != NULL);
1706 g_return_if_fail(doc->file_type != NULL);
1708 filebase = g_regex_escape_string(GEANY_STRING_UNTITLED, -1);
1709 if (doc->file_type->extension)
1710 SETPTR(filebase, g_strconcat("\\b", filebase, "\\.\\w+", NULL));
1711 else
1712 SETPTR(filebase, g_strconcat("\\b", filebase, "\\b", NULL));
1714 filename = g_path_get_basename(doc->file_name);
1716 /* only search the first 3 lines */
1717 ttf.chrg.cpMin = 0;
1718 ttf.chrg.cpMax = sci_get_position_from_line(doc->editor->sci, 4);
1719 ttf.lpstrText = filebase;
1721 if (search_find_text(doc->editor->sci, GEANY_FIND_MATCHCASE | GEANY_FIND_REGEXP, &ttf, NULL) != -1)
1723 sci_set_target_start(doc->editor->sci, ttf.chrgText.cpMin);
1724 sci_set_target_end(doc->editor->sci, ttf.chrgText.cpMax);
1725 sci_replace_target(doc->editor->sci, filename, FALSE);
1727 g_free(filebase);
1728 g_free(filename);
1733 * Renames the file in @a doc to @a new_filename. Only the file on disk is actually renamed,
1734 * you still have to call @ref document_save_file_as() to change the @a doc object.
1735 * It also stops monitoring for file changes to prevent receiving too many file change events
1736 * while renaming. File monitoring is setup again in @ref document_save_file_as().
1738 * @param doc The current document which should be renamed.
1739 * @param new_filename The new filename in UTF-8 encoding.
1741 * @since 0.16
1743 GEANY_API_SYMBOL
1744 void document_rename_file(GeanyDocument *doc, const gchar *new_filename)
1746 gchar *old_locale_filename = utils_get_locale_from_utf8(doc->file_name);
1747 gchar *new_locale_filename = utils_get_locale_from_utf8(new_filename);
1748 gint result;
1750 /* stop file monitoring to avoid getting events for deleting/creating files,
1751 * it's re-setup in document_save_file_as() */
1752 document_stop_file_monitoring(doc);
1754 result = g_rename(old_locale_filename, new_locale_filename);
1755 if (result != 0)
1757 dialogs_show_msgbox_with_secondary(GTK_MESSAGE_ERROR,
1758 _("Error renaming file."), g_strerror(errno));
1760 g_free(old_locale_filename);
1761 g_free(new_locale_filename);
1765 static void protect_document(GeanyDocument *doc)
1767 /* do not call queue_colourise because to we want to keep the text-changed indication! */
1768 if (!doc->priv->protected++)
1769 sci_set_readonly(doc->editor->sci, TRUE);
1771 ui_update_tab_status(doc);
1775 static void unprotect_document(GeanyDocument *doc)
1777 g_return_if_fail(doc->priv->protected > 0);
1779 if (!--doc->priv->protected && doc->readonly == FALSE)
1780 sci_set_readonly(doc->editor->sci, FALSE);
1782 ui_update_tab_status(doc);
1786 /* Return TRUE if the document doesn't have a full filename set.
1787 * This makes filenames without a path show the save as dialog, e.g. for file templates.
1788 * Otherwise just use the set filename instead of asking the user - e.g. for command-line
1789 * new files. */
1790 gboolean document_need_save_as(GeanyDocument *doc)
1792 g_return_val_if_fail(doc != NULL, FALSE);
1794 return (doc->file_name == NULL || !g_path_is_absolute(doc->file_name));
1799 * Saves the document, detecting the filetype.
1801 * @param doc The document for the file to save.
1802 * @param utf8_fname @nullable The new name for the document, in UTF-8, or @c NULL.
1803 * @return @c TRUE if the file was saved or @c FALSE if the file could not be saved.
1805 * @see document_save_file().
1807 * @since 0.16
1809 GEANY_API_SYMBOL
1810 gboolean document_save_file_as(GeanyDocument *doc, const gchar *utf8_fname)
1812 gboolean ret;
1813 gboolean new_file;
1815 g_return_val_if_fail(doc != NULL, FALSE);
1817 g_signal_emit_by_name(geany_object, "document-before-save-as", doc);
1819 new_file = document_need_save_as(doc) || (utf8_fname != NULL && strcmp(doc->file_name, utf8_fname) != 0);
1820 if (utf8_fname != NULL)
1821 SETPTR(doc->file_name, g_strdup(utf8_fname));
1823 /* reset real path, it's retrieved again in document_save() */
1824 SETPTR(doc->real_path, NULL);
1826 /* detect filetype */
1827 if (doc->file_type->id == GEANY_FILETYPES_NONE)
1829 GeanyFiletype *ft = filetypes_detect_from_document(doc);
1831 document_set_filetype(doc, ft);
1832 if (document_get_current() == doc)
1834 ignore_callback = TRUE;
1835 filetypes_select_radio_item(doc->file_type);
1836 ignore_callback = FALSE;
1840 if (new_file)
1842 // assume user wants to throw away read-only setting
1843 sci_set_readonly(doc->editor->sci, FALSE);
1844 doc->readonly = FALSE;
1845 if (doc->priv->protected > 0)
1846 unprotect_document(doc);
1849 replace_header_filename(doc);
1851 ret = document_save_file(doc, TRUE);
1853 /* file monitoring support, add file monitoring after the file has been saved
1854 * to ignore any earlier events */
1855 monitor_file_setup(doc);
1856 doc->priv->file_disk_status = FILE_IGNORE;
1857 return ret;
1861 static gsize save_convert_to_encoding(GeanyDocument *doc, gchar **data, gsize *len)
1863 GError *conv_error = NULL;
1864 gchar* conv_file_contents = NULL;
1865 gsize bytes_read;
1866 gsize conv_len;
1868 g_return_val_if_fail(data != NULL && *data != NULL, FALSE);
1869 g_return_val_if_fail(len != NULL, FALSE);
1871 /* try to convert it from UTF-8 to original encoding */
1872 conv_file_contents = g_convert(*data, *len - 1, doc->encoding, "UTF-8",
1873 &bytes_read, &conv_len, &conv_error);
1875 if (conv_error != NULL)
1877 gchar *text = g_strdup_printf(
1878 _("An error occurred while converting the file from UTF-8 in \"%s\". The file remains unsaved."),
1879 doc->encoding);
1880 gchar *error_text;
1882 if (conv_error->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
1884 gint line, column;
1885 gint context_len;
1886 gunichar unic;
1887 /* don't read over the doc length */
1888 gint max_len = MIN((gint)bytes_read + 6, (gint)*len - 1);
1889 gchar context[7]; /* read 6 bytes from Sci + '\0' */
1890 sci_get_text_range(doc->editor->sci, bytes_read, max_len, context);
1892 /* take only one valid Unicode character from the context and discard the leftover */
1893 unic = g_utf8_get_char_validated(context, -1);
1894 context_len = g_unichar_to_utf8(unic, context);
1895 context[context_len] = '\0';
1896 get_line_column_from_pos(doc, bytes_read, &line, &column);
1898 error_text = g_strdup_printf(
1899 _("Error message: %s\nThe error occurred at \"%s\" (line: %d, column: %d)."),
1900 conv_error->message, context, line + 1, column);
1902 else
1903 error_text = g_strdup_printf(_("Error message: %s."), conv_error->message);
1905 geany_debug("encoding error: %s", conv_error->message);
1906 dialogs_show_msgbox_with_secondary(GTK_MESSAGE_ERROR, text, error_text);
1907 g_error_free(conv_error);
1908 g_free(text);
1909 g_free(error_text);
1910 return FALSE;
1912 else
1914 g_free(*data);
1915 *data = conv_file_contents;
1916 *len = conv_len;
1918 return TRUE;
1922 static gchar *write_data_to_disk(const gchar *locale_filename,
1923 const gchar *data, gsize len)
1925 GError *error = NULL;
1927 if (file_prefs.use_safe_file_saving)
1929 /* Use old GLib API for safe saving (GVFS-safe, but alters ownership and permissons).
1930 * This is the only option that handles disk space exhaustion. */
1931 if (g_file_set_contents(locale_filename, data, len, &error))
1932 geany_debug("Wrote %s with g_file_set_contents().", locale_filename);
1934 else if (USE_GIO_FILE_OPERATIONS)
1936 GFile *fp;
1938 /* Use GIO API to save file (GVFS-safe)
1939 * It is best in most GVFS setups but don't seem to work correctly on some more complex
1940 * setups (saving from some VM to their host, over some SMB shares, etc.) */
1941 fp = g_file_new_for_path(locale_filename);
1942 g_file_replace_contents(fp, data, len, NULL, file_prefs.gio_unsafe_save_backup,
1943 G_FILE_CREATE_NONE, NULL, NULL, &error);
1944 g_object_unref(fp);
1946 else
1948 FILE *fp;
1949 int save_errno;
1950 gchar *display_name = g_filename_display_name(locale_filename);
1952 /* Use POSIX API for unsafe saving (GVFS-unsafe) */
1953 /* The error handling is taken from glib-2.26.0 gfileutils.c */
1954 errno = 0;
1955 fp = g_fopen(locale_filename, "wb");
1956 if (fp == NULL)
1958 save_errno = errno;
1960 g_set_error(&error,
1961 G_FILE_ERROR,
1962 g_file_error_from_errno(save_errno),
1963 _("Failed to open file '%s' for writing: fopen() failed: %s"),
1964 display_name,
1965 g_strerror(save_errno));
1967 else
1969 gsize bytes_written;
1971 errno = 0;
1972 bytes_written = fwrite(data, sizeof(gchar), len, fp);
1974 if (len != bytes_written)
1976 save_errno = errno;
1978 g_set_error(&error,
1979 G_FILE_ERROR,
1980 g_file_error_from_errno(save_errno),
1981 _("Failed to write file '%s': fwrite() failed: %s"),
1982 display_name,
1983 g_strerror(save_errno));
1986 errno = 0;
1987 /* preserve the fwrite() error if any */
1988 if (fclose(fp) != 0 && error == NULL)
1990 save_errno = errno;
1992 g_set_error(&error,
1993 G_FILE_ERROR,
1994 g_file_error_from_errno(save_errno),
1995 _("Failed to close file '%s': fclose() failed: %s"),
1996 display_name,
1997 g_strerror(save_errno));
2001 g_free(display_name);
2003 if (error != NULL)
2005 gchar *msg = g_strdup(error->message);
2006 g_error_free(error);
2007 /* geany will warn about file truncation for unsafe saving below */
2008 return msg;
2010 return NULL;
2014 static gchar *save_doc(GeanyDocument *doc, const gchar *locale_filename,
2015 const gchar *data, gsize len)
2017 gchar *err;
2019 g_return_val_if_fail(doc != NULL, g_strdup(g_strerror(EINVAL)));
2020 g_return_val_if_fail(data != NULL, g_strdup(g_strerror(EINVAL)));
2022 err = write_data_to_disk(locale_filename, data, len);
2023 if (err)
2024 return err;
2026 /* now the file is on disk, set real_path */
2027 if (doc->real_path == NULL)
2029 doc->real_path = utils_get_real_path(locale_filename);
2030 doc->priv->is_remote = utils_is_remote_path(locale_filename);
2031 monitor_file_setup(doc);
2032 ui_add_recent_document(doc);
2034 return NULL;
2038 static gboolean save_file_handle_infobars(GeanyDocument *doc, gboolean force)
2040 GtkWidget *bar = NULL;
2042 document_show_tab(doc);
2044 if (doc->priv->info_bars[MSG_TYPE_RELOAD])
2046 if (!dialogs_show_question_full(NULL, _("_Overwrite"), GTK_STOCK_CANCEL,
2047 _("Overwrite?"),
2048 _("The file '%s' on the disk is more recent than the current buffer."),
2049 doc->file_name))
2050 return FALSE;
2051 bar = doc->priv->info_bars[MSG_TYPE_RELOAD];
2053 else if (doc->priv->info_bars[MSG_TYPE_RESAVE])
2055 if (!dialogs_show_question_full(NULL, GTK_STOCK_SAVE, GTK_STOCK_CANCEL,
2056 _("Try to resave the file?"),
2057 _("File \"%s\" was not found on disk!"),
2058 doc->file_name))
2059 return FALSE;
2060 bar = doc->priv->info_bars[MSG_TYPE_RESAVE];
2062 else
2064 g_assert_not_reached();
2065 return FALSE;
2067 gtk_info_bar_response(GTK_INFO_BAR(bar), RESPONSE_DOCUMENT_SAVE);
2068 return TRUE;
2073 * Saves the document.
2074 * Also shows the Save As dialog if necessary.
2075 * If the file is not modified, this function may do nothing unless @a force is set to @c TRUE.
2077 * Saving may include replacing tabs with spaces,
2078 * stripping trailing spaces and adding a final new line at the end of the file, depending
2079 * on user preferences. Then the @c "document-before-save" signal is emitted,
2080 * allowing plugins to modify the document before it is saved, and data is
2081 * actually written to disk.
2083 * On successful saving:
2084 * - GeanyDocument::real_path is set.
2085 * - The filetype is set again or auto-detected if it wasn't set yet.
2086 * - The @c "document-save" signal is emitted for plugins.
2088 * @warning You should ensure @c doc->file_name has an absolute path unless you want the
2089 * Save As dialog to be shown. A @c NULL value also shows the dialog. This behaviour was
2090 * added in Geany 1.22.
2092 * @param doc The document to save.
2093 * @param force Whether to save the file even if it is not modified.
2095 * @return @c TRUE if the file was saved or @c FALSE if the file could not or should not be saved.
2097 GEANY_API_SYMBOL
2098 gboolean document_save_file(GeanyDocument *doc, gboolean force)
2100 gchar *errmsg;
2101 gchar *data;
2102 gsize len;
2103 gchar *locale_filename;
2104 const GeanyFilePrefs *fp;
2106 g_return_val_if_fail(doc != NULL, FALSE);
2108 if (document_need_save_as(doc))
2110 /* ensure doc is the current tab before showing the dialog */
2111 document_show_tab(doc);
2112 return dialogs_show_save_as();
2115 if (!force && !doc->changed)
2116 return FALSE;
2117 if (doc->readonly)
2119 ui_set_statusbar(TRUE,
2120 _("Cannot save read-only document '%s'!"), DOC_FILENAME(doc));
2121 return FALSE;
2123 document_check_disk_status(doc, TRUE);
2124 if (doc->priv->protected)
2125 return save_file_handle_infobars(doc, force);
2127 fp = project_get_file_prefs();
2128 /* replaces tabs with spaces but only if the current file is not a Makefile */
2129 if (fp->replace_tabs && doc->file_type->id != GEANY_FILETYPES_MAKE)
2130 editor_replace_tabs(doc->editor, TRUE);
2131 /* strip trailing spaces */
2132 if (fp->strip_trailing_spaces)
2133 editor_strip_trailing_spaces(doc->editor, TRUE);
2134 /* ensure the file has a newline at the end */
2135 if (fp->final_new_line)
2136 editor_ensure_final_newline(doc->editor);
2137 /* ensure newlines are consistent */
2138 if (fp->ensure_convert_new_lines)
2139 sci_convert_eols(doc->editor->sci, sci_get_eol_mode(doc->editor->sci));
2141 /* notify plugins which may wish to modify the document before it's saved */
2142 g_signal_emit_by_name(geany_object, "document-before-save", doc);
2144 len = sci_get_length(doc->editor->sci) + 1;
2145 if (doc->has_bom && encodings_is_unicode_charset(doc->encoding))
2146 { /* always write a UTF-8 BOM because in this moment the text itself is still in UTF-8
2147 * encoding, it will be converted to doc->encoding below and this conversion
2148 * also changes the BOM */
2149 data = (gchar*) g_malloc(len + 3); /* 3 chars for BOM */
2150 data[0] = (gchar) 0xef;
2151 data[1] = (gchar) 0xbb;
2152 data[2] = (gchar) 0xbf;
2153 sci_get_text(doc->editor->sci, len, data + 3);
2154 len += 3;
2156 else
2158 data = (gchar*) g_malloc(len);
2159 sci_get_text(doc->editor->sci, len, data);
2162 /* save in original encoding, skip when it is already UTF-8 or has the encoding "None" */
2163 if (doc->encoding != NULL && ! utils_str_equal(doc->encoding, "UTF-8") &&
2164 ! utils_str_equal(doc->encoding, encodings[GEANY_ENCODING_NONE].charset))
2166 if (! save_convert_to_encoding(doc, &data, &len))
2168 g_free(data);
2169 return FALSE;
2172 else
2174 len = strlen(data);
2177 locale_filename = utils_get_locale_from_utf8(doc->file_name);
2179 /* ignore file changed notification when the file is written */
2180 doc->priv->file_disk_status = FILE_IGNORE;
2182 /* actually write the content of data to the file on disk */
2183 errmsg = save_doc(doc, locale_filename, data, len);
2184 g_free(data);
2186 if (errmsg != NULL)
2188 ui_set_statusbar(TRUE, _("Error saving file (%s)."), errmsg);
2190 if (!file_prefs.use_safe_file_saving)
2192 SETPTR(errmsg,
2193 g_strdup_printf(_("%s\n\nThe file on disk may now be truncated!"), errmsg));
2195 dialogs_show_msgbox_with_secondary(GTK_MESSAGE_ERROR, _("Error saving file."), errmsg);
2196 doc->priv->file_disk_status = FILE_OK;
2197 utils_beep();
2198 g_free(locale_filename);
2199 g_free(errmsg);
2200 return FALSE;
2203 /* store the opened encoding for undo/redo */
2204 store_saved_encoding(doc);
2206 /* ignore the following things if we are quitting */
2207 if (! main_status.quitting)
2209 sci_set_savepoint(doc->editor->sci);
2211 if (file_prefs.disk_check_timeout > 0)
2212 document_update_timestamp(doc, locale_filename);
2214 /* update filetype-related things */
2215 document_set_filetype(doc, doc->file_type);
2217 document_update_tab_label(doc);
2219 msgwin_status_add(_("File %s saved."), doc->file_name);
2220 ui_update_statusbar(doc, -1);
2221 #ifdef HAVE_VTE
2222 vte_cwd((doc->real_path != NULL) ? doc->real_path : doc->file_name, FALSE);
2223 #endif
2225 g_free(locale_filename);
2227 g_signal_emit_by_name(geany_object, "document-save", doc);
2229 return TRUE;
2233 /* special search function, used from the find entry in the toolbar
2234 * return TRUE if text was found otherwise FALSE
2235 * return also TRUE if text is empty */
2236 gboolean document_search_bar_find(GeanyDocument *doc, const gchar *text, gboolean inc,
2237 gboolean backwards)
2239 gint start_pos, search_pos;
2240 struct Sci_TextToFind ttf;
2242 g_return_val_if_fail(text != NULL, FALSE);
2243 g_return_val_if_fail(doc != NULL, FALSE);
2244 if (! *text)
2245 return TRUE;
2247 start_pos = (inc || backwards) ? sci_get_selection_start(doc->editor->sci) :
2248 sci_get_selection_end(doc->editor->sci); /* equal if no selection */
2250 /* search cursor to end or start */
2251 ttf.chrg.cpMin = start_pos;
2252 ttf.chrg.cpMax = backwards ? 0 : sci_get_length(doc->editor->sci);
2253 ttf.lpstrText = (gchar *)text;
2254 search_pos = sci_find_text(doc->editor->sci, 0, &ttf);
2256 /* if no match, search start (or end) to cursor */
2257 if (search_pos == -1)
2259 if (backwards)
2261 ttf.chrg.cpMin = sci_get_length(doc->editor->sci);
2262 ttf.chrg.cpMax = start_pos;
2264 else
2266 ttf.chrg.cpMin = 0;
2267 ttf.chrg.cpMax = start_pos + strlen(text);
2269 search_pos = sci_find_text(doc->editor->sci, 0, &ttf);
2272 if (search_pos != -1)
2274 gint line = sci_get_line_from_position(doc->editor->sci, ttf.chrgText.cpMin);
2276 /* unfold maybe folded results */
2277 sci_ensure_line_is_visible(doc->editor->sci, line);
2279 sci_set_selection_start(doc->editor->sci, ttf.chrgText.cpMin);
2280 sci_set_selection_end(doc->editor->sci, ttf.chrgText.cpMax);
2282 if (! editor_line_in_view(doc->editor, line))
2283 { /* we need to force scrolling in case the cursor is outside of the current visible area
2284 * GeanyDocument::scroll_percent doesn't work because sci isn't always updated
2285 * while searching */
2286 editor_scroll_to_line(doc->editor, -1, 0.3F);
2288 else
2289 sci_scroll_caret(doc->editor->sci); /* may need horizontal scrolling */
2290 return TRUE;
2292 else
2294 if (! inc)
2296 ui_set_statusbar(FALSE, _("\"%s\" was not found."), text);
2298 utils_beep();
2299 sci_goto_pos(doc->editor->sci, start_pos, FALSE); /* clear selection */
2300 return FALSE;
2305 /* General search function, used from the find dialog.
2306 * Returns -1 on failure or the start position of the matching text.
2307 * Will skip past any selection, ignoring it.
2309 * @param text Text to find.
2310 * @param original_text Text as it was entered by user, or @c NULL to use @c text
2312 gint document_find_text(GeanyDocument *doc, const gchar *text, const gchar *original_text,
2313 GeanyFindFlags flags, gboolean search_backwards, GeanyMatchInfo **match_,
2314 gboolean scroll, GtkWidget *parent)
2316 gint selection_end, selection_start, search_pos;
2318 g_return_val_if_fail(doc != NULL && text != NULL, -1);
2319 if (! *text)
2320 return -1;
2322 /* Sci doesn't support searching backwards with a regex */
2323 if (flags & GEANY_FIND_REGEXP)
2324 search_backwards = FALSE;
2326 if (!original_text)
2327 original_text = text;
2329 selection_start = sci_get_selection_start(doc->editor->sci);
2330 selection_end = sci_get_selection_end(doc->editor->sci);
2331 if ((selection_end - selection_start) > 0)
2332 { /* there's a selection so go to the end */
2333 if (search_backwards)
2334 sci_goto_pos(doc->editor->sci, selection_start, TRUE);
2335 else
2336 sci_goto_pos(doc->editor->sci, selection_end, TRUE);
2339 sci_set_search_anchor(doc->editor->sci);
2340 if (search_backwards)
2341 search_pos = search_find_prev(doc->editor->sci, text, flags, match_);
2342 else
2343 search_pos = search_find_next(doc->editor->sci, text, flags, match_);
2345 if (search_pos != -1)
2347 /* unfold maybe folded results */
2348 sci_ensure_line_is_visible(doc->editor->sci,
2349 sci_get_line_from_position(doc->editor->sci, search_pos));
2350 if (scroll)
2351 doc->editor->scroll_percent = 0.3F;
2353 else
2355 gint sci_len = sci_get_length(doc->editor->sci);
2357 /* if we just searched the whole text, give up searching. */
2358 if ((selection_end == 0 && ! search_backwards) ||
2359 (selection_end == sci_len && search_backwards))
2361 ui_set_statusbar(FALSE, _("\"%s\" was not found."), original_text);
2362 utils_beep();
2363 return -1;
2366 /* we searched only part of the document, so ask whether to wraparound. */
2367 if (search_prefs.always_wrap ||
2368 dialogs_show_question_full(parent, GTK_STOCK_FIND, GTK_STOCK_CANCEL,
2369 _("Wrap search and find again?"), _("\"%s\" was not found."), original_text))
2371 gint ret;
2373 sci_set_current_position(doc->editor->sci, (search_backwards) ? sci_len : 0, FALSE);
2374 ret = document_find_text(doc, text, original_text, flags, search_backwards, match_, scroll, parent);
2375 if (ret == -1)
2376 { /* return to original cursor position if not found */
2377 sci_set_current_position(doc->editor->sci, selection_start, FALSE);
2379 return ret;
2382 return search_pos;
2386 /* Replaces the selection if it matches, otherwise just finds the next match.
2387 * Returns: start of replaced text, or -1 if no replacement was made
2389 * @param find_text Text to find.
2390 * @param original_find_text Text to find as it was entered by user, or @c NULL to use @c find_text
2392 gint document_replace_text(GeanyDocument *doc, const gchar *find_text, const gchar *original_find_text,
2393 const gchar *replace_text, GeanyFindFlags flags, gboolean search_backwards)
2395 gint selection_end, selection_start, search_pos;
2396 GeanyMatchInfo *match = NULL;
2398 g_return_val_if_fail(doc != NULL && find_text != NULL && replace_text != NULL, -1);
2400 if (! *find_text)
2401 return -1;
2403 /* Sci doesn't support searching backwards with a regex */
2404 if (flags & GEANY_FIND_REGEXP)
2405 search_backwards = FALSE;
2407 if (!original_find_text)
2408 original_find_text = find_text;
2410 selection_start = sci_get_selection_start(doc->editor->sci);
2411 selection_end = sci_get_selection_end(doc->editor->sci);
2412 if (selection_end == selection_start)
2414 /* no selection so just find the next match */
2415 document_find_text(doc, find_text, original_find_text, flags, search_backwards, NULL, TRUE, NULL);
2416 return -1;
2418 /* there's a selection so go to the start before finding to search through it
2419 * this ensures there is a match */
2420 if (search_backwards)
2421 sci_goto_pos(doc->editor->sci, selection_end, TRUE);
2422 else
2423 sci_goto_pos(doc->editor->sci, selection_start, TRUE);
2425 search_pos = document_find_text(doc, find_text, original_find_text, flags, search_backwards, &match, TRUE, NULL);
2426 /* return if the original selected text did not match (at the start of the selection) */
2427 if (search_pos != selection_start)
2429 if (search_pos != -1)
2430 geany_match_info_free(match);
2431 return -1;
2434 if (search_pos != -1)
2436 gint replace_len = search_replace_match(doc->editor->sci, match, replace_text);
2437 /* select the replacement - find text will skip past the selected text */
2438 sci_set_selection_start(doc->editor->sci, search_pos);
2439 sci_set_selection_end(doc->editor->sci, search_pos + replace_len);
2440 geany_match_info_free(match);
2442 else
2444 /* no match in the selection */
2445 utils_beep();
2447 return search_pos;
2451 static void show_replace_summary(GeanyDocument *doc, gint count, const gchar *original_find_text,
2452 const gchar *original_replace_text)
2454 gchar *filename;
2456 if (count == 0)
2458 ui_set_statusbar(FALSE, _("No matches found for \"%s\"."), original_find_text);
2459 return;
2462 filename = g_path_get_basename(DOC_FILENAME(doc));
2463 ui_set_statusbar(TRUE, ngettext(
2464 "%s: replaced %d occurrence of \"%s\" with \"%s\".",
2465 "%s: replaced %d occurrences of \"%s\" with \"%s\".",
2466 count), filename, count, original_find_text, original_replace_text);
2467 g_free(filename);
2471 /* Replace all text matches in a certain range within document.
2472 * If not NULL, *new_range_end is set to the new range endpoint after replacing,
2473 * or -1 if no text was found.
2474 * scroll_to_match is whether to scroll the last replacement in view (which also
2475 * clears the selection).
2476 * Returns: the number of replacements made. */
2477 static guint
2478 document_replace_range(GeanyDocument *doc, const gchar *find_text, const gchar *replace_text,
2479 GeanyFindFlags flags, gint start, gint end, gboolean scroll_to_match, gint *new_range_end)
2481 gint count = 0;
2482 struct Sci_TextToFind ttf;
2483 ScintillaObject *sci;
2485 if (new_range_end != NULL)
2486 *new_range_end = -1;
2488 g_return_val_if_fail(doc != NULL && find_text != NULL && replace_text != NULL, 0);
2490 if (! *find_text || doc->readonly)
2491 return 0;
2493 sci = doc->editor->sci;
2495 ttf.chrg.cpMin = start;
2496 ttf.chrg.cpMax = end;
2497 ttf.lpstrText = (gchar*)find_text;
2499 sci_start_undo_action(sci);
2500 count = search_replace_range(sci, &ttf, flags, replace_text);
2501 sci_end_undo_action(sci);
2503 if (count > 0)
2504 { /* scroll last match in view, will destroy the existing selection */
2505 if (scroll_to_match)
2506 sci_goto_pos(sci, ttf.chrg.cpMin, TRUE);
2508 if (new_range_end != NULL)
2509 *new_range_end = ttf.chrg.cpMax;
2511 return count;
2515 void document_replace_sel(GeanyDocument *doc, const gchar *find_text, const gchar *replace_text,
2516 const gchar *original_find_text, const gchar *original_replace_text, GeanyFindFlags flags)
2518 gint selection_end, selection_start, selection_mode, selected_lines, last_line = 0;
2519 gint max_column = 0, count = 0;
2520 gboolean replaced = FALSE;
2522 g_return_if_fail(doc != NULL && find_text != NULL && replace_text != NULL);
2524 if (! *find_text)
2525 return;
2527 selection_start = sci_get_selection_start(doc->editor->sci);
2528 selection_end = sci_get_selection_end(doc->editor->sci);
2529 /* do we have a selection? */
2530 if ((selection_end - selection_start) == 0)
2532 utils_beep();
2533 return;
2536 selection_mode = sci_get_selection_mode(doc->editor->sci);
2537 selected_lines = sci_get_lines_selected(doc->editor->sci);
2538 /* handle rectangle, multi line selections (it doesn't matter on a single line) */
2539 if (selection_mode == SC_SEL_RECTANGLE && selected_lines > 1)
2541 gint first_line, line;
2543 sci_start_undo_action(doc->editor->sci);
2545 first_line = sci_get_line_from_position(doc->editor->sci, selection_start);
2546 /* Find the last line with chars selected (not EOL char) */
2547 last_line = sci_get_line_from_position(doc->editor->sci,
2548 selection_end - editor_get_eol_char_len(doc->editor));
2549 last_line = MAX(first_line, last_line);
2550 for (line = first_line; line < (first_line + selected_lines); line++)
2552 gint line_start = sci_get_pos_at_line_sel_start(doc->editor->sci, line);
2553 gint line_end = sci_get_pos_at_line_sel_end(doc->editor->sci, line);
2555 /* skip line if there is no selection */
2556 if (line_start != INVALID_POSITION)
2558 /* don't let document_replace_range() scroll to match to keep our selection */
2559 gint new_sel_end;
2561 count += document_replace_range(doc, find_text, replace_text, flags,
2562 line_start, line_end, FALSE, &new_sel_end);
2563 if (new_sel_end != -1)
2565 replaced = TRUE;
2566 /* this gets the greatest column within the selection after replacing */
2567 max_column = MAX(max_column,
2568 new_sel_end - sci_get_position_from_line(doc->editor->sci, line));
2572 sci_end_undo_action(doc->editor->sci);
2574 else /* handle normal line selection */
2576 count += document_replace_range(doc, find_text, replace_text, flags,
2577 selection_start, selection_end, TRUE, &selection_end);
2578 if (selection_end != -1)
2579 replaced = TRUE;
2582 if (replaced)
2583 { /* update the selection for the new endpoint */
2585 if (selection_mode == SC_SEL_RECTANGLE && selected_lines > 1)
2587 /* now we can scroll to the selection and destroy it because we rebuild it later */
2588 /*sci_goto_pos(doc->editor->sci, selection_start, FALSE);*/
2590 /* Note: the selection will be wrapped to last_line + 1 if max_column is greater than
2591 * the highest column on the last line. The wrapped selection is completely different
2592 * from the original one, so skip the selection at all */
2593 /* TODO is there a better way to handle the wrapped selection? */
2594 if ((sci_get_line_length(doc->editor->sci, last_line) - 1) >= max_column)
2595 { /* for keeping and adjusting the selection in multi line rectangle selection we
2596 * need the last line of the original selection and the greatest column number after
2597 * replacing and set the selection end to the last line at the greatest column */
2598 sci_set_selection_start(doc->editor->sci, selection_start);
2599 sci_set_selection_end(doc->editor->sci,
2600 sci_get_position_from_line(doc->editor->sci, last_line) + max_column);
2601 sci_set_selection_mode(doc->editor->sci, selection_mode);
2604 else
2606 sci_set_selection_start(doc->editor->sci, selection_start);
2607 sci_set_selection_end(doc->editor->sci, selection_end);
2610 else /* no replacements */
2611 utils_beep();
2613 show_replace_summary(doc, count, original_find_text, original_replace_text);
2617 /* returns number of replacements made. */
2618 gint document_replace_all(GeanyDocument *doc, const gchar *find_text, const gchar *replace_text,
2619 const gchar *original_find_text, const gchar *original_replace_text, GeanyFindFlags flags)
2621 gint len, count;
2622 g_return_val_if_fail(doc != NULL && find_text != NULL && replace_text != NULL, FALSE);
2624 if (! *find_text)
2625 return FALSE;
2627 len = sci_get_length(doc->editor->sci);
2628 count = document_replace_range(
2629 doc, find_text, replace_text, flags, 0, len, TRUE, NULL);
2631 show_replace_summary(doc, count, original_find_text, original_replace_text);
2632 return count;
2637 * Parses or re-parses the document's buffer and updates the type
2638 * keywords and symbol list.
2640 * @param doc The document.
2642 void document_update_tags(GeanyDocument *doc)
2644 guchar *buffer_ptr;
2645 gsize len;
2647 g_return_if_fail(DOC_VALID(doc));
2648 g_return_if_fail(app->tm_workspace != NULL);
2650 /* early out if it's a new file or doesn't support tags */
2651 if (! doc->file_name || ! doc->file_type || !filetype_has_tags(doc->file_type))
2653 /* We must call sidebar_update_tag_list() before returning,
2654 * to ensure that the symbol list is always updated properly (e.g.
2655 * when creating a new document with a partial filename set. */
2656 sidebar_update_tag_list(doc, FALSE);
2657 return;
2660 /* create a new TM file if there isn't one yet */
2661 if (! doc->tm_file)
2663 gchar *locale_filename = utils_get_locale_from_utf8(doc->file_name);
2664 const gchar *name;
2666 /* lookup the name rather than using filetype name to support custom filetypes */
2667 name = tm_source_file_get_lang_name(doc->file_type->lang);
2668 doc->tm_file = tm_source_file_new(locale_filename, name);
2669 g_free(locale_filename);
2671 if (doc->tm_file)
2672 tm_workspace_add_source_file_noupdate(doc->tm_file);
2675 /* early out if there's no tm source file and we couldn't create one */
2676 if (doc->tm_file == NULL)
2678 /* We must call sidebar_update_tag_list() before returning,
2679 * to ensure that the symbol list is always updated properly (e.g.
2680 * when creating a new document with a partial filename set. */
2681 sidebar_update_tag_list(doc, FALSE);
2682 return;
2685 /* Parse Scintilla's buffer directly using TagManager
2686 * Note: this buffer *MUST NOT* be modified */
2687 len = sci_get_length(doc->editor->sci);
2688 buffer_ptr = (guchar *) SSM(doc->editor->sci, SCI_GETCHARACTERPOINTER, 0, 0);
2689 tm_workspace_update_source_file_buffer(doc->tm_file, buffer_ptr, len);
2691 sidebar_update_tag_list(doc, TRUE);
2692 document_highlight_tags(doc);
2696 /* Re-highlights type keywords without re-parsing the whole document. */
2697 void document_highlight_tags(GeanyDocument *doc)
2699 GString *keywords_str;
2700 gint keyword_idx;
2702 /* some filetypes support type keywords (such as struct names), but not
2703 * necessarily all filetypes for a particular scintilla lexer. this
2704 * tells us whether the filetype supports keywords, and if so
2705 * which index to use for the scintilla keywords set. */
2706 switch (doc->file_type->id)
2708 case GEANY_FILETYPES_C:
2709 case GEANY_FILETYPES_CPP:
2710 case GEANY_FILETYPES_CS:
2711 case GEANY_FILETYPES_D:
2712 case GEANY_FILETYPES_JAVA:
2713 case GEANY_FILETYPES_OBJECTIVEC:
2714 case GEANY_FILETYPES_VALA:
2715 case GEANY_FILETYPES_RUST:
2716 case GEANY_FILETYPES_GO:
2719 /* index of the keyword set in the Scintilla lexer, for
2720 * example in LexCPP.cxx, see "cppWordLists" global array.
2721 * TODO: this magic number should be a member of the filetype */
2722 keyword_idx = 3;
2723 break;
2725 default:
2726 return; /* early out if type keywords are not supported */
2728 if (!app->tm_workspace->tags_array)
2729 return;
2731 /* get any type keywords and tell scintilla about them
2732 * this will cause the type keywords to be colourized in scintilla */
2733 keywords_str = symbols_find_typenames_as_string(doc->file_type->lang, FALSE);
2734 if (keywords_str)
2736 gchar *keywords = g_string_free(keywords_str, FALSE);
2737 guint hash = g_str_hash(keywords);
2739 if (hash != doc->priv->keyword_hash)
2741 sci_set_keywords(doc->editor->sci, keyword_idx, keywords);
2742 queue_colourise(doc); /* force re-highlighting the entire document */
2743 doc->priv->keyword_hash = hash;
2745 g_free(keywords);
2750 static gboolean on_document_update_tag_list_idle(gpointer data)
2752 GeanyDocument *doc = data;
2754 if (! DOC_VALID(doc))
2755 return FALSE;
2757 if (! main_status.quitting)
2758 document_update_tags(doc);
2760 doc->priv->tag_list_update_source = 0;
2762 /* don't update the tags until another modification of the buffer */
2763 return FALSE;
2767 void document_update_tag_list_in_idle(GeanyDocument *doc)
2769 if (editor_prefs.autocompletion_update_freq <= 0 || ! filetype_has_tags(doc->file_type))
2770 return;
2772 /* prevent "stacking up" callback handlers, we only need one to run soon */
2773 if (doc->priv->tag_list_update_source != 0)
2774 g_source_remove(doc->priv->tag_list_update_source);
2776 doc->priv->tag_list_update_source = g_timeout_add_full(G_PRIORITY_LOW,
2777 editor_prefs.autocompletion_update_freq, on_document_update_tag_list_idle, doc, NULL);
2781 static void document_load_config(GeanyDocument *doc, GeanyFiletype *type,
2782 gboolean filetype_changed)
2784 g_return_if_fail(doc);
2785 if (type == NULL)
2786 type = filetypes[GEANY_FILETYPES_NONE];
2788 if (filetype_changed)
2790 doc->file_type = type;
2792 /* delete tm file object to force creation of a new one */
2793 if (doc->tm_file != NULL)
2795 tm_workspace_remove_source_file(doc->tm_file);
2796 tm_source_file_free(doc->tm_file);
2797 doc->tm_file = NULL;
2799 /* load tags files before highlighting (some lexers highlight global typenames) */
2800 if (type->id != GEANY_FILETYPES_NONE)
2801 symbols_global_tags_loaded(type->id);
2803 highlighting_set_styles(doc->editor->sci, type);
2804 editor_set_indentation_guides(doc->editor);
2805 build_menu_update(doc);
2806 queue_colourise(doc);
2807 /* forces re-setting SCI_SETKEYWORDS which seems to be needed with
2808 * Scintilla 5 to colorize them properly */
2809 doc->priv->keyword_hash = 0;
2810 if (type->priv->symbol_list_sort_mode == SYMBOLS_SORT_USE_PREVIOUS)
2811 doc->priv->symbol_list_sort_mode = interface_prefs.symbols_sort_mode;
2812 else
2813 doc->priv->symbol_list_sort_mode = type->priv->symbol_list_sort_mode;
2816 document_update_tags(doc);
2820 /** Sets the filetype of the document (which controls syntax highlighting and tags)
2821 * @param doc The document to use.
2822 * @param type The filetype. */
2823 GEANY_API_SYMBOL
2824 void document_set_filetype(GeanyDocument *doc, GeanyFiletype *type)
2826 gboolean ft_changed;
2827 GeanyFiletype *old_ft;
2829 g_return_if_fail(doc);
2830 if (type == NULL)
2831 type = filetypes[GEANY_FILETYPES_NONE];
2833 old_ft = doc->file_type;
2834 geany_debug("%s : %s (%s)",
2835 (doc->file_name != NULL) ? doc->file_name : "unknown",
2836 type->name,
2837 (doc->encoding != NULL) ? doc->encoding : "unknown");
2839 ft_changed = (doc->file_type != type); /* filetype has changed */
2840 document_load_config(doc, type, ft_changed);
2842 if (ft_changed)
2844 const GeanyIndentPrefs *iprefs = editor_get_indent_prefs(NULL);
2846 /* assume that if previous filetype was none and the settings are the default ones, this
2847 * is the first time the filetype is carefully set, so we should apply indent settings */
2848 if ((! old_ft || old_ft->id == GEANY_FILETYPES_NONE) &&
2849 doc->editor->indent_type == iprefs->type &&
2850 doc->editor->indent_width == iprefs->width)
2852 document_apply_indent_settings(doc);
2853 ui_document_show_hide(doc);
2856 sidebar_openfiles_update(doc); /* to update the icon */
2857 g_signal_emit_by_name(geany_object, "document-filetype-set", doc, old_ft);
2862 void document_reload_config(GeanyDocument *doc)
2864 document_load_config(doc, doc->file_type, TRUE);
2869 * Sets the encoding of a document.
2870 * This function only set the encoding of the %document, it does not any conversions. The new
2871 * encoding is used when e.g. saving the file.
2873 * @param doc The document to use.
2874 * @param new_encoding The encoding to be set for the document.
2876 GEANY_API_SYMBOL
2877 void document_set_encoding(GeanyDocument *doc, const gchar *new_encoding)
2879 if (doc == NULL || new_encoding == NULL ||
2880 utils_str_equal(new_encoding, doc->encoding))
2881 return;
2883 g_free(doc->encoding);
2884 doc->encoding = g_strdup(new_encoding);
2886 ui_update_statusbar(doc, -1);
2887 gtk_widget_set_sensitive(ui_lookup_widget(main_widgets.window, "menu_write_unicode_bom1"),
2888 encodings_is_unicode_charset(doc->encoding));
2892 /* own Undo / Redo implementation to be able to undo / redo changes
2893 * to the encoding or the Unicode BOM (which are Scintilla independet).
2894 * All Scintilla events are stored in the undo / redo buffer and are passed through. */
2896 /* Clears an Undo or Redo buffer. */
2897 void document_undo_clear_stack(GTrashStack **stack)
2899 while (g_trash_stack_height(stack) > 0)
2901 undo_action *a = g_trash_stack_pop(stack);
2903 if (G_LIKELY(a != NULL))
2905 switch (a->type)
2907 case UNDO_ENCODING:
2908 case UNDO_RELOAD:
2909 g_free(a->data); break;
2910 default: break;
2912 g_free(a);
2915 *stack = NULL;
2918 /* Clears the Undo and Redo buffer (to be called when reloading or closing the document) */
2919 void document_undo_clear(GeanyDocument *doc)
2921 document_undo_clear_stack(&doc->priv->undo_actions);
2922 document_undo_clear_stack(&doc->priv->redo_actions);
2924 if (! main_status.quitting && doc->editor != NULL)
2925 document_set_text_changed(doc, FALSE);
2929 /* Adds an undo action without clearing the redo stack. This function should
2930 * not be called directly, generally (use document_undo_add() instead), but is
2931 * used by document_redo() in order not to erase the redo stack while moving
2932 * an action from the redo stack to the undo stack. */
2933 void document_undo_add_internal(GeanyDocument *doc, guint type, gpointer data)
2935 undo_action *action;
2937 g_return_if_fail(doc != NULL);
2939 action = g_new0(undo_action, 1);
2940 action->type = type;
2941 action->data = data;
2943 g_trash_stack_push(&doc->priv->undo_actions, action);
2945 /* avoid unnecessary redraws */
2946 if (type != UNDO_SCINTILLA || !doc->changed)
2947 document_set_text_changed(doc, TRUE);
2949 ui_update_popup_reundo_items(doc);
2952 /* note: this is called on SCN_MODIFIED notifications */
2953 void document_undo_add(GeanyDocument *doc, guint type, gpointer data)
2955 /* Clear the redo actions stack before adding the undo action. */
2956 document_undo_clear_stack(&doc->priv->redo_actions);
2958 document_undo_add_internal(doc, type, data);
2962 gboolean document_can_undo(GeanyDocument *doc)
2964 g_return_val_if_fail(doc != NULL, FALSE);
2966 if (g_trash_stack_height(&doc->priv->undo_actions) > 0 || sci_can_undo(doc->editor->sci))
2967 return TRUE;
2968 else
2969 return FALSE;
2973 static void update_changed_state(GeanyDocument *doc)
2975 doc->changed =
2976 (sci_is_modified(doc->editor->sci) ||
2977 doc->has_bom != doc->priv->saved_encoding.has_bom ||
2978 ! utils_str_equal(doc->encoding, doc->priv->saved_encoding.encoding));
2979 document_set_text_changed(doc, doc->changed);
2983 void document_undo(GeanyDocument *doc)
2985 undo_action *action;
2987 g_return_if_fail(doc != NULL);
2989 action = g_trash_stack_pop(&doc->priv->undo_actions);
2991 if (G_UNLIKELY(action == NULL))
2993 /* fallback, should not be necessary */
2994 geany_debug("%s: fallback used", G_STRFUNC);
2995 sci_undo(doc->editor->sci);
2997 else
2999 switch (action->type)
3001 case UNDO_SCINTILLA:
3003 document_redo_add(doc, UNDO_SCINTILLA, NULL);
3005 sci_undo(doc->editor->sci);
3006 break;
3008 case UNDO_BOM:
3010 document_redo_add(doc, UNDO_BOM, GINT_TO_POINTER(doc->has_bom));
3012 doc->has_bom = GPOINTER_TO_INT(action->data);
3013 ui_update_statusbar(doc, -1);
3014 ui_document_show_hide(doc);
3015 break;
3017 case UNDO_ENCODING:
3019 /* use the "old" encoding */
3020 document_redo_add(doc, UNDO_ENCODING, g_strdup(doc->encoding));
3022 document_set_encoding(doc, (const gchar*)action->data);
3023 g_free(action->data);
3025 ui_update_statusbar(doc, -1);
3026 ui_document_show_hide(doc);
3027 break;
3029 case UNDO_EOL:
3031 undo_action *next_action;
3033 document_redo_add(doc, UNDO_EOL, GINT_TO_POINTER(sci_get_eol_mode(doc->editor->sci)));
3035 sci_set_eol_mode(doc->editor->sci, GPOINTER_TO_INT(action->data));
3037 ui_update_statusbar(doc, -1);
3038 ui_document_show_hide(doc);
3040 /* When undoing, UNDO_EOL is always followed by UNDO_SCINTILLA
3041 * which undos the line endings in the editor and should be
3042 * performed together with UNDO_EOL. */
3043 next_action = g_trash_stack_peek(&doc->priv->undo_actions);
3044 if (next_action && next_action->type == UNDO_SCINTILLA)
3045 document_undo(doc);
3046 break;
3048 case UNDO_RELOAD:
3050 UndoReloadData *data = (UndoReloadData*)action->data;
3051 gint eol_mode = data->eol_mode;
3052 guint i;
3054 /* We reuse 'data' for the redo action, so read the current EOL mode
3055 * into it before proceeding. */
3056 data->eol_mode = editor_get_eol_char_mode(doc->editor);
3058 /* Undo the rest of the actions which are part of the reloading process. */
3059 for (i = 0; i < data->actions_count; i++)
3060 document_undo(doc);
3062 /* Restore the previous EOL mode. */
3063 sci_set_eol_mode(doc->editor->sci, eol_mode);
3064 /* This might affect the status bar and document menu, so update them. */
3065 ui_update_statusbar(doc, -1);
3066 ui_document_show_hide(doc);
3068 document_redo_add(doc, UNDO_RELOAD, data);
3069 break;
3071 default: break;
3074 g_free(action); /* free the action which was taken from the stack */
3076 update_changed_state(doc);
3077 ui_update_popup_reundo_items(doc);
3081 gboolean document_can_redo(GeanyDocument *doc)
3083 g_return_val_if_fail(doc != NULL, FALSE);
3085 if (g_trash_stack_height(&doc->priv->redo_actions) > 0 || sci_can_redo(doc->editor->sci))
3086 return TRUE;
3087 else
3088 return FALSE;
3092 void document_redo(GeanyDocument *doc)
3094 undo_action *action;
3096 g_return_if_fail(doc != NULL);
3098 action = g_trash_stack_pop(&doc->priv->redo_actions);
3100 if (G_UNLIKELY(action == NULL))
3102 /* fallback, should not be necessary */
3103 geany_debug("%s: fallback used", G_STRFUNC);
3104 sci_redo(doc->editor->sci);
3106 else
3108 switch (action->type)
3110 case UNDO_SCINTILLA:
3112 undo_action *next_action;
3114 document_undo_add_internal(doc, UNDO_SCINTILLA, NULL);
3116 sci_redo(doc->editor->sci);
3118 /* When redoing an EOL change, the UNDO_SCINTILLA which changes
3119 * the line ends in the editor is followed by UNDO_EOL
3120 * which should be performed together with UNDO_SCINTILLA. */
3121 next_action = g_trash_stack_peek(&doc->priv->redo_actions);
3122 if (next_action != NULL && next_action->type == UNDO_EOL)
3123 document_redo(doc);
3124 break;
3126 case UNDO_BOM:
3128 document_undo_add_internal(doc, UNDO_BOM, GINT_TO_POINTER(doc->has_bom));
3130 doc->has_bom = GPOINTER_TO_INT(action->data);
3131 ui_update_statusbar(doc, -1);
3132 ui_document_show_hide(doc);
3133 break;
3135 case UNDO_ENCODING:
3137 document_undo_add_internal(doc, UNDO_ENCODING, g_strdup(doc->encoding));
3139 document_set_encoding(doc, (const gchar*)action->data);
3140 g_free(action->data);
3142 ui_update_statusbar(doc, -1);
3143 ui_document_show_hide(doc);
3144 break;
3146 case UNDO_EOL:
3148 document_undo_add_internal(doc, UNDO_EOL, GINT_TO_POINTER(sci_get_eol_mode(doc->editor->sci)));
3150 sci_set_eol_mode(doc->editor->sci, GPOINTER_TO_INT(action->data));
3152 ui_update_statusbar(doc, -1);
3153 ui_document_show_hide(doc);
3154 break;
3156 case UNDO_RELOAD:
3158 UndoReloadData *data = (UndoReloadData*)action->data;
3159 gint eol_mode = data->eol_mode;
3160 guint i;
3162 /* We reuse 'data' for the undo action, so read the current EOL mode
3163 * into it before proceeding. */
3164 data->eol_mode = editor_get_eol_char_mode(doc->editor);
3166 /* Redo the rest of the actions which are part of the reloading process. */
3167 for (i = 0; i < data->actions_count; i++)
3168 document_redo(doc);
3170 /* Restore the previous EOL mode. */
3171 sci_set_eol_mode(doc->editor->sci, eol_mode);
3172 /* This might affect the status bar and document menu, so update them. */
3173 ui_update_statusbar(doc, -1);
3174 ui_document_show_hide(doc);
3176 document_undo_add_internal(doc, UNDO_RELOAD, data);
3177 break;
3179 default: break;
3182 g_free(action); /* free the action which was taken from the stack */
3184 update_changed_state(doc);
3185 ui_update_popup_reundo_items(doc);
3189 static void document_redo_add(GeanyDocument *doc, guint type, gpointer data)
3191 undo_action *action;
3193 g_return_if_fail(doc != NULL);
3195 action = g_new0(undo_action, 1);
3196 action->type = type;
3197 action->data = data;
3199 g_trash_stack_push(&doc->priv->redo_actions, action);
3201 if (type != UNDO_SCINTILLA || !doc->changed)
3202 document_set_text_changed(doc, TRUE);
3204 ui_update_popup_reundo_items(doc);
3208 enum
3210 STATUS_CHANGED,
3211 STATUS_DISK_CHANGED,
3212 STATUS_READONLY
3215 static struct
3217 const gchar *name;
3218 GdkColor color;
3219 gboolean loaded;
3220 } document_status_styles[] = {
3221 { "geany-document-status-changed", {0}, FALSE },
3222 { "geany-document-status-disk-changed", {0}, FALSE },
3223 { "geany-document-status-readonly", {0}, FALSE }
3227 static gint document_get_status_id(GeanyDocument *doc)
3229 if (doc->changed)
3230 return STATUS_CHANGED;
3231 #ifdef USE_GIO_FILEMON
3232 else if (doc->priv->file_disk_status == FILE_CHANGED)
3233 #else
3234 else if (doc->priv->protected)
3235 #endif
3236 return STATUS_DISK_CHANGED;
3237 else if (doc->readonly)
3238 return STATUS_READONLY;
3240 return -1;
3244 /* returns an identifier that is to be set as a widget name or class to get it styled
3245 * depending on the document status (changed, readonly, etc.)
3246 * a NULL return value means default (unchanged) style */
3247 const gchar *document_get_status_widget_class(GeanyDocument *doc)
3249 gint status;
3251 g_return_val_if_fail(doc != NULL, NULL);
3253 status = document_get_status_id(doc);
3254 if (status < 0)
3255 return NULL;
3256 else
3257 return document_status_styles[status].name;
3262 * Gets the status color of the document, or @c NULL if default widget coloring should be used.
3263 * Returned colors are red if the document has changes, green if the document is read-only
3264 * or simply @c NULL if the document is unmodified but writable.
3266 * @param doc The document to use.
3268 * @return @nullable The color for the document or @c NULL if the default color should be used.
3269 * The color object is owned by Geany and should not be modified or freed.
3271 * @since 0.16
3273 GEANY_API_SYMBOL
3274 const GdkColor *document_get_status_color(GeanyDocument *doc)
3276 gint status;
3278 g_return_val_if_fail(doc != NULL, NULL);
3280 status = document_get_status_id(doc);
3281 if (status < 0)
3282 return NULL;
3283 if (! document_status_styles[status].loaded)
3285 GdkRGBA color;
3286 GtkWidgetPath *path = gtk_widget_path_new();
3287 GtkStyleContext *ctx = gtk_style_context_new();
3288 gtk_widget_path_append_type(path, GTK_TYPE_WINDOW);
3289 gtk_widget_path_append_type(path, GTK_TYPE_BOX);
3290 gtk_widget_path_append_type(path, GTK_TYPE_NOTEBOOK);
3291 gtk_widget_path_append_type(path, GTK_TYPE_LABEL);
3292 gtk_widget_path_iter_set_name(path, -1, document_status_styles[status].name);
3293 gtk_style_context_set_screen(ctx, gtk_widget_get_screen(GTK_WIDGET(doc->editor->sci)));
3294 gtk_style_context_set_path(ctx, path);
3295 gtk_style_context_get_color(ctx, gtk_style_context_get_state(ctx), &color);
3296 document_status_styles[status].color.red = 0xffff * color.red;
3297 document_status_styles[status].color.green = 0xffff * color.green;
3298 document_status_styles[status].color.blue = 0xffff * color.blue;
3299 document_status_styles[status].loaded = TRUE;
3300 gtk_widget_path_unref(path);
3301 g_object_unref(ctx);
3303 return &document_status_styles[status].color;
3307 /** Accessor function for @ref GeanyData::documents_array items.
3308 * @warning Always check the returned document is valid (@c doc->is_valid).
3309 * @param idx @c GeanyData::documents_array index.
3310 * @return @transfer{none} @nullable The document, or @c NULL if @a idx is out of range.
3312 * @since 0.16
3314 GEANY_API_SYMBOL
3315 GeanyDocument *document_index(gint idx)
3317 return (idx >= 0 && idx < (gint) documents_array->len) ? documents[idx] : NULL;
3321 GeanyDocument *document_clone(GeanyDocument *old_doc)
3323 gchar *text;
3324 GeanyDocument *doc;
3325 ScintillaObject *old_sci;
3327 g_return_val_if_fail(old_doc, NULL);
3328 old_sci = old_doc->editor->sci;
3329 if (sci_has_selection(old_sci))
3330 text = sci_get_selection_contents(old_sci);
3331 else
3332 text = sci_get_contents(old_sci, -1);
3334 doc = document_new_file(NULL, old_doc->file_type, text);
3335 g_free(text);
3336 document_set_text_changed(doc, TRUE);
3338 /* copy file properties */
3339 doc->editor->line_wrapping = old_doc->editor->line_wrapping;
3340 doc->editor->line_breaking = old_doc->editor->line_breaking;
3341 doc->editor->auto_indent = old_doc->editor->auto_indent;
3342 editor_set_indent(doc->editor, old_doc->editor->indent_type,
3343 old_doc->editor->indent_width);
3344 doc->readonly = old_doc->readonly;
3345 doc->has_bom = old_doc->has_bom;
3346 doc->priv->protected = 0;
3347 document_set_encoding(doc, old_doc->encoding);
3348 sci_set_lines_wrapped(doc->editor->sci, doc->editor->line_wrapping);
3349 sci_set_readonly(doc->editor->sci, doc->readonly);
3351 /* update ui */
3352 ui_document_show_hide(doc);
3353 return doc;
3357 /* @return TRUE if all files were saved or had their changes discarded. */
3358 gboolean document_account_for_unsaved(void)
3360 guint p, page_count;
3362 page_count = gtk_notebook_get_n_pages(GTK_NOTEBOOK(main_widgets.notebook));
3363 /* iterate over documents in tabs order */
3364 for (p = 0; p < page_count; p++)
3366 GeanyDocument *doc = document_get_from_page(p);
3368 if (DOC_VALID(doc) && doc->changed)
3370 if (! dialogs_show_unsaved_file(doc))
3371 return FALSE;
3375 return TRUE;
3379 static void force_close_all(void)
3381 guint i;
3383 main_status.closing_all = TRUE;
3385 foreach_document(i)
3387 document_close(documents[i]);
3390 main_status.closing_all = FALSE;
3394 gboolean document_close_all(void)
3396 if (! document_account_for_unsaved())
3397 return FALSE;
3399 force_close_all();
3401 return TRUE;
3405 /* *
3406 * Shows a message related to a document.
3408 * Use this whenever the user needs to see a document-related message,
3409 * for example when the file was externally modified or deleted.
3411 * Any of the buttons can be @c NULL. If not @c NULL, @a btn_1's
3412 * @a response_1 response will be the default for the @c GtkInfoBar or
3413 * @c GtkDialog.
3415 * @param doc @c GeanyDocument.
3416 * @param msgtype The type of message.
3417 * @param response_cb A callback function called when there's a response.
3418 * @param btn_1 The first action area button.
3419 * @param response_1 The response for @a btn_1.
3420 * @param btn_2 The second action area button.
3421 * @param response_2 The response for @a btn_2.
3422 * @param btn_3 The third action area button.
3423 * @param response_3 The response for @a btn_3.
3424 * @param extra_text Text to show below the main message.
3425 * @param format The text format for the main message.
3426 * @param ... Used with @a format as in @c printf.
3428 * @since 1.25
3429 * */
3430 static GtkWidget* document_show_message(GeanyDocument *doc, GtkMessageType msgtype,
3431 void (*response_cb)(GtkWidget *info_bar, gint response_id, GeanyDocument *doc),
3432 const gchar *btn_1, gint response_1,
3433 const gchar *btn_2, gint response_2,
3434 const gchar *btn_3, gint response_3,
3435 const gchar *extra_text, const gchar *format, ...)
3437 va_list args;
3438 gchar *text, *markup;
3439 GtkWidget *hbox, *icon, *label, *content_area;
3440 GtkWidget *info_widget, *parent;
3441 parent = document_get_notebook_child(doc);
3443 va_start(args, format);
3444 text = g_strdup_vprintf(format, args);
3445 va_end(args);
3447 markup = g_markup_printf_escaped("<span size=\"larger\">%s</span>", text);
3448 g_free(text);
3450 info_widget = gtk_info_bar_new();
3451 /* must be done now else Gtk-WARNING: widget not within a GtkWindow */
3452 gtk_box_pack_start(GTK_BOX(parent), info_widget, FALSE, TRUE, 0);
3454 gtk_info_bar_set_message_type(GTK_INFO_BAR(info_widget), msgtype);
3456 if (btn_1)
3457 gtk_info_bar_add_button(GTK_INFO_BAR(info_widget), btn_1, response_1);
3458 if (btn_2)
3459 gtk_info_bar_add_button(GTK_INFO_BAR(info_widget), btn_2, response_2);
3460 if (btn_3)
3461 gtk_info_bar_add_button(GTK_INFO_BAR(info_widget), btn_3, response_3);
3463 content_area = gtk_info_bar_get_content_area(GTK_INFO_BAR(info_widget));
3465 label = geany_wrap_label_new(NULL);
3466 gtk_label_set_markup(GTK_LABEL(label), markup);
3467 g_free(markup);
3469 g_signal_connect(info_widget, "response", G_CALLBACK(response_cb), doc);
3471 hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 12);
3472 gtk_box_pack_start(GTK_BOX(content_area), hbox, TRUE, TRUE, 0);
3474 switch (msgtype)
3476 case GTK_MESSAGE_INFO:
3477 icon = gtk_image_new_from_stock(GTK_STOCK_DIALOG_INFO, GTK_ICON_SIZE_DIALOG);
3478 break;
3479 case GTK_MESSAGE_WARNING:
3480 icon = gtk_image_new_from_stock(GTK_STOCK_DIALOG_WARNING, GTK_ICON_SIZE_DIALOG);
3481 break;
3482 case GTK_MESSAGE_QUESTION:
3483 icon = gtk_image_new_from_stock(GTK_STOCK_DIALOG_QUESTION, GTK_ICON_SIZE_DIALOG);
3484 break;
3485 case GTK_MESSAGE_ERROR:
3486 icon = gtk_image_new_from_stock(GTK_STOCK_DIALOG_ERROR, GTK_ICON_SIZE_DIALOG);
3487 break;
3488 default:
3489 icon = NULL;
3490 break;
3493 if (icon)
3494 gtk_box_pack_start(GTK_BOX(hbox), icon, FALSE, TRUE, 0);
3496 if (extra_text)
3498 GtkWidget *vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 6);
3499 GtkWidget *extra_label = geany_wrap_label_new(extra_text);
3501 gtk_box_pack_start(GTK_BOX(vbox), label, TRUE, TRUE, 0);
3502 gtk_box_pack_start(GTK_BOX(vbox), extra_label, TRUE, TRUE, 0);
3503 gtk_box_pack_start(GTK_BOX(hbox), vbox, TRUE, TRUE, 0);
3505 else
3506 gtk_box_pack_start(GTK_BOX(hbox), label, TRUE, TRUE, 0);
3508 gtk_box_reorder_child(GTK_BOX(parent), info_widget, 0);
3510 gtk_widget_show_all(info_widget);
3512 return info_widget;
3516 static void on_monitor_reload_file_response(GtkWidget *bar, gint response_id, GeanyDocument *doc)
3518 gboolean close = FALSE;
3520 // disable info bar so actions complete normally
3521 unprotect_document(doc);
3522 doc->priv->info_bars[MSG_TYPE_RELOAD] = NULL;
3524 if (response_id == RESPONSE_DOCUMENT_RELOAD)
3526 close = doc->changed ?
3527 document_reload_prompt(doc, doc->encoding) :
3528 document_reload_force(doc, doc->encoding);
3530 else if (response_id == RESPONSE_DOCUMENT_SAVE)
3532 close = document_save_file(doc, TRUE); // force overwrite
3534 else if (response_id == GTK_RESPONSE_CANCEL)
3536 document_set_text_changed(doc, TRUE);
3537 close = TRUE;
3539 if (!close)
3541 doc->priv->info_bars[MSG_TYPE_RELOAD] = bar;
3542 protect_document(doc);
3543 return;
3545 gtk_widget_destroy(bar);
3549 static gboolean on_sci_key(GtkWidget *widget, GdkEventKey *event, gpointer data)
3551 GtkInfoBar *bar = GTK_INFO_BAR(data);
3553 g_return_val_if_fail(event->type == GDK_KEY_PRESS, FALSE);
3555 switch (event->keyval)
3557 case GDK_KEY_Tab:
3558 case GDK_KEY_ISO_Left_Tab:
3560 GtkWidget *action_area = gtk_info_bar_get_action_area(bar);
3561 GtkDirectionType dir = event->keyval == GDK_KEY_Tab ? GTK_DIR_TAB_FORWARD : GTK_DIR_TAB_BACKWARD;
3562 gtk_widget_child_focus(action_area, dir);
3563 return TRUE;
3565 case GDK_KEY_Escape:
3567 gtk_info_bar_response(bar, GTK_RESPONSE_CANCEL);
3568 return TRUE;
3570 default:
3571 return FALSE;
3576 /* Sets up a signal handler to intercept some keys during the lifetime of the GtkInfoBar */
3577 static void enable_key_intercept(GeanyDocument *doc, GtkWidget *bar)
3579 /* automatically focus editor again on bar close */
3580 g_signal_connect_object(bar, "destroy", G_CALLBACK(gtk_widget_grab_focus), doc->editor->sci,
3581 G_CONNECT_SWAPPED);
3582 g_signal_connect_object(doc->editor->sci, "key-press-event", G_CALLBACK(on_sci_key), bar, 0);
3586 static gboolean monitor_reload_file_idle(gpointer data)
3588 GeanyDocument *doc = data;
3590 if (doc != document_get_current())
3591 return G_SOURCE_REMOVE;
3593 if (! doc->changed && file_prefs.reload_clean_doc_on_file_change)
3595 document_reload_force(doc, doc->encoding);
3596 return G_SOURCE_REMOVE;
3599 /* show this message only once */
3600 if (doc->priv->info_bars[MSG_TYPE_RELOAD] == NULL)
3602 gchar *base_name = g_path_get_basename(doc->file_name);
3603 GtkWidget *bar;
3605 bar = document_show_message(doc, GTK_MESSAGE_QUESTION, on_monitor_reload_file_response,
3606 _("_Reload"), RESPONSE_DOCUMENT_RELOAD,
3607 _("_Overwrite"), RESPONSE_DOCUMENT_SAVE,
3608 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
3609 _("Do you want to reload it?"),
3610 _("The file '%s' on the disk is more recent than the current buffer."),
3611 base_name);
3613 protect_document(doc);
3614 doc->priv->info_bars[MSG_TYPE_RELOAD] = bar;
3615 enable_key_intercept(doc, bar);
3616 g_free(base_name);
3619 return G_SOURCE_REMOVE;
3623 static void on_monitor_resave_missing_file_response(GtkWidget *bar,
3624 gint response_id,
3625 GeanyDocument *doc)
3627 gboolean close = TRUE;
3629 unprotect_document(doc);
3631 if (response_id == RESPONSE_DOCUMENT_SAVE)
3632 close = dialogs_show_save_as();
3634 if (close)
3636 doc->priv->info_bars[MSG_TYPE_RESAVE] = NULL;
3637 gtk_widget_destroy(bar);
3639 else
3641 /* protect back the document if save didn't occur */
3642 protect_document(doc);
3647 static gboolean monitor_resave_missing_file_idle(gpointer data)
3649 GeanyDocument *doc = data;
3651 if (doc != document_get_current())
3652 return G_SOURCE_REMOVE;
3654 if (doc->priv->info_bars[MSG_TYPE_RESAVE] == NULL)
3656 GtkWidget *bar = doc->priv->info_bars[MSG_TYPE_RELOAD];
3658 if (bar != NULL) /* the "file on disk is newer" warning is now moot */
3659 gtk_info_bar_response(GTK_INFO_BAR(bar), GTK_RESPONSE_CANCEL);
3661 bar = document_show_message(doc, GTK_MESSAGE_WARNING,
3662 on_monitor_resave_missing_file_response,
3663 GTK_STOCK_SAVE, RESPONSE_DOCUMENT_SAVE,
3664 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
3665 NULL, GTK_RESPONSE_NONE,
3666 _("Try to resave the file?"),
3667 _("File \"%s\" was not found on disk!"),
3668 doc->file_name);
3670 protect_document(doc);
3671 document_set_text_changed(doc, TRUE);
3672 /* don't prompt more than once */
3673 SETPTR(doc->real_path, NULL);
3674 doc->priv->info_bars[MSG_TYPE_RESAVE] = bar;
3675 enable_key_intercept(doc, bar);
3678 return G_SOURCE_REMOVE;
3682 /* Set force to force a disk check, otherwise it is ignored if there was a check
3683 * in the last file_prefs.disk_check_timeout seconds.
3684 * @return @c TRUE if the file has changed. */
3685 gboolean document_check_disk_status(GeanyDocument *doc, gboolean force)
3687 gboolean ret = FALSE;
3688 gboolean use_gio_filemon;
3689 time_t mtime = 0;
3690 gchar *locale_filename;
3691 FileDiskStatus old_status;
3693 g_return_val_if_fail(doc != NULL, FALSE);
3695 /* ignore remote files and documents that have never been saved to disk */
3696 if (notebook_switch_in_progress() || file_prefs.disk_check_timeout == 0
3697 || doc->real_path == NULL || doc->priv->is_remote)
3698 return FALSE;
3700 use_gio_filemon = (doc->priv->monitor != NULL);
3702 if (use_gio_filemon)
3704 if (doc->priv->file_disk_status != FILE_CHANGED && ! force)
3705 return FALSE;
3707 else
3709 time_t cur_time = time(NULL);
3711 if (! force && doc->priv->last_check > (cur_time - file_prefs.disk_check_timeout))
3712 return FALSE;
3714 doc->priv->last_check = cur_time;
3717 locale_filename = utils_get_locale_from_utf8(doc->file_name);
3718 if (!get_mtime(locale_filename, &mtime))
3720 /* document_check_disk_status() call may be a result of a mouse click
3721 * inside Scintilla by which Geany gains focus and showing the info bar
3722 * during the mouse click leads to text selection as Scintilla scrolls
3723 * because the infobar makes the Scintilla widget smaller. */
3724 g_idle_add(monitor_resave_missing_file_idle, doc);
3725 /* doc may be closed now */
3726 ret = TRUE;
3728 else if (doc->priv->mtime < mtime)
3730 /* make sure the user is not prompted again after he cancelled the "reload file?" message */
3731 doc->priv->mtime = mtime;
3732 /* see above for the idle call explanation */
3733 g_idle_add(monitor_reload_file_idle, doc);
3734 /* doc may be closed now */
3735 ret = TRUE;
3737 g_free(locale_filename);
3739 if (DOC_VALID(doc))
3740 { /* doc can get invalid when a document was closed */
3741 old_status = doc->priv->file_disk_status;
3742 doc->priv->file_disk_status = FILE_OK;
3743 if (old_status != doc->priv->file_disk_status)
3744 ui_update_tab_status(doc);
3746 return ret;
3750 /** Compares documents by their display names.
3751 * This matches @c GCompareFunc for use with e.g. @c g_ptr_array_sort().
3752 * @note 'Display name' means the base name of the document's filename.
3754 * @param a @c GeanyDocument**.
3755 * @param b @c GeanyDocument**.
3756 * @warning The arguments take the address of each document pointer.
3757 * @return Negative value if a < b; zero if a = b; positive value if a > b.
3759 * @since 0.21
3761 GEANY_API_SYMBOL
3762 gint document_compare_by_display_name(gconstpointer a, gconstpointer b)
3764 GeanyDocument *doc_a = *((GeanyDocument**) a);
3765 GeanyDocument *doc_b = *((GeanyDocument**) b);
3766 gchar *base_name_a, *base_name_b;
3767 gint result;
3769 base_name_a = g_path_get_basename(DOC_FILENAME(doc_a));
3770 base_name_b = g_path_get_basename(DOC_FILENAME(doc_b));
3772 result = strcmp(base_name_a, base_name_b);
3774 g_free(base_name_a);
3775 g_free(base_name_b);
3777 return result;
3781 /** Compares documents by their tab order.
3782 * This matches @c GCompareFunc for use with e.g. @c g_ptr_array_sort().
3784 * @param a @c GeanyDocument**.
3785 * @param b @c GeanyDocument**.
3786 * @warning The arguments take the address of each document pointer.
3787 * @return Negative value if a < b; zero if a = b; positive value if a > b.
3789 * @since 0.21 (GEANY_API_VERSION 209)
3791 GEANY_API_SYMBOL
3792 gint document_compare_by_tab_order(gconstpointer a, gconstpointer b)
3794 GeanyDocument *doc_a = *((GeanyDocument**) a);
3795 GeanyDocument *doc_b = *((GeanyDocument**) b);
3796 gint notebook_position_doc_a;
3797 gint notebook_position_doc_b;
3799 notebook_position_doc_a = document_get_notebook_page(doc_a);
3800 notebook_position_doc_b = document_get_notebook_page(doc_b);
3802 if (notebook_position_doc_a < notebook_position_doc_b)
3803 return -1;
3804 if (notebook_position_doc_a > notebook_position_doc_b)
3805 return 1;
3806 /* equality */
3807 return 0;
3811 /** Compares documents by their tab order, in reverse order.
3812 * This matches @c GCompareFunc for use with e.g. @c g_ptr_array_sort().
3814 * @param a @c GeanyDocument**.
3815 * @param b @c GeanyDocument**.
3816 * @warning The arguments take the address of each document pointer.
3817 * @return Negative value if a < b; zero if a = b; positive value if a > b.
3819 * @since 0.21 (GEANY_API_VERSION 209)
3821 GEANY_API_SYMBOL
3822 gint document_compare_by_tab_order_reverse(gconstpointer a, gconstpointer b)
3824 return -1 * document_compare_by_tab_order(a, b);
3828 void document_grab_focus(GeanyDocument *doc)
3830 g_return_if_fail(doc != NULL);
3832 gtk_widget_grab_focus(GTK_WIDGET(doc->editor->sci));
3835 static void *copy_(void *src) { return src; }
3836 static void free_(void *doc) { }
3838 /** @gironly
3839 * Gets the GType of GeanyDocument
3841 * @return the GeanyDocument type */
3842 GEANY_API_SYMBOL
3843 GType document_get_type (void);
3845 G_DEFINE_BOXED_TYPE(GeanyDocument, document, copy_, free_);
3848 gpointer document_get_data(const GeanyDocument *doc, const gchar *key)
3850 return g_datalist_get_data(&doc->priv->data, key);
3854 void document_set_data(GeanyDocument *doc, const gchar *key, gpointer data)
3856 g_datalist_set_data(&doc->priv->data, key, data);
3860 void document_set_data_full(GeanyDocument *doc, const gchar *key,
3861 gpointer data, GDestroyNotify free_func)
3863 g_datalist_set_data_full(&doc->priv->data, key, data, free_func);