geany/src/document.c

1412 lines
39 KiB
C
Raw Normal View History

/*
* document.c - this file is part of Geany, a fast and lightweight IDE
*
* Copyright 2006 Enrico Troeger <enrico.troeger@uvena.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $Id$
*/
#include "SciLexer.h"
#include "geany.h"
#ifdef TIME_WITH_SYS_TIME
# include <time.h>
# include <sys/time.h>
#endif
#include <unistd.h>
#include <string.h>
#include <errno.h>
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#endif
#include <ctype.h>
#include <stdlib.h>
#include "document.h"
#include "callbacks.h"
#include "support.h"
#include "sciwrappers.h"
#include "sci_cb.h"
#include "dialogs.h"
#include "msgwindow.h"
#include "templates.h"
#include "treeviews.h"
#include "utils.h"
#include "encodings.h"
#include "notebook.h"
#include "main.h"
/* Returns -1 if no text found or the new range endpoint after replacing. */
static gint
document_replace_range(gint idx, const gchar *find_text, const gchar *replace_text,
gint flags, gint start, gint end);
/* returns the index of the notebook page which has the given filename
* is_tm_filename is needed when passing TagManager filenames because they are
* dereferenced, and would not match the link filename. */
gint document_find_by_filename(const gchar *filename, gboolean is_tm_filename)
{
guint i;
if (! filename) return -1;
for(i = 0; i < GEANY_MAX_OPEN_FILES; i++)
{
gchar *dl_fname = (is_tm_filename && doc_list[i].tm_file) ?
doc_list[i].tm_file->file_name : doc_list[i].file_name;
#ifdef G_OS_WIN32
// ignore the case of filenames and paths under WIN32, causes errors if not
if (dl_fname && ! strcasecmp(dl_fname, filename)) return i;
#else
if (dl_fname && utils_strcmp(dl_fname, filename)) return i;
#endif
}
return -1;
}
/* returns the index of the notebook page which has sci */
gint document_find_by_sci(ScintillaObject *sci)
{
guint i;
if (! sci) return -1;
for(i = 0; i < GEANY_MAX_OPEN_FILES; i++)
{
if (doc_list[i].is_valid && doc_list[i].sci == sci) return i;
}
return -1;
}
/* returns the index of the given notebook page in the document list */
gint document_get_n_idx(guint page_num)
{
ScintillaObject *sci;
if (page_num >= GEANY_MAX_OPEN_FILES) return -1;
sci = (ScintillaObject*)gtk_notebook_get_nth_page(
GTK_NOTEBOOK(app->notebook), page_num);
return document_find_by_sci(sci);
}
/* returns the index of the current notebook page in the document list */
gint document_get_cur_idx(void)
{
gint cur_page = gtk_notebook_get_current_page(GTK_NOTEBOOK(app->notebook));
ScintillaObject *sci = (ScintillaObject*)gtk_notebook_get_nth_page(GTK_NOTEBOOK(app->notebook), cur_page);
if (cur_page == -1)
return -1;
else
return document_find_by_sci(sci);
}
/* returns the next free place(i.e. index) in the document list
* If there is for any reason no free place, -1 is returned
*/
gint document_get_new_idx(void)
{
guint i;
for(i = 0; i < GEANY_MAX_OPEN_FILES; i++)
{
if (doc_list[i].sci == NULL)
{
return (gint) i;
}
}
return -1;
}
/* changes the color of the tab text according to the status */
void document_change_tab_color(gint index)
{
if (index >= 0 && doc_list[index].sci)
{
GdkColor colorred = {0, 65535, 0, 0};
GdkColor colorblack = {0, 0, 0, 0};
gtk_widget_modify_fg(doc_list[index].tab_label, GTK_STATE_NORMAL,
(doc_list[index].changed) ? &colorred : &colorblack);
gtk_widget_modify_fg(doc_list[index].tab_label, GTK_STATE_ACTIVE,
(doc_list[index].changed) ? &colorred : &colorblack);
gtk_widget_modify_fg(doc_list[index].tabmenu_label, GTK_STATE_PRELIGHT,
(doc_list[index].changed) ? &colorred : &colorblack);
gtk_widget_modify_fg(doc_list[index].tabmenu_label, GTK_STATE_NORMAL,
(doc_list[index].changed) ? &colorred : &colorblack);
}
}
void document_set_text_changed(gint index)
{
document_change_tab_color(index);
utils_save_buttons_toggle(doc_list[index].changed);
utils_set_window_title(index);
}
/* sets in all document structs the flag is_valid to FALSE and initializes some members to NULL,
* to mark it uninitialized. The flag is_valid is set to TRUE in document_create_new_sci(). */
void document_init_doclist(void)
{
gint i;
for (i = 0; i < GEANY_MAX_OPEN_FILES; i++)
{
doc_list[i].is_valid = FALSE;
doc_list[i].has_tags = FALSE;
doc_list[i].use_auto_indention = app->pref_editor_use_auto_indention;
doc_list[i].line_breaking = app->pref_editor_line_breaking;
doc_list[i].readonly = FALSE;
doc_list[i].tag_store = NULL;
doc_list[i].tag_tree = NULL;
doc_list[i].file_name = NULL;
doc_list[i].file_type = NULL;
doc_list[i].tm_file = NULL;
doc_list[i].encoding = NULL;
doc_list[i].has_bom = FALSE;
doc_list[i].sci = NULL;
}
}
// Apply just the prefs that can change in the Preferences dialog
void document_apply_update_prefs(ScintillaObject *sci)
{
sci_set_mark_long_lines(sci, app->long_line_type, app->long_line_column, app->long_line_color);
sci_set_tab_width(sci, app->pref_editor_tab_width);
sci_set_autoc_max_height(sci, app->autocompletion_max_height);
sci_set_indentionguides(sci, app->pref_editor_show_indent_guide);
sci_set_visible_white_spaces(sci, app->pref_editor_show_white_space);
sci_set_visible_eols(sci, app->pref_editor_show_line_endings);
sci_set_folding_margin_visible(sci, app->pref_editor_folding);
}
/* creates a new tab in the notebook and does all related stuff
* finally it returns the index of the created document */
gint document_create_new_sci(const gchar *filename)
{
ScintillaObject *sci;
PangoFontDescription *pfd;
gchar *title, *fname;
GtkTreeIter iter;
gint new_idx = document_get_new_idx();
document *this;
gint tabnum;
if (new_idx == -1) return -1;
this = &(doc_list[new_idx]);
/* SCI - Code */
sci = SCINTILLA(scintilla_new());
scintilla_set_id(sci, new_idx);
this->sci = sci;
gtk_widget_show(GTK_WIDGET(sci));
sci_set_codepage(sci, SC_CP_UTF8);
//SSM(sci, SCI_SETWRAPSTARTINDENT, 4, 0);
// disable scintilla provided popup menu
sci_use_popup(sci, FALSE);
sci_assign_cmdkey(sci, SCK_HOME, SCI_VCHOMEWRAP);
sci_assign_cmdkey(sci, SCK_END, SCI_LINEENDWRAP);
// disable select all to be able to redefine it
sci_clear_cmdkey(sci, 'A' | (SCMOD_CTRL << 16));
document_apply_update_prefs(sci);
sci_set_symbol_margin(sci, app->show_markers_margin);
sci_set_line_numbers(sci, app->show_linenumber_margin, 0);
sci_set_lines_wrapped(sci, app->pref_editor_line_breaking);
pfd = pango_font_description_from_string(app->editor_font);
fname = g_strdup_printf("!%s", pango_font_description_get_family(pfd));
document_set_font(new_idx, fname, pango_font_description_get_size(pfd) / PANGO_SCALE);
pango_font_description_free(pfd);
g_free(fname);
title = (filename) ? g_path_get_basename(filename) : g_strdup(GEANY_STRING_UNTITLED);
tabnum = notebook_new_tab(new_idx, title, GTK_WIDGET(sci));
gtk_notebook_set_current_page(GTK_NOTEBOOK(app->notebook), tabnum);
iter = treeviews_openfiles_add(new_idx, title);
g_free(title);
this->tag_store = NULL;
this->tag_tree = NULL;
// "the" SCI signal
g_signal_connect((GtkWidget*) sci, "sci-notify",
G_CALLBACK(on_editor_notification), GINT_TO_POINTER(new_idx));
// signal for insert-key(works without too, but to update the right status bar)
/* g_signal_connect((GtkWidget*) sci, "key-press-event",
G_CALLBACK(keybindings_got_event), GINT_TO_POINTER(new_idx));
*/ // signal for the popup menu
g_signal_connect((GtkWidget*) sci, "button-press-event",
G_CALLBACK(on_editor_button_press_event), GINT_TO_POINTER(new_idx));
utils_close_buttons_toggle();
// store important pointers in the tab list
this->file_name = (filename) ? g_strdup(filename) : NULL;
this->encoding = NULL;
this->tm_file = NULL;
this->iter = iter;
this->file_type = NULL;
this->mtime = 0;
this->changed = FALSE;
this->last_check = time(NULL);
this->do_overwrite = FALSE;
this->readonly = FALSE;
this->line_breaking = app->pref_editor_line_breaking;
this->use_auto_indention = app->pref_editor_use_auto_indention;
this->has_tags = FALSE;
this->is_valid = TRUE;
return new_idx;
}
/* removes the given notebook tab and clears the related entry in the document list */
gboolean document_remove(guint page_num)
{
gint idx = document_get_n_idx(page_num);
if (idx >= 0 && idx <= GEANY_MAX_OPEN_FILES)
{
if (doc_list[idx].changed && ! dialogs_show_unsaved_file(idx))
{
return FALSE;
}
gtk_notebook_remove_page(GTK_NOTEBOOK(app->notebook), page_num);
treeviews_openfiles_remove(doc_list[idx].iter);
if (GTK_IS_WIDGET(doc_list[idx].tag_tree))
{
//g_object_unref(doc_list[idx].tag_tree); // no need to unref when destroying?
gtk_widget_destroy(doc_list[idx].tag_tree);
}
msgwin_status_add(_("File %s closed."),
(doc_list[idx].file_name) ? doc_list[idx].file_name : GEANY_STRING_UNTITLED);
g_free(doc_list[idx].encoding);
g_free(doc_list[idx].file_name);
tm_workspace_remove_object(doc_list[idx].tm_file, TRUE);
doc_list[idx].is_valid = FALSE;
doc_list[idx].sci = NULL;
doc_list[idx].file_name = NULL;
doc_list[idx].file_type = NULL;
doc_list[idx].encoding = NULL;
doc_list[idx].has_bom = FALSE;
doc_list[idx].tm_file = NULL;
if (gtk_notebook_get_n_pages(GTK_NOTEBOOK(app->notebook)) == 0)
{
utils_update_tag_list(-1, FALSE);
//on_notebook1_switch_page(GTK_NOTEBOOK(app->notebook), NULL, 0, NULL);
utils_set_window_title(-1);
utils_save_buttons_toggle(FALSE);
utils_close_buttons_toggle();
utils_build_show_hide(-1);
}
}
else geany_debug("Error: idx: %d page_num: %d", idx, page_num);
return TRUE;
}
/* This creates a new document, by clearing the text widget and setting the
current filename to NULL. */
void document_new_file(filetype *ft)
{
if (gtk_notebook_get_n_pages(GTK_NOTEBOOK(app->notebook)) < GEANY_MAX_OPEN_FILES)
{
gint idx = document_create_new_sci(NULL);
gchar *template = document_prepare_template(ft);
if (idx == -1)
{
dialogs_show_error(
_("You have opened too many files. There is a limit of %d concurrent open files."),
GEANY_MAX_OPEN_FILES);
return;
}
sci_clear_all(doc_list[idx].sci);
sci_set_text(doc_list[idx].sci, template);
g_free(template);
doc_list[idx].encoding = g_strdup(encodings[app->pref_editor_default_encoding].charset);
//document_set_filetype(idx, (ft == NULL) ? filetypes[GEANY_FILETYPES_ALL] : ft);
document_set_filetype(idx, ft);
if (ft == NULL) filetypes[GEANY_FILETYPES_ALL]->style_func_ptr(doc_list[idx].sci);
utils_set_window_title(idx);
utils_build_show_hide(idx);
utils_update_tag_list(idx, FALSE);
doc_list[idx].mtime = time(NULL);
doc_list[idx].changed = FALSE;
document_set_text_changed(idx);
utils_document_show_hide(idx); //update the document menu
#ifdef G_OS_WIN32
sci_set_eol_mode(doc_list[idx].sci, SC_EOL_CRLF);
#else
sci_set_eol_mode(doc_list[idx].sci, SC_EOL_LF);
#endif
sci_set_line_numbers(doc_list[idx].sci, app->show_linenumber_margin, 0);
sci_empty_undo_buffer(doc_list[idx].sci);
sci_goto_pos(doc_list[idx].sci, 0, TRUE);
msgwin_status_add(_("New file opened."));
}
else
{
dialogs_show_error(
_("You have opened too many files. There is a limit of %d concurrent open files."),
GEANY_MAX_OPEN_FILES);
}
}
/* If idx is set to -1, it creates a new tab, opens the file from filename and
* set the cursor to pos.
* If idx is greater than -1, it reloads the file in the tab corresponding to
* idx and set the cursor to position 0. In this case, filename should be NULL
* It returns the idx of the opened file or -1 if an error occurred.
*/
int document_open_file(gint idx, const gchar *filename, gint pos, gboolean readonly, filetype *ft,
const gchar *forced_enc)
{
gint editor_mode;
gsize size;
gboolean reload = (idx == -1) ? FALSE : TRUE;
struct stat st;
gboolean bom = FALSE;
gchar *enc = NULL;
gchar *utf8_filename = NULL;
gchar *locale_filename = NULL;
GError *err = NULL;
gchar *data = NULL;
//struct timeval tv, tv1;
//struct timezone tz;
//gettimeofday(&tv, &tz);
if (reload)
{
utf8_filename = g_strdup(doc_list[idx].file_name);
locale_filename = utils_get_locale_from_utf8(utf8_filename);
}
else
{
// filename must not be NULL when it is a new file
if (filename == NULL)
{
msgwin_status_add(_("Invalid filename"));
return -1;
}
// try to get the UTF-8 equivalent for the filename, fallback to filename if error
locale_filename = g_strdup(filename);
utf8_filename = utils_get_utf8_from_locale(locale_filename);
// if file is already open, switch to it and go
idx = document_find_by_filename(utf8_filename, FALSE);
if (idx >= 0)
{
gtk_notebook_set_current_page(GTK_NOTEBOOK(app->notebook),
gtk_notebook_page_num(GTK_NOTEBOOK(app->notebook),
(GtkWidget*) doc_list[idx].sci));
sci_goto_pos(doc_list[idx].sci, pos, TRUE);
g_free(utf8_filename);
g_free(locale_filename);
return idx;
}
}
if (stat(locale_filename, &st) != 0)
{
msgwin_status_add(_("Could not open file %s (%s)"), utf8_filename, g_strerror(errno));
g_free(utf8_filename);
g_free(locale_filename);
return -1;
}
#ifdef G_OS_WIN32
if (! g_file_get_contents(utf8_filename, &data, &size, &err))
#else
if (! g_file_get_contents(locale_filename, &data, &size, &err))
#endif
{
//msgwin_status_add(_("Could not open file %s (%s)"), utf8_filename, g_strerror(err->code));
msgwin_status_add(err->message);
g_error_free(err);
g_free(utf8_filename);
g_free(locale_filename);
return -1;
}
/* Determine character encoding and convert to utf-8*/
if (reload && forced_enc != NULL)
{ // reload file with specified encoding
if (utils_strcmp(forced_enc, "UTF-8"))
{
if (! g_utf8_validate(data, size, NULL))
{
msgwin_status_add(_("The file \"%s\" is not valid %s."), utf8_filename, "UTF-8");
utils_beep();
g_free(data);
g_free(utf8_filename);
g_free(locale_filename);
return -1;
}
else
{
bom = utils_strcmp(utils_scan_unicode_bom(data), "UTF-8");
enc = g_strdup(forced_enc);
}
}
else
{
gchar *converted_text = utils_convert_to_utf8_from_charset(data, size, forced_enc);
if (converted_text == NULL)
{
msgwin_status_add(_("The file \"%s\" is not valid %s."), utf8_filename, forced_enc);
utils_beep();
g_free(data);
g_free(utf8_filename);
g_free(locale_filename);
return -1;
}
else
{
g_free(data);
data = (void*)converted_text;
size = strlen(converted_text);
bom = utils_strcmp(utils_scan_unicode_bom(data), "UTF-8");
enc = g_strdup(forced_enc);
}
}
}
else if (size > 0)
{ // the usual way to detect encoding and convert to UTF-8
if (size >= 4)
{
enc = utils_scan_unicode_bom(data);
}
if (enc != NULL)
{
bom = TRUE;
if (enc[4] != '8') // the BOM indicated something else than UTF-8
{
gchar *converted_text = utils_convert_to_utf8_from_charset(data, size, enc);
if (converted_text == NULL)
{
g_free(enc);
enc = NULL;
bom = FALSE;
}
else
{
g_free(data);
data = (void*)converted_text;
size = strlen(converted_text);
}
}
}
// this if is important, else doesn't work because enc can be altered in the above block
if (enc == NULL)
{
if (g_utf8_validate(data, size, NULL))
{
enc = g_strdup("UTF-8");
}
else
{
gchar *converted_text = utils_convert_to_utf8(data, size, &enc);
if (converted_text == NULL)
{
msgwin_status_add(
_("The file \"%s\" does not look like a text file or the file encoding is not supported."),
utf8_filename);
utils_beep();
g_free(data);
g_free(utf8_filename);
g_free(locale_filename);
return -1;
}
else
{
g_free(data);
data = (void*)converted_text;
size = strlen(converted_text);
}
}
}
}
else
{
enc = g_strdup("UTF-8");
}
if (bom)
{
gchar *data_without_bom;
data_without_bom = g_strdup(data + 3);
g_free(data);
data = data_without_bom;
}
if (! reload) idx = document_create_new_sci(utf8_filename);
if (idx == -1) return -1; // really should not happen
// set editor mode and add the text to the ScintillaObject
sci_set_text(doc_list[idx].sci, data); // NULL terminated data; avoids Unsaved
editor_mode = utils_get_line_endings(data, size);
sci_set_eol_mode(doc_list[idx].sci, editor_mode);
sci_set_line_numbers(doc_list[idx].sci, app->show_linenumber_margin, 0);
sci_set_savepoint(doc_list[idx].sci);
sci_empty_undo_buffer(doc_list[idx].sci);
// get the modification time from file and keep it
doc_list[idx].mtime = st.st_mtime;
doc_list[idx].changed = FALSE;
doc_list[idx].file_name = g_strdup(utf8_filename);
doc_list[idx].encoding = enc;
doc_list[idx].has_bom = bom;
sci_goto_pos(doc_list[idx].sci, pos, TRUE);
if (! reload)
{
filetype *use_ft = (ft != NULL) ? ft : filetypes_get_from_filename(utf8_filename);
doc_list[idx].readonly = readonly;
sci_set_readonly(doc_list[idx].sci, readonly);
document_set_filetype(idx, use_ft);
utils_build_show_hide(idx);
}
else
{
document_update_tag_list(idx, TRUE);
}
document_set_text_changed(idx);
utils_document_show_hide(idx); //update the document menu
g_free(data);
// finally add current file to recent files menu, but not the files from the last session
if (! app->opening_session_files) utils_add_recent_file(utf8_filename);
if (reload)
msgwin_status_add(_("File %s reloaded."), utf8_filename);
else
msgwin_status_add(_("File %s opened(%d%s)."),
utf8_filename, gtk_notebook_get_n_pages(GTK_NOTEBOOK(app->notebook)),
(readonly) ? _(", read-only") : "");
g_free(utf8_filename);
g_free(locale_filename);
//gettimeofday(&tv1, &tz);
//geany_debug("%s: %d", filename, (gint)(tv1.tv_usec - tv.tv_usec));
return idx;
}
gint document_reload_file(gint idx, const gchar *forced_enc)
{
gint pos = 0;
if (idx < 0 || ! doc_list[idx].is_valid)
return -1;
// try to set the cursor to the position before reloading
pos = sci_get_current_position(doc_list[idx].sci);
return document_open_file(idx, NULL, pos, doc_list[idx].readonly,
doc_list[idx].file_type, forced_enc);
}
/* This saves the file.
* When force is set then it is always saved, even if it is unchanged(useful when using Save As) */
void document_save_file(gint idx, gboolean force)
{
gchar *data;
FILE *fp;
gint bytes_written, len;
gchar *locale_filename = NULL;
if (idx == -1) return;
if (! force && ! doc_list[idx].changed) return;
if (doc_list[idx].file_name == NULL)
{
msgwin_status_add(_("Error saving file."));
utils_beep();
return;
}
// replaces tabs by spaces
if (app->pref_editor_replace_tabs) document_replace_tabs(idx);
// strip trailing spaces
if (app->pref_editor_trail_space) document_strip_trailing_spaces(idx);
// ensure the file has a newline at the end
if (app->pref_editor_new_line) document_ensure_final_newline(idx);
// ensure there a really the same EOL chars
sci_convert_eols(doc_list[idx].sci, sci_get_eol_mode(doc_list[idx].sci));
len = sci_get_length(doc_list[idx].sci) + 1;
if (doc_list[idx].has_bom && utils_is_unicode_charset(doc_list[idx].encoding))
{
data = (gchar*) g_malloc(len + 3); // 3 chars for BOM
data[0] = 0xef;
data[1] = 0xbb;
data[2] = 0xbf;
sci_get_text(doc_list[idx].sci, len, data + 3);
len += 3;
}
else
{
data = (gchar*) g_malloc(len);
sci_get_text(doc_list[idx].sci, len, data);
}
// save in original encoding, skip when it is already UTF-8
if (doc_list[idx].encoding != NULL && ! utils_strcmp(doc_list[idx].encoding, "UTF-8"))
{
GError *conv_error = NULL;
gchar* conv_file_contents = NULL;
gsize conv_len;
// try to convert it from UTF-8 to original encoding
conv_file_contents = g_convert(data, len-1, doc_list[idx].encoding, "UTF-8",
NULL, &conv_len, &conv_error);
if (conv_error != NULL)
{
dialogs_show_error(
_("An error occurred while converting the file from UTF-8 in \"%s\". The file remains unsaved."
"\nError message: %s\n"),
doc_list[idx].encoding, conv_error->message);
geany_debug("encoding error: %s)", conv_error->message);
g_error_free(conv_error);
g_free(data);
return;
}
else
{
g_free(data);
data = conv_file_contents;
len = conv_len;
}
}
else
{
len = strlen(data);
}
locale_filename = utils_get_locale_from_utf8(doc_list[idx].file_name);
fp = fopen(locale_filename, "wb"); // this should fix the windows \n problem
g_free(locale_filename);
if (fp == NULL)
{
msgwin_status_add(_("Error saving file (%s)."), strerror(errno));
utils_beep();
g_free(data);
return;
}
bytes_written = fwrite(data, sizeof (gchar), len, fp);
fclose (fp);
g_free(data);
if (len != bytes_written)
{
msgwin_status_add(_("Error saving file."));
utils_beep();
return;
}
// ignore the following things if we are quitting
if (! app->quitting)
{
gchar *basename = g_path_get_basename(doc_list[idx].file_name);
// set line numbers again, to reset the margin width, if
// there are more lines than before
sci_set_line_numbers(doc_list[idx].sci, app->show_linenumber_margin, 0);
sci_set_savepoint(doc_list[idx].sci);
doc_list[idx].mtime = time(NULL);
if (doc_list[idx].file_type == NULL || doc_list[idx].file_type->id == GEANY_FILETYPES_ALL)
{
doc_list[idx].file_type = filetypes_get_from_filename(doc_list[idx].file_name);
filetypes_select_radio_item(doc_list[idx].file_type);
}
document_set_filetype(idx, doc_list[idx].file_type);
tm_workspace_update(TM_WORK_OBJECT(app->tm_workspace), TRUE, TRUE, FALSE);
gtk_label_set_text(GTK_LABEL(doc_list[idx].tab_label), basename);
gtk_label_set_text(GTK_LABEL(doc_list[idx].tabmenu_label), basename);
treeviews_openfiles_update(doc_list[idx].iter, doc_list[idx].file_name);
msgwin_status_add(_("File %s saved."), doc_list[idx].file_name);
utils_update_statusbar(idx, -1);
treeviews_openfiles_update(doc_list[idx].iter, basename);
g_free(basename);
}
}
#define SEARCH_NOT_FOUND_TXT _("The document has been searched completely but the match \"%s\" was not found. Wrap search around the document?")
/* special search function, used from the find entry in the toolbar */
void document_find_next(gint idx, const gchar *text, gint flags, gboolean find_button, gboolean inc)
{
gint selection_end, search_pos;
g_return_if_fail(text != NULL);
if (idx == -1 || ! *text) return;
selection_end = sci_get_selection_end(doc_list[idx].sci);
if (!inc && sci_can_copy(doc_list[idx].sci))
{ // there's a selection so go to the end
sci_goto_pos(doc_list[idx].sci, selection_end, TRUE);
}
sci_set_search_anchor(doc_list[idx].sci);
search_pos = sci_search_next(doc_list[idx].sci, flags, text);
if (search_pos != -1)
{
sci_scroll_caret(doc_list[idx].sci);
}
else
{
if (find_button)
{
if (dialogs_show_question(SEARCH_NOT_FOUND_TXT, text))
{
sci_goto_pos(doc_list[idx].sci, 0, FALSE);
document_find_next(idx, text, flags, TRUE, inc);
}
}
else
{
utils_beep();
sci_goto_pos(doc_list[idx].sci, 0, FALSE);
}
}
}
/* General search function, used from the find dialog.
* Returns -1 on failure or the start position of the matching text.
* Will skip past any selection, ignoring it. */
gint document_find_text(gint idx, const gchar *text, gint flags, gboolean search_backwards)
{
gint selection_end, selection_start, search_pos;
g_return_val_if_fail(text != NULL, -1);
if (idx == -1 || ! *text) return -1;
// Sci doesn't support searching backwards with a regex
if (flags & SCFIND_REGEXP) search_backwards = FALSE;
selection_start = sci_get_selection_start(doc_list[idx].sci);
selection_end = sci_get_selection_end(doc_list[idx].sci);
if ((selection_end - selection_start) > 0)
{ // there's a selection so go to the end
if (search_backwards)
sci_goto_pos(doc_list[idx].sci, selection_start, TRUE);
else
sci_goto_pos(doc_list[idx].sci, selection_end, TRUE);
}
sci_set_search_anchor(doc_list[idx].sci);
if (search_backwards)
search_pos = sci_search_prev(doc_list[idx].sci, flags, text);
else
search_pos = sci_search_next(doc_list[idx].sci, flags, text);
if (search_pos != -1)
{
sci_scroll_caret(doc_list[idx].sci);
}
else
{
if (dialogs_show_question(SEARCH_NOT_FOUND_TXT, text))
{
sci_goto_pos(doc_list[idx].sci, (search_backwards) ? sci_get_length(doc_list[idx].sci) : 0, TRUE);
return document_find_text(idx, text, flags, search_backwards);
}
}
return search_pos;
}
/* Replaces the selection if it matches, otherwise just finds the next match */
void document_replace_text(gint idx, const gchar *find_text, const gchar *replace_text,
gint flags, gboolean search_backwards)
{
gint selection_end, selection_start, search_pos;
g_return_if_fail(find_text != NULL && replace_text != NULL);
if (idx == -1 || ! *find_text) return;
// Sci doesn't support searching backwards with a regex
if (flags & SCFIND_REGEXP) search_backwards = FALSE;
selection_start = sci_get_selection_start(doc_list[idx].sci);
selection_end = sci_get_selection_end(doc_list[idx].sci);
if (selection_end == selection_start)
{
// no selection so just find the next match
document_find_text(idx, find_text, flags, search_backwards);
return;
}
// there's a selection so go to the start before finding to search through it
// this ensures there is a match
if (search_backwards)
sci_goto_pos(doc_list[idx].sci, selection_end, TRUE);
else
sci_goto_pos(doc_list[idx].sci, selection_start, TRUE);
search_pos = document_find_text(idx, find_text, flags, search_backwards);
// return if the original selected text did not match (at the start of the selection)
if (search_pos != selection_start) return;
if (search_pos != -1)
{
gint replace_len;
// search next/prev will select matching text, which we use to set the replace target
sci_target_from_selection(doc_list[idx].sci);
replace_len = sci_target_replace(doc_list[idx].sci, replace_text, flags & SCFIND_REGEXP);
// select the replacement - find text will skip past the selected text
sci_set_selection_start(doc_list[idx].sci, search_pos);
sci_set_selection_end(doc_list[idx].sci, search_pos + replace_len);
document_find_text(idx, find_text, flags, search_backwards);
}
else
{
// no match in the selection
utils_beep();
}
}
/* Returns -1 if no text found or the new range endpoint after replacing. */
static gint
document_replace_range(gint idx, const gchar *find_text, const gchar *replace_text,
gint flags, gint start, gint end)
{
gint search_pos;
gint count = 0;
gint find_len = 0, replace_len = 0;
gboolean match_found = FALSE;
struct TextToFind ttf;
g_return_val_if_fail(find_text != NULL && replace_text != NULL, FALSE);
if (idx == -1 || ! *find_text) return FALSE;
sci_start_undo_action(doc_list[idx].sci);
ttf.chrg.cpMin = start;
ttf.chrg.cpMax = end;
ttf.lpstrText = (gchar*)find_text;
while (TRUE)
{
search_pos = sci_find_text(doc_list[idx].sci, flags, &ttf);
if (search_pos == -1) break;
find_len = ttf.chrgText.cpMax - ttf.chrgText.cpMin;
if (search_pos + find_len > end)
break; //found text is partly out of range
else
{
match_found = TRUE;
sci_target_start(doc_list[idx].sci, search_pos);
sci_target_end(doc_list[idx].sci, search_pos + find_len);
replace_len = sci_target_replace(doc_list[idx].sci, replace_text,
flags & SCFIND_REGEXP);
ttf.chrg.cpMin = search_pos + replace_len; //next search starts after replacement
end += replace_len - find_len; //update end of range now text has changed
ttf.chrg.cpMax = end;
count++;
}
}
sci_end_undo_action(doc_list[idx].sci);
msgwin_status_add(_("Replaced %d occurrences of \"%s\" with \"%s\"."),
count, find_text, replace_text);
if (match_found)
{
// scroll last match in view.
sci_goto_pos(doc_list[idx].sci, ttf.chrg.cpMin, TRUE);
return end;
}
else
return -1; //no text was found
}
void document_replace_sel(gint idx, const gchar *find_text, const gchar *replace_text, gint flags)
{
gint selection_end, selection_start;
g_return_if_fail(find_text != NULL && replace_text != NULL);
if (idx == -1 || ! *find_text) return;
selection_start = sci_get_selection_start(doc_list[idx].sci);
selection_end = sci_get_selection_end(doc_list[idx].sci);
if ((selection_end - selection_start) == 0)
{
utils_beep();
return;
}
selection_end = document_replace_range(idx, find_text, replace_text, flags,
selection_start, selection_end);
if (selection_end == -1)
utils_beep();
else
{
//update the selection for the new endpoint
sci_set_selection_start(doc_list[idx].sci, selection_start);
sci_set_selection_end(doc_list[idx].sci, selection_end);
}
}
void document_replace_all(gint idx, const gchar *find_text, const gchar *replace_text,
gint flags)
{
gint len;
g_return_if_fail(find_text != NULL && replace_text != NULL);
if (idx == -1 || ! *find_text) return;
len = sci_get_length(doc_list[idx].sci);
if (document_replace_range(idx, find_text, replace_text, flags, 0, len) == -1)
utils_beep();
}
void document_set_font(gint idx, const gchar *font_name, gint size)
{
gint style;
for (style = 0; style <= 127; style++)
sci_set_font(doc_list[idx].sci, style, font_name, size);
// line number and braces
sci_set_font(doc_list[idx].sci, STYLE_LINENUMBER, font_name, size);
sci_set_font(doc_list[idx].sci, STYLE_BRACELIGHT, font_name, size);
sci_set_font(doc_list[idx].sci, STYLE_BRACEBAD, font_name, size);
// zoom to 100% to prevent confusion
sci_zoom_off(doc_list[idx].sci);
}
void document_update_tag_list(gint idx, gboolean update)
{
// if the filetype doesn't has a tag parser or it is a new file, leave
if (idx == -1 || doc_list[idx].file_type == NULL ||
! doc_list[idx].file_type->has_tags || ! doc_list[idx].file_name) return;
if (doc_list[idx].tm_file == NULL)
{
gchar *locale_filename = utils_get_locale_from_utf8(doc_list[idx].file_name);
doc_list[idx].tm_file = tm_source_file_new(locale_filename, FALSE,
doc_list[idx].file_type->name);
g_free(locale_filename);
if (! doc_list[idx].tm_file) return;
tm_workspace_add_object(doc_list[idx].tm_file);
if (update)
tm_source_file_update(doc_list[idx].tm_file, TRUE, FALSE, TRUE);
utils_update_tag_list(idx, TRUE);
}
else
{
if (tm_source_file_update(doc_list[idx].tm_file, TRUE, FALSE, TRUE))
{
utils_update_tag_list(idx, TRUE);
}
else
{
geany_debug("tag list updating failed");
}
}
}
/* sets the filetype of the the document (sets syntax highlighting and tagging) */
void document_set_filetype(gint idx, filetype *type)
{
if (! type || idx < 0) return;
if (type->id > GEANY_MAX_FILE_TYPES) return;
geany_debug("%s : %s (%s)", doc_list[idx].file_name, type->name, doc_list[idx].encoding);
doc_list[idx].file_type = type;
document_update_tag_list(idx, TRUE);
type->style_func_ptr(doc_list[idx].sci);
// For C/C++/Java files, get list of typedefs for colourising
if (sci_get_lexer(doc_list[idx].sci) == SCLEX_CPP)
{
guint j, n;
// assign project keywords
if ((app->tm_workspace) && (app->tm_workspace->work_object.tags_array))
{
GPtrArray *typedefs = tm_tags_extract(app->tm_workspace->work_object.tags_array,
tm_tag_typedef_t | tm_tag_struct_t | tm_tag_class_t);
if ((typedefs) && (typedefs->len > 0))
{
GString *s = g_string_sized_new(typedefs->len * 10);
for (j = 0; j < typedefs->len; ++j)
{
if (!(TM_TAG(typedefs->pdata[j])->atts.entry.scope))
{
if (TM_TAG(typedefs->pdata[j])->name)
{
g_string_append(s, TM_TAG(typedefs->pdata[j])->name);
g_string_append_c(s, ' ');
}
}
}
for (n = 0; n < GEANY_MAX_OPEN_FILES; n++)
{
if (doc_list[n].sci)
{
sci_set_keywords(doc_list[n].sci, 3, s->str);
sci_colourise(doc_list[n].sci, 0, -1);
}
}
//SSM(doc_list[idx].sci, SCI_SETKEYWORDS, 3, (sptr_t) s->str);
g_string_free(s, TRUE);
}
g_ptr_array_free(typedefs, TRUE);
}
}
sci_colourise(doc_list[idx].sci, 0, -1);
utils_build_show_hide(idx);
}
gchar *document_get_eol_mode(gint idx)
{
if (idx == -1) return '\0';
switch (sci_get_eol_mode(doc_list[idx].sci))
{
case SC_EOL_CRLF: return _("Win (CRLF)"); break;
case SC_EOL_CR: return _("Mac (CR)"); break;
case SC_EOL_LF:
default: return _("Unix (LF)"); break;
}
}
/// TODO move me to filetypes.c
gchar *document_prepare_template(filetype *ft)
{
gchar *gpl_notice = NULL;
gchar *template = NULL;
gchar *ft_template = NULL;
if (ft != NULL)
{
switch (ft->id)
{
case GEANY_FILETYPES_PHP:
{ // PHP: include the comment in <?php ?> - tags
gchar *tmp = templates_get_template_fileheader(
GEANY_TEMPLATE_FILEHEADER, ft->extension, -1);
gpl_notice = g_strconcat("<?php\n", tmp, "?>\n\n", NULL);
g_free(tmp);
break;
}
case GEANY_FILETYPES_PASCAL:
{ // Pascal: comments are in { } brackets
gpl_notice = templates_get_template_fileheader(
GEANY_TEMPLATE_FILEHEADER_PASCAL, ft->extension, -1);
break;
}
case GEANY_FILETYPES_PYTHON:
case GEANY_FILETYPES_RUBY:
case GEANY_FILETYPES_SH:
case GEANY_FILETYPES_MAKE:
case GEANY_FILETYPES_PERL:
{
gpl_notice = templates_get_template_fileheader(
GEANY_TEMPLATE_FILEHEADER_ROUTE, ft->extension, -1);
break;
}
default:
{ // -> C, C++, Java, ...
gpl_notice = templates_get_template_fileheader(
GEANY_TEMPLATE_FILEHEADER, ft->extension, -1);
}
}
ft_template = filetypes_get_template(ft);
template = g_strconcat(gpl_notice, ft_template, NULL);
g_free(ft_template);
g_free(gpl_notice);
return template;
}
else
{ // new file w/o template
return templates_get_template_fileheader(GEANY_TEMPLATE_FILETYPE_NONE, NULL, -1);
}
}
void document_unfold_all(gint idx)
{
gint lines, pos, i;
if (idx == -1 || ! doc_list[idx].is_valid) return;
lines = sci_get_line_count(doc_list[idx].sci);
pos = sci_get_current_position(doc_list[idx].sci);
for (i = 0; i < lines; i++)
{
sci_ensure_line_is_visible(doc_list[idx].sci, i);
}
}
void document_fold_all(gint idx)
{
gint lines, pos, i;
if (idx == -1 || ! doc_list[idx].is_valid) return;
lines = sci_get_line_count(doc_list[idx].sci);
pos = sci_get_current_position(doc_list[idx].sci);
for (i = 0; i < lines; i++)
{
gint level = sci_get_fold_level(doc_list[idx].sci, i);
if (level & SC_FOLDLEVELHEADERFLAG)
{
if (sci_get_fold_expanded(doc_list[idx].sci, i))
sci_toggle_fold(doc_list[idx].sci, i);
}
}
}
void document_clear_indicators(gint idx)
{
glong last_pos = sci_get_length(doc_list[idx].sci);
if (last_pos > 0)
{
sci_start_styling(doc_list[idx].sci, 0, INDIC2_MASK);
sci_set_styling(doc_list[idx].sci, last_pos, 0);
}
}
void document_set_indicator(gint idx, gint line)
{
gint start, end, current_mask;
guint i = 0, len;
gchar *linebuf;
if (idx == -1 || ! doc_list[idx].is_valid) return;
start = sci_get_position_from_line(doc_list[idx].sci, line);
end = sci_get_position_from_line(doc_list[idx].sci, line + 1);
// skip blank lines
if ((start + 1) == end) return;
len = end - start;
linebuf = g_malloc(len);
// don't set the indicator on whitespace
sci_get_line(doc_list[idx].sci, line, linebuf);
if (linebuf == NULL) return;
while (isspace(linebuf[i])) i++;
while (isspace(linebuf[len-1])) len--;
g_free(linebuf);
current_mask = sci_get_style_at(doc_list[idx].sci, start);
current_mask &= INDICS_MASK;
current_mask |= INDIC2_MASK;
sci_start_styling(doc_list[idx].sci, start + i, INDIC2_MASK);
sci_set_styling(doc_list[idx].sci, len - i, current_mask);
}
/* simple file print */
void document_print(gint idx)
{
/// TODO test under Win32
gchar *cmdline;
if (idx == -1 || ! doc_list[idx].is_valid || doc_list[idx].file_name == NULL) return;
cmdline = g_strdup(app->tools_print_cmd);
cmdline = utils_str_replace(cmdline, "%f", doc_list[idx].file_name);
if (dialogs_show_question(_("The file \"%s\" will be printed with the following command:\n\n%s"),
doc_list[idx].file_name, cmdline))
{
gint rc;
// system() is not the best way, but the only one I found to get the following working:
// a2ps -1 --medium=A4 -o - %f | xfprint4
rc = system(cmdline);
if (rc != 0)
{
dialogs_show_error(_("Printing of \"%s\" failed(return code: %d)."),
doc_list[idx].file_name, rc);
}
else
{
msgwin_status_add(_("File %s printed."), doc_list[idx].file_name);
}
}
g_free(cmdline);
}
void document_replace_tabs(gint idx)
{
gint i, len, j = 0, k, tabs_amount = 0, tab_w, pos;
gchar *data, *text;
if (idx < 0 || ! doc_list[idx].is_valid) return;
pos = sci_get_current_position(doc_list[idx].sci);
tab_w = sci_get_tab_width(doc_list[idx].sci);
// get the text
len = sci_get_length(doc_list[idx].sci) + 1;
data = g_malloc(len);
sci_get_text(doc_list[idx].sci, len, data);
for (i = 0; i < len; i++) if (data[i] == 9) tabs_amount++;
// if there are no tabs, just return and leave the content untouched
if (tabs_amount == 0)
{
g_free(data);
return;
}
text = g_malloc(len + (tabs_amount * (tab_w - 1)) + 1);
for (i = 0; i < len; i++)
{
if (data[i] == 9)
{
// increase cursor position to keep it at same position
if (pos > i) pos += 3;
for (k = 0; k < tab_w; k++) text[j++] = 32;
}
else
{
text[j++] = data[i];
}
}
text[j] = '\0';
geany_debug("Replacing Tabs: tabs_amount: %d, text len: %d, j: %d", tabs_amount, len, j);
sci_set_text(doc_list[idx].sci, text);
sci_set_current_position(doc_list[idx].sci, pos);
g_free(data);
g_free(text);
}
void document_strip_trailing_spaces(gint idx)
{
gint max_lines = sci_get_line_count(doc_list[idx].sci);
gint line;
for (line = 0; line < max_lines; line++)
{
gint line_start = sci_get_position_from_line(doc_list[idx].sci, line);
gint line_end = sci_get_line_end_from_position(doc_list[idx].sci, line);
gint i = line_end - 1;
gchar ch = sci_get_char_at(doc_list[idx].sci, i);
while ((i >= line_start) && ((ch == ' ') || (ch == '\t')))
{
i--;
ch = sci_get_char_at(doc_list[idx].sci, i);
}
if (i < (line_end-1))
{
sci_target_start(doc_list[idx].sci, i + 1);
sci_target_end(doc_list[idx].sci, line_end);
sci_target_replace(doc_list[idx].sci, "", FALSE);
}
}
}
void document_ensure_final_newline(gint idx)
{
gint max_lines = sci_get_line_count(doc_list[idx].sci);
gboolean append_newline = (max_lines == 1);
gint end_document = sci_get_position_from_line(doc_list[idx].sci, max_lines);
if (max_lines > 1)
{
append_newline = end_document > sci_get_position_from_line(doc_list[idx].sci, max_lines - 1);
}
if (append_newline)
{
const gchar *eol = "\n";
switch (sci_get_eol_mode(doc_list[idx].sci))
{
case SC_EOL_CRLF:
eol = "\r\n";
break;
case SC_EOL_CR:
eol = "\r";
break;
}
sci_insert_text(doc_list[idx].sci, end_document, eol);
}
}