2 * utils.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 * General utility functions, non-GTK related.
37 #include "sciwrappers.h"
40 #include "templates.h"
53 #ifdef HAVE_SYS_STAT_H
54 # include <sys/stat.h>
56 #ifdef HAVE_SYS_TYPES_H
57 # include <sys/types.h>
60 #include <glib/gstdio.h>
65 * Tries to open the given URI in a browser.
66 * On Windows, the system's default browser is opened.
67 * On non-Windows systems, the browser command set in the preferences dialog is used. In case
68 * that fails or it is unset, the user is asked to correct or fill it.
70 * @param uri The URI to open in the web browser.
75 void utils_open_browser(const gchar
*uri
)
78 g_return_if_fail(uri
!= NULL
);
79 win32_open_browser(uri
);
81 gchar
*argv
[2] = { (gchar
*) uri
, NULL
};
83 g_return_if_fail(uri
!= NULL
);
85 while (!spawn_async(NULL
, tool_prefs
.browser_cmd
, argv
, NULL
, NULL
, NULL
))
87 gchar
*new_cmd
= dialogs_show_input(_("Select Browser"), GTK_WINDOW(main_widgets
.window
),
88 _("Failed to spawn the configured browser command. "
89 "Please correct it or enter another one."),
90 tool_prefs
.browser_cmd
);
92 if (new_cmd
== NULL
) /* user canceled */
95 SETPTR(tool_prefs
.browser_cmd
, new_cmd
);
101 /* taken from anjuta, to determine the EOL mode of the file */
102 gint
utils_get_line_endings(const gchar
* buffer
, gsize size
)
105 guint cr
, lf
, crlf
, max_mode
;
110 for (i
= 0; i
< size
; i
++)
112 if (buffer
[i
] == 0x0a)
117 else if (buffer
[i
] == 0x0d)
126 if (buffer
[i
+ 1] != 0x0a)
141 /* Vote for the maximum */
159 gboolean
utils_isbrace(gchar c
, gboolean include_angles
)
165 return include_angles
;
172 case ']': return TRUE
;
173 default: return FALSE
;
178 gboolean
utils_is_opening_brace(gchar c
, gboolean include_angles
)
183 return include_angles
;
187 case '[': return TRUE
;
188 default: return FALSE
;
194 * Writes @a text into a file named @a filename.
195 * If the file doesn't exist, it will be created.
196 * If it already exists, it will be overwritten.
198 * @warning You should use @c g_file_set_contents() instead if you don't need
199 * file permissions and other metadata to be preserved, as that always handles
200 * disk exhaustion safely.
202 * @param filename The filename of the file to write, in locale encoding.
203 * @param text The text to write into the file.
205 * @return 0 if the file was successfully written, otherwise the @c errno of the
206 * failed operation is returned.
209 gint
utils_write_file(const gchar
*filename
, const gchar
*text
)
211 g_return_val_if_fail(filename
!= NULL
, ENOENT
);
212 g_return_val_if_fail(text
!= NULL
, EINVAL
);
214 if (file_prefs
.use_safe_file_saving
)
216 GError
*error
= NULL
;
217 if (! g_file_set_contents(filename
, text
, -1, &error
))
219 geany_debug("%s: could not write to file %s (%s)", G_STRFUNC
, filename
, error
->message
);
227 gsize bytes_written
, len
;
228 gboolean fail
= FALSE
;
230 if (filename
== NULL
)
235 fp
= g_fopen(filename
, "w");
240 bytes_written
= fwrite(text
, sizeof(gchar
), len
, fp
);
242 if (len
!= bytes_written
)
246 "utils_write_file(): written only %"G_GSIZE_FORMAT
" bytes, had to write %"G_GSIZE_FORMAT
" bytes to %s",
247 bytes_written
, len
, filename
);
254 geany_debug("utils_write_file(): could not write to file %s (%s)",
255 filename
, g_strerror(errno
));
256 return FALLBACK(errno
, EIO
);
263 /** Searches backward through @a size bytes looking for a '<'.
266 * @return The tag name (newly allocated) or @c NULL if no opening tag was found.
269 gchar
*utils_find_open_xml_tag(const gchar sel
[], gint size
)
271 const gchar
*cur
, *begin
;
274 cur
= utils_find_open_xml_tag_pos(sel
, size
);
278 cur
++; /* skip the bracket */
280 while (strchr(":_-.", *cur
) || isalnum(*cur
))
283 len
= (gsize
)(cur
- begin
);
284 return len
? g_strndup(begin
, len
) : NULL
;
288 /** Searches backward through @a size bytes looking for a '<'.
291 * @return pointer to '<' of the found opening tag within @a sel, or @c NULL if no opening tag was found.
294 const gchar
*utils_find_open_xml_tag_pos(const gchar sel
[], gint size
)
296 /* stolen from anjuta and modified */
297 const gchar
*begin
, *cur
;
299 if (G_UNLIKELY(size
< 3))
300 { /* Smallest tag is "<p>" which is 3 characters */
304 cur
= &sel
[size
- 1];
306 /* Skip to the character before the closing brace */
314 /* skip whitespace */
315 while (cur
> begin
&& isspace(*cur
))
318 return NULL
; /* we found a short tag which doesn't need to be closed */
323 /* exit immediately if such non-valid XML/HTML is detected, e.g. "<script>if a >" */
324 else if (*cur
== '>')
329 /* if the found tag is an opening, not a closing tag or empty <> */
330 if (*cur
== '<' && *(cur
+ 1) != '/' && *(cur
+ 1) != '>')
337 /* Returns true if tag_name is a self-closing tag */
338 gboolean
utils_is_short_html_tag(const gchar
*tag_name
)
340 const gchar names
[][20] = {
343 "basefont", /* < or not < */
363 if (bsearch(tag_name
, names
, G_N_ELEMENTS(names
), 20,
364 (GCompareFunc
)g_ascii_strcasecmp
))
371 const gchar
*utils_get_eol_name(gint eol_mode
)
375 case SC_EOL_CRLF
: return _("Windows (CRLF)"); break;
376 case SC_EOL_CR
: return _("Classic Mac (CR)"); break;
377 default: return _("Unix (LF)"); break;
382 const gchar
*utils_get_eol_short_name(gint eol_mode
)
386 case SC_EOL_CRLF
: return _("CRLF"); break;
387 case SC_EOL_CR
: return _("CR"); break;
388 default: return _("LF"); break;
393 const gchar
*utils_get_eol_char(gint eol_mode
)
397 case SC_EOL_CRLF
: return "\r\n"; break;
398 case SC_EOL_CR
: return "\r"; break;
399 default: return "\n"; break;
404 /* Converts line endings to @a target_eol_mode. */
405 void utils_ensure_same_eol_characters(GString
*string
, gint target_eol_mode
)
407 const gchar
*eol_str
= utils_get_eol_char(target_eol_mode
);
409 /* first convert data to LF only */
410 utils_string_replace_all(string
, "\r\n", "\n");
411 utils_string_replace_all(string
, "\r", "\n");
413 if (target_eol_mode
== SC_EOL_LF
)
416 /* now convert to desired line endings */
417 utils_string_replace_all(string
, "\n", eol_str
);
421 gboolean
utils_atob(const gchar
*str
)
423 if (G_UNLIKELY(str
== NULL
))
425 else if (strcmp(str
, "TRUE") == 0 || strcmp(str
, "true") == 0)
431 /* NULL-safe version of g_path_is_absolute(). */
432 gboolean
utils_is_absolute_path(const gchar
*path
)
434 if (G_UNLIKELY(EMPTY(path
)))
437 return g_path_is_absolute(path
);
441 /* Skips root if path is absolute, do nothing otherwise.
442 * This is a relative-safe version of g_path_skip_root().
444 const gchar
*utils_path_skip_root(const gchar
*path
)
446 const gchar
*path_relative
;
448 path_relative
= g_path_skip_root(path
);
450 return (path_relative
!= NULL
) ? path_relative
: path
;
454 gdouble
utils_scale_round(gdouble val
, gdouble factor
)
456 /*val = floor(val * factor + 0.5);*/
459 val
= MIN(val
, factor
);
465 /* like g_utf8_strdown() but if @str is not valid UTF8, convert it from locale first.
466 * returns NULL on charset conversion failure */
467 static gchar
*utf8_strdown(const gchar
*str
)
471 if (g_utf8_validate(str
, -1, NULL
))
472 down
= g_utf8_strdown(str
, -1);
475 down
= g_locale_to_utf8(str
, -1, NULL
, NULL
, NULL
);
477 SETPTR(down
, g_utf8_strdown(down
, -1));
485 * A replacement function for g_strncasecmp() to compare strings case-insensitive.
486 * It converts both strings into lowercase using g_utf8_strdown() and then compare
487 * both strings using strcmp().
488 * This is not completely accurate regarding locale-specific case sorting rules
489 * but seems to be a good compromise between correctness and performance.
491 * The input strings should be in UTF-8 or locale encoding.
493 * @param s1 Pointer to first string or @c NULL.
494 * @param s2 Pointer to second string or @c NULL.
496 * @return an integer less than, equal to, or greater than zero if @a s1 is found, respectively,
497 * to be less than, to match, or to be greater than @a s2.
502 gint
utils_str_casecmp(const gchar
*s1
, const gchar
*s2
)
507 g_return_val_if_fail(s1
!= NULL
, 1);
508 g_return_val_if_fail(s2
!= NULL
, -1);
510 /* ensure strings are UTF-8 and lowercase */
511 tmp1
= utf8_strdown(s1
);
514 tmp2
= utf8_strdown(s2
);
522 result
= strcmp(tmp1
, tmp2
);
531 * Truncates the input string to a given length.
532 * Characters are removed from the middle of the string, so the start and the end of string
535 * @param string Input string.
536 * @param truncate_length The length in characters of the resulting string.
538 * @return A copy of @a string which is truncated to @a truncate_length characters,
539 * should be freed when no longer needed.
543 /* This following function is taken from Gedit. */
545 gchar
*utils_str_middle_truncate(const gchar
*string
, guint truncate_length
)
550 guint num_left_chars
;
552 guint delimiter_length
;
553 const gchar
*delimiter
= "\342\200\246";
555 g_return_val_if_fail(string
!= NULL
, NULL
);
557 length
= strlen(string
);
559 g_return_val_if_fail(g_utf8_validate(string
, length
, NULL
), NULL
);
561 /* It doesn't make sense to truncate strings to less than the size of the delimiter plus 2
562 * characters (one on each side) */
563 delimiter_length
= g_utf8_strlen(delimiter
, -1);
564 if (truncate_length
< (delimiter_length
+ 2))
565 return g_strdup(string
);
567 n_chars
= g_utf8_strlen(string
, length
);
569 /* Make sure the string is not already small enough. */
570 if (n_chars
<= truncate_length
)
571 return g_strdup (string
);
573 /* Find the 'middle' where the truncation will occur. */
574 num_left_chars
= (truncate_length
- delimiter_length
) / 2;
575 right_offset
= n_chars
- truncate_length
+ num_left_chars
+ delimiter_length
;
577 truncated
= g_string_new_len(string
, g_utf8_offset_to_pointer(string
, num_left_chars
) - string
);
578 g_string_append(truncated
, delimiter
);
579 g_string_append(truncated
, g_utf8_offset_to_pointer(string
, right_offset
));
581 return g_string_free(truncated
, FALSE
);
586 * @c NULL-safe string comparison. Returns @c TRUE if both @a a and @a b are @c NULL
587 * or if @a a and @a b refer to valid strings which are equal.
589 * @param a Pointer to first string or @c NULL.
590 * @param b Pointer to second string or @c NULL.
592 * @return @c TRUE if @a a equals @a b, else @c FALSE.
595 gboolean
utils_str_equal(const gchar
*a
, const gchar
*b
)
597 /* (taken from libexo from os-cillation) */
598 if (a
== NULL
&& b
== NULL
) return TRUE
;
599 else if (a
== NULL
|| b
== NULL
) return FALSE
;
601 return strcmp(a
, b
) == 0;
606 * Removes the extension from @a filename and return the result in a newly allocated string.
608 * @param filename The filename to operate on.
610 * @return A newly-allocated string, should be freed when no longer needed.
613 gchar
*utils_remove_ext_from_filename(const gchar
*filename
)
619 g_return_val_if_fail(filename
!= NULL
, NULL
);
621 last_dot
= strrchr(filename
, '.');
623 return g_strdup(filename
);
625 len
= (gsize
) (last_dot
- filename
);
626 result
= g_malloc(len
+ 1);
627 memcpy(result
, filename
, len
);
634 gchar
utils_brace_opposite(gchar ch
)
638 case '(': return ')';
639 case ')': return '(';
640 case '[': return ']';
641 case ']': return '[';
642 case '{': return '}';
643 case '}': return '{';
644 case '<': return '>';
645 case '>': return '<';
646 default: return '\0';
651 /* Checks whether the given file can be written. locale_filename is expected in locale encoding.
652 * Returns 0 if it can be written, otherwise it returns errno */
653 gint
utils_is_file_writable(const gchar
*locale_filename
)
658 if (! g_file_test(locale_filename
, G_FILE_TEST_EXISTS
) &&
659 ! g_file_test(locale_filename
, G_FILE_TEST_IS_DIR
))
660 /* get the file's directory to check for write permission if it doesn't yet exist */
661 file
= g_path_get_dirname(locale_filename
);
663 file
= g_strdup(locale_filename
);
666 /* use _waccess on Windows, access() doesn't accept special characters */
667 ret
= win32_check_write_permission(file
);
670 /* access set also errno to "FILE NOT FOUND" even if locale_filename is writeable, so use
671 * errno only when access() explicitly returns an error */
672 if (access(file
, R_OK
| W_OK
) != 0)
682 /* Replaces all occurrences of needle in haystack with replacement.
683 * Warning: *haystack must be a heap address; it may be freed and reassigned.
684 * Note: utils_string_replace_all() will always be faster when @a replacement is longer
686 * All strings have to be NULL-terminated.
687 * See utils_string_replace_all() for details. */
688 void utils_str_replace_all(gchar
**haystack
, const gchar
*needle
, const gchar
*replacement
)
692 g_return_if_fail(*haystack
!= NULL
);
694 str
= g_string_new(*haystack
);
697 utils_string_replace_all(str
, needle
, replacement
);
699 *haystack
= g_string_free(str
, FALSE
);
703 gint
utils_strpos(const gchar
*haystack
, const gchar
*needle
)
710 sub
= strstr(haystack
, needle
);
714 return sub
- haystack
;
719 * Retrieves a formatted date/time string from strftime().
720 * This function should be preferred to directly calling strftime() since this function
721 * works on UTF-8 encoded strings.
723 * @param format The format string to pass to strftime(3). See the strftime(3)
724 * documentation for details, in UTF-8 encoding.
725 * @param time_to_use The date/time to use, in time_t format or NULL to use the current time.
727 * @return A newly-allocated string, should be freed when no longer needed.
732 gchar
*utils_get_date_time(const gchar
*format
, time_t *time_to_use
)
735 static gchar date
[1024];
736 gchar
*locale_format
;
739 g_return_val_if_fail(format
!= NULL
, NULL
);
741 if (! g_utf8_validate(format
, -1, NULL
))
743 locale_format
= g_locale_from_utf8(format
, -1, NULL
, NULL
, NULL
);
744 if (locale_format
== NULL
)
748 locale_format
= g_strdup(format
);
750 if (time_to_use
!= NULL
)
751 tm
= localtime(time_to_use
);
754 time_t tp
= time(NULL
);
758 len
= strftime(date
, 1024, locale_format
, tm
);
759 g_free(locale_format
);
763 if (! g_utf8_validate(date
, len
, NULL
))
764 return g_locale_to_utf8(date
, len
, NULL
, NULL
, NULL
);
766 return g_strdup(date
);
770 gchar
*utils_get_initials(const gchar
*name
)
773 gchar
*initials
= g_malloc0(5);
775 initials
[0] = name
[0];
776 while (name
[i
] != '\0' && j
< 4)
778 if (name
[i
] == ' ' && name
[i
+ 1] != ' ')
780 initials
[j
++] = name
[i
+ 1];
789 * Wraps g_key_file_get_integer() to add a default value argument.
791 * @param config A GKeyFile object.
792 * @param section The group name to look in for the key.
793 * @param key The key to find.
794 * @param default_value The default value which will be returned when @a section or @a key
797 * @return The value associated with @a key as an integer, or the given default value if the value
798 * could not be retrieved.
801 gint
utils_get_setting_integer(GKeyFile
*config
, const gchar
*section
, const gchar
*key
,
802 const gint default_value
)
805 GError
*error
= NULL
;
807 g_return_val_if_fail(config
, default_value
);
809 tmp
= g_key_file_get_integer(config
, section
, key
, &error
);
813 return default_value
;
820 * Wraps g_key_file_get_boolean() to add a default value argument.
822 * @param config A GKeyFile object.
823 * @param section The group name to look in for the key.
824 * @param key The key to find.
825 * @param default_value The default value which will be returned when @c section or @c key
828 * @return The value associated with @a key as a boolean, or the given default value if the value
829 * could not be retrieved.
832 gboolean
utils_get_setting_boolean(GKeyFile
*config
, const gchar
*section
, const gchar
*key
,
833 const gboolean default_value
)
836 GError
*error
= NULL
;
838 g_return_val_if_fail(config
, default_value
);
840 tmp
= g_key_file_get_boolean(config
, section
, key
, &error
);
844 return default_value
;
851 * Wraps g_key_file_get_string() to add a default value argument.
853 * @param config A GKeyFile object.
854 * @param section The group name to look in for the key.
855 * @param key The key to find.
856 * @param default_value The default value which will be returned when @a section or @a key
859 * @return A newly allocated string, either the value for @a key or a copy of the given
860 * default value if it could not be retrieved.
863 gchar
*utils_get_setting_string(GKeyFile
*config
, const gchar
*section
, const gchar
*key
,
864 const gchar
*default_value
)
868 g_return_val_if_fail(config
, g_strdup(default_value
));
870 tmp
= g_key_file_get_string(config
, section
, key
, NULL
);
873 return g_strdup(default_value
);
879 gchar
*utils_get_hex_from_color(GdkColor
*color
)
881 g_return_val_if_fail(color
!= NULL
, NULL
);
883 return g_strdup_printf("#%02X%02X%02X",
884 (guint
) (utils_scale_round(color
->red
/ 256, 255)),
885 (guint
) (utils_scale_round(color
->green
/ 256, 255)),
886 (guint
) (utils_scale_round(color
->blue
/ 256, 255)));
890 /* Get directory from current file in the notebook.
891 * Returns dir string that should be freed or NULL, depending on whether current file is valid.
892 * Returned string is in UTF-8 encoding */
893 gchar
*utils_get_current_file_dir_utf8(void)
895 GeanyDocument
*doc
= document_get_current();
899 /* get current filename */
900 const gchar
*cur_fname
= doc
->file_name
;
902 if (cur_fname
!= NULL
)
904 /* get folder part from current filename */
905 return g_path_get_dirname(cur_fname
); /* returns "." if no path */
909 return NULL
; /* no file open */
913 /* very simple convenience function */
914 void utils_beep(void)
916 if (prefs
.beep_on_errors
)
921 /* taken from busybox, thanks */
922 gchar
*utils_make_human_readable_str(guint64 size
, gulong block_size
,
925 /* The code will adjust for additional (appended) units. */
926 static const gchar zero_and_units
[] = { '0', 0, 'K', 'M', 'G', 'T' };
927 static const gchar fmt
[] = "%Lu %c%c";
928 static const gchar fmt_tenths
[] = "%Lu.%d %c%c";
939 val
= size
* block_size
;
945 val
+= display_unit
/2; /* Deal with rounding. */
946 val
/= display_unit
; /* Don't combine with the line above!!! */
951 while ((val
>= 1024) && (u
< zero_and_units
+ sizeof(zero_and_units
) - 1))
955 frac
= ((((gint
)(val
% 1024)) * 10) + (1024 / 2)) / 1024;
959 { /* We need to round up here. */
965 /* If f==fmt then 'frac' and 'u' are ignored. */
966 return g_strdup_printf(f
, val
, frac
, *u
, 'b');
970 /* converts a color representation using gdk_color_parse(), with additional
971 * support of the "0x" prefix as a synonym for "#" */
972 gboolean
utils_parse_color(const gchar
*spec
, GdkColor
*color
)
976 g_return_val_if_fail(spec
!= NULL
, -1);
978 if (spec
[0] == '0' && (spec
[1] == 'x' || spec
[1] == 'X'))
980 /* convert to # format for GDK to understand it */
982 strncpy(buf
+ 1, spec
+ 2, sizeof(buf
) - 2);
986 return gdk_color_parse(spec
, color
);
990 /* converts a GdkColor to the packed 24 bits BGR format, as understood by Scintilla
991 * returns a 24 bits BGR color, or -1 on failure */
992 gint
utils_color_to_bgr(const GdkColor
*c
)
994 g_return_val_if_fail(c
!= NULL
, -1);
995 return (c
->red
/ 256) | ((c
->green
/ 256) << 8) | ((c
->blue
/ 256) << 16);
999 /* parses @p spec using utils_parse_color() and convert it to 24 bits BGR using
1000 * utils_color_to_bgr() */
1001 gint
utils_parse_color_to_bgr(const gchar
*spec
)
1004 if (utils_parse_color(spec
, &color
))
1005 return utils_color_to_bgr(&color
);
1011 /* Returns: newly allocated string with the current time formatted HH:MM:SS. */
1012 gchar
*utils_get_current_time_string(void)
1014 const time_t tp
= time(NULL
);
1015 const struct tm
*tmval
= localtime(&tp
);
1016 gchar
*result
= g_malloc0(9);
1018 strftime(result
, 9, "%H:%M:%S", tmval
);
1024 GIOChannel
*utils_set_up_io_channel(
1025 gint fd
, GIOCondition cond
, gboolean nblock
, GIOFunc func
, gpointer data
)
1028 /*const gchar *encoding;*/
1031 ioc
= g_io_channel_win32_new_fd(fd
);
1033 ioc
= g_io_channel_unix_new(fd
);
1037 g_io_channel_set_flags(ioc
, G_IO_FLAG_NONBLOCK
, NULL
);
1039 g_io_channel_set_encoding(ioc
, NULL
, NULL
);
1041 if (! g_get_charset(&encoding))
1042 { // hope this works reliably
1043 GError *error = NULL;
1044 g_io_channel_set_encoding(ioc, encoding, &error);
1047 geany_debug("%s: %s", G_STRFUNC, error->message);
1048 g_error_free(error);
1053 /* "auto-close" ;-) */
1054 g_io_channel_set_close_on_unref(ioc
, TRUE
);
1056 g_io_add_watch(ioc
, cond
, func
, data
);
1057 g_io_channel_unref(ioc
);
1063 gchar
**utils_read_file_in_array(const gchar
*filename
)
1065 gchar
**result
= NULL
;
1068 g_return_val_if_fail(filename
!= NULL
, NULL
);
1070 g_file_get_contents(filename
, &data
, NULL
, NULL
);
1074 result
= g_strsplit_set(data
, "\r\n", -1);
1082 /* Contributed by Stefan Oltmanns, thanks.
1083 * Replaces \\, \r, \n, \t and \uXXX by their real counterparts.
1084 * keep_backslash is used for regex strings to leave '\\' and '\?' in place */
1085 gboolean
utils_str_replace_escape(gchar
*string
, gboolean keep_backslash
)
1090 g_return_val_if_fail(string
!= NULL
, FALSE
);
1093 len
= strlen(string
);
1094 for (i
= 0; i
< len
; i
++)
1096 if (string
[i
]=='\\')
1098 if (i
++ >= strlen(string
))
1119 case 'x': /* Warning: May produce illegal utf-8 string! */
1121 if (i
>= strlen(string
))
1125 if (isdigit(string
[i
- 1])) string
[j
] = string
[i
- 1] - 48;
1126 else if (isxdigit(string
[i
- 1])) string
[j
] = tolower(string
[i
- 1])-87;
1129 if (isdigit(string
[i
])) string
[j
] |= string
[i
] - 48;
1130 else if (isxdigit(string
[i
])) string
[j
] |= tolower(string
[i
])-87;
1137 if (i
>= strlen(string
))
1141 if (isdigit(string
[i
- 1])) unicodechar
= string
[i
- 1] - 48;
1142 else if (isxdigit(string
[i
- 1])) unicodechar
= tolower(string
[i
- 1])-87;
1145 if (isdigit(string
[i
])) unicodechar
|= string
[i
] - 48;
1146 else if (isxdigit(string
[i
])) unicodechar
|= tolower(string
[i
])-87;
1148 if (((i
+ 2) < strlen(string
)) && (isdigit(string
[i
+ 1]) || isxdigit(string
[i
+ 1]))
1149 && (isdigit(string
[i
+ 2]) || isxdigit(string
[i
+ 2])))
1153 if (isdigit(string
[i
- 1])) unicodechar
|= ((string
[i
- 1] - 48) << 4);
1154 else unicodechar
|= ((tolower(string
[i
- 1])-87) << 4);
1155 if (isdigit(string
[i
])) unicodechar
|= string
[i
] - 48;
1156 else unicodechar
|= tolower(string
[i
])-87;
1158 if (((i
+ 2) < strlen(string
)) && (isdigit(string
[i
+ 1]) || isxdigit(string
[i
+ 1]))
1159 && (isdigit(string
[i
+ 2]) || isxdigit(string
[i
+ 2])))
1163 if (isdigit(string
[i
- 1])) unicodechar
|= ((string
[i
- 1] - 48) << 4);
1164 else unicodechar
|= ((tolower(string
[i
- 1])-87) << 4);
1165 if (isdigit(string
[i
])) unicodechar
|= string
[i
] - 48;
1166 else unicodechar
|= tolower(string
[i
])-87;
1168 if (unicodechar
< 0x80)
1170 string
[j
] = unicodechar
;
1172 else if (unicodechar
< 0x800)
1174 string
[j
] = (unsigned char) ((unicodechar
>> 6) | 0xC0);
1176 string
[j
] = (unsigned char) ((unicodechar
& 0x3F) | 0x80);
1178 else if (unicodechar
< 0x10000)
1180 string
[j
] = (unsigned char) ((unicodechar
>> 12) | 0xE0);
1182 string
[j
] = (unsigned char) (((unicodechar
>> 6) & 0x3F) | 0x80);
1184 string
[j
] = (unsigned char) ((unicodechar
& 0x3F) | 0x80);
1186 else if (unicodechar
< 0x110000) /* more chars are not allowed in unicode */
1188 string
[j
] = (unsigned char) ((unicodechar
>> 18) | 0xF0);
1190 string
[j
] = (unsigned char) (((unicodechar
>> 12) & 0x3F) | 0x80);
1192 string
[j
] = (unsigned char) (((unicodechar
>> 6) & 0x3F) | 0x80);
1194 string
[j
] = (unsigned char) ((unicodechar
& 0x3F) | 0x80);
1203 /* unnecessary escapes are allowed */
1206 string
[j
] = string
[i
];
1211 string
[j
] = string
[i
];
1224 /* Wraps a string in place, replacing a space with a newline character.
1225 * wrapstart is the minimum position to start wrapping or -1 for default */
1226 gboolean
utils_wrap_string(gchar
*string
, gint wrapstart
)
1228 gchar
*pos
, *linestart
;
1229 gboolean ret
= FALSE
;
1234 for (pos
= linestart
= string
; *pos
!= '\0'; pos
++)
1236 if (pos
- linestart
>= wrapstart
&& *pos
== ' ')
1248 * Converts the given UTF-8 encoded string into locale encoding.
1249 * On Windows platforms, it does nothing and instead it just returns a copy of the input string.
1251 * @param utf8_text UTF-8 encoded text.
1253 * @return The converted string in locale encoding, or a copy of the input string if conversion
1254 * failed. Should be freed with g_free(). If @a utf8_text is @c NULL, @c NULL is returned.
1257 gchar
*utils_get_locale_from_utf8(const gchar
*utf8_text
)
1260 /* just do nothing on Windows platforms, this ifdef is just to prevent unwanted conversions
1261 * which would result in wrongly converted strings */
1262 return g_strdup(utf8_text
);
1268 locale_text
= g_locale_from_utf8(utf8_text
, -1, NULL
, NULL
, NULL
);
1269 if (locale_text
== NULL
)
1270 locale_text
= g_strdup(utf8_text
);
1277 * Converts the given string (in locale encoding) into UTF-8 encoding.
1278 * On Windows platforms, it does nothing and instead it just returns a copy of the input string.
1280 * @param locale_text Text in locale encoding.
1282 * @return The converted string in UTF-8 encoding, or a copy of the input string if conversion
1283 * failed. Should be freed with g_free(). If @a locale_text is @c NULL, @c NULL is returned.
1286 gchar
*utils_get_utf8_from_locale(const gchar
*locale_text
)
1289 /* just do nothing on Windows platforms, this ifdef is just to prevent unwanted conversions
1290 * which would result in wrongly converted strings */
1291 return g_strdup(locale_text
);
1297 utf8_text
= g_locale_to_utf8(locale_text
, -1, NULL
, NULL
, NULL
);
1298 if (utf8_text
== NULL
)
1299 utf8_text
= g_strdup(locale_text
);
1305 /* Pass pointers to free after arg_count.
1306 * The last argument must be NULL as an extra check that arg_count is correct. */
1307 void utils_free_pointers(gsize arg_count
, ...)
1313 va_start(a
, arg_count
);
1314 for (i
= 0; i
< arg_count
; i
++)
1316 ptr
= va_arg(a
, gpointer
);
1319 ptr
= va_arg(a
, gpointer
);
1321 g_warning("Wrong arg_count!");
1326 /* currently unused */
1328 /* Creates a string array deep copy of a series of non-NULL strings.
1329 * The first argument is nothing special.
1330 * The list must be ended with NULL.
1331 * If first is NULL, NULL is returned. */
1332 gchar
**utils_strv_new(const gchar
*first
, ...)
1339 g_return_val_if_fail(first
!= NULL
, NULL
);
1341 strvlen
= 1; /* for first argument */
1343 /* count other arguments */
1344 va_start(args
, first
);
1345 for (; va_arg(args
, gchar
*) != NULL
; strvlen
++);
1348 strv
= g_new(gchar
*, strvlen
+ 1); /* +1 for NULL terminator */
1349 strv
[0] = g_strdup(first
);
1351 va_start(args
, first
);
1352 for (i
= 1; str
= va_arg(args
, gchar
*), str
!= NULL
; i
++)
1354 strv
[i
] = g_strdup(str
);
1365 * Creates a directory if it doesn't already exist.
1366 * Creates intermediate parent directories as needed, too.
1367 * The permissions of the created directory are set 0700.
1369 * @param path The path of the directory to create, in locale encoding.
1370 * @param create_parent_dirs Whether to create intermediate parent directories if necessary.
1372 * @return 0 if the directory was successfully created, otherwise the @c errno of the
1373 * failed operation is returned.
1376 gint
utils_mkdir(const gchar
*path
, gboolean create_parent_dirs
)
1381 if (path
== NULL
|| strlen(path
) == 0)
1384 result
= (create_parent_dirs
) ? g_mkdir_with_parents(path
, mode
) : g_mkdir(path
, mode
);
1392 * Gets a list of files from the specified directory.
1393 * Locale encoding is expected for @a path and used for the file list. The list and the data
1394 * in the list should be freed after use, e.g.:
1396 * g_slist_foreach(list, (GFunc) g_free, NULL);
1397 * g_slist_free(list); @endcode
1399 * @note If you don't need a list you should use the foreach_dir() macro instead -
1400 * it's more efficient.
1402 * @param path The path of the directory to scan, in locale encoding.
1403 * @param full_path Whether to include the full path for each filename in the list. Obviously this
1404 * will use more memory.
1405 * @param sort Whether to sort alphabetically (UTF-8 safe).
1406 * @param error The location for storing a possible error, or @c NULL.
1408 * @return A newly allocated list or @c NULL if no files were found. The list and its data should be
1409 * freed when no longer needed.
1410 * @see utils_get_file_list().
1413 GSList
*utils_get_file_list_full(const gchar
*path
, gboolean full_path
, gboolean sort
, GError
**error
)
1415 GSList
*list
= NULL
;
1417 const gchar
*filename
;
1421 g_return_val_if_fail(path
!= NULL
, NULL
);
1423 dir
= g_dir_open(path
, 0, error
);
1427 foreach_dir(filename
, dir
)
1429 list
= g_slist_prepend(list
, full_path
?
1430 g_build_path(G_DIR_SEPARATOR_S
, path
, filename
, NULL
) : g_strdup(filename
));
1433 /* sorting last is quicker than on insertion */
1435 list
= g_slist_sort(list
, (GCompareFunc
) utils_str_casecmp
);
1441 * Gets a sorted list of files from the specified directory.
1442 * Locale encoding is expected for @a path and used for the file list. The list and the data
1443 * in the list should be freed after use, e.g.:
1445 * g_slist_foreach(list, (GFunc) g_free, NULL);
1446 * g_slist_free(list); @endcode
1448 * @param path The path of the directory to scan, in locale encoding.
1449 * @param length The location to store the number of non-@c NULL data items in the list,
1451 * @param error The location for storing a possible error, or @c NULL.
1453 * @return A newly allocated list or @c NULL if no files were found. The list and its data should be
1454 * freed when no longer needed.
1455 * @see utils_get_file_list_full().
1458 GSList
*utils_get_file_list(const gchar
*path
, guint
*length
, GError
**error
)
1460 GSList
*list
= utils_get_file_list_full(path
, FALSE
, TRUE
, error
);
1463 *length
= g_slist_length(list
);
1468 /* returns TRUE if any letter in str is a capital, FALSE otherwise. Should be Unicode safe. */
1469 gboolean
utils_str_has_upper(const gchar
*str
)
1473 if (EMPTY(str
) || ! g_utf8_validate(str
, -1, NULL
))
1476 while (*str
!= '\0')
1478 c
= g_utf8_get_char(str
);
1479 /* check only letters and stop once the first non-capital was found */
1480 if (g_unichar_isalpha(c
) && g_unichar_isupper(c
))
1482 /* FIXME don't write a const string */
1483 str
= g_utf8_next_char(str
);
1489 /* end can be -1 for haystack->len.
1490 * returns: position of found text or -1. */
1491 gint
utils_string_find(GString
*haystack
, gint start
, gint end
, const gchar
*needle
)
1495 g_return_val_if_fail(haystack
!= NULL
, -1);
1496 if (haystack
->len
== 0)
1499 g_return_val_if_fail(start
>= 0, -1);
1500 if (start
>= (gint
)haystack
->len
)
1503 g_return_val_if_fail(!EMPTY(needle
), -1);
1506 end
= haystack
->len
;
1508 pos
= utils_strpos(haystack
->str
+ start
, needle
);
1519 /* Replaces @len characters from offset @a pos.
1520 * len can be -1 to replace the remainder of @a str.
1521 * returns: pos + strlen(replace). */
1522 gint
utils_string_replace(GString
*str
, gint pos
, gint len
, const gchar
*replace
)
1524 g_string_erase(str
, pos
, len
);
1527 g_string_insert(str
, pos
, replace
);
1528 pos
+= strlen(replace
);
1535 * Replaces all occurrences of @a needle in @a haystack with @a replace.
1536 * As of Geany 0.16, @a replace can match @a needle, so the following will work:
1537 * @code utils_string_replace_all(text, "\n", "\r\n"); @endcode
1539 * @param haystack The input string to operate on. This string is modified in place.
1540 * @param needle The string which should be replaced.
1541 * @param replace The replacement for @a needle.
1543 * @return Number of replacements made.
1546 guint
utils_string_replace_all(GString
*haystack
, const gchar
*needle
, const gchar
*replace
)
1550 gsize needle_length
= strlen(needle
);
1554 pos
= utils_string_find(haystack
, pos
, -1, needle
);
1559 pos
= utils_string_replace(haystack
, pos
, needle_length
, replace
);
1567 * Replaces only the first occurrence of @a needle in @a haystack
1569 * For details, see utils_string_replace_all().
1571 * @param haystack The input string to operate on. This string is modified in place.
1572 * @param needle The string which should be replaced.
1573 * @param replace The replacement for @a needle.
1575 * @return Number of replacements made.
1580 guint
utils_string_replace_first(GString
*haystack
, const gchar
*needle
, const gchar
*replace
)
1582 gint pos
= utils_string_find(haystack
, 0, -1, needle
);
1587 utils_string_replace(haystack
, pos
, strlen(needle
), replace
);
1592 /* Similar to g_regex_replace but allows matching a subgroup.
1593 * match_num: which match to replace, 0 for whole match.
1594 * literal: FALSE to interpret escape sequences in @a replace.
1595 * returns: number of replacements.
1596 * bug: replaced text can affect matching of ^ or \b */
1597 guint
utils_string_regex_replace_all(GString
*haystack
, GRegex
*regex
,
1598 guint match_num
, const gchar
*replace
, gboolean literal
)
1604 g_assert(literal
); /* escapes not implemented yet */
1605 g_return_val_if_fail(replace
, 0);
1607 /* ensure haystack->str is not null */
1608 if (haystack
->len
== 0)
1611 /* passing a start position makes G_REGEX_MATCH_NOTBOL automatic */
1612 while (g_regex_match_full(regex
, haystack
->str
, -1, start
, 0, &minfo
, NULL
))
1616 g_match_info_fetch_pos(minfo
, match_num
, &start
, &end
);
1618 utils_string_replace(haystack
, start
, len
, replace
);
1621 /* skip past whole match */
1622 g_match_info_fetch_pos(minfo
, 0, NULL
, &end
);
1623 start
= end
- len
+ strlen(replace
);
1624 g_match_info_free(minfo
);
1626 g_match_info_free(minfo
);
1631 /* Get project or default startup directory (if set), or NULL. */
1632 const gchar
*utils_get_default_dir_utf8(void)
1634 if (app
->project
&& !EMPTY(app
->project
->base_path
))
1636 return app
->project
->base_path
;
1639 if (!EMPTY(prefs
.default_open_path
))
1641 return prefs
.default_open_path
;
1648 * Wraps @c spawn_sync(), which see.
1650 * @param dir The child's current working directory, or @a NULL to inherit parent's.
1651 * @param argv The child's argument vector.
1652 * @param env The child's environment, or @a NULL to inherit parent's.
1653 * @param flags Ignored.
1654 * @param child_setup Ignored.
1655 * @param user_data Ignored.
1656 * @param std_out The return location for child output, or @a NULL.
1657 * @param std_err The return location for child error messages, or @a NULL.
1658 * @param exit_status The child exit status, as returned by waitpid(), or @a NULL.
1659 * @param error The return location for error or @a NULL.
1661 * @return @c TRUE on success, @c FALSE if an error was set.
1664 gboolean
utils_spawn_sync(const gchar
*dir
, gchar
**argv
, gchar
**env
, GSpawnFlags flags
,
1665 GSpawnChildSetupFunc child_setup
, gpointer user_data
, gchar
**std_out
,
1666 gchar
**std_err
, gint
*exit_status
, GError
**error
)
1668 GString
*output
= std_out
? g_string_new(NULL
) : NULL
;
1669 GString
*errors
= std_err
? g_string_new(NULL
) : NULL
;
1670 gboolean result
= spawn_sync(dir
, NULL
, argv
, env
, NULL
, output
, errors
, exit_status
, error
);
1673 *std_out
= g_string_free(output
, !result
);
1676 *std_err
= g_string_free(errors
, !result
);
1683 * Wraps @c spawn_async(), which see.
1685 * @param dir The child's current working directory, or @a NULL to inherit parent's.
1686 * @param argv The child's argument vector.
1687 * @param env The child's environment, or @a NULL to inherit parent's.
1688 * @param flags Ignored.
1689 * @param child_setup Ignored.
1690 * @param user_data Ignored.
1691 * @param child_pid The return location for child process ID, or NULL.
1692 * @param error The return location for error or @a NULL.
1694 * @return @c TRUE on success, @c FALSE if an error was set.
1697 gboolean
utils_spawn_async(const gchar
*dir
, gchar
**argv
, gchar
**env
, GSpawnFlags flags
,
1698 GSpawnChildSetupFunc child_setup
, gpointer user_data
, GPid
*child_pid
,
1701 return spawn_async(dir
, NULL
, argv
, env
, child_pid
, error
);
1705 /* Retrieves the path for the given URI.
1707 * - the path which was determined by g_filename_from_uri() or GIO
1708 * - NULL if the URI is non-local and gvfs-fuse is not installed
1709 * - a new copy of 'uri' if it is not an URI. */
1710 gchar
*utils_get_path_from_uri(const gchar
*uri
)
1712 gchar
*locale_filename
;
1714 g_return_val_if_fail(uri
!= NULL
, NULL
);
1716 if (! utils_is_uri(uri
))
1717 return g_strdup(uri
);
1719 /* this will work only for 'file://' URIs */
1720 locale_filename
= g_filename_from_uri(uri
, NULL
, NULL
);
1721 /* g_filename_from_uri() failed, so we probably have a non-local URI */
1722 if (locale_filename
== NULL
)
1724 GFile
*file
= g_file_new_for_uri(uri
);
1725 locale_filename
= g_file_get_path(file
);
1726 g_object_unref(file
);
1727 if (locale_filename
== NULL
)
1729 geany_debug("The URI '%s' could not be resolved to a local path. This means "
1730 "that the URI is invalid or that you don't have gvfs-fuse installed.", uri
);
1734 return locale_filename
;
1738 gboolean
utils_is_uri(const gchar
*uri
)
1740 g_return_val_if_fail(uri
!= NULL
, FALSE
);
1742 return (strstr(uri
, "://") != NULL
);
1746 /* path should be in locale encoding */
1747 gboolean
utils_is_remote_path(const gchar
*path
)
1749 g_return_val_if_fail(path
!= NULL
, FALSE
);
1751 /* if path is an URI and it doesn't start "file://", we take it as remote */
1752 if (utils_is_uri(path
) && strncmp(path
, "file:", 5) != 0)
1757 static gchar
*fuse_path
= NULL
;
1758 static gsize len
= 0;
1760 if (G_UNLIKELY(fuse_path
== NULL
))
1762 fuse_path
= g_build_filename(g_get_home_dir(), ".gvfs", NULL
);
1763 len
= strlen(fuse_path
);
1765 /* Comparing the file path against a hardcoded path is not the most elegant solution
1766 * but for now it is better than nothing. Ideally, g_file_new_for_path() should create
1767 * proper GFile objects for Fuse paths, but it only does in future GVFS
1768 * versions (gvfs 1.1.1). */
1769 return (strncmp(path
, fuse_path
, len
) == 0);
1777 /* Remove all relative and untidy elements from the path of @a filename.
1778 * @param filename must be a valid absolute path.
1779 * @see tm_get_real_path() - also resolves links. */
1780 void utils_tidy_path(gchar
*filename
)
1783 const gchar
*needle
;
1784 gboolean preserve_double_backslash
= FALSE
;
1786 g_return_if_fail(g_path_is_absolute(filename
));
1788 str
= g_string_new(filename
);
1790 if (str
->len
>= 2 && strncmp(str
->str
, "\\\\", 2) == 0)
1791 preserve_double_backslash
= TRUE
;
1794 /* using MSYS we can get Unix-style separators */
1795 utils_string_replace_all(str
, "/", G_DIR_SEPARATOR_S
);
1797 /* replace "/./" and "//" */
1798 utils_string_replace_all(str
, G_DIR_SEPARATOR_S
"." G_DIR_SEPARATOR_S
, G_DIR_SEPARATOR_S
);
1799 utils_string_replace_all(str
, G_DIR_SEPARATOR_S G_DIR_SEPARATOR_S
, G_DIR_SEPARATOR_S
);
1801 if (preserve_double_backslash
)
1802 g_string_prepend(str
, "\\");
1804 /* replace "/../" */
1805 needle
= G_DIR_SEPARATOR_S
".." G_DIR_SEPARATOR_S
;
1808 const gchar
*c
= strstr(str
->str
, needle
);
1813 gssize pos
, sub_len
;
1817 break; /* bad path */
1819 /* replace "/../" */
1820 g_string_erase(str
, pos
, strlen(needle
));
1821 g_string_insert_c(str
, pos
, G_DIR_SEPARATOR
);
1823 /* search for last "/" before found "/../" */
1824 c
= g_strrstr_len(str
->str
, pos
, G_DIR_SEPARATOR_S
);
1825 sub_len
= pos
- (c
- str
->str
);
1827 break; /* bad path */
1829 pos
= c
- str
->str
; /* position of previous "/" */
1830 g_string_erase(str
, pos
, sub_len
);
1833 if (str
->len
<= strlen(filename
))
1834 memcpy(filename
, str
->str
, str
->len
+ 1);
1836 g_warn_if_reached();
1837 g_string_free(str
, TRUE
);
1842 * Removes characters from a string, in place.
1844 * @param string String to search.
1845 * @param chars Characters to remove.
1847 * @return @a string - return value is only useful when nesting function calls, e.g.:
1848 * @code str = utils_str_remove_chars(g_strdup("f_o_o"), "_"); @endcode
1850 * @see @c g_strdelimit.
1853 gchar
*utils_str_remove_chars(gchar
*string
, const gchar
*chars
)
1858 g_return_val_if_fail(string
, NULL
);
1859 if (G_UNLIKELY(EMPTY(chars
)))
1862 foreach_str(r
, string
)
1864 if (!strchr(chars
, *r
))
1872 /* Gets list of sorted filenames with no path and no duplicates from user and system config */
1873 GSList
*utils_get_config_files(const gchar
*subdir
)
1875 gchar
*path
= g_build_path(G_DIR_SEPARATOR_S
, app
->configdir
, subdir
, NULL
);
1876 GSList
*list
= utils_get_file_list_full(path
, FALSE
, FALSE
, NULL
);
1877 GSList
*syslist
, *node
;
1881 utils_mkdir(path
, FALSE
);
1883 SETPTR(path
, g_build_path(G_DIR_SEPARATOR_S
, app
->datadir
, subdir
, NULL
));
1884 syslist
= utils_get_file_list_full(path
, FALSE
, FALSE
, NULL
);
1886 list
= g_slist_concat(list
, syslist
);
1888 list
= g_slist_sort(list
, (GCompareFunc
) utils_str_casecmp
);
1889 /* remove duplicates (next to each other after sorting) */
1890 foreach_slist(node
, list
)
1892 if (node
->next
&& utils_str_equal(node
->next
->data
, node
->data
))
1894 GSList
*old
= node
->next
;
1897 node
->next
= old
->next
;
1906 /* Suffix can be NULL or a string which should be appended to the Help URL like
1907 * an anchor link, e.g. "#some_anchor". */
1908 gchar
*utils_get_help_url(const gchar
*suffix
)
1915 uri
= g_strconcat("file:///", app
->docdir
, "/Manual.html", NULL
);
1916 g_strdelimit(uri
, "\\", '/'); /* replace '\\' by '/' */
1919 uri
= g_strconcat("file://", app
->docdir
, "/index.html", NULL
);
1922 if (! g_file_test(uri
+ skip
, G_FILE_TEST_IS_REGULAR
))
1923 { /* fall back to online documentation if it is not found on the hard disk */
1925 uri
= g_strconcat(GEANY_HOMEPAGE
, "manual/", VERSION
, "/index.html", NULL
);
1930 SETPTR(uri
, g_strconcat(uri
, suffix
, NULL
));
1937 static gboolean
str_in_array(const gchar
**haystack
, const gchar
*needle
)
1941 for (p
= haystack
; *p
!= NULL
; ++p
)
1943 if (utils_str_equal(*p
, needle
))
1951 * Copies the current environment into a new array.
1952 * @a exclude_vars is a @c NULL-terminated array of variable names which should be not copied.
1953 * All further arguments are key, value pairs of variables which should be added to
1956 * The argument list must be @c NULL-terminated.
1958 * @param exclude_vars @c NULL-terminated array of variable names to exclude.
1959 * @param first_varname Name of the first variable to copy into the new array.
1960 * @param ... Key-value pairs of variable names and values, @c NULL-terminated.
1962 * @return The new environment array.
1965 gchar
**utils_copy_environment(const gchar
**exclude_vars
, const gchar
*first_varname
, ...)
1971 const gchar
*key
, *value
;
1974 /* count the additional variables */
1975 va_start(args
, first_varname
);
1976 for (o
= 1; va_arg(args
, gchar
*) != NULL
; o
++);
1978 /* the passed arguments should be even (key, value pairs) */
1979 g_return_val_if_fail(o
% 2 == 0, NULL
);
1983 /* get all the environ variables */
1986 /* create an array large enough to hold the new environment */
1987 n
= g_strv_length(env
);
1988 /* 'n + o + 1' could leak a little bit when exclude_vars is set */
1989 result
= g_new(gchar
*, n
+ o
+ 1);
1991 /* copy the environment */
1992 for (n
= 0, p
= env
; *p
!= NULL
; ++p
)
1994 /* copy the variable */
1995 value
= g_getenv(*p
);
1996 if (G_LIKELY(value
!= NULL
))
1998 /* skip excluded variables */
1999 if (exclude_vars
!= NULL
&& str_in_array(exclude_vars
, *p
))
2002 result
[n
++] = g_strconcat(*p
, "=", value
, NULL
);
2007 /* now add additional variables */
2008 va_start(args
, first_varname
);
2009 key
= first_varname
;
2010 value
= va_arg(args
, gchar
*);
2013 result
[n
++] = g_strconcat(key
, "=", value
, NULL
);
2015 key
= va_arg(args
, gchar
*);
2018 value
= va_arg(args
, gchar
*);
2028 /* Joins @a first and @a second into a new string vector, freeing the originals.
2029 * The original contents are reused. */
2030 gchar
**utils_strv_join(gchar
**first
, gchar
**second
)
2033 gchar
**rptr
, **wptr
;
2040 strv
= g_new0(gchar
*, g_strv_length(first
) + g_strv_length(second
) + 1);
2043 foreach_strv(rptr
, first
)
2045 foreach_strv(rptr
, second
)
2054 /* Try to parse a date using g_date_set_parse(). It doesn't take any format hint,
2055 * obviously g_date_set_parse() uses some magic.
2056 * The returned GDate object must be freed. */
2057 GDate
*utils_parse_date(const gchar
*input
)
2059 GDate
*date
= g_date_new();
2061 g_date_set_parse(date
, input
);
2063 if (g_date_valid(date
))
2071 gchar
*utils_parse_and_format_build_date(const gchar
*input
)
2073 gchar date_buf
[255];
2074 GDate
*date
= utils_parse_date(input
);
2078 g_date_strftime(date_buf
, sizeof(date_buf
), GEANY_TEMPLATES_FORMAT_DATE
, date
);
2080 return g_strdup(date_buf
);
2083 return g_strdup(input
);
2087 gchar
*utils_get_user_config_dir(void)
2090 return win32_get_user_config_dir();
2092 return g_build_filename(g_get_user_config_dir(), "geany", NULL
);
2097 static gboolean
is_osx_bundle(void)
2099 #ifdef MAC_INTEGRATION
2100 gchar
*bundle_id
= gtkosx_application_get_bundle_id();
2111 const gchar
*utils_resource_dir(GeanyResourceDirType type
)
2113 static const gchar
*resdirs
[RESOURCE_DIR_COUNT
] = {NULL
};
2115 if (!resdirs
[RESOURCE_DIR_DATA
])
2118 gchar
*prefix
= win32_get_installation_dir();
2120 resdirs
[RESOURCE_DIR_DATA
] = g_build_filename(prefix
, "data", NULL
);
2121 resdirs
[RESOURCE_DIR_ICON
] = g_build_filename(prefix
, "share", "icons", NULL
);
2122 resdirs
[RESOURCE_DIR_DOC
] = g_build_filename(prefix
, "doc", NULL
);
2123 resdirs
[RESOURCE_DIR_LOCALE
] = g_build_filename(prefix
, "share", "locale", NULL
);
2124 resdirs
[RESOURCE_DIR_PLUGIN
] = g_build_filename(prefix
, "lib", "geany", NULL
);
2127 if (is_osx_bundle())
2129 # ifdef MAC_INTEGRATION
2130 gchar
*prefix
= gtkosx_application_get_resource_path();
2132 resdirs
[RESOURCE_DIR_DATA
] = g_build_filename(prefix
, "share", "geany", NULL
);
2133 resdirs
[RESOURCE_DIR_ICON
] = g_build_filename(prefix
, "share", "icons", NULL
);
2134 resdirs
[RESOURCE_DIR_DOC
] = g_build_filename(prefix
, "share", "doc", "geany", "html", NULL
);
2135 resdirs
[RESOURCE_DIR_LOCALE
] = g_build_filename(prefix
, "share", "locale", NULL
);
2136 resdirs
[RESOURCE_DIR_PLUGIN
] = g_build_filename(prefix
, "lib", "geany", NULL
);
2142 resdirs
[RESOURCE_DIR_DATA
] = g_build_filename(GEANY_DATADIR
, "geany", NULL
);
2143 resdirs
[RESOURCE_DIR_ICON
] = g_build_filename(GEANY_DATADIR
, "icons", NULL
);
2144 resdirs
[RESOURCE_DIR_DOC
] = g_build_filename(GEANY_DOCDIR
, "html", NULL
);
2145 resdirs
[RESOURCE_DIR_LOCALE
] = g_build_filename(GEANY_LOCALEDIR
, NULL
);
2146 resdirs
[RESOURCE_DIR_PLUGIN
] = g_build_filename(GEANY_LIBDIR
, "geany", NULL
);
2151 return resdirs
[type
];
2155 void utils_start_new_geany_instance(const gchar
*doc_path
)
2157 const gchar
*const *argv
;
2158 const gchar
*command
= is_osx_bundle() ? "open" : "geany";
2159 gchar
*exec_path
= g_find_program_in_path(command
);
2165 if (is_osx_bundle())
2167 const gchar
*const osx_argv
[] = {exec_path
, "-n", "-a", "Geany", doc_path
, NULL
};
2172 const gchar
*const unix_argv
[] = {exec_path
, "-i", doc_path
, NULL
};
2176 if (!utils_spawn_async(NULL
, (gchar
**) argv
, NULL
, 0, NULL
, NULL
, NULL
, &err
))
2178 g_printerr("Unable to open new window: %s", err
->message
);
2184 g_printerr("Unable to find 'geany'");