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
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * General utility functions, non-GTK related.
36 #ifdef HAVE_SYS_STAT_H
37 # include <sys/stat.h>
39 #ifdef HAVE_SYS_TYPES_H
40 # include <sys/types.h>
43 #include <glib/gstdio.h>
50 #include "filetypes.h"
60 * Tries to open the given URI in a browser.
61 * On Windows, the system's default browser is opened.
62 * On non-Windows systems, the browser command set in the preferences dialog is used. In case
63 * that fails or it is unset, the user is asked to correct or fill it.
65 * @param uri The URI to open in the web browser.
69 void utils_open_browser(const gchar
*uri
)
72 g_return_if_fail(uri
!= NULL
);
73 win32_open_browser(uri
);
75 gboolean again
= TRUE
;
77 g_return_if_fail(uri
!= NULL
);
81 gchar
*cmdline
= g_strconcat(tool_prefs
.browser_cmd
, " \"", uri
, "\"", NULL
);
83 if (g_spawn_command_line_async(cmdline
, 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
);
103 /* taken from anjuta, to determine the EOL mode of the file */
104 gint
utils_get_line_endings(const gchar
* buffer
, gsize size
)
107 guint cr
, lf
, crlf
, max_mode
;
112 for (i
= 0; i
< size
; i
++)
114 if (buffer
[i
] == 0x0a)
119 else if (buffer
[i
] == 0x0d)
128 if (buffer
[i
+ 1] != 0x0a)
143 /* Vote for the maximum */
161 gboolean
utils_isbrace(gchar c
, gboolean include_angles
)
167 return include_angles
;
174 case ']': return TRUE
;
175 default: return FALSE
;
180 gboolean
utils_is_opening_brace(gchar c
, gboolean include_angles
)
185 return include_angles
;
189 case '[': return TRUE
;
190 default: return FALSE
;
196 * Writes @a text into a file named @a filename.
197 * If the file doesn't exist, it will be created.
198 * If it already exists, it will be overwritten.
200 * @warning You should use @c g_file_set_contents() instead if you don't need
201 * file permissions and other metadata to be preserved, as that always handles
202 * disk exhaustion safely.
204 * @param filename The filename of the file to write, in locale encoding.
205 * @param text The text to write into the file.
207 * @return 0 if the file was successfully written, otherwise the @c errno of the
208 * failed operation is returned.
210 gint
utils_write_file(const gchar
*filename
, const gchar
*text
)
212 g_return_val_if_fail(filename
!= NULL
, ENOENT
);
213 g_return_val_if_fail(text
!= NULL
, EINVAL
);
215 if (file_prefs
.use_safe_file_saving
)
217 GError
*error
= NULL
;
218 if (! g_file_set_contents(filename
, text
, -1, &error
))
220 geany_debug("%s: could not write to file %s (%s)", G_STRFUNC
, filename
, error
->message
);
228 gsize bytes_written
, len
;
229 gboolean fail
= FALSE
;
231 if (filename
== NULL
)
236 fp
= g_fopen(filename
, "w");
241 bytes_written
= fwrite(text
, sizeof(gchar
), len
, fp
);
243 if (len
!= bytes_written
)
247 "utils_write_file(): written only %"G_GSIZE_FORMAT
" bytes, had to write %"G_GSIZE_FORMAT
" bytes to %s",
248 bytes_written
, len
, filename
);
255 geany_debug("utils_write_file(): could not write to file %s (%s)",
256 filename
, g_strerror(errno
));
257 return NVL(errno
, EIO
);
264 /** Searches backward through @a size bytes looking for a '<'.
267 * @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.
293 const gchar
*utils_find_open_xml_tag_pos(const gchar sel
[], gint size
)
295 /* stolen from anjuta and modified */
296 const gchar
*begin
, *cur
;
298 if (G_UNLIKELY(size
< 3))
299 { /* Smallest tag is "<p>" which is 3 characters */
303 cur
= &sel
[size
- 1];
305 /* Skip to the character before the closing brace */
313 /* skip whitespace */
314 while (cur
> begin
&& isspace(*cur
))
317 return NULL
; /* we found a short tag which doesn't need to be closed */
322 /* exit immediately if such non-valid XML/HTML is detected, e.g. "<script>if a >" */
323 else if (*cur
== '>')
328 /* if the found tag is an opening, not a closing tag or empty <> */
329 if (*cur
== '<' && *(cur
+ 1) != '/' && *(cur
+ 1) != '>')
336 /* Returns true if tag_name is a self-closing tag */
337 gboolean
utils_is_short_html_tag(const gchar
*tag_name
)
339 const gchar names
[][20] = {
342 "basefont", /* < or not < */
354 if (bsearch(tag_name
, names
, G_N_ELEMENTS(names
), 20,
355 (GCompareFunc
)g_ascii_strcasecmp
))
362 const gchar
*utils_get_eol_name(gint eol_mode
)
366 case SC_EOL_CRLF
: return _("Win (CRLF)"); break;
367 case SC_EOL_CR
: return _("Mac (CR)"); break;
368 default: return _("Unix (LF)"); break;
373 const gchar
*utils_get_eol_char(gint eol_mode
)
377 case SC_EOL_CRLF
: return "\r\n"; break;
378 case SC_EOL_CR
: return "\r"; break;
379 default: return "\n"; break;
384 /* Converts line endings to @a target_eol_mode. */
385 void utils_ensure_same_eol_characters(GString
*string
, gint target_eol_mode
)
387 const gchar
*eol_str
= utils_get_eol_char(target_eol_mode
);
389 /* first convert data to LF only */
390 utils_string_replace_all(string
, "\r\n", "\n");
391 utils_string_replace_all(string
, "\r", "\n");
393 if (target_eol_mode
== SC_EOL_LF
)
396 /* now convert to desired line endings */
397 utils_string_replace_all(string
, "\n", eol_str
);
401 gboolean
utils_atob(const gchar
*str
)
403 if (G_UNLIKELY(str
== NULL
))
405 else if (strcmp(str
, "TRUE") == 0 || strcmp(str
, "true") == 0)
411 /* NULL-safe version of g_path_is_absolute(). */
412 gboolean
utils_is_absolute_path(const gchar
*path
)
414 if (G_UNLIKELY(! NZV(path
)))
417 return g_path_is_absolute(path
);
421 /* Skips root if path is absolute, do nothing otherwise.
422 * This is a relative-safe version of g_path_skip_root().
424 const gchar
*utils_path_skip_root(const gchar
*path
)
426 const gchar
*path_relative
;
428 path_relative
= g_path_skip_root(path
);
430 return (path_relative
!= NULL
) ? path_relative
: path
;
434 gdouble
utils_scale_round(gdouble val
, gdouble factor
)
436 /*val = floor(val * factor + 0.5);*/
439 val
= MIN(val
, factor
);
445 /* like g_utf8_strdown() but if @str is not valid UTF8, convert it from locale first.
446 * returns NULL on charset conversion failure */
447 static gchar
*utf8_strdown(const gchar
*str
)
451 if (g_utf8_validate(str
, -1, NULL
))
452 down
= g_utf8_strdown(str
, -1);
455 down
= g_locale_to_utf8(str
, -1, NULL
, NULL
, NULL
);
457 SETPTR(down
, g_utf8_strdown(down
, -1));
465 * A replacement function for g_strncasecmp() to compare strings case-insensitive.
466 * It converts both strings into lowercase using g_utf8_strdown() and then compare
467 * both strings using strcmp().
468 * This is not completely accurate regarding locale-specific case sorting rules
469 * but seems to be a good compromise between correctness and performance.
471 * The input strings should be in UTF-8 or locale encoding.
473 * @param s1 Pointer to first string or @c NULL.
474 * @param s2 Pointer to second string or @c NULL.
476 * @return an integer less than, equal to, or greater than zero if @a s1 is found, respectively,
477 * to be less than, to match, or to be greater than @a s2.
481 gint
utils_str_casecmp(const gchar
*s1
, const gchar
*s2
)
486 g_return_val_if_fail(s1
!= NULL
, 1);
487 g_return_val_if_fail(s2
!= NULL
, -1);
489 /* ensure strings are UTF-8 and lowercase */
490 tmp1
= utf8_strdown(s1
);
493 tmp2
= utf8_strdown(s2
);
501 result
= strcmp(tmp1
, tmp2
);
510 * Truncates the input string to a given length.
511 * Characters are removed from the middle of the string, so the start and the end of string
514 * @param string Input string.
515 * @param truncate_length The length in characters of the resulting string.
517 * @return A copy of @a string which is truncated to @a truncate_length characters,
518 * should be freed when no longer needed.
522 /* This following function is taken from Gedit. */
523 gchar
*utils_str_middle_truncate(const gchar
*string
, guint truncate_length
)
528 guint num_left_chars
;
530 guint delimiter_length
;
531 const gchar
*delimiter
= "\342\200\246";
533 g_return_val_if_fail(string
!= NULL
, NULL
);
535 length
= strlen(string
);
537 g_return_val_if_fail(g_utf8_validate(string
, length
, NULL
), NULL
);
539 /* It doesnt make sense to truncate strings to less than the size of the delimiter plus 2
540 * characters (one on each side) */
541 delimiter_length
= g_utf8_strlen(delimiter
, -1);
542 if (truncate_length
< (delimiter_length
+ 2))
543 return g_strdup(string
);
545 n_chars
= g_utf8_strlen(string
, length
);
547 /* Make sure the string is not already small enough. */
548 if (n_chars
<= truncate_length
)
549 return g_strdup (string
);
551 /* Find the 'middle' where the truncation will occur. */
552 num_left_chars
= (truncate_length
- delimiter_length
) / 2;
553 right_offset
= n_chars
- truncate_length
+ num_left_chars
+ delimiter_length
;
555 truncated
= g_string_new_len(string
, g_utf8_offset_to_pointer(string
, num_left_chars
) - string
);
556 g_string_append(truncated
, delimiter
);
557 g_string_append(truncated
, g_utf8_offset_to_pointer(string
, right_offset
));
559 return g_string_free(truncated
, FALSE
);
564 * @c NULL-safe string comparison. Returns @c TRUE if both @a a and @a b are @c NULL
565 * or if @a a and @a b refer to valid strings which are equal.
567 * @param a Pointer to first string or @c NULL.
568 * @param b Pointer to second string or @c NULL.
570 * @return @c TRUE if @a a equals @a b, else @c FALSE.
572 gboolean
utils_str_equal(const gchar
*a
, const gchar
*b
)
574 /* (taken from libexo from os-cillation) */
575 if (a
== NULL
&& b
== NULL
) return TRUE
;
576 else if (a
== NULL
|| b
== NULL
) return FALSE
;
587 * Removes the extension from @a filename and return the result in a newly allocated string.
589 * @param filename The filename to operate on.
591 * @return A newly-allocated string, should be freed when no longer needed.
593 gchar
*utils_remove_ext_from_filename(const gchar
*filename
)
599 g_return_val_if_fail(filename
!= NULL
, NULL
);
601 last_dot
= strrchr(filename
, '.');
603 return g_strdup(filename
);
605 len
= (gsize
) (last_dot
- filename
);
606 result
= g_malloc(len
+ 1);
607 memcpy(result
, filename
, len
);
614 gchar
utils_brace_opposite(gchar ch
)
618 case '(': return ')';
619 case ')': return '(';
620 case '[': return ']';
621 case ']': return '[';
622 case '{': return '}';
623 case '}': return '{';
624 case '<': return '>';
625 case '>': return '<';
626 default: return '\0';
631 gchar
*utils_get_hostname(void)
634 return win32_get_hostname();
635 #elif defined(HAVE_GETHOSTNAME)
637 if (gethostname(hostname
, sizeof(hostname
)) == 0)
638 return g_strdup(hostname
);
640 return g_strdup("localhost");
644 /* Checks whether the given file can be written. locale_filename is expected in locale encoding.
645 * Returns 0 if it can be written, otherwise it returns errno */
646 gint
utils_is_file_writable(const gchar
*locale_filename
)
651 if (! g_file_test(locale_filename
, G_FILE_TEST_EXISTS
) &&
652 ! g_file_test(locale_filename
, G_FILE_TEST_IS_DIR
))
653 /* get the file's directory to check for write permission if it doesn't yet exist */
654 file
= g_path_get_dirname(locale_filename
);
656 file
= g_strdup(locale_filename
);
659 /* use _waccess on Windows, access() doesn't accept special characters */
660 ret
= win32_check_write_permission(file
);
663 /* access set also errno to "FILE NOT FOUND" even if locale_filename is writeable, so use
664 * errno only when access() explicitly returns an error */
665 if (access(file
, R_OK
| W_OK
) != 0)
675 /* Replaces all occurrences of needle in haystack with replacement.
676 * Warning: *haystack must be a heap address; it may be freed and reassigned.
677 * Note: utils_string_replace_all() will always be faster when @a replacement is longer
679 * All strings have to be NULL-terminated.
680 * See utils_string_replace_all() for details. */
681 void utils_str_replace_all(gchar
**haystack
, const gchar
*needle
, const gchar
*replacement
)
685 g_return_if_fail(*haystack
!= NULL
);
687 str
= g_string_new(*haystack
);
690 utils_string_replace_all(str
, needle
, replacement
);
692 *haystack
= g_string_free(str
, FALSE
);
696 gint
utils_strpos(const gchar
*haystack
, const gchar
*needle
)
703 sub
= strstr(haystack
, needle
);
707 return sub
- haystack
;
712 * Retrieves a formatted date/time string from strftime().
713 * This function should be preferred to directly calling strftime() since this function
714 * works on UTF-8 encoded strings.
716 * @param format The format string to pass to strftime(3). See the strftime(3)
717 * documentation for details, in UTF-8 encoding.
718 * @param time_to_use The date/time to use, in time_t format or NULL to use the current time.
720 * @return A newly-allocated string, should be freed when no longer needed.
724 gchar
*utils_get_date_time(const gchar
*format
, time_t *time_to_use
)
727 static gchar date
[1024];
728 gchar
*locale_format
;
731 g_return_val_if_fail(format
!= NULL
, NULL
);
733 if (! g_utf8_validate(format
, -1, NULL
))
735 locale_format
= g_locale_from_utf8(format
, -1, NULL
, NULL
, NULL
);
736 if (locale_format
== NULL
)
740 locale_format
= g_strdup(format
);
742 if (time_to_use
!= NULL
)
743 tm
= localtime(time_to_use
);
746 time_t tp
= time(NULL
);
750 len
= strftime(date
, 1024, locale_format
, tm
);
751 g_free(locale_format
);
755 if (! g_utf8_validate(date
, len
, NULL
))
756 return g_locale_to_utf8(date
, len
, NULL
, NULL
, NULL
);
758 return g_strdup(date
);
762 gchar
*utils_get_initials(const gchar
*name
)
765 gchar
*initials
= g_malloc0(5);
767 initials
[0] = name
[0];
768 while (name
[i
] != '\0' && j
< 4)
770 if (name
[i
] == ' ' && name
[i
+ 1] != ' ')
772 initials
[j
++] = name
[i
+ 1];
781 * Wraps g_key_file_get_integer() to add a default value argument.
783 * @param config A GKeyFile object.
784 * @param section The group name to look in for the key.
785 * @param key The key to find.
786 * @param default_value The default value which will be returned when @a section or @a key
789 * @return The value associated with @a key as an integer, or the given default value if the value
790 * could not be retrieved.
792 gint
utils_get_setting_integer(GKeyFile
*config
, const gchar
*section
, const gchar
*key
,
793 const gint default_value
)
796 GError
*error
= NULL
;
798 g_return_val_if_fail(config
, default_value
);
800 tmp
= g_key_file_get_integer(config
, section
, key
, &error
);
804 return default_value
;
811 * Wraps g_key_file_get_boolean() to add a default value argument.
813 * @param config A GKeyFile object.
814 * @param section The group name to look in for the key.
815 * @param key The key to find.
816 * @param default_value The default value which will be returned when @c section or @c key
819 * @return The value associated with @a key as a boolean, or the given default value if the value
820 * could not be retrieved.
822 gboolean
utils_get_setting_boolean(GKeyFile
*config
, const gchar
*section
, const gchar
*key
,
823 const gboolean default_value
)
826 GError
*error
= NULL
;
828 g_return_val_if_fail(config
, default_value
);
830 tmp
= g_key_file_get_boolean(config
, section
, key
, &error
);
834 return default_value
;
841 * Wraps g_key_file_get_string() to add a default value argument.
843 * @param config A GKeyFile object.
844 * @param section The group name to look in for the key.
845 * @param key The key to find.
846 * @param default_value The default value which will be returned when @a section or @a key
849 * @return A newly allocated string, either the value for @a key or a copy of the given
850 * default value if it could not be retrieved.
852 gchar
*utils_get_setting_string(GKeyFile
*config
, const gchar
*section
, const gchar
*key
,
853 const gchar
*default_value
)
857 g_return_val_if_fail(config
, g_strdup(default_value
));
859 tmp
= g_key_file_get_string(config
, section
, key
, NULL
);
862 return g_strdup(default_value
);
868 gchar
*utils_get_hex_from_color(GdkColor
*color
)
870 gchar
*buffer
= g_malloc0(9);
872 g_return_val_if_fail(color
!= NULL
, NULL
);
874 g_snprintf(buffer
, 8, "#%02X%02X%02X",
875 (guint
) (utils_scale_round(color
->red
/ 256, 255)),
876 (guint
) (utils_scale_round(color
->green
/ 256, 255)),
877 (guint
) (utils_scale_round(color
->blue
/ 256, 255)));
883 guint
utils_invert_color(guint color
)
887 r
= 0xffffff - color
;
888 g
= 0xffffff - (color
>> 8);
889 b
= 0xffffff - (color
>> 16);
891 return (r
| (g
<< 8) | (b
<< 16));
895 /* Get directory from current file in the notebook.
896 * Returns dir string that should be freed or NULL, depending on whether current file is valid.
897 * Returned string is in UTF-8 encoding */
898 gchar
*utils_get_current_file_dir_utf8(void)
900 GeanyDocument
*doc
= document_get_current();
904 /* get current filename */
905 const gchar
*cur_fname
= doc
->file_name
;
907 if (cur_fname
!= NULL
)
909 /* get folder part from current filename */
910 return g_path_get_dirname(cur_fname
); /* returns "." if no path */
914 return NULL
; /* no file open */
918 /* very simple convenience function */
919 void utils_beep(void)
921 if (prefs
.beep_on_errors
)
926 /* taken from busybox, thanks */
927 gchar
*utils_make_human_readable_str(guint64 size
, gulong block_size
,
930 /* The code will adjust for additional (appended) units. */
931 static const gchar zero_and_units
[] = { '0', 0, 'K', 'M', 'G', 'T' };
932 static const gchar fmt
[] = "%Lu %c%c";
933 static const gchar fmt_tenths
[] = "%Lu.%d %c%c";
944 val
= size
* block_size
;
950 val
+= display_unit
/2; /* Deal with rounding. */
951 val
/= display_unit
; /* Don't combine with the line above!!! */
956 while ((val
>= 1024) && (u
< zero_and_units
+ sizeof(zero_and_units
) - 1))
960 frac
= ((((gint
)(val
% 1024)) * 10) + (1024 / 2)) / 1024;
964 { /* We need to round up here. */
970 /* If f==fmt then 'frac' and 'u' are ignored. */
971 return g_strdup_printf(f
, val
, frac
, *u
, 'b');
975 static guint
utils_get_value_of_hex(const gchar ch
)
977 if (ch
>= '0' && ch
<= '9')
979 else if (ch
>= 'A' && ch
<= 'F')
980 return ch
- 'A' + 10;
981 else if (ch
>= 'a' && ch
<= 'f')
982 return ch
- 'a' + 10;
988 /* utils_strtod() converts a string containing a hex colour ("0x00ff00") into an integer.
989 * Basically, it is the same as strtod() would do, but it does not understand hex colour values,
990 * before ANSI-C99. With with_route set, it takes strings of the format "#00ff00".
991 * Returns -1 on failure. */
992 gint
utils_strtod(const gchar
*source
, gchar
**end
, gboolean with_route
)
994 guint red
, green
, blue
, offset
= 0;
996 g_return_val_if_fail(source
!= NULL
, -1);
998 if (with_route
&& (strlen(source
) != 7 || source
[0] != '#'))
1000 else if (! with_route
&& (strlen(source
) != 8 || source
[0] != '0' ||
1001 (source
[1] != 'x' && source
[1] != 'X')))
1006 /* offset is set to 1 when the string starts with 0x, otherwise it starts with #
1007 * and we don't need to increase the index */
1011 red
= utils_get_value_of_hex(
1012 source
[1 + offset
]) * 16 + utils_get_value_of_hex(source
[2 + offset
]);
1013 green
= utils_get_value_of_hex(
1014 source
[3 + offset
]) * 16 + utils_get_value_of_hex(source
[4 + offset
]);
1015 blue
= utils_get_value_of_hex(
1016 source
[5 + offset
]) * 16 + utils_get_value_of_hex(source
[6 + offset
]);
1018 return (red
| (green
<< 8) | (blue
<< 16));
1022 /* Returns: newly allocated string with the current time formatted HH:MM:SS. */
1023 gchar
*utils_get_current_time_string(void)
1025 const time_t tp
= time(NULL
);
1026 const struct tm
*tmval
= localtime(&tp
);
1027 gchar
*result
= g_malloc0(9);
1029 strftime(result
, 9, "%H:%M:%S", tmval
);
1035 GIOChannel
*utils_set_up_io_channel(
1036 gint fd
, GIOCondition cond
, gboolean nblock
, GIOFunc func
, gpointer data
)
1039 /*const gchar *encoding;*/
1042 ioc
= g_io_channel_win32_new_fd(fd
);
1044 ioc
= g_io_channel_unix_new(fd
);
1048 g_io_channel_set_flags(ioc
, G_IO_FLAG_NONBLOCK
, NULL
);
1050 g_io_channel_set_encoding(ioc
, NULL
, NULL
);
1052 if (! g_get_charset(&encoding))
1053 { // hope this works reliably
1054 GError *error = NULL;
1055 g_io_channel_set_encoding(ioc, encoding, &error);
1058 geany_debug("%s: %s", G_STRFUNC, error->message);
1059 g_error_free(error);
1064 /* "auto-close" ;-) */
1065 g_io_channel_set_close_on_unref(ioc
, TRUE
);
1067 g_io_add_watch(ioc
, cond
, func
, data
);
1068 g_io_channel_unref(ioc
);
1074 gchar
**utils_read_file_in_array(const gchar
*filename
)
1076 gchar
**result
= NULL
;
1079 g_return_val_if_fail(filename
!= NULL
, NULL
);
1081 g_file_get_contents(filename
, &data
, NULL
, NULL
);
1085 result
= g_strsplit_set(data
, "\r\n", -1);
1093 /* Contributed by Stefan Oltmanns, thanks.
1094 * Replaces \\, \r, \n, \t and \uXXX by their real counterparts.
1095 * keep_backslash is used for regex strings to leave '\\' and '\?' in place */
1096 gboolean
utils_str_replace_escape(gchar
*string
, gboolean keep_backslash
)
1101 g_return_val_if_fail(string
!= NULL
, FALSE
);
1104 len
= strlen(string
);
1105 for (i
= 0; i
< len
; i
++)
1107 if (string
[i
]=='\\')
1109 if (i
++ >= strlen(string
))
1130 case 'x': /* Warning: May produce illegal utf-8 string! */
1132 if (i
>= strlen(string
))
1136 if (isdigit(string
[i
- 1])) string
[j
] = string
[i
- 1] - 48;
1137 else if (isxdigit(string
[i
- 1])) string
[j
] = tolower(string
[i
- 1])-87;
1140 if (isdigit(string
[i
])) string
[j
] |= string
[i
] - 48;
1141 else if (isxdigit(string
[i
])) string
[j
] |= tolower(string
[i
])-87;
1148 if (i
>= strlen(string
))
1152 if (isdigit(string
[i
- 1])) unicodechar
= string
[i
- 1] - 48;
1153 else if (isxdigit(string
[i
- 1])) unicodechar
= tolower(string
[i
- 1])-87;
1156 if (isdigit(string
[i
])) unicodechar
|= string
[i
] - 48;
1157 else if (isxdigit(string
[i
])) unicodechar
|= tolower(string
[i
])-87;
1159 if (((i
+ 2) < strlen(string
)) && (isdigit(string
[i
+ 1]) || isxdigit(string
[i
+ 1]))
1160 && (isdigit(string
[i
+ 2]) || isxdigit(string
[i
+ 2])))
1164 if (isdigit(string
[i
- 1])) unicodechar
|= ((string
[i
- 1] - 48) << 4);
1165 else unicodechar
|= ((tolower(string
[i
- 1])-87) << 4);
1166 if (isdigit(string
[i
])) unicodechar
|= string
[i
] - 48;
1167 else unicodechar
|= tolower(string
[i
])-87;
1169 if (((i
+ 2) < strlen(string
)) && (isdigit(string
[i
+ 1]) || isxdigit(string
[i
+ 1]))
1170 && (isdigit(string
[i
+ 2]) || isxdigit(string
[i
+ 2])))
1174 if (isdigit(string
[i
- 1])) unicodechar
|= ((string
[i
- 1] - 48) << 4);
1175 else unicodechar
|= ((tolower(string
[i
- 1])-87) << 4);
1176 if (isdigit(string
[i
])) unicodechar
|= string
[i
] - 48;
1177 else unicodechar
|= tolower(string
[i
])-87;
1179 if (unicodechar
< 0x80)
1181 string
[j
] = unicodechar
;
1183 else if (unicodechar
< 0x800)
1185 string
[j
] = (unsigned char) ((unicodechar
>> 6) | 0xC0);
1187 string
[j
] = (unsigned char) ((unicodechar
& 0x3F) | 0x80);
1189 else if (unicodechar
< 0x10000)
1191 string
[j
] = (unsigned char) ((unicodechar
>> 12) | 0xE0);
1193 string
[j
] = (unsigned char) (((unicodechar
>> 6) & 0x3F) | 0x80);
1195 string
[j
] = (unsigned char) ((unicodechar
& 0x3F) | 0x80);
1197 else if (unicodechar
< 0x110000) /* more chars are not allowed in unicode */
1199 string
[j
] = (unsigned char) ((unicodechar
>> 18) | 0xF0);
1201 string
[j
] = (unsigned char) (((unicodechar
>> 12) & 0x3F) | 0x80);
1203 string
[j
] = (unsigned char) (((unicodechar
>> 6) & 0x3F) | 0x80);
1205 string
[j
] = (unsigned char) ((unicodechar
& 0x3F) | 0x80);
1214 /* unnecessary escapes are allowed */
1217 string
[j
] = string
[i
];
1222 string
[j
] = string
[i
];
1235 /* Wraps a string in place, replacing a space with a newline character.
1236 * wrapstart is the minimum position to start wrapping or -1 for default */
1237 gboolean
utils_wrap_string(gchar
*string
, gint wrapstart
)
1239 gchar
*pos
, *linestart
;
1240 gboolean ret
= FALSE
;
1245 for (pos
= linestart
= string
; *pos
!= '\0'; pos
++)
1247 if (pos
- linestart
>= wrapstart
&& *pos
== ' ')
1259 * Converts the given UTF-8 encoded string into locale encoding.
1260 * On Windows platforms, it does nothing and instead it just returns a copy of the input string.
1262 * @param utf8_text UTF-8 encoded text.
1264 * @return The converted string in locale encoding, or a copy of the input string if conversion
1265 * failed. Should be freed with g_free(). If @a utf8_text is @c NULL, @c NULL is returned.
1267 gchar
*utils_get_locale_from_utf8(const gchar
*utf8_text
)
1270 /* just do nothing on Windows platforms, this ifdef is just to prevent unwanted conversions
1271 * which would result in wrongly converted strings */
1272 return g_strdup(utf8_text
);
1278 locale_text
= g_locale_from_utf8(utf8_text
, -1, NULL
, NULL
, NULL
);
1279 if (locale_text
== NULL
)
1280 locale_text
= g_strdup(utf8_text
);
1287 * Converts the given string (in locale encoding) into UTF-8 encoding.
1288 * On Windows platforms, it does nothing and instead it just returns a copy of the input string.
1290 * @param locale_text Text in locale encoding.
1292 * @return The converted string in UTF-8 encoding, or a copy of the input string if conversion
1293 * failed. Should be freed with g_free(). If @a locale_text is @c NULL, @c NULL is returned.
1295 gchar
*utils_get_utf8_from_locale(const gchar
*locale_text
)
1298 /* just do nothing on Windows platforms, this ifdef is just to prevent unwanted conversions
1299 * which would result in wrongly converted strings */
1300 return g_strdup(locale_text
);
1306 utf8_text
= g_locale_to_utf8(locale_text
, -1, NULL
, NULL
, NULL
);
1307 if (utf8_text
== NULL
)
1308 utf8_text
= g_strdup(locale_text
);
1314 /* Pass pointers to free after arg_count.
1315 * The last argument must be NULL as an extra check that arg_count is correct. */
1316 void utils_free_pointers(gsize arg_count
, ...)
1322 va_start(a
, arg_count
);
1323 for (i
= 0; i
< arg_count
; i
++)
1325 ptr
= va_arg(a
, gpointer
);
1328 ptr
= va_arg(a
, gpointer
);
1330 g_warning("Wrong arg_count!");
1335 /* currently unused */
1337 /* Creates a string array deep copy of a series of non-NULL strings.
1338 * The first argument is nothing special.
1339 * The list must be ended with NULL.
1340 * If first is NULL, NULL is returned. */
1341 gchar
**utils_strv_new(const gchar
*first
, ...)
1348 g_return_val_if_fail(first
!= NULL
, NULL
);
1350 strvlen
= 1; /* for first argument */
1352 /* count other arguments */
1353 va_start(args
, first
);
1354 for (; va_arg(args
, gchar
*) != NULL
; strvlen
++);
1357 strv
= g_new(gchar
*, strvlen
+ 1); /* +1 for NULL terminator */
1358 strv
[0] = g_strdup(first
);
1360 va_start(args
, first
);
1361 for (i
= 1; str
= va_arg(args
, gchar
*), str
!= NULL
; i
++)
1363 strv
[i
] = g_strdup(str
);
1374 * Creates a directory if it doesn't already exist.
1375 * Creates intermediate parent directories as needed, too.
1376 * The permissions of the created directory are set 0700.
1378 * @param path The path of the directory to create, in locale encoding.
1379 * @param create_parent_dirs Whether to create intermediate parent directories if necessary.
1381 * @return 0 if the directory was successfully created, otherwise the @c errno of the
1382 * failed operation is returned.
1384 gint
utils_mkdir(const gchar
*path
, gboolean create_parent_dirs
)
1389 if (path
== NULL
|| strlen(path
) == 0)
1392 result
= (create_parent_dirs
) ? g_mkdir_with_parents(path
, mode
) : g_mkdir(path
, mode
);
1400 * Gets a list of files from the specified directory.
1401 * Locale encoding is expected for @a path and used for the file list. The list and the data
1402 * in the list should be freed after use, e.g.:
1404 * g_slist_foreach(list, (GFunc) g_free, NULL);
1405 * g_slist_free(list); @endcode
1407 * @note If you don't need a list you should use the foreach_dir() macro instead -
1408 * it's more efficient.
1410 * @param path The path of the directory to scan, in locale encoding.
1411 * @param full_path Whether to include the full path for each filename in the list. Obviously this
1412 * will use more memory.
1413 * @param sort Whether to sort alphabetically (UTF-8 safe).
1414 * @param error The location for storing a possible error, or @c NULL.
1416 * @return A newly allocated list or @c NULL if no files were found. The list and its data should be
1417 * freed when no longer needed.
1418 * @see utils_get_file_list().
1420 GSList
*utils_get_file_list_full(const gchar
*path
, gboolean full_path
, gboolean sort
, GError
**error
)
1422 GSList
*list
= NULL
;
1424 const gchar
*filename
;
1428 g_return_val_if_fail(path
!= NULL
, NULL
);
1430 dir
= g_dir_open(path
, 0, error
);
1434 foreach_dir(filename
, dir
)
1436 list
= g_slist_prepend(list
, full_path
?
1437 g_build_path(G_DIR_SEPARATOR_S
, path
, filename
, NULL
) : g_strdup(filename
));
1440 /* sorting last is quicker than on insertion */
1442 list
= g_slist_sort(list
, (GCompareFunc
) utils_str_casecmp
);
1448 * Gets a sorted list of files from the specified directory.
1449 * Locale encoding is expected for @a path and used for the file list. The list and the data
1450 * in the list should be freed after use, e.g.:
1452 * g_slist_foreach(list, (GFunc) g_free, NULL);
1453 * g_slist_free(list); @endcode
1455 * @param path The path of the directory to scan, in locale encoding.
1456 * @param length The location to store the number of non-@c NULL data items in the list,
1458 * @param error The location for storing a possible error, or @c NULL.
1460 * @return A newly allocated list or @c NULL if no files were found. The list and its data should be
1461 * freed when no longer needed.
1462 * @see utils_get_file_list_full().
1464 GSList
*utils_get_file_list(const gchar
*path
, guint
*length
, GError
**error
)
1466 GSList
*list
= utils_get_file_list_full(path
, FALSE
, TRUE
, error
);
1469 *length
= g_slist_length(list
);
1474 /* returns TRUE if any letter in str is a capital, FALSE otherwise. Should be Unicode safe. */
1475 gboolean
utils_str_has_upper(const gchar
*str
)
1479 if (! NZV(str
) || ! g_utf8_validate(str
, -1, NULL
))
1482 while (*str
!= '\0')
1484 c
= g_utf8_get_char(str
);
1485 /* check only letters and stop once the first non-capital was found */
1486 if (g_unichar_isalpha(c
) && g_unichar_isupper(c
))
1488 /* FIXME don't write a const string */
1489 str
= g_utf8_next_char(str
);
1495 /* end can be -1 for haystack->len.
1496 * returns: position of found text or -1. */
1497 gint
utils_string_find(GString
*haystack
, gint start
, gint end
, const gchar
*needle
)
1501 g_return_val_if_fail(haystack
!= NULL
, -1);
1502 if (haystack
->len
== 0)
1505 g_return_val_if_fail(start
>= 0, -1);
1506 if (start
>= (gint
)haystack
->len
)
1509 g_return_val_if_fail(NZV(needle
), -1);
1512 end
= haystack
->len
;
1514 pos
= utils_strpos(haystack
->str
+ start
, needle
);
1525 /* Replaces @len characters from offset @a pos.
1526 * len can be -1 to replace the remainder of @a str.
1527 * returns: pos + strlen(replace). */
1528 gint
utils_string_replace(GString
*str
, gint pos
, gint len
, const gchar
*replace
)
1530 g_string_erase(str
, pos
, len
);
1533 g_string_insert(str
, pos
, replace
);
1534 pos
+= strlen(replace
);
1541 * Replaces all occurrences of @a needle in @a haystack with @a replace.
1542 * As of Geany 0.16, @a replace can match @a needle, so the following will work:
1543 * @code utils_string_replace_all(text, "\n", "\r\n"); @endcode
1545 * @param haystack The input string to operate on. This string is modified in place.
1546 * @param needle The string which should be replaced.
1547 * @param replace The replacement for @a needle.
1549 * @return Number of replacements made.
1551 guint
utils_string_replace_all(GString
*haystack
, const gchar
*needle
, const gchar
*replace
)
1555 gsize needle_length
= strlen(needle
);
1559 pos
= utils_string_find(haystack
, pos
, -1, needle
);
1564 pos
= utils_string_replace(haystack
, pos
, needle_length
, replace
);
1572 * Replaces only the first occurrence of @a needle in @a haystack
1574 * For details, see utils_string_replace_all().
1576 * @param haystack The input string to operate on. This string is modified in place.
1577 * @param needle The string which should be replaced.
1578 * @param replace The replacement for @a needle.
1580 * @return Number of replacements made.
1584 guint
utils_string_replace_first(GString
*haystack
, const gchar
*needle
, const gchar
*replace
)
1586 gint pos
= utils_string_find(haystack
, 0, -1, needle
);
1591 utils_string_replace(haystack
, pos
, strlen(needle
), replace
);
1596 /* Similar to g_regex_replace but allows matching a subgroup.
1597 * match_num: which match to replace, 0 for whole match.
1598 * literal: FALSE to interpret escape sequences in @a replace.
1599 * returns: number of replacements.
1600 * bug: replaced text can affect matching of ^ or \b */
1601 guint
utils_string_regex_replace_all(GString
*haystack
, GRegex
*regex
,
1602 guint match_num
, const gchar
*replace
, gboolean literal
)
1608 g_assert(literal
); /* escapes not implemented yet */
1609 g_return_val_if_fail(replace
, 0);
1611 /* ensure haystack->str is not null */
1612 if (haystack
->len
== 0)
1615 /* passing a start position makes G_REGEX_MATCH_NOTBOL automatic */
1616 while (g_regex_match_full(regex
, haystack
->str
, -1, start
, 0, &minfo
, NULL
))
1620 g_match_info_fetch_pos(minfo
, match_num
, &start
, &end
);
1622 utils_string_replace(haystack
, start
, len
, replace
);
1625 /* skip past whole match */
1626 g_match_info_fetch_pos(minfo
, 0, NULL
, &end
);
1627 start
= end
- len
+ strlen(replace
);
1628 g_match_info_free(minfo
);
1630 g_match_info_free(minfo
);
1635 /* Get project or default startup directory (if set), or NULL. */
1636 const gchar
*utils_get_default_dir_utf8(void)
1638 if (app
->project
&& NZV(app
->project
->base_path
))
1640 return app
->project
->base_path
;
1643 if (NZV(prefs
.default_open_path
))
1645 return prefs
.default_open_path
;
1651 static gboolean
check_error(GError
**error
)
1653 if (error
!= NULL
&& *error
!= NULL
)
1655 /* imitate the GLib warning */
1657 "GError set over the top of a previous GError or uninitialized memory.\n"
1658 "This indicates a bug in someone's code. You must ensure an error is NULL "
1659 "before it's set.");
1660 /* after returning the code may segfault, but we don't care because we should
1661 * make sure *error is NULL */
1669 * Wraps g_spawn_sync() and internally calls this function on Unix-like
1670 * systems. On Win32 platforms, it uses the Windows API.
1672 * @param dir The child's current working directory, or @a NULL to inherit parent's.
1673 * @param argv The child's argument vector.
1674 * @param env The child's environment, or @a NULL to inherit parent's.
1675 * @param flags Flags from GSpawnFlags.
1676 * @param child_setup A function to run in the child just before exec().
1677 * @param user_data The user data for child_setup.
1678 * @param std_out The return location for child output.
1679 * @param std_err The return location for child error messages.
1680 * @param exit_status The child exit status, as returned by waitpid().
1681 * @param error The return location for error or @a NULL.
1683 * @return @c TRUE on success, @c FALSE if an error was set.
1685 gboolean
utils_spawn_sync(const gchar
*dir
, gchar
**argv
, gchar
**env
, GSpawnFlags flags
,
1686 GSpawnChildSetupFunc child_setup
, gpointer user_data
, gchar
**std_out
,
1687 gchar
**std_err
, gint
*exit_status
, GError
**error
)
1691 if (! check_error(error
))
1696 *error
= g_error_new(G_SPAWN_ERROR
, G_SPAWN_ERROR_FAILED
, "argv must not be NULL");
1707 result
= win32_spawn(dir
, argv
, env
, flags
, std_out
, std_err
, exit_status
, error
);
1709 result
= g_spawn_sync(dir
, argv
, env
, flags
, NULL
, NULL
, std_out
, std_err
, exit_status
, error
);
1717 * Wraps g_spawn_async() and internally calls this function on Unix-like
1718 * systems. On Win32 platforms, it uses the Windows API.
1720 * @param dir The child's current working directory, or @a NULL to inherit parent's.
1721 * @param argv The child's argument vector.
1722 * @param env The child's environment, or @a NULL to inherit parent's.
1723 * @param flags Flags from GSpawnFlags.
1724 * @param child_setup A function to run in the child just before exec().
1725 * @param user_data The user data for child_setup.
1726 * @param child_pid The return location for child process ID, or NULL.
1727 * @param error The return location for error or @a NULL.
1729 * @return @c TRUE on success, @c FALSE if an error was set.
1731 gboolean
utils_spawn_async(const gchar
*dir
, gchar
**argv
, gchar
**env
, GSpawnFlags flags
,
1732 GSpawnChildSetupFunc child_setup
, gpointer user_data
, GPid
*child_pid
,
1737 if (! check_error(error
))
1742 *error
= g_error_new(G_SPAWN_ERROR
, G_SPAWN_ERROR_FAILED
, "argv must not be NULL");
1747 result
= win32_spawn(dir
, argv
, env
, flags
, NULL
, NULL
, NULL
, error
);
1749 result
= g_spawn_async(dir
, argv
, env
, flags
, NULL
, NULL
, child_pid
, error
);
1755 /* Retrieves the path for the given URI.
1757 * - the path which was determined by g_filename_from_uri() or GIO
1758 * - NULL if the URI is non-local and gvfs-fuse is not installed
1759 * - a new copy of 'uri' if it is not an URI. */
1760 gchar
*utils_get_path_from_uri(const gchar
*uri
)
1762 gchar
*locale_filename
;
1764 g_return_val_if_fail(uri
!= NULL
, NULL
);
1766 if (! utils_is_uri(uri
))
1767 return g_strdup(uri
);
1769 /* this will work only for 'file://' URIs */
1770 locale_filename
= g_filename_from_uri(uri
, NULL
, NULL
);
1771 /* g_filename_from_uri() failed, so we probably have a non-local URI */
1772 if (locale_filename
== NULL
)
1774 GFile
*file
= g_file_new_for_uri(uri
);
1775 locale_filename
= g_file_get_path(file
);
1776 g_object_unref(file
);
1777 if (locale_filename
== NULL
)
1779 geany_debug("The URI '%s' could not be resolved to a local path. This means "
1780 "that the URI is invalid or that you don't have gvfs-fuse installed.", uri
);
1784 return locale_filename
;
1788 gboolean
utils_is_uri(const gchar
*uri
)
1790 g_return_val_if_fail(uri
!= NULL
, FALSE
);
1792 return (strstr(uri
, "://") != NULL
);
1796 /* path should be in locale encoding */
1797 gboolean
utils_is_remote_path(const gchar
*path
)
1799 g_return_val_if_fail(path
!= NULL
, FALSE
);
1801 /* if path is an URI and it doesn't start "file://", we take it as remote */
1802 if (utils_is_uri(path
) && strncmp(path
, "file:", 5) != 0)
1807 static gchar
*fuse_path
= NULL
;
1808 static gsize len
= 0;
1810 if (G_UNLIKELY(fuse_path
== NULL
))
1812 fuse_path
= g_build_filename(g_get_home_dir(), ".gvfs", NULL
);
1813 len
= strlen(fuse_path
);
1815 /* Comparing the file path against a hardcoded path is not the most elegant solution
1816 * but for now it is better than nothing. Ideally, g_file_new_for_path() should create
1817 * proper GFile objects for Fuse paths, but it only does in future GVFS
1818 * versions (gvfs 1.1.1). */
1819 return (strncmp(path
, fuse_path
, len
) == 0);
1827 /* Remove all relative and untidy elements from the path of @a filename.
1828 * @param filename must be a valid absolute path.
1829 * @see tm_get_real_path() - also resolves links. */
1830 void utils_tidy_path(gchar
*filename
)
1832 GString
*str
= g_string_new(filename
);
1833 const gchar
*c
, *needle
;
1836 gboolean preserve_double_backslash
= FALSE
;
1838 g_return_if_fail(g_path_is_absolute(filename
));
1840 if (str
->len
>= 2 && strncmp(str
->str
, "\\\\", 2) == 0)
1841 preserve_double_backslash
= TRUE
;
1844 /* using MSYS we can get Unix-style separators */
1845 utils_string_replace_all(str
, "/", G_DIR_SEPARATOR_S
);
1847 /* replace "/./" and "//" */
1848 utils_string_replace_all(str
, G_DIR_SEPARATOR_S
"." G_DIR_SEPARATOR_S
, G_DIR_SEPARATOR_S
);
1849 utils_string_replace_all(str
, G_DIR_SEPARATOR_S G_DIR_SEPARATOR_S
, G_DIR_SEPARATOR_S
);
1851 if (preserve_double_backslash
)
1852 g_string_prepend(str
, "\\");
1854 /* replace "/../" */
1855 needle
= G_DIR_SEPARATOR_S
".." G_DIR_SEPARATOR_S
;
1858 c
= strstr(str
->str
, needle
);
1865 break; /* bad path */
1867 /* replace "/../" */
1868 g_string_erase(str
, pos
, strlen(needle
));
1869 g_string_insert_c(str
, pos
, G_DIR_SEPARATOR
);
1871 tmp
= g_strndup(str
->str
, pos
); /* path up to "/../" */
1872 c
= g_strrstr(tmp
, G_DIR_SEPARATOR_S
);
1873 g_return_if_fail(c
);
1875 pos
= c
- tmp
; /* position of previous "/" */
1876 g_string_erase(str
, pos
, strlen(c
));
1880 g_return_if_fail(strlen(str
->str
) <= strlen(filename
));
1881 strcpy(filename
, str
->str
);
1882 g_string_free(str
, TRUE
);
1887 * Removes characters from a string, in place.
1889 * @param string String to search.
1890 * @param chars Characters to remove.
1892 * @return @a string - return value is only useful when nesting function calls, e.g.:
1893 * @code str = utils_str_remove_chars(g_strdup("f_o_o"), "_"); @endcode
1895 * @see @c g_strdelimit.
1897 gchar
*utils_str_remove_chars(gchar
*string
, const gchar
*chars
)
1902 g_return_val_if_fail(string
, NULL
);
1903 if (G_UNLIKELY(! NZV(chars
)))
1906 foreach_str(r
, string
)
1908 if (!strchr(chars
, *r
))
1916 /* Gets list of sorted filenames with no path and no duplicates from user and system config */
1917 GSList
*utils_get_config_files(const gchar
*subdir
)
1919 gchar
*path
= g_build_path(G_DIR_SEPARATOR_S
, app
->configdir
, subdir
, NULL
);
1920 GSList
*list
= utils_get_file_list_full(path
, FALSE
, FALSE
, NULL
);
1921 GSList
*syslist
, *node
;
1925 utils_mkdir(path
, FALSE
);
1927 SETPTR(path
, g_build_path(G_DIR_SEPARATOR_S
, app
->datadir
, subdir
, NULL
));
1928 syslist
= utils_get_file_list_full(path
, FALSE
, FALSE
, NULL
);
1930 list
= g_slist_concat(list
, syslist
);
1932 list
= g_slist_sort(list
, (GCompareFunc
) utils_str_casecmp
);
1933 /* remove duplicates (next to each other after sorting) */
1934 foreach_slist(node
, list
)
1936 if (node
->next
&& utils_str_equal(node
->next
->data
, node
->data
))
1938 GSList
*old
= node
->next
;
1941 node
->next
= old
->next
;
1950 /* Suffix can be NULL or a string which should be appended to the Help URL like
1951 * an anchor link, e.g. "#some_anchor". */
1952 gchar
*utils_get_help_url(const gchar
*suffix
)
1959 uri
= g_strconcat("file:///", app
->docdir
, "/Manual.html", NULL
);
1960 g_strdelimit(uri
, "\\", '/'); /* replace '\\' by '/' */
1963 uri
= g_strconcat("file://", app
->docdir
, "/index.html", NULL
);
1966 if (! g_file_test(uri
+ skip
, G_FILE_TEST_IS_REGULAR
))
1967 { /* fall back to online documentation if it is not found on the hard disk */
1969 uri
= g_strconcat(GEANY_HOMEPAGE
, "manual/", VERSION
, "/index.html", NULL
);
1974 SETPTR(uri
, g_strconcat(uri
, suffix
, NULL
));
1981 static gboolean
str_in_array(const gchar
**haystack
, const gchar
*needle
)
1985 for (p
= haystack
; *p
!= NULL
; ++p
)
1987 if (utils_str_equal(*p
, needle
))
1995 * Copies the current environment into a new array.
1996 * @a exclude_vars is a @c NULL-terminated array of variable names which should be not copied.
1997 * All further arguments are key, value pairs of variables which should be added to
2000 * The argument list must be @c NULL-terminated.
2002 * @param exclude_vars @c NULL-terminated array of variable names to exclude.
2003 * @param first_varname Name of the first variable to copy into the new array.
2004 * @param ... Key-value pairs of variable names and values, @c NULL-terminated.
2006 * @return The new environment array.
2008 gchar
**utils_copy_environment(const gchar
**exclude_vars
, const gchar
*first_varname
, ...)
2014 const gchar
*key
, *value
;
2017 /* get all the environ variables */
2020 /* count the additional variables */
2021 va_start(args
, first_varname
);
2022 for (o
= 1; va_arg(args
, gchar
*) != NULL
; o
++);
2024 /* the passed arguments should be even (key, value pairs) */
2025 g_return_val_if_fail(o
% 2 == 0, NULL
);
2029 /* create an array large enough to hold the new environment */
2030 n
= g_strv_length(env
);
2031 /* 'n + o + 1' could leak a little bit when exclude_vars is set */
2032 result
= g_new(gchar
*, n
+ o
+ 1);
2034 /* copy the environment */
2035 for (n
= 0, p
= env
; *p
!= NULL
; ++p
)
2037 /* copy the variable */
2038 value
= g_getenv(*p
);
2039 if (G_LIKELY(value
!= NULL
))
2041 /* skip excluded variables */
2042 if (exclude_vars
!= NULL
&& str_in_array(exclude_vars
, *p
))
2045 result
[n
++] = g_strconcat(*p
, "=", value
, NULL
);
2050 /* now add additional variables */
2051 va_start(args
, first_varname
);
2052 key
= first_varname
;
2053 value
= va_arg(args
, gchar
*);
2056 result
[n
++] = g_strconcat(key
, "=", value
, NULL
);
2058 key
= va_arg(args
, gchar
*);
2061 value
= va_arg(args
, gchar
*);
2071 /* Joins @a first and @a second into a new string vector, freeing the originals.
2072 * The original contents are reused. */
2073 gchar
**utils_strv_join(gchar
**first
, gchar
**second
)
2076 gchar
**rptr
, **wptr
;
2083 strv
= g_new0(gchar
*, g_strv_length(first
) + g_strv_length(second
) + 1);
2086 foreach_strv(rptr
, first
)
2088 foreach_strv(rptr
, second
)