Confirm whether to save protected documents
[geany-mirror.git] / src / document.c
blob21801c70b88ebf4670e8ee22c3164f2043e73bc5
1 /*
2 * document.c - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2005-2012 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5 * Copyright 2006-2012 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 * Document related actions: new, save, open, etc.
24 * Also Scintilla search actions.
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
31 #include "document.h"
33 #include "app.h"
34 #include "callbacks.h" /* for ignore_callback */
35 #include "dialogs.h"
36 #include "documentprivate.h"
37 #include "encodings.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 #include "gtkcompat.h"
59 #ifdef HAVE_SYS_TIME_H
60 # include <sys/time.h>
61 #endif
62 #include <time.h>
64 #include <unistd.h>
65 #include <string.h>
66 #include <errno.h>
68 #ifdef HAVE_SYS_TYPES_H
69 # include <sys/types.h>
70 #endif
72 #include <stdlib.h>
74 /* gstdio.h also includes sys/stat.h */
75 #include <glib/gstdio.h>
77 /* uncomment to use GIO based file monitoring, though it is not completely stable yet */
78 /*#define USE_GIO_FILEMON 1*/
79 #include <gio/gio.h>
81 #include <gdk/gdkkeysyms.h>
83 GeanyFilePrefs file_prefs;
86 /** Dynamic array of GeanyDocument pointers.
87 * Once a pointer is added to this, it is never freed. This means the same document pointer
88 * can represent a different document later on, or it may have been closed and become invalid.
89 * For this reason, you should use document_find_by_id() instead of storing
90 * document pointers over time if there is a chance the user can close the
91 * document.
93 * @warning You must check @c GeanyDocument::is_valid when iterating over this array.
94 * This is done automatically if you use the foreach_document() macro.
96 * @note
97 * Never assume that the order of document pointers is the same as the order of notebook tabs.
98 * One reason is that notebook tabs can be reordered.
99 * Use @c document_get_from_page() to lookup a document from a notebook tab number.
101 * @see documents. */
102 GPtrArray *documents_array = NULL;
105 /* an undo action, also used for redo actions */
106 typedef struct
108 GTrashStack *next; /* pointer to the next stack element(required for the GTrashStack) */
109 guint type; /* to identify the action */
110 gpointer *data; /* the old value (before the change), in case of a redo action
111 * it contains the new value */
112 } undo_action;
114 /* Custom document info bar response IDs */
115 enum
117 RESPONSE_DOCUMENT_RELOAD = 1,
118 RESPONSE_DOCUMENT_SAVE,
122 static guint doc_id_counter = 0;
125 static void document_undo_clear(GeanyDocument *doc);
126 static void document_redo_add(GeanyDocument *doc, guint type, gpointer data);
127 static gboolean remove_page(guint page_num);
128 static GtkWidget* document_show_message(GeanyDocument *doc, GtkMessageType msgtype,
129 void (*response_cb)(GtkWidget *info_bar, gint response_id, GeanyDocument *doc),
130 const gchar *btn_1, GtkResponseType response_1,
131 const gchar *btn_2, GtkResponseType response_2,
132 const gchar *btn_3, GtkResponseType response_3,
133 const gchar *extra_text, const gchar *format, ...) G_GNUC_PRINTF(11, 12);
137 * Finds a document whose @c real_path field matches the given filename.
139 * @param realname The filename to search, which should be identical to the
140 * string returned by @c tm_get_real_path().
142 * @return The matching document, or @c NULL.
143 * @note This is only really useful when passing a @c TMWorkObject::file_name.
144 * @see GeanyDocument::real_path.
145 * @see document_find_by_filename().
147 * @since 0.15
149 GeanyDocument* document_find_by_real_path(const gchar *realname)
151 guint i;
153 if (! realname)
154 return NULL; /* file doesn't exist on disk */
156 for (i = 0; i < documents_array->len; i++)
158 GeanyDocument *doc = documents[i];
160 if (! doc->is_valid || ! doc->real_path)
161 continue;
163 if (utils_filenamecmp(realname, doc->real_path) == 0)
165 return doc;
168 return NULL;
172 /* dereference symlinks, /../ junk in path and return locale encoding */
173 static gchar *get_real_path_from_utf8(const gchar *utf8_filename)
175 gchar *locale_name = utils_get_locale_from_utf8(utf8_filename);
176 gchar *realname = tm_get_real_path(locale_name);
178 g_free(locale_name);
179 return realname;
184 * Finds a document with the given filename.
185 * This matches either an exact GeanyDocument::file_name string, or variant
186 * filenames with relative elements in the path (e.g. @c "/dir/..//name" will
187 * match @c "/name").
189 * @param utf8_filename The filename to search (in UTF-8 encoding).
191 * @return The matching document, or @c NULL.
192 * @see document_find_by_real_path().
194 GeanyDocument *document_find_by_filename(const gchar *utf8_filename)
196 guint i;
197 GeanyDocument *doc;
198 gchar *realname;
200 g_return_val_if_fail(utf8_filename != NULL, NULL);
202 /* First search GeanyDocument::file_name, so we can find documents with a
203 * filename set but not saved on disk, like vcdiff produces */
204 for (i = 0; i < documents_array->len; i++)
206 doc = documents[i];
208 if (! doc->is_valid || doc->file_name == NULL)
209 continue;
211 if (utils_filenamecmp(utf8_filename, doc->file_name) == 0)
213 return doc;
216 /* Now try matching based on the realpath(), which is unique per file on disk */
217 realname = get_real_path_from_utf8(utf8_filename);
218 doc = document_find_by_real_path(realname);
219 g_free(realname);
220 return doc;
224 /* returns the document which has sci, or NULL. */
225 GeanyDocument *document_find_by_sci(ScintillaObject *sci)
227 guint i;
229 g_return_val_if_fail(sci != NULL, NULL);
231 for (i = 0; i < documents_array->len; i++)
233 if (documents[i]->is_valid && documents[i]->editor->sci == sci)
234 return documents[i];
236 return NULL;
240 /** Lookup an old document by its ID.
241 * Useful when the corresponding document may have been closed since the
242 * ID was retrieved.
243 * @param id The ID of the document to find
244 * @return @c NULL if the document is no longer open.
246 * Example:
247 * @code
248 * static guint id;
249 * GeanyDocument *doc = ...;
250 * id = doc->id; // store ID
251 * ...
252 * // time passes - the document may have been closed by now
253 * GeanyDocument *doc = document_find_by_id(id);
254 * gboolean still_open = (doc != NULL);
255 * @endcode
256 * @since 1.25. */
257 GeanyDocument *document_find_by_id(guint id)
259 guint i;
261 if (!id)
262 return NULL;
264 foreach_document(i)
266 if (documents[i]->id == id)
267 return documents[i];
269 return NULL;
273 /** Gets the notebook page index for a document.
274 * @param doc The document.
275 * @return The index.
276 * @since 0.19 */
277 gint document_get_notebook_page(GeanyDocument *doc)
279 GtkWidget *parent;
280 GtkWidget *child;
282 g_return_val_if_fail(doc != NULL, -1);
284 child = GTK_WIDGET(doc->editor->sci);
285 parent = gtk_widget_get_parent(child);
286 /* search for the direct notebook child, mirroring document_get_from_page() */
287 while (parent && ! GTK_IS_NOTEBOOK(parent))
289 child = parent;
290 parent = gtk_widget_get_parent(child);
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;
331 * Finds the document for the given notebook page @a page_num.
333 * @param page_num The notebook page number to search.
335 * @return The corresponding document for the given notebook page, or @c NULL.
337 GeanyDocument *document_get_from_page(guint page_num)
339 GtkWidget *parent;
340 ScintillaObject *sci;
342 if (page_num >= documents_array->len)
343 return NULL;
345 parent = gtk_notebook_get_nth_page(GTK_NOTEBOOK(main_widgets.notebook), page_num);
346 g_return_val_if_fail(GTK_IS_BOX(parent), NULL);
348 sci = locate_sci_in_container(parent);
349 g_return_val_if_fail(IS_SCINTILLA(sci), NULL);
351 return document_find_by_sci(sci);
356 * Finds the current document.
358 * @return A pointer to the current document or @c NULL if there are no opened documents.
360 GeanyDocument *document_get_current(void)
362 gint cur_page = gtk_notebook_get_current_page(GTK_NOTEBOOK(main_widgets.notebook));
364 if (cur_page == -1)
365 return NULL;
366 else
367 return document_get_from_page((guint) cur_page);
371 void document_init_doclist(void)
373 documents_array = g_ptr_array_new();
377 void document_finalize(void)
379 guint i;
381 for (i = 0; i < documents_array->len; i++)
382 g_free(documents[i]);
383 g_ptr_array_free(documents_array, TRUE);
388 * Returns the last part of the filename of the given GeanyDocument. The result is also
389 * truncated to a maximum of @a length characters in case the filename is very long.
391 * @param doc The document to use.
392 * @param length The length of the resulting string or -1 to use a default value.
394 * @return The ellipsized last part of the filename of @a doc, should be freed when no
395 * longer needed.
397 * @since 0.17
399 /* TODO make more use of this */
400 gchar *document_get_basename_for_display(GeanyDocument *doc, gint length)
402 gchar *base_name, *short_name;
404 g_return_val_if_fail(doc != NULL, NULL);
406 if (length < 0)
407 length = 30;
409 base_name = g_path_get_basename(DOC_FILENAME(doc));
410 short_name = utils_str_middle_truncate(base_name, (guint)length);
412 g_free(base_name);
414 return short_name;
418 void document_update_tab_label(GeanyDocument *doc)
420 gchar *short_name;
421 GtkWidget *parent;
423 g_return_if_fail(doc != NULL);
425 short_name = document_get_basename_for_display(doc, -1);
427 /* we need to use the event box for the tooltip, labels don't get the necessary events */
428 parent = gtk_widget_get_parent(doc->priv->tab_label);
429 parent = gtk_widget_get_parent(parent);
431 gtk_label_set_text(GTK_LABEL(doc->priv->tab_label), short_name);
433 gtk_widget_set_tooltip_text(parent, DOC_FILENAME(doc));
435 g_free(short_name);
440 * Updates the tab labels, the status bar, the window title and some save-sensitive buttons
441 * according to the document's save state.
442 * This is called by Geany mostly when opening or saving files.
444 * @param doc The document to use.
445 * @param changed Whether the document state should indicate changes have been made.
447 void document_set_text_changed(GeanyDocument *doc, gboolean changed)
449 g_return_if_fail(doc != NULL);
451 doc->changed = changed;
453 if (! main_status.quitting)
455 ui_update_tab_status(doc);
456 ui_save_buttons_toggle(changed);
457 ui_set_window_title(doc);
458 ui_update_statusbar(doc, -1);
463 /* returns the next free place in the document list,
464 * or -1 if the documents_array is full */
465 static gint document_get_new_idx(void)
467 guint i;
469 for (i = 0; i < documents_array->len; i++)
471 if (documents[i]->editor == NULL)
473 return (gint) i;
476 return -1;
480 static void queue_colourise(GeanyDocument *doc)
482 /* Colourise the editor before it is next drawn */
483 doc->priv->colourise_needed = TRUE;
485 /* If the editor doesn't need drawing (e.g. after saving the current
486 * document), we need to force a redraw, so the expose event is triggered.
487 * This ensures we don't start colourising before all documents are opened/saved,
488 * only once the editor is drawn. */
489 gtk_widget_queue_draw(GTK_WIDGET(doc->editor->sci));
493 #ifdef USE_GIO_FILEMON
494 static void monitor_file_changed_cb(G_GNUC_UNUSED GFileMonitor *monitor, G_GNUC_UNUSED GFile *file,
495 G_GNUC_UNUSED GFile *other_file, GFileMonitorEvent event,
496 GeanyDocument *doc)
498 g_return_if_fail(doc != NULL);
500 if (file_prefs.disk_check_timeout == 0)
501 return;
503 geany_debug("%s: event: %d previous file status: %d",
504 G_STRFUNC, event, doc->priv->file_disk_status);
505 switch (event)
507 case G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT:
509 if (doc->priv->file_disk_status == FILE_IGNORE)
510 doc->priv->file_disk_status = FILE_OK;
511 else
512 doc->priv->file_disk_status = FILE_CHANGED;
513 g_message("%s: FILE_CHANGED", G_STRFUNC);
514 break;
516 case G_FILE_MONITOR_EVENT_DELETED:
518 doc->priv->file_disk_status = FILE_CHANGED;
519 g_message("%s: FILE_MISSING", G_STRFUNC);
520 break;
522 default:
523 break;
525 if (doc->priv->file_disk_status != FILE_OK)
527 ui_update_tab_status(doc);
530 #endif
533 static void document_stop_file_monitoring(GeanyDocument *doc)
535 g_return_if_fail(doc != NULL);
537 if (doc->priv->monitor != NULL)
539 g_object_unref(doc->priv->monitor);
540 doc->priv->monitor = NULL;
545 static void monitor_file_setup(GeanyDocument *doc)
547 g_return_if_fail(doc != NULL);
548 /* Disable file monitoring completely for remote files (i.e. remote GIO files) as GFileMonitor
549 * doesn't work at all for remote files and legacy polling is too slow. */
550 if (! doc->priv->is_remote)
552 #ifdef USE_GIO_FILEMON
553 gchar *locale_filename;
555 /* stop any previous monitoring */
556 document_stop_file_monitoring(doc);
558 locale_filename = utils_get_locale_from_utf8(doc->file_name);
559 if (locale_filename != NULL && g_file_test(locale_filename, G_FILE_TEST_EXISTS))
561 /* get a file monitor and connect to the 'changed' signal */
562 GFile *file = g_file_new_for_path(locale_filename);
563 doc->priv->monitor = g_file_monitor_file(file, G_FILE_MONITOR_NONE, NULL, NULL);
564 g_signal_connect(doc->priv->monitor, "changed",
565 G_CALLBACK(monitor_file_changed_cb), doc);
567 /* we set the rate limit according to the GUI pref but it's most probably not used */
568 g_file_monitor_set_rate_limit(doc->priv->monitor, file_prefs.disk_check_timeout * 1000);
570 g_object_unref(file);
572 g_free(locale_filename);
573 #endif
575 doc->priv->file_disk_status = FILE_OK;
579 void document_try_focus(GeanyDocument *doc, GtkWidget *source_widget)
581 /* doc might not be valid e.g. if user closed a tab whilst Geany is opening files */
582 if (DOC_VALID(doc))
584 GtkWidget *sci = GTK_WIDGET(doc->editor->sci);
585 GtkWidget *focusw = gtk_window_get_focus(GTK_WINDOW(main_widgets.window));
587 if (source_widget == NULL)
588 source_widget = doc->priv->tag_tree;
590 if (focusw == source_widget)
591 gtk_widget_grab_focus(sci);
596 static gboolean on_idle_focus(gpointer doc)
598 document_try_focus(doc, NULL);
599 return FALSE;
603 /* Creates a new document and editor, adding a tab in the notebook.
604 * @return The created document */
605 static GeanyDocument *document_create(const gchar *utf8_filename)
607 GeanyDocument *doc;
608 gint new_idx;
609 gint cur_pages = gtk_notebook_get_n_pages(GTK_NOTEBOOK(main_widgets.notebook));
611 if (cur_pages == 1)
613 doc = document_get_current();
614 /* remove the empty document first */
615 if (doc != NULL && doc->file_name == NULL && ! doc->changed)
616 /* prevent immediately opening another new doc with
617 * new_document_after_close pref */
618 remove_page(0);
621 new_idx = document_get_new_idx();
622 if (new_idx == -1) /* expand the array, no free places */
624 doc = g_new0(GeanyDocument, 1);
626 new_idx = documents_array->len;
627 g_ptr_array_add(documents_array, doc);
630 doc = documents[new_idx];
632 /* initialize default document settings */
633 doc->priv = g_new0(GeanyDocumentPrivate, 1);
634 doc->id = ++doc_id_counter;
635 doc->index = new_idx;
636 doc->file_name = g_strdup(utf8_filename);
637 doc->editor = editor_create(doc);
638 #ifndef USE_GIO_FILEMON
639 doc->priv->last_check = time(NULL);
640 #endif
642 sidebar_openfiles_add(doc); /* sets doc->iter */
644 notebook_new_tab(doc);
646 /* select document in sidebar */
648 GtkTreeSelection *sel;
650 sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(tv.tree_openfiles));
651 gtk_tree_selection_select_iter(sel, &doc->priv->iter);
654 ui_document_buttons_update();
656 doc->is_valid = TRUE; /* do this last to prevent UI updating with NULL items. */
657 return doc;
662 * Closes the given document.
664 * @param doc The document to remove.
666 * @return @c TRUE if the document was actually removed or @c FALSE otherwise.
668 * @since 0.15
670 gboolean document_close(GeanyDocument *doc)
672 g_return_val_if_fail(doc, FALSE);
674 return document_remove_page(document_get_notebook_page(doc));
678 /* Call document_remove_page() instead, this is only needed for document_create()
679 * to prevent re-opening a new document when the last document is closed (if enabled). */
680 static gboolean remove_page(guint page_num)
682 GeanyDocument *doc = document_get_from_page(page_num);
684 g_return_val_if_fail(doc != NULL, FALSE);
686 if (doc->changed && ! dialogs_show_unsaved_file(doc))
687 return FALSE;
689 /* tell any plugins that the document is about to be closed */
690 g_signal_emit_by_name(geany_object, "document-close", doc);
692 /* Checking real_path makes it likely the file exists on disk */
693 if (! main_status.closing_all && doc->real_path != NULL)
694 ui_add_recent_document(doc);
696 doc->is_valid = FALSE;
697 doc->id = 0;
699 if (main_status.quitting)
701 /* we need to destroy the ScintillaWidget so our handlers on it are
702 * disconnected before we free any data they may use (like the editor).
703 * when not quitting, this is handled by removing the notebook page. */
704 gtk_notebook_remove_page(GTK_NOTEBOOK(main_widgets.notebook), page_num);
706 else
708 notebook_remove_page(page_num);
709 sidebar_remove_document(doc);
710 navqueue_remove_file(doc->file_name);
711 msgwin_status_add(_("File %s closed."), DOC_FILENAME(doc));
713 g_free(doc->encoding);
714 g_free(doc->priv->saved_encoding.encoding);
715 g_free(doc->file_name);
716 g_free(doc->real_path);
717 tm_workspace_remove_object(doc->tm_file, TRUE, TRUE);
719 if (doc->priv->tag_tree)
720 gtk_widget_destroy(doc->priv->tag_tree);
722 editor_destroy(doc->editor);
723 doc->editor = NULL; /* needs to be NULL for document_undo_clear() call below */
725 document_stop_file_monitoring(doc);
727 document_undo_clear(doc);
729 g_free(doc->priv);
731 /* reset document settings to defaults for re-use */
732 memset(doc, 0, sizeof(GeanyDocument));
734 if (gtk_notebook_get_n_pages(GTK_NOTEBOOK(main_widgets.notebook)) == 0)
736 sidebar_update_tag_list(NULL, FALSE);
737 ui_set_window_title(NULL);
738 ui_save_buttons_toggle(FALSE);
739 ui_update_popup_reundo_items(NULL);
740 ui_document_buttons_update();
741 build_menu_update(NULL);
743 return TRUE;
748 * Removes the given notebook tab at @a page_num and clears all related information
749 * in the document list.
751 * @param page_num The notebook page number to remove.
753 * @return @c TRUE if the document was actually removed or @c FALSE otherwise.
755 gboolean document_remove_page(guint page_num)
757 gboolean done = remove_page(page_num);
759 if (done && ui_prefs.new_document_after_close)
760 document_new_file_if_non_open();
762 return done;
766 /* used to keep a record of the unchanged document state encoding */
767 static void store_saved_encoding(GeanyDocument *doc)
769 g_free(doc->priv->saved_encoding.encoding);
770 doc->priv->saved_encoding.encoding = g_strdup(doc->encoding);
771 doc->priv->saved_encoding.has_bom = doc->has_bom;
775 /* Opens a new empty document only if there are no other documents open */
776 GeanyDocument *document_new_file_if_non_open(void)
778 if (gtk_notebook_get_n_pages(GTK_NOTEBOOK(main_widgets.notebook)) == 0)
779 return document_new_file(NULL, NULL, NULL);
781 return NULL;
786 * Creates a new document.
787 * Line endings in @a text will be converted to the default setting.
788 * Afterwards, the @c "document-new" signal is emitted for plugins.
790 * @param utf8_filename The file name in UTF-8 encoding, or @c NULL to open a file as "untitled".
791 * @param ft The filetype to set or @c NULL to detect it from @a filename if not @c NULL.
792 * @param text The initial content of the file (in UTF-8 encoding), or @c NULL.
794 * @return The new document.
796 GeanyDocument *document_new_file(const gchar *utf8_filename, GeanyFiletype *ft, const gchar *text)
798 GeanyDocument *doc;
800 if (utf8_filename && g_path_is_absolute(utf8_filename))
802 gchar *tmp;
803 tmp = utils_strdupa(utf8_filename); /* work around const */
804 utils_tidy_path(tmp);
805 utf8_filename = tmp;
807 doc = document_create(utf8_filename);
809 g_assert(doc != NULL);
811 sci_set_undo_collection(doc->editor->sci, FALSE); /* avoid creation of an undo action */
812 if (text)
814 GString *template = g_string_new(text);
815 utils_ensure_same_eol_characters(template, file_prefs.default_eol_character);
817 sci_set_text(doc->editor->sci, template->str);
818 g_string_free(template, TRUE);
820 else
821 sci_clear_all(doc->editor->sci);
823 sci_set_eol_mode(doc->editor->sci, file_prefs.default_eol_character);
825 sci_set_undo_collection(doc->editor->sci, TRUE);
826 sci_empty_undo_buffer(doc->editor->sci);
828 doc->encoding = g_strdup(encodings[file_prefs.default_new_encoding].charset);
829 /* store the opened encoding for undo/redo */
830 store_saved_encoding(doc);
832 if (ft == NULL && utf8_filename != NULL) /* guess the filetype from the filename if one is given */
833 ft = filetypes_detect_from_document(doc);
835 document_set_filetype(doc, ft); /* also re-parses tags */
837 ui_set_window_title(doc);
838 build_menu_update(doc);
839 document_set_text_changed(doc, FALSE);
840 ui_document_show_hide(doc); /* update the document menu */
842 sci_set_line_numbers(doc->editor->sci, editor_prefs.show_linenumber_margin);
843 /* bring it in front, jump to the start and grab the focus */
844 editor_goto_pos(doc->editor, 0, FALSE);
845 document_try_focus(doc, NULL);
847 #ifdef USE_GIO_FILEMON
848 monitor_file_setup(doc);
849 #else
850 doc->priv->mtime = time(NULL);
851 #endif
853 /* "the" SCI signal (connect after initial setup(i.e. adding text)) */
854 g_signal_connect(doc->editor->sci, "sci-notify", G_CALLBACK(editor_sci_notify_cb), doc->editor);
856 g_signal_emit_by_name(geany_object, "document-new", doc);
858 msgwin_status_add(_("New file \"%s\" opened."),
859 DOC_FILENAME(doc));
861 return doc;
866 * Opens a document specified by @a locale_filename.
867 * Afterwards, the @c "document-open" signal is emitted for plugins.
869 * @param locale_filename The filename of the document to load, in locale encoding.
870 * @param readonly Whether to open the document in read-only mode.
871 * @param ft The filetype for the document or @c NULL to auto-detect the filetype.
872 * @param forced_enc The file encoding to use or @c NULL to auto-detect the file encoding.
874 * @return The document opened or @c NULL.
876 GeanyDocument *document_open_file(const gchar *locale_filename, gboolean readonly,
877 GeanyFiletype *ft, const gchar *forced_enc)
879 return document_open_file_full(NULL, locale_filename, 0, readonly, ft, forced_enc);
883 typedef struct
885 gchar *data; /* null-terminated file data */
886 gsize len; /* string length of data */
887 gchar *enc;
888 gboolean bom;
889 time_t mtime; /* modification time, read by stat::st_mtime */
890 gboolean readonly;
891 } FileData;
894 /* loads textfile data, verifies and converts to forced_enc or UTF-8. Also handles BOM. */
895 static gboolean load_text_file(const gchar *locale_filename, const gchar *display_filename,
896 FileData *filedata, const gchar *forced_enc)
898 GError *err = NULL;
899 struct stat st;
901 filedata->data = NULL;
902 filedata->len = 0;
903 filedata->enc = NULL;
904 filedata->bom = FALSE;
905 filedata->readonly = FALSE;
907 if (g_stat(locale_filename, &st) != 0)
909 ui_set_statusbar(TRUE, _("Could not open file %s (%s)"),
910 display_filename, g_strerror(errno));
911 return FALSE;
914 filedata->mtime = st.st_mtime;
916 if (! g_file_get_contents(locale_filename, &filedata->data, NULL, &err))
918 ui_set_statusbar(TRUE, "%s", err->message);
919 g_error_free(err);
920 return FALSE;
923 filedata->len = (gsize) st.st_size;
924 if (! encodings_convert_to_utf8_auto(&filedata->data, &filedata->len, forced_enc,
925 &filedata->enc, &filedata->bom, &filedata->readonly))
927 if (forced_enc)
929 ui_set_statusbar(TRUE, _("The file \"%s\" is not valid %s."),
930 display_filename, forced_enc);
932 else
934 ui_set_statusbar(TRUE,
935 _("The file \"%s\" does not look like a text file or the file encoding is not supported."),
936 display_filename);
938 g_free(filedata->data);
939 return FALSE;
942 if (filedata->readonly)
944 const gchar *warn_msg = _(
945 "The file \"%s\" could not be opened properly and has been truncated. " \
946 "This can occur if the file contains a NULL byte. " \
947 "Be aware that saving it can cause data loss.\nThe file was set to read-only.");
949 if (main_status.main_window_realized)
950 dialogs_show_msgbox(GTK_MESSAGE_WARNING, warn_msg, display_filename);
952 ui_set_statusbar(TRUE, warn_msg, display_filename);
955 return TRUE;
959 /* Sets the cursor position on opening a file. First it sets the line when cl_options.goto_line
960 * is set, otherwise it sets the line when pos is greater than zero and finally it sets the column
961 * if cl_options.goto_column is set.
963 * returns the new position which may have changed */
964 static gint set_cursor_position(GeanyEditor *editor, gint pos)
966 if (cl_options.goto_line >= 0)
967 { /* goto line which was specified on command line and then undefine the line */
968 sci_goto_line(editor->sci, cl_options.goto_line - 1, TRUE);
969 editor->scroll_percent = 0.5F;
970 cl_options.goto_line = -1;
972 else if (pos > 0)
974 sci_set_current_position(editor->sci, pos, FALSE);
975 editor->scroll_percent = 0.5F;
978 if (cl_options.goto_column >= 0)
979 { /* goto column which was specified on command line and then undefine the column */
981 gint new_pos = sci_get_current_position(editor->sci) + cl_options.goto_column;
982 sci_set_current_position(editor->sci, new_pos, FALSE);
983 editor->scroll_percent = 0.5F;
984 cl_options.goto_column = -1;
985 return new_pos;
987 return sci_get_current_position(editor->sci);
991 /* Count lines that start with some hard tabs then a soft tab. */
992 static gboolean detect_tabs_and_spaces(GeanyEditor *editor)
994 const GeanyIndentPrefs *iprefs = editor_get_indent_prefs(editor);
995 ScintillaObject *sci = editor->sci;
996 gsize count = 0;
997 struct Sci_TextToFind ttf;
998 gchar *soft_tab = g_strnfill((gsize)iprefs->width, ' ');
999 gchar *regex = g_strconcat("^\t+", soft_tab, "[^ ]", NULL);
1001 g_free(soft_tab);
1003 ttf.chrg.cpMin = 0;
1004 ttf.chrg.cpMax = sci_get_length(sci);
1005 ttf.lpstrText = regex;
1006 while (1)
1008 gint pos;
1010 pos = sci_find_text(sci, SCFIND_REGEXP, &ttf);
1011 if (pos == -1)
1012 break; /* no more matches */
1013 count++;
1014 ttf.chrg.cpMin = ttf.chrgText.cpMax + 1; /* search after this match */
1016 g_free(regex);
1017 /* The 0.02 is a low weighting to ignore a few possibly accidental occurrences */
1018 return count > sci_get_line_count(sci) * 0.02;
1022 /* Detect the indent type based on counting the leading indent characters for each line.
1023 * Returns whether detection succeeded, and the detected type in *type_ upon success */
1024 gboolean document_detect_indent_type(GeanyDocument *doc, GeanyIndentType *type_)
1026 GeanyEditor *editor = doc->editor;
1027 ScintillaObject *sci = editor->sci;
1028 gint line, line_count;
1029 gsize tabs = 0, spaces = 0;
1031 if (detect_tabs_and_spaces(editor))
1033 *type_ = GEANY_INDENT_TYPE_BOTH;
1034 return TRUE;
1037 line_count = sci_get_line_count(sci);
1038 for (line = 0; line < line_count; line++)
1040 gint pos = sci_get_position_from_line(sci, line);
1041 gchar c;
1043 /* most code will have indent total <= 24, otherwise it's more likely to be
1044 * alignment than indentation */
1045 if (sci_get_line_indentation(sci, line) > 24)
1046 continue;
1048 c = sci_get_char_at(sci, pos);
1049 if (c == '\t')
1050 tabs++;
1051 /* check for at least 2 spaces */
1052 else if (c == ' ' && sci_get_char_at(sci, pos + 1) == ' ')
1053 spaces++;
1055 if (spaces == 0 && tabs == 0)
1056 return FALSE;
1058 /* the factors may need to be tweaked */
1059 if (spaces > tabs * 4)
1060 *type_ = GEANY_INDENT_TYPE_SPACES;
1061 else if (tabs > spaces * 4)
1062 *type_ = GEANY_INDENT_TYPE_TABS;
1063 else
1064 *type_ = GEANY_INDENT_TYPE_BOTH;
1066 return TRUE;
1070 /* Detect the indent width based on counting the leading indent characters for each line.
1071 * Returns whether detection succeeded, and the detected width in *width_ upon success */
1072 static gboolean detect_indent_width(GeanyEditor *editor, GeanyIndentType type, gint *width_)
1074 const GeanyIndentPrefs *iprefs = editor_get_indent_prefs(editor);
1075 ScintillaObject *sci = editor->sci;
1076 gint line, line_count;
1077 gint widths[7] = { 0 }; /* width can be from 2 to 8 */
1078 gint count, width, i;
1080 /* can't easily detect the supposed width of a tab, guess the default is OK */
1081 if (type == GEANY_INDENT_TYPE_TABS)
1082 return FALSE;
1084 /* force 8 at detection time for tab & spaces -- anyway we don't use tabs at this point */
1085 sci_set_tab_width(sci, 8);
1087 line_count = sci_get_line_count(sci);
1088 for (line = 0; line < line_count; line++)
1090 gint pos = sci_get_line_indent_position(sci, line);
1092 /* We probably don't have style info yet, because we're generally called just after
1093 * the document got created, so we can't use highlighting_is_code_style().
1094 * That's not good, but the assumption below that concerning lines start with an
1095 * asterisk (common continuation character for C/C++/Java/...) should do the trick
1096 * without removing too much legitimate lines. */
1097 if (sci_get_char_at(sci, pos) == '*')
1098 continue;
1100 width = sci_get_line_indentation(sci, line);
1101 /* most code will have indent total <= 24, otherwise it's more likely to be
1102 * alignment than indentation */
1103 if (width > 24)
1104 continue;
1105 /* < 2 is no indentation */
1106 if (width < 2)
1107 continue;
1109 for (i = G_N_ELEMENTS(widths) - 1; i >= 0; i--)
1111 if ((width % (i + 2)) == 0)
1112 widths[i]++;
1115 count = 0;
1116 width = iprefs->width;
1117 for (i = G_N_ELEMENTS(widths) - 1; i >= 0; i--)
1119 /* give large indents higher weight not to be fooled by spurious indents */
1120 if (widths[i] >= count * 1.5)
1122 width = i + 2;
1123 count = widths[i];
1127 if (count == 0)
1128 return FALSE;
1130 *width_ = width;
1131 return TRUE;
1135 /* same as detect_indent_width() but uses editor's indent type */
1136 gboolean document_detect_indent_width(GeanyDocument *doc, gint *width_)
1138 return detect_indent_width(doc->editor, doc->editor->indent_type, width_);
1142 void document_apply_indent_settings(GeanyDocument *doc)
1144 const GeanyIndentPrefs *iprefs = editor_get_indent_prefs(NULL);
1145 GeanyIndentType type = iprefs->type;
1146 gint width = iprefs->width;
1148 if (iprefs->detect_type && document_detect_indent_type(doc, &type))
1150 if (type != iprefs->type)
1152 const gchar *name = NULL;
1154 switch (type)
1156 case GEANY_INDENT_TYPE_SPACES:
1157 name = _("Spaces");
1158 break;
1159 case GEANY_INDENT_TYPE_TABS:
1160 name = _("Tabs");
1161 break;
1162 case GEANY_INDENT_TYPE_BOTH:
1163 name = _("Tabs and Spaces");
1164 break;
1166 /* For translators: first wildcard is the indentation mode (Spaces, Tabs, Tabs
1167 * and Spaces), the second one is the filename */
1168 ui_set_statusbar(TRUE, _("Setting %s indentation mode for %s."), name,
1169 DOC_FILENAME(doc));
1172 else if (doc->file_type->indent_type > -1)
1173 type = doc->file_type->indent_type;
1175 if (iprefs->detect_width && detect_indent_width(doc->editor, type, &width))
1177 if (width != iprefs->width)
1179 ui_set_statusbar(TRUE, _("Setting indentation width to %d for %s."), width,
1180 DOC_FILENAME(doc));
1183 else if (doc->file_type->indent_width > -1)
1184 width = doc->file_type->indent_width;
1186 editor_set_indent(doc->editor, type, width);
1190 void document_show_tab(GeanyDocument *doc)
1192 gtk_notebook_set_current_page(GTK_NOTEBOOK(main_widgets.notebook),
1193 document_get_notebook_page(doc));
1197 /* To open a new file, set doc to NULL; filename should be locale encoded.
1198 * To reload a file, set the doc for the document to be reloaded; filename should be NULL.
1199 * pos is the cursor position, which can be overridden by --line and --column.
1200 * forced_enc can be NULL to detect the file encoding.
1201 * Returns: doc of the opened file or NULL if an error occurred. */
1202 GeanyDocument *document_open_file_full(GeanyDocument *doc, const gchar *filename, gint pos,
1203 gboolean readonly, GeanyFiletype *ft, const gchar *forced_enc)
1205 gint editor_mode;
1206 gboolean reload = (doc == NULL) ? FALSE : TRUE;
1207 gchar *utf8_filename = NULL;
1208 gchar *display_filename = NULL;
1209 gchar *locale_filename = NULL;
1210 GeanyFiletype *use_ft;
1211 FileData filedata;
1213 g_return_val_if_fail(doc == NULL || doc->is_valid, NULL);
1215 if (reload)
1217 utf8_filename = g_strdup(doc->file_name);
1218 locale_filename = utils_get_locale_from_utf8(utf8_filename);
1220 else
1222 /* filename must not be NULL when opening a file */
1223 g_return_val_if_fail(filename, NULL);
1225 #ifdef G_OS_WIN32
1226 /* if filename is a shortcut, try to resolve it */
1227 locale_filename = win32_get_shortcut_target(filename);
1228 #else
1229 locale_filename = g_strdup(filename);
1230 #endif
1231 /* remove relative junk */
1232 utils_tidy_path(locale_filename);
1234 /* try to get the UTF-8 equivalent for the filename, fallback to filename if error */
1235 utf8_filename = utils_get_utf8_from_locale(locale_filename);
1237 /* if file is already open, switch to it and go */
1238 doc = document_find_by_filename(utf8_filename);
1239 if (doc != NULL)
1241 ui_add_recent_document(doc); /* either add or reorder recent item */
1242 /* show the doc before reload dialog */
1243 document_show_tab(doc);
1244 document_check_disk_status(doc, TRUE); /* force a file changed check */
1247 if (reload || doc == NULL)
1248 { /* doc possibly changed */
1249 display_filename = utils_str_middle_truncate(utf8_filename, 100);
1251 if (! load_text_file(locale_filename, display_filename, &filedata, forced_enc))
1253 g_free(display_filename);
1254 g_free(utf8_filename);
1255 g_free(locale_filename);
1256 return NULL;
1259 if (! reload)
1261 doc = document_create(utf8_filename);
1262 g_return_val_if_fail(doc != NULL, NULL); /* really should not happen */
1264 /* file exists on disk, set real_path */
1265 SETPTR(doc->real_path, tm_get_real_path(locale_filename));
1267 doc->priv->is_remote = utils_is_remote_path(locale_filename);
1268 monitor_file_setup(doc);
1271 sci_set_undo_collection(doc->editor->sci, FALSE); /* avoid creation of an undo action */
1272 sci_empty_undo_buffer(doc->editor->sci);
1274 /* add the text to the ScintillaObject */
1275 sci_set_readonly(doc->editor->sci, FALSE); /* to allow replacing text */
1276 sci_set_text(doc->editor->sci, filedata.data); /* NULL terminated data */
1277 queue_colourise(doc); /* Ensure the document gets colourised. */
1279 /* detect & set line endings */
1280 editor_mode = utils_get_line_endings(filedata.data, filedata.len);
1281 sci_set_eol_mode(doc->editor->sci, editor_mode);
1282 g_free(filedata.data);
1284 sci_set_undo_collection(doc->editor->sci, TRUE);
1286 doc->priv->mtime = filedata.mtime; /* get the modification time from file and keep it */
1287 g_free(doc->encoding); /* if reloading, free old encoding */
1288 doc->encoding = filedata.enc;
1289 doc->has_bom = filedata.bom;
1290 store_saved_encoding(doc); /* store the opened encoding for undo/redo */
1292 doc->readonly = readonly || filedata.readonly;
1293 sci_set_readonly(doc->editor->sci, doc->readonly);
1294 doc->priv->protected = 0;
1296 /* update line number margin width */
1297 doc->priv->line_count = sci_get_line_count(doc->editor->sci);
1298 sci_set_line_numbers(doc->editor->sci, editor_prefs.show_linenumber_margin);
1300 if (! reload)
1303 /* "the" SCI signal (connect after initial setup(i.e. adding text)) */
1304 g_signal_connect(doc->editor->sci, "sci-notify", G_CALLBACK(editor_sci_notify_cb),
1305 doc->editor);
1307 use_ft = (ft != NULL) ? ft : filetypes_detect_from_document(doc);
1309 else
1310 { /* reloading */
1311 document_undo_clear(doc);
1313 use_ft = ft;
1315 /* update taglist, typedef keywords and build menu if necessary */
1316 document_set_filetype(doc, use_ft);
1318 /* set indentation settings after setting the filetype */
1319 if (reload)
1320 editor_set_indent(doc->editor, doc->editor->indent_type, doc->editor->indent_width); /* resetup sci */
1321 else
1322 document_apply_indent_settings(doc);
1324 document_set_text_changed(doc, FALSE); /* also updates tab state */
1325 ui_document_show_hide(doc); /* update the document menu */
1327 /* finally add current file to recent files menu, but not the files from the last session */
1328 if (! main_status.opening_session_files)
1329 ui_add_recent_document(doc);
1331 if (reload)
1333 g_signal_emit_by_name(geany_object, "document-reload", doc);
1334 ui_set_statusbar(TRUE, _("File %s reloaded."), display_filename);
1336 else
1338 g_signal_emit_by_name(geany_object, "document-open", doc);
1339 /* For translators: this is the status window message for opening a file. %d is the number
1340 * of the newly opened file, %s indicates whether the file is opened read-only
1341 * (it is replaced with the string ", read-only"). */
1342 msgwin_status_add(_("File %s opened(%d%s)."),
1343 display_filename, gtk_notebook_get_n_pages(GTK_NOTEBOOK(main_widgets.notebook)),
1344 (readonly) ? _(", read-only") : "");
1348 g_free(display_filename);
1349 g_free(utf8_filename);
1350 g_free(locale_filename);
1352 /* set the cursor position according to pos, cl_options.goto_line and cl_options.goto_column */
1353 pos = set_cursor_position(doc->editor, pos);
1354 /* now bring the file in front */
1355 editor_goto_pos(doc->editor, pos, FALSE);
1357 /* finally, let the editor widget grab the focus so you can start coding
1358 * right away */
1359 g_idle_add(on_idle_focus, doc);
1360 return doc;
1364 /* Takes a new line separated list of filename URIs and opens each file.
1365 * length is the length of the string */
1366 void document_open_file_list(const gchar *data, gsize length)
1368 guint i;
1369 gchar *filename;
1370 gchar **list;
1372 g_return_if_fail(data != NULL);
1374 list = g_strsplit(data, utils_get_eol_char(utils_get_line_endings(data, length)), 0);
1376 /* stop at the end or first empty item, because last item is empty but not null */
1377 for (i = 0; list[i] != NULL && list[i][0] != '\0'; i++)
1379 filename = utils_get_path_from_uri(list[i]);
1380 if (filename == NULL)
1381 continue;
1382 document_open_file(filename, FALSE, NULL, NULL);
1383 g_free(filename);
1386 g_strfreev(list);
1391 * Opens each file in the list @a filenames.
1392 * Internally, document_open_file() is called for every list item.
1394 * @param filenames A list of filenames to load, in locale encoding.
1395 * @param readonly Whether to open the document in read-only mode.
1396 * @param ft The filetype for the document or @c NULL to auto-detect the filetype.
1397 * @param forced_enc The file encoding to use or @c NULL to auto-detect the file encoding.
1399 void document_open_files(const GSList *filenames, gboolean readonly, GeanyFiletype *ft,
1400 const gchar *forced_enc)
1402 const GSList *item;
1404 for (item = filenames; item != NULL; item = g_slist_next(item))
1406 document_open_file(item->data, readonly, ft, forced_enc);
1412 * Reloads the document with the specified file encoding
1413 * @a forced_enc or @c NULL to auto-detect the file encoding.
1415 * @param doc The document to reload.
1416 * @param forced_enc The file encoding to use or @c NULL to auto-detect the file encoding.
1418 * @return @c TRUE if the document was actually reloaded or @c FALSE otherwise.
1420 gboolean document_reload_file(GeanyDocument *doc, const gchar *forced_enc)
1422 gint pos = 0;
1423 GeanyDocument *new_doc;
1425 g_return_val_if_fail(doc != NULL, FALSE);
1427 /* Use cancel because the response handler would call this recursively */
1428 if (doc->priv->info_bars[MSG_TYPE_RELOAD] != NULL)
1429 gtk_info_bar_response(GTK_INFO_BAR(doc->priv->info_bars[MSG_TYPE_RELOAD]), GTK_RESPONSE_CANCEL);
1431 /* try to set the cursor to the position before reloading */
1432 pos = sci_get_current_position(doc->editor->sci);
1433 new_doc = document_open_file_full(doc, NULL, pos, doc->readonly, doc->file_type, forced_enc);
1435 return (new_doc != NULL);
1439 /* also used for reloading when forced_enc is NULL */
1440 gboolean document_reload_prompt(GeanyDocument *doc, const gchar *forced_enc)
1442 gchar *base_name;
1443 gboolean result = FALSE;
1445 g_return_val_if_fail(doc != NULL, FALSE);
1447 /* No need to reload "untitled" (non-file-backed) documents */
1448 if (doc->file_name == NULL)
1449 return FALSE;
1451 if (forced_enc == NULL)
1452 forced_enc = doc->encoding;
1454 base_name = g_path_get_basename(doc->file_name);
1455 /* don't prompt if file hasn't been edited at all */
1456 if ((!doc->changed && !document_can_undo(doc) && !document_can_redo(doc)) ||
1457 dialogs_show_question_full(NULL, _("_Reload"), GTK_STOCK_CANCEL,
1458 _("Any unsaved changes will be lost."),
1459 _("Are you sure you want to reload '%s'?"), base_name))
1461 result = document_reload_file(doc, forced_enc);
1462 if (forced_enc != NULL)
1463 ui_update_statusbar(doc, -1);
1465 g_free(base_name);
1467 return result;
1471 static gboolean document_update_timestamp(GeanyDocument *doc, const gchar *locale_filename)
1473 #ifndef USE_GIO_FILEMON
1474 struct stat st;
1476 g_return_val_if_fail(doc != NULL, FALSE);
1478 /* stat the file to get the timestamp, otherwise on Windows the actual
1479 * timestamp can be ahead of time(NULL) */
1480 if (g_stat(locale_filename, &st) != 0)
1482 ui_set_statusbar(TRUE, _("Could not open file %s (%s)"), doc->file_name,
1483 g_strerror(errno));
1484 return FALSE;
1487 doc->priv->mtime = st.st_mtime; /* get the modification time from file and keep it */
1488 #endif
1489 return TRUE;
1493 /* Sets line and column to the given position byte_pos in the document.
1494 * byte_pos is the position counted in bytes, not characters */
1495 static void get_line_column_from_pos(GeanyDocument *doc, guint byte_pos, gint *line, gint *column)
1497 gint i;
1498 gint line_start;
1500 /* for some reason we can use byte count instead of character count here */
1501 *line = sci_get_line_from_position(doc->editor->sci, byte_pos);
1502 line_start = sci_get_position_from_line(doc->editor->sci, *line);
1503 /* get the column in the line */
1504 *column = byte_pos - line_start;
1506 /* any non-ASCII characters are encoded with two bytes(UTF-8, always in Scintilla), so
1507 * skip one byte(i++) and decrease the column number which is based on byte count */
1508 for (i = line_start; i < (line_start + *column); i++)
1510 if (sci_get_char_at(doc->editor->sci, i) < 0)
1512 (*column)--;
1513 i++;
1519 static void replace_header_filename(GeanyDocument *doc)
1521 gchar *filebase;
1522 gchar *filename;
1523 struct Sci_TextToFind ttf;
1525 g_return_if_fail(doc != NULL);
1526 g_return_if_fail(doc->file_type != NULL);
1528 filebase = g_regex_escape_string(GEANY_STRING_UNTITLED, -1);
1529 if (doc->file_type->extension)
1530 SETPTR(filebase, g_strconcat("\\b", filebase, "\\.\\w+", NULL));
1531 else
1532 SETPTR(filebase, g_strconcat("\\b", filebase, "\\b", NULL));
1534 filename = g_path_get_basename(doc->file_name);
1536 /* only search the first 3 lines */
1537 ttf.chrg.cpMin = 0;
1538 ttf.chrg.cpMax = sci_get_position_from_line(doc->editor->sci, 4);
1539 ttf.lpstrText = filebase;
1541 if (search_find_text(doc->editor->sci, GEANY_FIND_MATCHCASE | GEANY_FIND_REGEXP, &ttf, NULL) != -1)
1543 sci_set_target_start(doc->editor->sci, ttf.chrgText.cpMin);
1544 sci_set_target_end(doc->editor->sci, ttf.chrgText.cpMax);
1545 sci_replace_target(doc->editor->sci, filename, FALSE);
1547 g_free(filebase);
1548 g_free(filename);
1553 * Renames the file in @a doc to @a new_filename. Only the file on disk is actually renamed,
1554 * you still have to call @ref document_save_file_as() to change the @a doc object.
1555 * It also stops monitoring for file changes to prevent receiving too many file change events
1556 * while renaming. File monitoring is setup again in @ref document_save_file_as().
1558 * @param doc The current document which should be renamed.
1559 * @param new_filename The new filename in UTF-8 encoding.
1561 * @since 0.16
1563 void document_rename_file(GeanyDocument *doc, const gchar *new_filename)
1565 gchar *old_locale_filename = utils_get_locale_from_utf8(doc->file_name);
1566 gchar *new_locale_filename = utils_get_locale_from_utf8(new_filename);
1567 gint result;
1569 /* stop file monitoring to avoid getting events for deleting/creating files,
1570 * it's re-setup in document_save_file_as() */
1571 document_stop_file_monitoring(doc);
1573 result = g_rename(old_locale_filename, new_locale_filename);
1574 if (result != 0)
1576 dialogs_show_msgbox_with_secondary(GTK_MESSAGE_ERROR,
1577 _("Error renaming file."), g_strerror(errno));
1579 g_free(old_locale_filename);
1580 g_free(new_locale_filename);
1584 static void protect_document(GeanyDocument *doc)
1586 /* do not call queue_colourise because to we want to keep the text-changed indication! */
1587 if (!doc->priv->protected++)
1588 sci_set_readonly(doc->editor->sci, TRUE);
1592 static void unprotect_document(GeanyDocument *doc)
1594 g_return_if_fail(doc->priv->protected > 0);
1596 if (!--doc->priv->protected && doc->readonly == FALSE)
1597 sci_set_readonly(doc->editor->sci, FALSE);
1601 /* Return TRUE if the document doesn't have a full filename set.
1602 * This makes filenames without a path show the save as dialog, e.g. for file templates.
1603 * Otherwise just use the set filename instead of asking the user - e.g. for command-line
1604 * new files. */
1605 gboolean document_need_save_as(GeanyDocument *doc)
1607 g_return_val_if_fail(doc != NULL, FALSE);
1609 return (doc->file_name == NULL || !g_path_is_absolute(doc->file_name));
1614 * Saves the document, detecting the filetype.
1616 * @param doc The document for the file to save.
1617 * @param utf8_fname The new name for the document, in UTF-8, or NULL.
1618 * @return @c TRUE if the file was saved or @c FALSE if the file could not be saved.
1620 * @see document_save_file().
1622 * @since 0.16
1624 gboolean document_save_file_as(GeanyDocument *doc, const gchar *utf8_fname)
1626 gboolean ret;
1627 gboolean new_file;
1629 g_return_val_if_fail(doc != NULL, FALSE);
1631 new_file = document_need_save_as(doc) || (utf8_fname != NULL && strcmp(doc->file_name, utf8_fname) != 0);
1632 if (utf8_fname != NULL)
1633 SETPTR(doc->file_name, g_strdup(utf8_fname));
1635 /* reset real path, it's retrieved again in document_save() */
1636 SETPTR(doc->real_path, NULL);
1638 /* detect filetype */
1639 if (doc->file_type->id == GEANY_FILETYPES_NONE)
1641 GeanyFiletype *ft = filetypes_detect_from_document(doc);
1643 document_set_filetype(doc, ft);
1644 if (document_get_current() == doc)
1646 ignore_callback = TRUE;
1647 filetypes_select_radio_item(doc->file_type);
1648 ignore_callback = FALSE;
1652 if (new_file)
1654 sci_set_readonly(doc->editor->sci, FALSE);
1655 doc->readonly = FALSE;
1656 if (doc->priv->protected > 0)
1657 unprotect_document(doc);
1660 replace_header_filename(doc);
1662 ret = document_save_file(doc, TRUE);
1664 /* file monitoring support, add file monitoring after the file has been saved
1665 * to ignore any earlier events */
1666 monitor_file_setup(doc);
1667 doc->priv->file_disk_status = FILE_IGNORE;
1669 if (ret)
1670 ui_add_recent_document(doc);
1671 return ret;
1675 static gsize save_convert_to_encoding(GeanyDocument *doc, gchar **data, gsize *len)
1677 GError *conv_error = NULL;
1678 gchar* conv_file_contents = NULL;
1679 gsize bytes_read;
1680 gsize conv_len;
1682 g_return_val_if_fail(data != NULL && *data != NULL, FALSE);
1683 g_return_val_if_fail(len != NULL, FALSE);
1685 /* try to convert it from UTF-8 to original encoding */
1686 conv_file_contents = g_convert(*data, *len - 1, doc->encoding, "UTF-8",
1687 &bytes_read, &conv_len, &conv_error);
1689 if (conv_error != NULL)
1691 gchar *text = g_strdup_printf(
1692 _("An error occurred while converting the file from UTF-8 in \"%s\". The file remains unsaved."),
1693 doc->encoding);
1694 gchar *error_text;
1696 if (conv_error->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
1698 gint line, column;
1699 gint context_len;
1700 gunichar unic;
1701 /* don't read over the doc length */
1702 gint max_len = MIN((gint)bytes_read + 6, (gint)*len - 1);
1703 gchar context[7]; /* read 6 bytes from Sci + '\0' */
1704 sci_get_text_range(doc->editor->sci, bytes_read, max_len, context);
1706 /* take only one valid Unicode character from the context and discard the leftover */
1707 unic = g_utf8_get_char_validated(context, -1);
1708 context_len = g_unichar_to_utf8(unic, context);
1709 context[context_len] = '\0';
1710 get_line_column_from_pos(doc, bytes_read, &line, &column);
1712 error_text = g_strdup_printf(
1713 _("Error message: %s\nThe error occurred at \"%s\" (line: %d, column: %d)."),
1714 conv_error->message, context, line + 1, column);
1716 else
1717 error_text = g_strdup_printf(_("Error message: %s."), conv_error->message);
1719 geany_debug("encoding error: %s", conv_error->message);
1720 dialogs_show_msgbox_with_secondary(GTK_MESSAGE_ERROR, text, error_text);
1721 g_error_free(conv_error);
1722 g_free(text);
1723 g_free(error_text);
1724 return FALSE;
1726 else
1728 g_free(*data);
1729 *data = conv_file_contents;
1730 *len = conv_len;
1732 return TRUE;
1736 static gchar *write_data_to_disk(const gchar *locale_filename,
1737 const gchar *data, gsize len)
1739 GError *error = NULL;
1741 if (file_prefs.use_safe_file_saving)
1743 /* Use old GLib API for safe saving (GVFS-safe, but alters ownership and permissons).
1744 * This is the only option that handles disk space exhaustion. */
1745 if (g_file_set_contents(locale_filename, data, len, &error))
1746 geany_debug("Wrote %s with g_file_set_contents().", locale_filename);
1748 else if (file_prefs.use_gio_unsafe_file_saving)
1750 GFile *fp;
1752 /* Use GIO API to save file (GVFS-safe)
1753 * It is best in most GVFS setups but don't seem to work correctly on some more complex
1754 * setups (saving from some VM to their host, over some SMB shares, etc.) */
1755 fp = g_file_new_for_path(locale_filename);
1756 g_file_replace_contents(fp, data, len, NULL, file_prefs.gio_unsafe_save_backup,
1757 G_FILE_CREATE_NONE, NULL, NULL, &error);
1758 g_object_unref(fp);
1760 else
1762 FILE *fp;
1763 int save_errno;
1764 gchar *display_name = g_filename_display_name(locale_filename);
1766 /* Use POSIX API for unsafe saving (GVFS-unsafe) */
1767 /* The error handling is taken from glib-2.26.0 gfileutils.c */
1768 errno = 0;
1769 fp = g_fopen(locale_filename, "wb");
1770 if (fp == NULL)
1772 save_errno = errno;
1774 g_set_error(&error,
1775 G_FILE_ERROR,
1776 g_file_error_from_errno(save_errno),
1777 _("Failed to open file '%s' for writing: fopen() failed: %s"),
1778 display_name,
1779 g_strerror(save_errno));
1781 else
1783 gsize bytes_written;
1785 errno = 0;
1786 bytes_written = fwrite(data, sizeof(gchar), len, fp);
1788 if (len != bytes_written)
1790 save_errno = errno;
1792 g_set_error(&error,
1793 G_FILE_ERROR,
1794 g_file_error_from_errno(save_errno),
1795 _("Failed to write file '%s': fwrite() failed: %s"),
1796 display_name,
1797 g_strerror(save_errno));
1800 errno = 0;
1801 /* preserve the fwrite() error if any */
1802 if (fclose(fp) != 0 && error == NULL)
1804 save_errno = errno;
1806 g_set_error(&error,
1807 G_FILE_ERROR,
1808 g_file_error_from_errno(save_errno),
1809 _("Failed to close file '%s': fclose() failed: %s"),
1810 display_name,
1811 g_strerror(save_errno));
1815 g_free(display_name);
1817 if (error != NULL)
1819 gchar *msg = g_strdup(error->message);
1820 g_error_free(error);
1821 /* geany will warn about file truncation for unsafe saving below */
1822 return msg;
1824 return NULL;
1828 static gchar *save_doc(GeanyDocument *doc, const gchar *locale_filename,
1829 const gchar *data, gsize len)
1831 gchar *err;
1833 g_return_val_if_fail(doc != NULL, g_strdup(g_strerror(EINVAL)));
1834 g_return_val_if_fail(data != NULL, g_strdup(g_strerror(EINVAL)));
1836 err = write_data_to_disk(locale_filename, data, len);
1837 if (err)
1838 return err;
1840 /* now the file is on disk, set real_path */
1841 if (doc->real_path == NULL)
1843 doc->real_path = tm_get_real_path(locale_filename);
1844 doc->priv->is_remote = utils_is_remote_path(locale_filename);
1845 monitor_file_setup(doc);
1847 return NULL;
1851 static gboolean save_file_handle_infobars(GeanyDocument *doc, gboolean force)
1853 GtkWidget *bar = NULL;
1855 document_show_tab(doc);
1857 if (doc->priv->info_bars[MSG_TYPE_RELOAD])
1859 if (!dialogs_show_question_full(NULL, _("_Overwrite"), GTK_STOCK_CANCEL,
1860 _("Overwrite?"),
1861 _("The file '%s' on the disk is more recent than the current buffer."),
1862 doc->file_name))
1863 return FALSE;
1864 bar = doc->priv->info_bars[MSG_TYPE_RELOAD];
1866 else if (doc->priv->info_bars[MSG_TYPE_RESAVE])
1868 if (!dialogs_show_question_full(NULL, GTK_STOCK_SAVE, GTK_STOCK_CANCEL,
1869 _("Try to resave the file?"),
1870 _("File \"%s\" was not found on disk!"),
1871 doc->file_name))
1872 return FALSE;
1873 bar = doc->priv->info_bars[MSG_TYPE_RESAVE];
1875 else
1877 g_assert_not_reached();
1878 return FALSE;
1880 gtk_info_bar_response(GTK_INFO_BAR(bar), RESPONSE_DOCUMENT_SAVE);
1881 return TRUE;
1886 * Saves the document.
1887 * Also shows the Save As dialog if necessary.
1888 * If the file is not modified, this function may do nothing unless @a force is set to @c TRUE.
1890 * Saving may include replacing tabs with spaces,
1891 * stripping trailing spaces and adding a final new line at the end of the file, depending
1892 * on user preferences. Then the @c "document-before-save" signal is emitted,
1893 * allowing plugins to modify the document before it is saved, and data is
1894 * actually written to disk.
1896 * On successful saving:
1897 * - GeanyDocument::real_path is set.
1898 * - The filetype is set again or auto-detected if it wasn't set yet.
1899 * - The @c "document-save" signal is emitted for plugins.
1901 * @warning You should ensure @c doc->file_name has an absolute path unless you want the
1902 * Save As dialog to be shown. A @c NULL value also shows the dialog. This behaviour was
1903 * added in Geany 1.22.
1905 * @param doc The document to save.
1906 * @param force Whether to save the file even if it is not modified.
1908 * @return @c TRUE if the file was saved or @c FALSE if the file could not or should not be saved.
1910 gboolean document_save_file(GeanyDocument *doc, gboolean force)
1912 gchar *errmsg;
1913 gchar *data;
1914 gsize len;
1915 gchar *locale_filename;
1916 const GeanyFilePrefs *fp;
1918 g_return_val_if_fail(doc != NULL, FALSE);
1920 if (document_need_save_as(doc))
1922 /* ensure doc is the current tab before showing the dialog */
1923 document_show_tab(doc);
1924 return dialogs_show_save_as();
1927 /* the "changed" flag should exclude the "readonly" flag, but check it anyway for safety */
1928 if (doc->readonly)
1929 return FALSE;
1930 if (!force && !doc->changed)
1931 return FALSE;
1932 if (doc->priv->protected)
1934 return save_file_handle_infobars(doc, force);
1937 fp = project_get_file_prefs();
1938 /* replaces tabs with spaces but only if the current file is not a Makefile */
1939 if (fp->replace_tabs && doc->file_type->id != GEANY_FILETYPES_MAKE)
1940 editor_replace_tabs(doc->editor);
1941 /* strip trailing spaces */
1942 if (fp->strip_trailing_spaces)
1943 editor_strip_trailing_spaces(doc->editor);
1944 /* ensure the file has a newline at the end */
1945 if (fp->final_new_line)
1946 editor_ensure_final_newline(doc->editor);
1947 /* ensure newlines are consistent */
1948 if (fp->ensure_convert_new_lines)
1949 sci_convert_eols(doc->editor->sci, sci_get_eol_mode(doc->editor->sci));
1951 /* notify plugins which may wish to modify the document before it's saved */
1952 g_signal_emit_by_name(geany_object, "document-before-save", doc);
1954 len = sci_get_length(doc->editor->sci) + 1;
1955 if (doc->has_bom && encodings_is_unicode_charset(doc->encoding))
1956 { /* always write a UTF-8 BOM because in this moment the text itself is still in UTF-8
1957 * encoding, it will be converted to doc->encoding below and this conversion
1958 * also changes the BOM */
1959 data = (gchar*) g_malloc(len + 3); /* 3 chars for BOM */
1960 data[0] = (gchar) 0xef;
1961 data[1] = (gchar) 0xbb;
1962 data[2] = (gchar) 0xbf;
1963 sci_get_text(doc->editor->sci, len, data + 3);
1964 len += 3;
1966 else
1968 data = (gchar*) g_malloc(len);
1969 sci_get_text(doc->editor->sci, len, data);
1972 /* save in original encoding, skip when it is already UTF-8 or has the encoding "None" */
1973 if (doc->encoding != NULL && ! utils_str_equal(doc->encoding, "UTF-8") &&
1974 ! utils_str_equal(doc->encoding, encodings[GEANY_ENCODING_NONE].charset))
1976 if (! save_convert_to_encoding(doc, &data, &len))
1978 g_free(data);
1979 return FALSE;
1982 else
1984 len = strlen(data);
1987 locale_filename = utils_get_locale_from_utf8(doc->file_name);
1989 /* ignore file changed notification when the file is written */
1990 doc->priv->file_disk_status = FILE_IGNORE;
1992 /* actually write the content of data to the file on disk */
1993 errmsg = save_doc(doc, locale_filename, data, len);
1994 g_free(data);
1996 if (errmsg != NULL)
1998 ui_set_statusbar(TRUE, _("Error saving file (%s)."), errmsg);
2000 if (!file_prefs.use_safe_file_saving)
2002 SETPTR(errmsg,
2003 g_strdup_printf(_("%s\n\nThe file on disk may now be truncated!"), errmsg));
2005 dialogs_show_msgbox_with_secondary(GTK_MESSAGE_ERROR, _("Error saving file."), errmsg);
2006 doc->priv->file_disk_status = FILE_OK;
2007 utils_beep();
2008 g_free(locale_filename);
2009 g_free(errmsg);
2010 return FALSE;
2013 /* store the opened encoding for undo/redo */
2014 store_saved_encoding(doc);
2016 /* ignore the following things if we are quitting */
2017 if (! main_status.quitting)
2019 sci_set_savepoint(doc->editor->sci);
2021 if (file_prefs.disk_check_timeout > 0)
2022 document_update_timestamp(doc, locale_filename);
2024 /* update filetype-related things */
2025 document_set_filetype(doc, doc->file_type);
2027 document_update_tab_label(doc);
2029 msgwin_status_add(_("File %s saved."), doc->file_name);
2030 ui_update_statusbar(doc, -1);
2031 #ifdef HAVE_VTE
2032 vte_cwd((doc->real_path != NULL) ? doc->real_path : doc->file_name, FALSE);
2033 #endif
2035 g_free(locale_filename);
2037 g_signal_emit_by_name(geany_object, "document-save", doc);
2039 return TRUE;
2043 /* special search function, used from the find entry in the toolbar
2044 * return TRUE if text was found otherwise FALSE
2045 * return also TRUE if text is empty */
2046 gboolean document_search_bar_find(GeanyDocument *doc, const gchar *text, gboolean inc,
2047 gboolean backwards)
2049 gint start_pos, search_pos;
2050 struct Sci_TextToFind ttf;
2052 g_return_val_if_fail(text != NULL, FALSE);
2053 g_return_val_if_fail(doc != NULL, FALSE);
2054 if (! *text)
2055 return TRUE;
2057 start_pos = (inc || backwards) ? sci_get_selection_start(doc->editor->sci) :
2058 sci_get_selection_end(doc->editor->sci); /* equal if no selection */
2060 /* search cursor to end or start */
2061 ttf.chrg.cpMin = start_pos;
2062 ttf.chrg.cpMax = backwards ? 0 : sci_get_length(doc->editor->sci);
2063 ttf.lpstrText = (gchar *)text;
2064 search_pos = sci_find_text(doc->editor->sci, 0, &ttf);
2066 /* if no match, search start (or end) to cursor */
2067 if (search_pos == -1)
2069 if (backwards)
2071 ttf.chrg.cpMin = sci_get_length(doc->editor->sci);
2072 ttf.chrg.cpMax = start_pos;
2074 else
2076 ttf.chrg.cpMin = 0;
2077 ttf.chrg.cpMax = start_pos + strlen(text);
2079 search_pos = sci_find_text(doc->editor->sci, 0, &ttf);
2082 if (search_pos != -1)
2084 gint line = sci_get_line_from_position(doc->editor->sci, ttf.chrgText.cpMin);
2086 /* unfold maybe folded results */
2087 sci_ensure_line_is_visible(doc->editor->sci, line);
2089 sci_set_selection_start(doc->editor->sci, ttf.chrgText.cpMin);
2090 sci_set_selection_end(doc->editor->sci, ttf.chrgText.cpMax);
2092 if (! editor_line_in_view(doc->editor, line))
2093 { /* we need to force scrolling in case the cursor is outside of the current visible area
2094 * GeanyDocument::scroll_percent doesn't work because sci isn't always updated
2095 * while searching */
2096 editor_scroll_to_line(doc->editor, -1, 0.3F);
2098 else
2099 sci_scroll_caret(doc->editor->sci); /* may need horizontal scrolling */
2100 return TRUE;
2102 else
2104 if (! inc)
2106 ui_set_statusbar(FALSE, _("\"%s\" was not found."), text);
2108 utils_beep();
2109 sci_goto_pos(doc->editor->sci, start_pos, FALSE); /* clear selection */
2110 return FALSE;
2115 /* General search function, used from the find dialog.
2116 * Returns -1 on failure or the start position of the matching text.
2117 * Will skip past any selection, ignoring it.
2119 * @param text Text to find.
2120 * @param original_text Text as it was entered by user, or @c NULL to use @c text
2122 gint document_find_text(GeanyDocument *doc, const gchar *text, const gchar *original_text,
2123 GeanyFindFlags flags, gboolean search_backwards, GeanyMatchInfo **match_,
2124 gboolean scroll, GtkWidget *parent)
2126 gint selection_end, selection_start, search_pos;
2128 g_return_val_if_fail(doc != NULL && text != NULL, -1);
2129 if (! *text)
2130 return -1;
2132 /* Sci doesn't support searching backwards with a regex */
2133 if (flags & GEANY_FIND_REGEXP)
2134 search_backwards = FALSE;
2136 if (!original_text)
2137 original_text = text;
2139 selection_start = sci_get_selection_start(doc->editor->sci);
2140 selection_end = sci_get_selection_end(doc->editor->sci);
2141 if ((selection_end - selection_start) > 0)
2142 { /* there's a selection so go to the end */
2143 if (search_backwards)
2144 sci_goto_pos(doc->editor->sci, selection_start, TRUE);
2145 else
2146 sci_goto_pos(doc->editor->sci, selection_end, TRUE);
2149 sci_set_search_anchor(doc->editor->sci);
2150 if (search_backwards)
2151 search_pos = search_find_prev(doc->editor->sci, text, flags, match_);
2152 else
2153 search_pos = search_find_next(doc->editor->sci, text, flags, match_);
2155 if (search_pos != -1)
2157 /* unfold maybe folded results */
2158 sci_ensure_line_is_visible(doc->editor->sci,
2159 sci_get_line_from_position(doc->editor->sci, search_pos));
2160 if (scroll)
2161 doc->editor->scroll_percent = 0.3F;
2163 else
2165 gint sci_len = sci_get_length(doc->editor->sci);
2167 /* if we just searched the whole text, give up searching. */
2168 if ((selection_end == 0 && ! search_backwards) ||
2169 (selection_end == sci_len && search_backwards))
2171 ui_set_statusbar(FALSE, _("\"%s\" was not found."), original_text);
2172 utils_beep();
2173 return -1;
2176 /* we searched only part of the document, so ask whether to wraparound. */
2177 if (search_prefs.always_wrap ||
2178 dialogs_show_question_full(parent, GTK_STOCK_FIND, GTK_STOCK_CANCEL,
2179 _("Wrap search and find again?"), _("\"%s\" was not found."), original_text))
2181 gint ret;
2183 sci_set_current_position(doc->editor->sci, (search_backwards) ? sci_len : 0, FALSE);
2184 ret = document_find_text(doc, text, original_text, flags, search_backwards, match_, scroll, parent);
2185 if (ret == -1)
2186 { /* return to original cursor position if not found */
2187 sci_set_current_position(doc->editor->sci, selection_start, FALSE);
2189 return ret;
2192 return search_pos;
2196 /* Replaces the selection if it matches, otherwise just finds the next match.
2197 * Returns: start of replaced text, or -1 if no replacement was made
2199 * @param find_text Text to find.
2200 * @param original_find_text Text to find as it was entered by user, or @c NULL to use @c find_text
2202 gint document_replace_text(GeanyDocument *doc, const gchar *find_text, const gchar *original_find_text,
2203 const gchar *replace_text, GeanyFindFlags flags, gboolean search_backwards)
2205 gint selection_end, selection_start, search_pos;
2206 GeanyMatchInfo *match = NULL;
2208 g_return_val_if_fail(doc != NULL && find_text != NULL && replace_text != NULL, -1);
2210 if (! *find_text)
2211 return -1;
2213 /* Sci doesn't support searching backwards with a regex */
2214 if (flags & GEANY_FIND_REGEXP)
2215 search_backwards = FALSE;
2217 if (!original_find_text)
2218 original_find_text = find_text;
2220 selection_start = sci_get_selection_start(doc->editor->sci);
2221 selection_end = sci_get_selection_end(doc->editor->sci);
2222 if (selection_end == selection_start)
2224 /* no selection so just find the next match */
2225 document_find_text(doc, find_text, original_find_text, flags, search_backwards, NULL, TRUE, NULL);
2226 return -1;
2228 /* there's a selection so go to the start before finding to search through it
2229 * this ensures there is a match */
2230 if (search_backwards)
2231 sci_goto_pos(doc->editor->sci, selection_end, TRUE);
2232 else
2233 sci_goto_pos(doc->editor->sci, selection_start, TRUE);
2235 search_pos = document_find_text(doc, find_text, original_find_text, flags, search_backwards, &match, TRUE, NULL);
2236 /* return if the original selected text did not match (at the start of the selection) */
2237 if (search_pos != selection_start)
2239 if (search_pos != -1)
2240 geany_match_info_free(match);
2241 return -1;
2244 if (search_pos != -1)
2246 gint replace_len = search_replace_match(doc->editor->sci, match, replace_text);
2247 /* select the replacement - find text will skip past the selected text */
2248 sci_set_selection_start(doc->editor->sci, search_pos);
2249 sci_set_selection_end(doc->editor->sci, search_pos + replace_len);
2250 geany_match_info_free(match);
2252 else
2254 /* no match in the selection */
2255 utils_beep();
2257 return search_pos;
2261 static void show_replace_summary(GeanyDocument *doc, gint count, const gchar *original_find_text,
2262 const gchar *original_replace_text)
2264 gchar *filename;
2266 if (count == 0)
2268 ui_set_statusbar(FALSE, _("No matches found for \"%s\"."), original_find_text);
2269 return;
2272 filename = g_path_get_basename(DOC_FILENAME(doc));
2273 ui_set_statusbar(TRUE, ngettext(
2274 "%s: replaced %d occurrence of \"%s\" with \"%s\".",
2275 "%s: replaced %d occurrences of \"%s\" with \"%s\".",
2276 count), filename, count, original_find_text, original_replace_text);
2277 g_free(filename);
2281 /* Replace all text matches in a certain range within document.
2282 * If not NULL, *new_range_end is set to the new range endpoint after replacing,
2283 * or -1 if no text was found.
2284 * scroll_to_match is whether to scroll the last replacement in view (which also
2285 * clears the selection).
2286 * Returns: the number of replacements made. */
2287 static guint
2288 document_replace_range(GeanyDocument *doc, const gchar *find_text, const gchar *replace_text,
2289 GeanyFindFlags flags, gint start, gint end, gboolean scroll_to_match, gint *new_range_end)
2291 gint count = 0;
2292 struct Sci_TextToFind ttf;
2293 ScintillaObject *sci;
2295 if (new_range_end != NULL)
2296 *new_range_end = -1;
2298 g_return_val_if_fail(doc != NULL && find_text != NULL && replace_text != NULL, 0);
2300 if (! *find_text || doc->readonly)
2301 return 0;
2303 sci = doc->editor->sci;
2305 ttf.chrg.cpMin = start;
2306 ttf.chrg.cpMax = end;
2307 ttf.lpstrText = (gchar*)find_text;
2309 sci_start_undo_action(sci);
2310 count = search_replace_range(sci, &ttf, flags, replace_text);
2311 sci_end_undo_action(sci);
2313 if (count > 0)
2314 { /* scroll last match in view, will destroy the existing selection */
2315 if (scroll_to_match)
2316 sci_goto_pos(sci, ttf.chrg.cpMin, TRUE);
2318 if (new_range_end != NULL)
2319 *new_range_end = ttf.chrg.cpMax;
2321 return count;
2325 void document_replace_sel(GeanyDocument *doc, const gchar *find_text, const gchar *replace_text,
2326 const gchar *original_find_text, const gchar *original_replace_text, GeanyFindFlags flags)
2328 gint selection_end, selection_start, selection_mode, selected_lines, last_line = 0;
2329 gint max_column = 0, count = 0;
2330 gboolean replaced = FALSE;
2332 g_return_if_fail(doc != NULL && find_text != NULL && replace_text != NULL);
2334 if (! *find_text)
2335 return;
2337 selection_start = sci_get_selection_start(doc->editor->sci);
2338 selection_end = sci_get_selection_end(doc->editor->sci);
2339 /* do we have a selection? */
2340 if ((selection_end - selection_start) == 0)
2342 utils_beep();
2343 return;
2346 selection_mode = sci_get_selection_mode(doc->editor->sci);
2347 selected_lines = sci_get_lines_selected(doc->editor->sci);
2348 /* handle rectangle, multi line selections (it doesn't matter on a single line) */
2349 if (selection_mode == SC_SEL_RECTANGLE && selected_lines > 1)
2351 gint first_line, line;
2353 sci_start_undo_action(doc->editor->sci);
2355 first_line = sci_get_line_from_position(doc->editor->sci, selection_start);
2356 /* Find the last line with chars selected (not EOL char) */
2357 last_line = sci_get_line_from_position(doc->editor->sci,
2358 selection_end - editor_get_eol_char_len(doc->editor));
2359 last_line = MAX(first_line, last_line);
2360 for (line = first_line; line < (first_line + selected_lines); line++)
2362 gint line_start = sci_get_pos_at_line_sel_start(doc->editor->sci, line);
2363 gint line_end = sci_get_pos_at_line_sel_end(doc->editor->sci, line);
2365 /* skip line if there is no selection */
2366 if (line_start != INVALID_POSITION)
2368 /* don't let document_replace_range() scroll to match to keep our selection */
2369 gint new_sel_end;
2371 count += document_replace_range(doc, find_text, replace_text, flags,
2372 line_start, line_end, FALSE, &new_sel_end);
2373 if (new_sel_end != -1)
2375 replaced = TRUE;
2376 /* this gets the greatest column within the selection after replacing */
2377 max_column = MAX(max_column,
2378 new_sel_end - sci_get_position_from_line(doc->editor->sci, line));
2382 sci_end_undo_action(doc->editor->sci);
2384 else /* handle normal line selection */
2386 count += document_replace_range(doc, find_text, replace_text, flags,
2387 selection_start, selection_end, TRUE, &selection_end);
2388 if (selection_end != -1)
2389 replaced = TRUE;
2392 if (replaced)
2393 { /* update the selection for the new endpoint */
2395 if (selection_mode == SC_SEL_RECTANGLE && selected_lines > 1)
2397 /* now we can scroll to the selection and destroy it because we rebuild it later */
2398 /*sci_goto_pos(doc->editor->sci, selection_start, FALSE);*/
2400 /* Note: the selection will be wrapped to last_line + 1 if max_column is greater than
2401 * the highest column on the last line. The wrapped selection is completely different
2402 * from the original one, so skip the selection at all */
2403 /* TODO is there a better way to handle the wrapped selection? */
2404 if ((sci_get_line_length(doc->editor->sci, last_line) - 1) >= max_column)
2405 { /* for keeping and adjusting the selection in multi line rectangle selection we
2406 * need the last line of the original selection and the greatest column number after
2407 * replacing and set the selection end to the last line at the greatest column */
2408 sci_set_selection_start(doc->editor->sci, selection_start);
2409 sci_set_selection_end(doc->editor->sci,
2410 sci_get_position_from_line(doc->editor->sci, last_line) + max_column);
2411 sci_set_selection_mode(doc->editor->sci, selection_mode);
2414 else
2416 sci_set_selection_start(doc->editor->sci, selection_start);
2417 sci_set_selection_end(doc->editor->sci, selection_end);
2420 else /* no replacements */
2421 utils_beep();
2423 show_replace_summary(doc, count, original_find_text, original_replace_text);
2427 /* returns number of replacements made. */
2428 gint document_replace_all(GeanyDocument *doc, const gchar *find_text, const gchar *replace_text,
2429 const gchar *original_find_text, const gchar *original_replace_text, GeanyFindFlags flags)
2431 gint len, count;
2432 g_return_val_if_fail(doc != NULL && find_text != NULL && replace_text != NULL, FALSE);
2434 if (! *find_text)
2435 return FALSE;
2437 len = sci_get_length(doc->editor->sci);
2438 count = document_replace_range(
2439 doc, find_text, replace_text, flags, 0, len, TRUE, NULL);
2441 show_replace_summary(doc, count, original_find_text, original_replace_text);
2442 return count;
2447 * Parses or re-parses the document's buffer and updates the type
2448 * keywords and symbol list.
2450 * @param doc The document.
2452 void document_update_tags(GeanyDocument *doc)
2454 guchar *buffer_ptr;
2455 gsize len;
2457 g_return_if_fail(DOC_VALID(doc));
2458 g_return_if_fail(app->tm_workspace != NULL);
2460 /* early out if it's a new file or doesn't support tags */
2461 if (! doc->file_name || ! doc->file_type || !filetype_has_tags(doc->file_type))
2463 /* We must call sidebar_update_tag_list() before returning,
2464 * to ensure that the symbol list is always updated properly (e.g.
2465 * when creating a new document with a partial filename set. */
2466 sidebar_update_tag_list(doc, FALSE);
2467 return;
2470 /* create a new TM file if there isn't one yet */
2471 if (! doc->tm_file)
2473 gchar *locale_filename = utils_get_locale_from_utf8(doc->file_name);
2474 const gchar *name;
2476 /* lookup the name rather than using filetype name to support custom filetypes */
2477 name = tm_source_file_get_lang_name(doc->file_type->lang);
2478 doc->tm_file = tm_source_file_new(locale_filename, FALSE, name);
2479 g_free(locale_filename);
2481 if (doc->tm_file && !tm_workspace_add_object(doc->tm_file))
2483 tm_work_object_free(doc->tm_file);
2484 doc->tm_file = NULL;
2488 /* early out if there's no work object and we couldn't create one */
2489 if (doc->tm_file == NULL)
2491 /* We must call sidebar_update_tag_list() before returning,
2492 * to ensure that the symbol list is always updated properly (e.g.
2493 * when creating a new document with a partial filename set. */
2494 sidebar_update_tag_list(doc, FALSE);
2495 return;
2498 len = sci_get_length(doc->editor->sci);
2499 /* tm_source_file_buffer_update() below don't support 0-length data,
2500 * so just empty the tags array and leave */
2501 if (len < 1)
2503 tm_tags_array_free(doc->tm_file->tags_array, FALSE);
2504 sidebar_update_tag_list(doc, FALSE);
2505 return;
2508 /* Parse Scintilla's buffer directly using TagManager
2509 * Note: this buffer *MUST NOT* be modified */
2510 buffer_ptr = (guchar *) scintilla_send_message(doc->editor->sci, SCI_GETCHARACTERPOINTER, 0, 0);
2511 tm_source_file_buffer_update(doc->tm_file, buffer_ptr, len, TRUE);
2513 sidebar_update_tag_list(doc, TRUE);
2514 document_highlight_tags(doc);
2518 /* Re-highlights type keywords without re-parsing the whole document. */
2519 void document_highlight_tags(GeanyDocument *doc)
2521 GString *keywords_str;
2522 gchar *keywords;
2523 gint keyword_idx;
2525 /* some filetypes support type keywords (such as struct names), but not
2526 * necessarily all filetypes for a particular scintilla lexer. this
2527 * tells us whether the filetype supports keywords, and if so
2528 * which index to use for the scintilla keywords set. */
2529 switch (doc->file_type->id)
2531 case GEANY_FILETYPES_C:
2532 case GEANY_FILETYPES_CPP:
2533 case GEANY_FILETYPES_CS:
2534 case GEANY_FILETYPES_D:
2535 case GEANY_FILETYPES_JAVA:
2536 case GEANY_FILETYPES_OBJECTIVEC:
2537 case GEANY_FILETYPES_VALA:
2538 case GEANY_FILETYPES_RUST:
2541 /* index of the keyword set in the Scintilla lexer, for
2542 * example in LexCPP.cxx, see "cppWordLists" global array.
2543 * TODO: this magic number should be a member of the filetype */
2544 keyword_idx = 3;
2545 break;
2547 default:
2548 return; /* early out if type keywords are not supported */
2550 if (!app->tm_workspace->work_object.tags_array)
2551 return;
2553 /* get any type keywords and tell scintilla about them
2554 * this will cause the type keywords to be colourized in scintilla */
2555 keywords_str = symbols_find_tags_as_string(app->tm_workspace->work_object.tags_array,
2556 TM_GLOBAL_TYPE_MASK, doc->file_type->lang);
2557 if (keywords_str)
2559 keywords = g_string_free(keywords_str, FALSE);
2560 sci_set_keywords(doc->editor->sci, keyword_idx, keywords);
2561 g_free(keywords);
2562 queue_colourise(doc); /* force re-highlighting the entire document */
2567 static gboolean on_document_update_tag_list_idle(gpointer data)
2569 GeanyDocument *doc = data;
2571 if (! DOC_VALID(doc))
2572 return FALSE;
2574 if (! main_status.quitting)
2575 document_update_tags(doc);
2577 doc->priv->tag_list_update_source = 0;
2579 /* don't update the tags until another modification of the buffer */
2580 return FALSE;
2584 void document_update_tag_list_in_idle(GeanyDocument *doc)
2586 if (editor_prefs.autocompletion_update_freq <= 0 || ! filetype_has_tags(doc->file_type))
2587 return;
2589 /* prevent "stacking up" callback handlers, we only need one to run soon */
2590 if (doc->priv->tag_list_update_source != 0)
2591 g_source_remove(doc->priv->tag_list_update_source);
2593 doc->priv->tag_list_update_source = g_timeout_add_full(G_PRIORITY_LOW,
2594 editor_prefs.autocompletion_update_freq, on_document_update_tag_list_idle, doc, NULL);
2598 static void document_load_config(GeanyDocument *doc, GeanyFiletype *type,
2599 gboolean filetype_changed)
2601 g_return_if_fail(doc);
2602 if (type == NULL)
2603 type = filetypes[GEANY_FILETYPES_NONE];
2605 if (filetype_changed)
2607 doc->file_type = type;
2609 /* delete tm file object to force creation of a new one */
2610 if (doc->tm_file != NULL)
2612 tm_workspace_remove_object(doc->tm_file, TRUE, TRUE);
2613 doc->tm_file = NULL;
2615 /* load tags files before highlighting (some lexers highlight global typenames) */
2616 if (type->id != GEANY_FILETYPES_NONE)
2617 symbols_global_tags_loaded(type->id);
2619 highlighting_set_styles(doc->editor->sci, type);
2620 editor_set_indentation_guides(doc->editor);
2621 build_menu_update(doc);
2622 queue_colourise(doc);
2623 doc->priv->symbol_list_sort_mode = type->priv->symbol_list_sort_mode;
2626 document_update_tags(doc);
2630 /** Sets the filetype of the document (which controls syntax highlighting and tags)
2631 * @param doc The document to use.
2632 * @param type The filetype. */
2633 void document_set_filetype(GeanyDocument *doc, GeanyFiletype *type)
2635 gboolean ft_changed;
2636 GeanyFiletype *old_ft;
2638 g_return_if_fail(doc);
2639 if (type == NULL)
2640 type = filetypes[GEANY_FILETYPES_NONE];
2642 old_ft = doc->file_type;
2643 geany_debug("%s : %s (%s)",
2644 (doc->file_name != NULL) ? doc->file_name : "unknown",
2645 type->name,
2646 (doc->encoding != NULL) ? doc->encoding : "unknown");
2648 ft_changed = (doc->file_type != type); /* filetype has changed */
2649 document_load_config(doc, type, ft_changed);
2651 if (ft_changed)
2653 const GeanyIndentPrefs *iprefs = editor_get_indent_prefs(NULL);
2655 /* assume that if previous filetype was none and the settings are the default ones, this
2656 * is the first time the filetype is carefully set, so we should apply indent settings */
2657 if ((! old_ft || old_ft->id == GEANY_FILETYPES_NONE) &&
2658 doc->editor->indent_type == iprefs->type &&
2659 doc->editor->indent_width == iprefs->width)
2661 document_apply_indent_settings(doc);
2662 ui_document_show_hide(doc);
2665 sidebar_openfiles_update(doc); /* to update the icon */
2666 g_signal_emit_by_name(geany_object, "document-filetype-set", doc, old_ft);
2671 void document_reload_config(GeanyDocument *doc)
2673 document_load_config(doc, doc->file_type, TRUE);
2678 * Sets the encoding of a document.
2679 * This function only set the encoding of the %document, it does not any conversions. The new
2680 * encoding is used when e.g. saving the file.
2682 * @param doc The document to use.
2683 * @param new_encoding The encoding to be set for the document.
2685 void document_set_encoding(GeanyDocument *doc, const gchar *new_encoding)
2687 if (doc == NULL || new_encoding == NULL ||
2688 utils_str_equal(new_encoding, doc->encoding))
2689 return;
2691 g_free(doc->encoding);
2692 doc->encoding = g_strdup(new_encoding);
2694 ui_update_statusbar(doc, -1);
2695 gtk_widget_set_sensitive(ui_lookup_widget(main_widgets.window, "menu_write_unicode_bom1"),
2696 encodings_is_unicode_charset(doc->encoding));
2700 /* own Undo / Redo implementation to be able to undo / redo changes
2701 * to the encoding or the Unicode BOM (which are Scintilla independet).
2702 * All Scintilla events are stored in the undo / redo buffer and are passed through. */
2704 /* Clears the Undo and Redo buffer (to be called when reloading or closing the document) */
2705 void document_undo_clear(GeanyDocument *doc)
2707 undo_action *a;
2709 while (g_trash_stack_height(&doc->priv->undo_actions) > 0)
2711 a = g_trash_stack_pop(&doc->priv->undo_actions);
2712 if (G_LIKELY(a != NULL))
2714 switch (a->type)
2716 case UNDO_ENCODING: g_free(a->data); break;
2717 default: break;
2719 g_free(a);
2722 doc->priv->undo_actions = NULL;
2724 while (g_trash_stack_height(&doc->priv->redo_actions) > 0)
2726 a = g_trash_stack_pop(&doc->priv->redo_actions);
2727 if (G_LIKELY(a != NULL))
2729 switch (a->type)
2731 case UNDO_ENCODING: g_free(a->data); break;
2732 default: break;
2734 g_free(a);
2737 doc->priv->redo_actions = NULL;
2739 if (! main_status.quitting && doc->editor != NULL)
2740 document_set_text_changed(doc, FALSE);
2744 /* note: this is called on SCN_MODIFIED notifications */
2745 void document_undo_add(GeanyDocument *doc, guint type, gpointer data)
2747 undo_action *action;
2749 g_return_if_fail(doc != NULL);
2751 action = g_new0(undo_action, 1);
2752 action->type = type;
2753 action->data = data;
2755 g_trash_stack_push(&doc->priv->undo_actions, action);
2757 /* avoid unnecessary redraws */
2758 if (type != UNDO_SCINTILLA || !doc->changed)
2759 document_set_text_changed(doc, TRUE);
2761 ui_update_popup_reundo_items(doc);
2765 gboolean document_can_undo(GeanyDocument *doc)
2767 g_return_val_if_fail(doc != NULL, FALSE);
2769 if (g_trash_stack_height(&doc->priv->undo_actions) > 0 || sci_can_undo(doc->editor->sci))
2770 return TRUE;
2771 else
2772 return FALSE;
2776 static void update_changed_state(GeanyDocument *doc)
2778 doc->changed =
2779 (sci_is_modified(doc->editor->sci) ||
2780 doc->has_bom != doc->priv->saved_encoding.has_bom ||
2781 ! utils_str_equal(doc->encoding, doc->priv->saved_encoding.encoding));
2782 document_set_text_changed(doc, doc->changed);
2786 void document_undo(GeanyDocument *doc)
2788 undo_action *action;
2790 g_return_if_fail(doc != NULL);
2792 action = g_trash_stack_pop(&doc->priv->undo_actions);
2794 if (G_UNLIKELY(action == NULL))
2796 /* fallback, should not be necessary */
2797 geany_debug("%s: fallback used", G_STRFUNC);
2798 sci_undo(doc->editor->sci);
2800 else
2802 switch (action->type)
2804 case UNDO_SCINTILLA:
2806 document_redo_add(doc, UNDO_SCINTILLA, NULL);
2808 sci_undo(doc->editor->sci);
2809 break;
2811 case UNDO_BOM:
2813 document_redo_add(doc, UNDO_BOM, GINT_TO_POINTER(doc->has_bom));
2815 doc->has_bom = GPOINTER_TO_INT(action->data);
2816 ui_update_statusbar(doc, -1);
2817 ui_document_show_hide(doc);
2818 break;
2820 case UNDO_ENCODING:
2822 /* use the "old" encoding */
2823 document_redo_add(doc, UNDO_ENCODING, g_strdup(doc->encoding));
2825 document_set_encoding(doc, (const gchar*)action->data);
2827 ignore_callback = TRUE;
2828 encodings_select_radio_item((const gchar*)action->data);
2829 ignore_callback = FALSE;
2831 g_free(action->data);
2832 break;
2834 default: break;
2837 g_free(action); /* free the action which was taken from the stack */
2839 update_changed_state(doc);
2840 ui_update_popup_reundo_items(doc);
2844 gboolean document_can_redo(GeanyDocument *doc)
2846 g_return_val_if_fail(doc != NULL, FALSE);
2848 if (g_trash_stack_height(&doc->priv->redo_actions) > 0 || sci_can_redo(doc->editor->sci))
2849 return TRUE;
2850 else
2851 return FALSE;
2855 void document_redo(GeanyDocument *doc)
2857 undo_action *action;
2859 g_return_if_fail(doc != NULL);
2861 action = g_trash_stack_pop(&doc->priv->redo_actions);
2863 if (G_UNLIKELY(action == NULL))
2865 /* fallback, should not be necessary */
2866 geany_debug("%s: fallback used", G_STRFUNC);
2867 sci_redo(doc->editor->sci);
2869 else
2871 switch (action->type)
2873 case UNDO_SCINTILLA:
2875 document_undo_add(doc, UNDO_SCINTILLA, NULL);
2877 sci_redo(doc->editor->sci);
2878 break;
2880 case UNDO_BOM:
2882 document_undo_add(doc, UNDO_BOM, GINT_TO_POINTER(doc->has_bom));
2884 doc->has_bom = GPOINTER_TO_INT(action->data);
2885 ui_update_statusbar(doc, -1);
2886 ui_document_show_hide(doc);
2887 break;
2889 case UNDO_ENCODING:
2891 document_undo_add(doc, UNDO_ENCODING, g_strdup(doc->encoding));
2893 document_set_encoding(doc, (const gchar*)action->data);
2895 ignore_callback = TRUE;
2896 encodings_select_radio_item((const gchar*)action->data);
2897 ignore_callback = FALSE;
2899 g_free(action->data);
2900 break;
2902 default: break;
2905 g_free(action); /* free the action which was taken from the stack */
2907 update_changed_state(doc);
2908 ui_update_popup_reundo_items(doc);
2912 static void document_redo_add(GeanyDocument *doc, guint type, gpointer data)
2914 undo_action *action;
2916 g_return_if_fail(doc != NULL);
2918 action = g_new0(undo_action, 1);
2919 action->type = type;
2920 action->data = data;
2922 g_trash_stack_push(&doc->priv->redo_actions, action);
2924 if (type != UNDO_SCINTILLA || !doc->changed)
2925 document_set_text_changed(doc, TRUE);
2927 ui_update_popup_reundo_items(doc);
2931 enum
2933 STATUS_CHANGED,
2934 #ifdef USE_GIO_FILEMON
2935 STATUS_DISK_CHANGED,
2936 #endif
2937 STATUS_READONLY
2939 static struct
2941 const gchar *name;
2942 GdkColor color;
2943 gboolean loaded;
2944 } document_status_styles[] = {
2945 { "geany-document-status-changed", {0}, FALSE },
2946 #ifdef USE_GIO_FILEMON
2947 { "geany-document-status-disk-changed", {0}, FALSE },
2948 #endif
2949 { "geany-document-status-readonly", {0}, FALSE }
2953 static gint document_get_status_id(GeanyDocument *doc)
2955 if (doc->changed)
2956 return STATUS_CHANGED;
2957 #ifdef USE_GIO_FILEMON
2958 else if (doc->priv->file_disk_status == FILE_CHANGED)
2959 return STATUS_DISK_CHANGED;
2960 #endif
2961 else if (doc->readonly)
2962 return STATUS_READONLY;
2964 return -1;
2968 /* returns an identifier that is to be set as a widget name or class to get it styled
2969 * depending on the document status (changed, readonly, etc.)
2970 * a NULL return value means default (unchanged) style */
2971 const gchar *document_get_status_widget_class(GeanyDocument *doc)
2973 gint status;
2975 g_return_val_if_fail(doc != NULL, NULL);
2977 status = document_get_status_id(doc);
2978 if (status < 0)
2979 return NULL;
2980 else
2981 return document_status_styles[status].name;
2986 * Gets the status color of the document, or @c NULL if default widget coloring should be used.
2987 * Returned colors are red if the document has changes, green if the document is read-only
2988 * or simply @c NULL if the document is unmodified but writable.
2990 * @param doc The document to use.
2992 * @return The color for the document or @c NULL if the default color should be used. The color
2993 * object is owned by Geany and should not be modified or freed.
2995 * @since 0.16
2997 const GdkColor *document_get_status_color(GeanyDocument *doc)
2999 gint status;
3001 g_return_val_if_fail(doc != NULL, NULL);
3003 status = document_get_status_id(doc);
3004 if (status < 0)
3005 return NULL;
3006 if (! document_status_styles[status].loaded)
3008 #if GTK_CHECK_VERSION(3, 0, 0)
3009 GdkRGBA color;
3010 GtkWidgetPath *path = gtk_widget_path_new();
3011 GtkStyleContext *ctx = gtk_style_context_new();
3012 gtk_widget_path_append_type(path, GTK_TYPE_WINDOW);
3013 gtk_widget_path_append_type(path, GTK_TYPE_BOX);
3014 gtk_widget_path_append_type(path, GTK_TYPE_NOTEBOOK);
3015 gtk_widget_path_append_type(path, GTK_TYPE_LABEL);
3016 gtk_widget_path_iter_set_name(path, -1, document_status_styles[status].name);
3017 gtk_style_context_set_screen(ctx, gtk_widget_get_screen(GTK_WIDGET(doc->editor->sci)));
3018 gtk_style_context_set_path(ctx, path);
3019 gtk_style_context_get_color(ctx, GTK_STATE_NORMAL, &color);
3020 document_status_styles[status].color.red = 0xffff * color.red;
3021 document_status_styles[status].color.green = 0xffff * color.green;
3022 document_status_styles[status].color.blue = 0xffff * color.blue;
3023 document_status_styles[status].loaded = TRUE;
3024 gtk_widget_path_unref(path);
3025 g_object_unref(ctx);
3026 #else
3027 GtkSettings *settings = gtk_widget_get_settings(GTK_WIDGET(doc->editor->sci));
3028 gchar *path = g_strconcat("GeanyMainWindow.GtkHBox.GtkNotebook.",
3029 document_status_styles[status].name, NULL);
3030 GtkStyle *style = gtk_rc_get_style_by_paths(settings, path, NULL, GTK_TYPE_LABEL);
3032 document_status_styles[status].color = style->fg[GTK_STATE_NORMAL];
3033 document_status_styles[status].loaded = TRUE;
3034 g_free(path);
3035 #endif
3037 return &document_status_styles[status].color;
3041 /** Accessor function for @ref documents_array items.
3042 * @warning Always check the returned document is valid (@c doc->is_valid).
3043 * @param idx @c documents_array index.
3044 * @return The document, or @c NULL if @a idx is out of range.
3046 * @since 0.16
3048 GeanyDocument *document_index(gint idx)
3050 return (idx >= 0 && idx < (gint) documents_array->len) ? documents[idx] : NULL;
3054 GeanyDocument *document_clone(GeanyDocument *old_doc)
3056 gchar *text;
3057 GeanyDocument *doc;
3058 ScintillaObject *old_sci;
3060 g_return_val_if_fail(old_doc, NULL);
3061 old_sci = old_doc->editor->sci;
3062 if (sci_has_selection(old_sci))
3063 text = sci_get_selection_contents(old_sci);
3064 else
3065 text = sci_get_contents(old_sci, -1);
3067 doc = document_new_file(NULL, old_doc->file_type, text);
3068 g_free(text);
3069 document_set_text_changed(doc, TRUE);
3071 /* copy file properties */
3072 doc->editor->line_wrapping = old_doc->editor->line_wrapping;
3073 doc->editor->line_breaking = old_doc->editor->line_breaking;
3074 doc->editor->auto_indent = old_doc->editor->auto_indent;
3075 editor_set_indent(doc->editor, old_doc->editor->indent_type,
3076 old_doc->editor->indent_width);
3077 doc->readonly = old_doc->readonly;
3078 doc->has_bom = old_doc->has_bom;
3079 doc->priv->protected = 0;
3080 document_set_encoding(doc, old_doc->encoding);
3081 sci_set_lines_wrapped(doc->editor->sci, doc->editor->line_wrapping);
3082 sci_set_readonly(doc->editor->sci, doc->readonly);
3084 /* update ui */
3085 ui_document_show_hide(doc);
3086 return doc;
3090 /* @note If successful, this should always be followed up with a call to
3091 * document_close_all().
3092 * @return TRUE if all files were saved or had their changes discarded. */
3093 gboolean document_account_for_unsaved(void)
3095 guint i, p, page_count;
3097 page_count = gtk_notebook_get_n_pages(GTK_NOTEBOOK(main_widgets.notebook));
3098 /* iterate over documents in tabs order */
3099 for (p = 0; p < page_count; p++)
3101 GeanyDocument *doc = document_get_from_page(p);
3103 if (DOC_VALID(doc) && doc->changed)
3105 if (! dialogs_show_unsaved_file(doc))
3106 return FALSE;
3109 /* all documents should now be accounted for, so ignore any changes */
3110 foreach_document (i)
3112 documents[i]->changed = FALSE;
3114 return TRUE;
3118 static void force_close_all(void)
3120 guint i, len = documents_array->len;
3122 /* check all documents have been accounted for */
3123 for (i = 0; i < len; i++)
3125 if (documents[i]->is_valid)
3127 g_return_if_fail(!documents[i]->changed);
3130 main_status.closing_all = TRUE;
3132 foreach_document(i)
3134 document_close(documents[i]);
3137 main_status.closing_all = FALSE;
3141 gboolean document_close_all(void)
3143 if (! document_account_for_unsaved())
3144 return FALSE;
3146 force_close_all();
3148 return TRUE;
3152 /* *
3153 * Shows a message related to a document.
3155 * Use this whenever the user needs to see a document-related message,
3156 * for example when the file was externally modified or deleted.
3158 * Any of the buttons can be @c NULL. If not @c NULL, @a btn_1's
3159 * @a response_1 response will be the default for the @c GtkInfoBar or
3160 * @c GtkDialog.
3162 * @param doc @c GeanyDocument.
3163 * @param msgtype The type of message.
3164 * @param response_cb A callback function called when there's a response.
3165 * @param btn_1 The first action area button.
3166 * @param response_1 The response for @a btn_1.
3167 * @param btn_2 The second action area button.
3168 * @param response_2 The response for @a btn_2.
3169 * @param btn_3 The third action area button.
3170 * @param response_3 The response for @a btn_3.
3171 * @param extra_text Text to show below the main message.
3172 * @param format The text format for the main message.
3173 * @param ... Used with @a format as in @c printf.
3175 * @since 1.25
3176 * */
3177 static GtkWidget* document_show_message(GeanyDocument *doc, GtkMessageType msgtype,
3178 void (*response_cb)(GtkWidget *info_bar, gint response_id, GeanyDocument *doc),
3179 const gchar *btn_1, GtkResponseType response_1,
3180 const gchar *btn_2, GtkResponseType response_2,
3181 const gchar *btn_3, GtkResponseType response_3,
3182 const gchar *extra_text, const gchar *format, ...)
3184 va_list args;
3185 gchar *text, *markup;
3186 GtkWidget *hbox, *vbox, *icon, *label, *extra_label, *content_area;
3187 GtkWidget *info_widget, *parent;
3188 parent = gtk_notebook_get_nth_page(GTK_NOTEBOOK(main_widgets.notebook),
3189 document_get_notebook_page(doc));
3191 va_start(args, format);
3192 text = g_strdup_vprintf(format, args);
3193 va_end(args);
3195 markup = g_strdup_printf("<span size=\"larger\">%s</span>", text);
3196 g_free(text);
3198 info_widget = gtk_info_bar_new();
3199 /* must be done now else Gtk-WARNING: widget not within a GtkWindow */
3200 gtk_box_pack_start(GTK_BOX(parent), info_widget, FALSE, TRUE, 0);
3202 gtk_info_bar_set_message_type(GTK_INFO_BAR(info_widget), msgtype);
3204 if (btn_1)
3205 gtk_info_bar_add_button(GTK_INFO_BAR(info_widget), btn_1, response_1);
3206 if (btn_2)
3207 gtk_info_bar_add_button(GTK_INFO_BAR(info_widget), btn_2, response_2);
3208 if (btn_3)
3209 gtk_info_bar_add_button(GTK_INFO_BAR(info_widget), btn_3, response_3);
3211 content_area = gtk_info_bar_get_content_area(GTK_INFO_BAR(info_widget));
3213 label = geany_wrap_label_new(NULL);
3214 gtk_label_set_markup(GTK_LABEL(label), markup);
3215 g_free(markup);
3217 g_signal_connect(info_widget, "response", G_CALLBACK(response_cb), doc);
3218 g_signal_connect_after(info_widget, "response", G_CALLBACK(gtk_widget_destroy), NULL);
3220 hbox = gtk_hbox_new(FALSE, 12);
3221 gtk_box_pack_start(GTK_BOX(content_area), hbox, TRUE, TRUE, 0);
3223 switch (msgtype)
3225 case GTK_MESSAGE_INFO:
3226 icon = gtk_image_new_from_stock(GTK_STOCK_DIALOG_INFO, GTK_ICON_SIZE_DIALOG);
3227 break;
3228 case GTK_MESSAGE_WARNING:
3229 icon = gtk_image_new_from_stock(GTK_STOCK_DIALOG_WARNING, GTK_ICON_SIZE_DIALOG);
3230 break;
3231 case GTK_MESSAGE_QUESTION:
3232 icon = gtk_image_new_from_stock(GTK_STOCK_DIALOG_QUESTION, GTK_ICON_SIZE_DIALOG);
3233 break;
3234 case GTK_MESSAGE_ERROR:
3235 icon = gtk_image_new_from_stock(GTK_STOCK_DIALOG_ERROR, GTK_ICON_SIZE_DIALOG);
3236 break;
3237 default:
3238 icon = NULL;
3239 break;
3242 if (icon)
3243 gtk_box_pack_start(GTK_BOX(hbox), icon, FALSE, TRUE, 0);
3245 if (extra_text)
3247 vbox = gtk_vbox_new(FALSE, 6);
3248 extra_label = geany_wrap_label_new(extra_text);
3249 gtk_box_pack_start(GTK_BOX(vbox), label, TRUE, TRUE, 0);
3250 gtk_box_pack_start(GTK_BOX(vbox), extra_label, TRUE, TRUE, 0);
3251 gtk_box_pack_start(GTK_BOX(hbox), vbox, TRUE, TRUE, 0);
3253 else
3254 gtk_box_pack_start(GTK_BOX(hbox), label, TRUE, TRUE, 0);
3256 gtk_box_reorder_child(GTK_BOX(parent), info_widget, 0);
3258 gtk_widget_show_all(info_widget);
3260 return info_widget;
3264 static void on_monitor_reload_file_response(GtkWidget *bar, gint response_id, GeanyDocument *doc)
3266 unprotect_document(doc);
3267 doc->priv->info_bars[MSG_TYPE_RELOAD] = NULL;
3269 if (response_id == RESPONSE_DOCUMENT_RELOAD)
3270 document_reload_file(doc, doc->encoding);
3271 else if (response_id == RESPONSE_DOCUMENT_SAVE)
3272 document_save_file(doc, FALSE);
3276 static gboolean on_sci_key(GtkWidget *widget, GdkEventKey *event, gpointer data)
3278 GtkInfoBar *bar = GTK_INFO_BAR(data);
3280 g_return_val_if_fail(event->type == GDK_KEY_PRESS, FALSE);
3282 switch (event->keyval)
3284 case GDK_Tab:
3285 case GDK_ISO_Left_Tab:
3287 GtkWidget *action_area = gtk_info_bar_get_action_area(bar);
3288 GtkDirectionType dir = event->keyval == GDK_Tab ? GTK_DIR_TAB_FORWARD : GTK_DIR_TAB_BACKWARD;
3289 gtk_widget_child_focus(action_area, dir);
3290 return TRUE;
3292 case GDK_Escape:
3294 gtk_info_bar_response(bar, GTK_RESPONSE_CANCEL);
3295 return TRUE;
3297 default:
3298 return FALSE;
3303 /* Sets up a signal handler to intercept some keys during the lifetime of the GtkInfoBar */
3304 static void enable_key_intercept(GeanyDocument *doc, GtkWidget *bar)
3306 /* automatically focus editor again on bar close */
3307 g_signal_connect_object(bar, "destroy", G_CALLBACK(gtk_widget_grab_focus), doc->editor->sci,
3308 G_CONNECT_SWAPPED);
3309 g_signal_connect_object(doc->editor->sci, "key-press-event", G_CALLBACK(on_sci_key), bar, 0);
3313 static void monitor_reload_file(GeanyDocument *doc)
3315 gchar *base_name = g_path_get_basename(doc->file_name);
3317 /* show this message only once */
3318 if (doc->priv->info_bars[MSG_TYPE_RELOAD] == NULL)
3320 GtkWidget *bar;
3322 bar = document_show_message(doc, GTK_MESSAGE_QUESTION, on_monitor_reload_file_response,
3323 _("_Reload"), RESPONSE_DOCUMENT_RELOAD,
3324 _("_Overwrite"), RESPONSE_DOCUMENT_SAVE,
3325 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
3326 _("Do you want to reload it?"),
3327 _("The file '%s' on the disk is more recent than the current buffer."),
3328 base_name);
3330 document_set_text_changed(doc, TRUE);
3331 protect_document(doc);
3332 doc->priv->info_bars[MSG_TYPE_RELOAD] = bar;
3333 enable_key_intercept(doc, bar);
3335 g_free(base_name);
3339 static void on_monitor_resave_missing_file_response(GtkWidget *bar,
3340 gint response_id,
3341 GeanyDocument *doc)
3343 unprotect_document(doc);
3345 if (response_id == RESPONSE_DOCUMENT_SAVE)
3346 dialogs_show_save_as();
3348 doc->priv->info_bars[MSG_TYPE_RESAVE] = NULL;
3352 static void monitor_resave_missing_file(GeanyDocument *doc)
3354 if (doc->priv->info_bars[MSG_TYPE_RESAVE] == NULL)
3356 GtkWidget *bar = doc->priv->info_bars[MSG_TYPE_RELOAD];
3358 if (bar != NULL) /* the "file on disk is newer" warning is now moot */
3359 gtk_info_bar_response(GTK_INFO_BAR(bar), GTK_RESPONSE_CANCEL);
3361 bar = document_show_message(doc, GTK_MESSAGE_WARNING,
3362 on_monitor_resave_missing_file_response,
3363 GTK_STOCK_SAVE, RESPONSE_DOCUMENT_SAVE,
3364 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
3365 NULL, GTK_RESPONSE_NONE,
3366 _("Try to resave the file?"),
3367 _("File \"%s\" was not found on disk!"),
3368 doc->file_name);
3370 protect_document(doc);
3371 document_set_text_changed(doc, TRUE);
3372 /* don't prompt more than once */
3373 SETPTR(doc->real_path, NULL);
3374 doc->priv->info_bars[MSG_TYPE_RESAVE] = bar;
3375 enable_key_intercept(doc, bar);
3380 /* Set force to force a disk check, otherwise it is ignored if there was a check
3381 * in the last file_prefs.disk_check_timeout seconds.
3382 * @return @c TRUE if the file has changed. */
3383 gboolean document_check_disk_status(GeanyDocument *doc, gboolean force)
3385 gboolean ret = FALSE;
3386 gboolean use_gio_filemon;
3387 time_t cur_time = 0;
3388 struct stat st;
3389 gchar *locale_filename;
3390 FileDiskStatus old_status;
3392 g_return_val_if_fail(doc != NULL, FALSE);
3394 /* ignore remote files and documents that have never been saved to disk */
3395 if (notebook_switch_in_progress() || file_prefs.disk_check_timeout == 0
3396 || doc->real_path == NULL || doc->priv->is_remote)
3397 return FALSE;
3399 use_gio_filemon = (doc->priv->monitor != NULL);
3401 if (use_gio_filemon)
3403 if (doc->priv->file_disk_status != FILE_CHANGED && ! force)
3404 return FALSE;
3406 else
3408 cur_time = time(NULL);
3409 if (! force && doc->priv->last_check > (cur_time - file_prefs.disk_check_timeout))
3410 return FALSE;
3412 doc->priv->last_check = cur_time;
3415 locale_filename = utils_get_locale_from_utf8(doc->file_name);
3416 if (g_stat(locale_filename, &st) != 0)
3418 monitor_resave_missing_file(doc);
3419 /* doc may be closed now */
3420 ret = TRUE;
3422 else if (! use_gio_filemon && /* ignore check when using GIO */
3423 doc->priv->mtime > cur_time)
3425 g_warning("%s: Something is wrong with the time stamps.", G_STRFUNC);
3426 /* Note: on Windows st.st_mtime can be newer than cur_time */
3428 else if (doc->priv->mtime < st.st_mtime)
3430 /* make sure the user is not prompted again after he cancelled the "reload file?" message */
3431 doc->priv->mtime = st.st_mtime;
3432 monitor_reload_file(doc);
3433 /* doc may be closed now */
3434 ret = TRUE;
3436 g_free(locale_filename);
3438 if (DOC_VALID(doc))
3439 { /* doc can get invalid when a document was closed */
3440 old_status = doc->priv->file_disk_status;
3441 doc->priv->file_disk_status = FILE_OK;
3442 if (old_status != doc->priv->file_disk_status)
3443 ui_update_tab_status(doc);
3445 return ret;
3449 /** Compares documents by their display names.
3450 * This matches @c GCompareFunc for use with e.g. @c g_ptr_array_sort().
3451 * @note 'Display name' means the base name of the document's filename.
3453 * @param a @c GeanyDocument**.
3454 * @param b @c GeanyDocument**.
3455 * @warning The arguments take the address of each document pointer.
3456 * @return Negative value if a < b; zero if a = b; positive value if a > b.
3458 * @since 0.21
3460 gint document_compare_by_display_name(gconstpointer a, gconstpointer b)
3462 GeanyDocument *doc_a = *((GeanyDocument**) a);
3463 GeanyDocument *doc_b = *((GeanyDocument**) b);
3464 gchar *base_name_a, *base_name_b;
3465 gint result;
3467 base_name_a = g_path_get_basename(DOC_FILENAME(doc_a));
3468 base_name_b = g_path_get_basename(DOC_FILENAME(doc_b));
3470 result = strcmp(base_name_a, base_name_b);
3472 g_free(base_name_a);
3473 g_free(base_name_b);
3475 return result;
3479 /** Compares documents by their tab order.
3480 * This matches @c GCompareFunc for use with e.g. @c g_ptr_array_sort().
3482 * @param a @c GeanyDocument**.
3483 * @param b @c GeanyDocument**.
3484 * @warning The arguments take the address of each document pointer.
3485 * @return Negative value if a < b; zero if a = b; positive value if a > b.
3487 * @since 0.21 (GEANY_API_VERSION 209)
3489 gint document_compare_by_tab_order(gconstpointer a, gconstpointer b)
3491 GeanyDocument *doc_a = *((GeanyDocument**) a);
3492 GeanyDocument *doc_b = *((GeanyDocument**) b);
3493 gint notebook_position_doc_a;
3494 gint notebook_position_doc_b;
3496 notebook_position_doc_a = document_get_notebook_page(doc_a);
3497 notebook_position_doc_b = document_get_notebook_page(doc_b);
3499 if (notebook_position_doc_a < notebook_position_doc_b)
3500 return -1;
3501 if (notebook_position_doc_a > notebook_position_doc_b)
3502 return 1;
3503 /* equality */
3504 return 0;
3508 /** Compares documents by their tab order, in reverse order.
3509 * This matches @c GCompareFunc for use with e.g. @c g_ptr_array_sort().
3511 * @param a @c GeanyDocument**.
3512 * @param b @c GeanyDocument**.
3513 * @warning The arguments take the address of each document pointer.
3514 * @return Negative value if a < b; zero if a = b; positive value if a > b.
3516 * @since 0.21 (GEANY_API_VERSION 209)
3518 gint document_compare_by_tab_order_reverse(gconstpointer a, gconstpointer b)
3520 GeanyDocument *doc_a = *((GeanyDocument**) a);
3521 GeanyDocument *doc_b = *((GeanyDocument**) b);
3522 gint notebook_position_doc_a;
3523 gint notebook_position_doc_b;
3525 notebook_position_doc_a = document_get_notebook_page(doc_a);
3526 notebook_position_doc_b = document_get_notebook_page(doc_b);
3528 if (notebook_position_doc_a < notebook_position_doc_b)
3529 return 1;
3530 if (notebook_position_doc_a > notebook_position_doc_b)
3531 return -1;
3532 /* equality */
3533 return 0;
3537 void document_grab_focus(GeanyDocument *doc)
3539 g_return_if_fail(doc != NULL);
3541 gtk_widget_grab_focus(GTK_WIDGET(doc->editor->sci));