2 * utils.c - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2005-2010 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5 * Copyright 2006-2010 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.
25 * General utility functions, non-GTK related.
38 #ifdef HAVE_SYS_STAT_H
39 # include <sys/stat.h>
41 #ifdef HAVE_SYS_TYPES_H
42 # include <sys/types.h>
45 #include <glib/gstdio.h>
54 #include "filetypes.h"
63 * Tries to open the given URI in a browser.
64 * On Windows, the system's default browser is opened.
65 * On non-Windows systems, the browser command set in the preferences dialog is used. In case
66 * that fails or it is unset, @c xdg-open is used as fallback as well as some other known
69 * @param uri The URI to open in the web browser.
73 void utils_open_browser(const gchar
*uri
)
76 g_return_if_fail(uri
!= NULL
);
77 win32_open_browser(uri
);
81 g_return_if_fail(uri
!= NULL
);
83 cmdline
= g_strconcat(tool_prefs
.browser_cmd
, " \"", uri
, "\"", NULL
);
84 if (! g_spawn_command_line_async(cmdline
, NULL
))
91 if (! g_spawn_async(NULL
, (gchar
**)argv
, NULL
, G_SPAWN_SEARCH_PATH
,
92 NULL
, NULL
, NULL
, NULL
))
95 if (! g_spawn_async(NULL
, (gchar
**)argv
, NULL
, G_SPAWN_SEARCH_PATH
,
96 NULL
, NULL
, NULL
, NULL
))
99 if (! g_spawn_async(NULL
, (gchar
**)argv
, NULL
, G_SPAWN_SEARCH_PATH
, NULL
,
103 if (! g_spawn_async(NULL
, (gchar
**)argv
, NULL
, G_SPAWN_SEARCH_PATH
,
104 NULL
, NULL
, NULL
, NULL
))
106 argv
[0] = "konqueror";
107 if (! g_spawn_async(NULL
, (gchar
**)argv
, NULL
, G_SPAWN_SEARCH_PATH
,
108 NULL
, NULL
, NULL
, NULL
))
110 argv
[0] = "netscape";
111 g_spawn_async(NULL
, (gchar
**)argv
, NULL
, G_SPAWN_SEARCH_PATH
,
112 NULL
, NULL
, NULL
, NULL
);
124 /* taken from anjuta, to determine the EOL mode of the file */
125 gint
utils_get_line_endings(const gchar
* buffer
, glong size
)
128 guint cr
, lf
, crlf
, max_mode
;
133 for (i
= 0; i
< size
; i
++)
135 if (buffer
[i
] == 0x0a)
140 else if (buffer
[i
] == 0x0d)
149 if (buffer
[i
+ 1] != 0x0a)
164 /* Vote for the maximum */
182 gboolean
utils_isbrace(gchar c
, gboolean include_angles
)
188 return include_angles
;
195 case ']': return TRUE
;
196 default: return FALSE
;
201 gboolean
utils_is_opening_brace(gchar c
, gboolean include_angles
)
206 return include_angles
;
210 case '[': return TRUE
;
211 default: return FALSE
;
217 * Writes the given @a text into a file with @a filename.
218 * If the file doesn't exist, it will be created.
219 * If it already exists, it will be overwritten.
221 * @param filename The filename of the file to write, in locale encoding.
222 * @param text The text to write into the file.
224 * @return 0 if the file was successfully written, otherwise the @c errno of the
225 * failed operation is returned.
227 gint
utils_write_file(const gchar
*filename
, const gchar
*text
)
229 g_return_val_if_fail(filename
!= NULL
, ENOENT
);
230 g_return_val_if_fail(text
!= NULL
, EINVAL
);
232 if (file_prefs
.use_safe_file_saving
)
234 GError
*error
= NULL
;
235 if (! g_file_set_contents(filename
, text
, -1, &error
))
237 geany_debug("%s: could not write to file %s (%s)", G_STRFUNC
, filename
, error
->message
);
245 gint bytes_written
, len
;
247 if (filename
== NULL
)
251 fp
= g_fopen(filename
, "w");
254 bytes_written
= fwrite(text
, sizeof (gchar
), len
, fp
);
257 if (len
!= bytes_written
)
260 "utils_write_file(): written only %d bytes, had to write %d bytes to %s",
261 bytes_written
, len
, filename
);
267 geany_debug("utils_write_file(): could not write to file %s (%s)",
268 filename
, g_strerror(errno
));
277 * (stolen from anjuta and modified)
278 * Search backward through size bytes looking for a '<', then return the tag, if any.
279 * @return The tag name
281 gchar
*utils_find_open_xml_tag(const gchar sel
[], gint size
, gboolean check_tag
)
283 const gchar
*begin
, *cur
;
285 if (G_UNLIKELY(size
< 3))
286 { /* Smallest tag is "<p>" which is 3 characters */
291 cur
= &sel
[size
- 3];
293 cur
= &sel
[size
- 1];
295 cur
--; /* Skip past the > */
298 if (*cur
== '<') break;
299 else if (! check_tag
&& *cur
== '>') break;
305 GString
*result
= g_string_sized_new(64);
308 while (strchr(":_-.", *cur
) || isalnum(*cur
))
310 g_string_append_c(result
, *cur
);
313 return g_string_free(result
, FALSE
);
320 const gchar
*utils_get_eol_name(gint eol_mode
)
324 case SC_EOL_CRLF
: return _("Win (CRLF)"); break;
325 case SC_EOL_CR
: return _("Mac (CR)"); break;
326 default: return _("Unix (LF)"); break;
331 gboolean
utils_atob(const gchar
*str
)
333 if (G_UNLIKELY(str
== NULL
))
335 else if (strcmp(str
, "TRUE") == 0 || strcmp(str
, "true") == 0)
341 /* NULL-safe version of g_path_is_absolute(). */
342 gboolean
utils_is_absolute_path(const gchar
*path
)
347 return g_path_is_absolute(path
);
351 /* Skips root if path is absolute, do nothing otherwise.
352 * This is a relative-safe version of g_path_skip_root().
354 const gchar
*utils_path_skip_root(const gchar
*path
)
356 const gchar
*path_relative
;
358 path_relative
= g_path_skip_root(path
);
360 return (path_relative
!= NULL
) ? path_relative
: path
;
364 gdouble
utils_scale_round(gdouble val
, gdouble factor
)
366 /*val = floor(val * factor + 0.5);*/
369 val
= MIN(val
, factor
);
376 * A replacement function for g_strncasecmp() to compare strings case-insensitive.
377 * It converts both strings into lowercase using g_utf8_strdown() and then compare
378 * both strings using strcmp().
379 * This is not completely accurate regarding locale-specific case sorting rules
380 * but seems to be a good compromise between correctness and performance.
382 * The input strings should be in UTF-8 or locale encoding.
384 * @param s1 Pointer to first string or @c NULL.
385 * @param s2 Pointer to second string or @c NULL.
387 * @return an integer less than, equal to, or greater than zero if @a s1 is found, respectively,
388 * to be less than, to match, or to be greater than @a s2.
392 gint
utils_str_casecmp(const gchar
*s1
, const gchar
*s2
)
397 g_return_val_if_fail(s1
!= NULL
, 1);
398 g_return_val_if_fail(s2
!= NULL
, -1);
403 /* first ensure strings are UTF-8 */
404 if (! g_utf8_validate(s1
, -1, NULL
))
405 setptr(tmp1
, g_locale_to_utf8(s1
, -1, NULL
, NULL
, NULL
));
406 if (! g_utf8_validate(s2
, -1, NULL
))
407 setptr(tmp2
, g_locale_to_utf8(s2
, -1, NULL
, NULL
, NULL
));
420 /* then convert the strings into a case-insensitive form */
421 setptr(tmp1
, g_utf8_strdown(tmp1
, -1));
422 setptr(tmp2
, g_utf8_strdown(tmp2
, -1));
425 result
= strcmp(tmp1
, tmp2
);
434 * Truncates the input string to a given length.
435 * Characters are removed from the middle of the string, so the start and the end of string
438 * @param string Input string.
439 * @param truncate_length The length in characters of the resulting string.
441 * @return A copy of @a string which is truncated to @a truncate_length characters,
442 * should be freed when no longer needed.
446 /* This following function is taken from Gedit. */
447 gchar
*utils_str_middle_truncate(const gchar
*string
, guint truncate_length
)
452 guint num_left_chars
;
454 guint delimiter_length
;
455 const gchar
*delimiter
= "\342\200\246";
457 g_return_val_if_fail(string
!= NULL
, NULL
);
459 length
= strlen(string
);
461 g_return_val_if_fail(g_utf8_validate(string
, length
, NULL
), NULL
);
463 /* It doesnt make sense to truncate strings to less than the size of the delimiter plus 2
464 * characters (one on each side) */
465 delimiter_length
= g_utf8_strlen(delimiter
, -1);
466 if (truncate_length
< (delimiter_length
+ 2))
467 return g_strdup(string
);
469 n_chars
= g_utf8_strlen(string
, length
);
471 /* Make sure the string is not already small enough. */
472 if (n_chars
<= truncate_length
)
473 return g_strdup (string
);
475 /* Find the 'middle' where the truncation will occur. */
476 num_left_chars
= (truncate_length
- delimiter_length
) / 2;
477 right_offset
= n_chars
- truncate_length
+ num_left_chars
+ delimiter_length
;
479 truncated
= g_string_new_len(string
, g_utf8_offset_to_pointer(string
, num_left_chars
) - string
);
480 g_string_append(truncated
, delimiter
);
481 g_string_append(truncated
, g_utf8_offset_to_pointer(string
, right_offset
));
483 return g_string_free(truncated
, FALSE
);
488 * @c NULL-safe string comparison. Returns @c TRUE if both @a a and @a b are @c NULL
489 * or if @a a and @a b refer to valid strings which are equal.
491 * @param a Pointer to first string or @c NULL.
492 * @param b Pointer to second string or @c NULL.
494 * @return @c TRUE if @a a equals @a b, else @c FALSE.
496 gboolean
utils_str_equal(const gchar
*a
, const gchar
*b
)
498 /* (taken from libexo from os-cillation) */
499 if (a
== NULL
&& b
== NULL
) return TRUE
;
500 else if (a
== NULL
|| b
== NULL
) return FALSE
;
511 * Removes the extension from @a filename and return the result in a newly allocated string.
513 * @param filename The filename to operate on.
515 * @return A newly-allocated string, should be freed when no longer needed.
517 gchar
*utils_remove_ext_from_filename(const gchar
*filename
)
523 g_return_val_if_fail(filename
!= NULL
, NULL
);
525 last_dot
= strrchr(filename
, '.');
527 return g_strdup(filename
);
529 /* assumes extension is small, so extra bytes don't matter */
530 result
= g_malloc(strlen(filename
));
532 while ((filename
+ i
) != last_dot
)
534 result
[i
] = filename
[i
];
542 gchar
utils_brace_opposite(gchar ch
)
546 case '(': return ')';
547 case ')': return '(';
548 case '[': return ']';
549 case ']': return '[';
550 case '{': return '}';
551 case '}': return '{';
552 case '<': return '>';
553 case '>': return '<';
554 default: return '\0';
559 gchar
*utils_get_hostname(void)
562 return win32_get_hostname();
563 #elif defined(HAVE_GETHOSTNAME)
565 if (gethostname(hostname
, sizeof(hostname
)) == 0)
566 return g_strdup(hostname
);
568 return g_strdup("localhost");
572 /* Checks whether the given file can be written. locale_filename is expected in locale encoding.
573 * Returns 0 if it can be written, otherwise it returns errno */
574 gint
utils_is_file_writeable(const gchar
*locale_filename
)
579 if (! g_file_test(locale_filename
, G_FILE_TEST_EXISTS
) &&
580 ! g_file_test(locale_filename
, G_FILE_TEST_IS_DIR
))
581 /* get the file's directory to check for write permission if it doesn't yet exist */
582 file
= g_path_get_dirname(locale_filename
);
584 file
= g_strdup(locale_filename
);
587 /* use _waccess on Windows, access() doesn't accept special characters */
588 ret
= win32_check_write_permission(file
);
591 /* access set also errno to "FILE NOT FOUND" even if locale_filename is writeable, so use
592 * errno only when access() explicitly returns an error */
593 if (access(file
, R_OK
| W_OK
) != 0)
603 /* Replaces all occurrences of needle in haystack with replacement.
604 * Warning: *haystack must be a heap address; it may be freed and reassigned.
605 * Note: utils_string_replace_all() will always be faster when @a replacement is longer
607 * All strings have to be NULL-terminated.
608 * See utils_string_replace_all() for details. */
609 void utils_str_replace_all(gchar
**haystack
, const gchar
*needle
, const gchar
*replacement
)
613 g_return_if_fail(*haystack
!= NULL
);
615 str
= g_string_new(*haystack
);
618 utils_string_replace_all(str
, needle
, replacement
);
620 *haystack
= g_string_free(str
, FALSE
);
624 gint
utils_strpos(const gchar
*haystack
, const gchar
*needle
)
626 gint haystack_length
= strlen(haystack
);
627 gint needle_length
= strlen(needle
);
630 if (needle_length
> haystack_length
)
636 for (i
= 0; (i
< haystack_length
) && pos
== -1; i
++)
638 if (haystack
[i
] == needle
[0] && needle_length
== 1)
640 else if (haystack
[i
] == needle
[0])
642 for (j
= 1; (j
< needle_length
); j
++)
644 if (haystack
[i
+ j
] == needle
[j
])
663 * Retrieves a formatted date/time string from strftime().
664 * This function should be preferred to directly calling strftime() since this function
665 * works on UTF-8 encoded strings.
667 * @param format The format string to pass to strftime(3). See the strftime(3)
668 * documentation for details, in UTF-8 encoding.
669 * @param time_to_use The date/time to use, in time_t format or NULL to use the current time.
671 * @return A newly-allocated string, should be freed when no longer needed.
675 gchar
*utils_get_date_time(const gchar
*format
, time_t *time_to_use
)
678 static gchar date
[1024];
679 gchar
*locale_format
;
682 g_return_val_if_fail(format
!= NULL
, NULL
);
684 if (! g_utf8_validate(format
, -1, NULL
))
686 locale_format
= g_locale_from_utf8(format
, -1, NULL
, NULL
, NULL
);
687 if (locale_format
== NULL
)
691 locale_format
= g_strdup(format
);
693 if (time_to_use
!= NULL
)
694 tm
= localtime(time_to_use
);
697 time_t tp
= time(NULL
);
701 len
= strftime(date
, 1024, locale_format
, tm
);
702 g_free(locale_format
);
706 if (! g_utf8_validate(date
, len
, NULL
))
707 return g_locale_to_utf8(date
, len
, NULL
, NULL
, NULL
);
709 return g_strdup(date
);
713 gchar
*utils_get_initials(const gchar
*name
)
716 gchar
*initials
= g_malloc0(5);
718 initials
[0] = name
[0];
719 while (name
[i
] != '\0' && j
< 4)
721 if (name
[i
] == ' ' && name
[i
+ 1] != ' ')
723 initials
[j
++] = name
[i
+ 1];
732 * Wraps g_key_file_get_integer() to add a default value argument.
734 * @param config A GKeyFile object.
735 * @param section The group name to look in for the key.
736 * @param key The key to find.
737 * @param default_value The default value which will be returned when @a section or @a key
740 * @return The value associated with @a key as an integer, or the given default value if the value
741 * could not be retrieved.
743 gint
utils_get_setting_integer(GKeyFile
*config
, const gchar
*section
, const gchar
*key
,
744 const gint default_value
)
747 GError
*error
= NULL
;
749 if (G_UNLIKELY(config
== NULL
))
750 return default_value
;
752 tmp
= g_key_file_get_integer(config
, section
, key
, &error
);
753 if (G_UNLIKELY(error
))
756 return default_value
;
763 * Wraps g_key_file_get_boolean() to add a default value argument.
765 * @param config A GKeyFile object.
766 * @param section The group name to look in for the key.
767 * @param key The key to find.
768 * @param default_value The default value which will be returned when @c section or @c key
771 * @return The value associated with @a key as a boolean, or the given default value if the value
772 * could not be retrieved.
774 gboolean
utils_get_setting_boolean(GKeyFile
*config
, const gchar
*section
, const gchar
*key
,
775 const gboolean default_value
)
778 GError
*error
= NULL
;
780 if (G_UNLIKELY(config
== NULL
))
781 return default_value
;
783 tmp
= g_key_file_get_boolean(config
, section
, key
, &error
);
784 if (G_UNLIKELY(error
))
787 return default_value
;
794 * Wraps g_key_file_get_string() to add a default value argument.
796 * @param config A GKeyFile object.
797 * @param section The group name to look in for the key.
798 * @param key The key to find.
799 * @param default_value The default value which will be returned when @a section or @a key
802 * @return A newly allocated string, either the value for @a key or a copy of the given
803 * default value if it could not be retrieved.
805 gchar
*utils_get_setting_string(GKeyFile
*config
, const gchar
*section
, const gchar
*key
,
806 const gchar
*default_value
)
810 if (G_UNLIKELY(config
== NULL
))
811 return g_strdup(default_value
);
813 tmp
= g_key_file_get_string(config
, section
, key
, NULL
);
814 if (G_UNLIKELY(!tmp
))
816 return g_strdup(default_value
);
822 gchar
*utils_get_hex_from_color(GdkColor
*color
)
824 gchar
*buffer
= g_malloc0(9);
826 g_return_val_if_fail(color
!= NULL
, NULL
);
828 g_snprintf(buffer
, 8, "#%02X%02X%02X",
829 (guint
) (utils_scale_round(color
->red
/ 256, 255)),
830 (guint
) (utils_scale_round(color
->green
/ 256, 255)),
831 (guint
) (utils_scale_round(color
->blue
/ 256, 255)));
837 guint
utils_invert_color(guint color
)
841 r
= 0xffffff - color
;
842 g
= 0xffffff - (color
>> 8);
843 b
= 0xffffff - (color
>> 16);
845 return (r
| (g
<< 8) | (b
<< 16));
849 /* Get directory from current file in the notebook.
850 * Returns dir string that should be freed or NULL, depending on whether current file is valid.
851 * Returned string is in UTF-8 encoding */
852 gchar
*utils_get_current_file_dir_utf8(void)
854 GeanyDocument
*doc
= document_get_current();
858 /* get current filename */
859 const gchar
*cur_fname
= doc
->file_name
;
861 if (cur_fname
!= NULL
)
863 /* get folder part from current filename */
864 return g_path_get_dirname(cur_fname
); /* returns "." if no path */
868 return NULL
; /* no file open */
872 /* very simple convenience function */
873 void utils_beep(void)
875 if (prefs
.beep_on_errors
)
880 /* taken from busybox, thanks */
881 gchar
*utils_make_human_readable_str(guint64 size
, gulong block_size
,
884 /* The code will adjust for additional (appended) units. */
885 static const gchar zero_and_units
[] = { '0', 0, 'K', 'M', 'G', 'T' };
886 static const gchar fmt
[] = "%Lu %c%c";
887 static const gchar fmt_tenths
[] = "%Lu.%d %c%c";
898 val
= size
* block_size
;
904 val
+= display_unit
/2; /* Deal with rounding. */
905 val
/= display_unit
; /* Don't combine with the line above!!! */
910 while ((val
>= 1024) && (u
< zero_and_units
+ sizeof(zero_and_units
) - 1))
914 frac
= ((((gint
)(val
% 1024)) * 10) + (1024 / 2)) / 1024;
918 { /* We need to round up here. */
924 /* If f==fmt then 'frac' and 'u' are ignored. */
925 return g_strdup_printf(f
, val
, frac
, *u
, 'b');
929 static guint
utils_get_value_of_hex(const gchar ch
)
931 if (ch
>= '0' && ch
<= '9')
933 else if (ch
>= 'A' && ch
<= 'F')
934 return ch
- 'A' + 10;
935 else if (ch
>= 'a' && ch
<= 'f')
936 return ch
- 'a' + 10;
942 /* utils_strtod() converts a string containing a hex colour ("0x00ff00") into an integer.
943 * Basically, it is the same as strtod() would do, but it does not understand hex colour values,
944 * before ANSI-C99. With with_route set, it takes strings of the format "#00ff00".
945 * Returns -1 on failure. */
946 gint
utils_strtod(const gchar
*source
, gchar
**end
, gboolean with_route
)
948 guint red
, green
, blue
, offset
= 0;
950 g_return_val_if_fail(source
!= NULL
, -1);
952 if (with_route
&& (strlen(source
) != 7 || source
[0] != '#'))
954 else if (! with_route
&& (strlen(source
) != 8 || source
[0] != '0' ||
955 (source
[1] != 'x' && source
[1] != 'X')))
960 /* offset is set to 1 when the string starts with 0x, otherwise it starts with #
961 * and we don't need to increase the index */
965 red
= utils_get_value_of_hex(
966 source
[1 + offset
]) * 16 + utils_get_value_of_hex(source
[2 + offset
]);
967 green
= utils_get_value_of_hex(
968 source
[3 + offset
]) * 16 + utils_get_value_of_hex(source
[4 + offset
]);
969 blue
= utils_get_value_of_hex(
970 source
[5 + offset
]) * 16 + utils_get_value_of_hex(source
[6 + offset
]);
972 return (red
| (green
<< 8) | (blue
<< 16));
976 /* Returns: newly allocated string with the current time formatted HH:MM:SS. */
977 gchar
*utils_get_current_time_string(void)
979 const time_t tp
= time(NULL
);
980 const struct tm
*tmval
= localtime(&tp
);
981 gchar
*result
= g_malloc0(9);
983 strftime(result
, 9, "%H:%M:%S", tmval
);
989 GIOChannel
*utils_set_up_io_channel(
990 gint fd
, GIOCondition cond
, gboolean nblock
, GIOFunc func
, gpointer data
)
993 /*const gchar *encoding;*/
996 ioc
= g_io_channel_win32_new_fd(fd
);
998 ioc
= g_io_channel_unix_new(fd
);
1002 g_io_channel_set_flags(ioc
, G_IO_FLAG_NONBLOCK
, NULL
);
1004 g_io_channel_set_encoding(ioc
, NULL
, NULL
);
1006 if (! g_get_charset(&encoding))
1007 { // hope this works reliably
1008 GError *error = NULL;
1009 g_io_channel_set_encoding(ioc, encoding, &error);
1012 geany_debug("%s: %s", G_STRFUNC, error->message);
1013 g_error_free(error);
1018 /* "auto-close" ;-) */
1019 g_io_channel_set_close_on_unref(ioc
, TRUE
);
1021 g_io_add_watch(ioc
, cond
, func
, data
);
1022 g_io_channel_unref(ioc
);
1028 gchar
**utils_read_file_in_array(const gchar
*filename
)
1030 gchar
**result
= NULL
;
1033 g_return_val_if_fail(filename
!= NULL
, NULL
);
1035 g_file_get_contents(filename
, &data
, NULL
, NULL
);
1039 result
= g_strsplit_set(data
, "\r\n", -1);
1047 /* Contributed by Stefan Oltmanns, thanks.
1048 * Replaces \\, \r, \n, \t and \uXXX by their real counterparts.
1049 * keep_backslash is used for regex strings to leave '\\' and '\?' in place */
1050 gboolean
utils_str_replace_escape(gchar
*string
, gboolean keep_backslash
)
1055 g_return_val_if_fail(string
!= NULL
, FALSE
);
1058 len
= strlen(string
);
1059 for (i
= 0; i
< len
; i
++)
1061 if (string
[i
]=='\\')
1063 if (i
++ >= strlen(string
))
1084 case 'x': /* Warning: May produce illegal utf-8 string! */
1086 if (i
>= strlen(string
))
1090 if (isdigit(string
[i
- 1])) string
[j
] = string
[i
- 1] - 48;
1091 else if (isxdigit(string
[i
- 1])) string
[j
] = tolower(string
[i
- 1])-87;
1094 if (isdigit(string
[i
])) string
[j
] |= string
[i
] - 48;
1095 else if (isxdigit(string
[i
])) string
[j
] |= tolower(string
[i
])-87;
1102 if (i
>= strlen(string
))
1106 if (isdigit(string
[i
- 1])) unicodechar
= string
[i
- 1] - 48;
1107 else if (isxdigit(string
[i
- 1])) unicodechar
= tolower(string
[i
- 1])-87;
1110 if (isdigit(string
[i
])) unicodechar
|= string
[i
] - 48;
1111 else if (isxdigit(string
[i
])) unicodechar
|= tolower(string
[i
])-87;
1113 if (((i
+ 2) < strlen(string
)) && (isdigit(string
[i
+ 1]) || isxdigit(string
[i
+ 1]))
1114 && (isdigit(string
[i
+ 2]) || isxdigit(string
[i
+ 2])))
1118 if (isdigit(string
[i
- 1])) unicodechar
|= ((string
[i
- 1] - 48) << 4);
1119 else unicodechar
|= ((tolower(string
[i
- 1])-87) << 4);
1120 if (isdigit(string
[i
])) unicodechar
|= string
[i
] - 48;
1121 else unicodechar
|= tolower(string
[i
])-87;
1123 if (((i
+ 2) < strlen(string
)) && (isdigit(string
[i
+ 1]) || isxdigit(string
[i
+ 1]))
1124 && (isdigit(string
[i
+ 2]) || isxdigit(string
[i
+ 2])))
1128 if (isdigit(string
[i
- 1])) unicodechar
|= ((string
[i
- 1] - 48) << 4);
1129 else unicodechar
|= ((tolower(string
[i
- 1])-87) << 4);
1130 if (isdigit(string
[i
])) unicodechar
|= string
[i
] - 48;
1131 else unicodechar
|= tolower(string
[i
])-87;
1133 if (unicodechar
< 0x80)
1135 string
[j
] = unicodechar
;
1137 else if (unicodechar
< 0x800)
1139 string
[j
] = (unsigned char) ((unicodechar
>> 6) | 0xC0);
1141 string
[j
] = (unsigned char) ((unicodechar
& 0x3F) | 0x80);
1143 else if (unicodechar
< 0x10000)
1145 string
[j
] = (unsigned char) ((unicodechar
>> 12) | 0xE0);
1147 string
[j
] = (unsigned char) (((unicodechar
>> 6) & 0x3F) | 0x80);
1149 string
[j
] = (unsigned char) ((unicodechar
& 0x3F) | 0x80);
1151 else if (unicodechar
< 0x110000) /* more chars are not allowed in unicode */
1153 string
[j
] = (unsigned char) ((unicodechar
>> 18) | 0xF0);
1155 string
[j
] = (unsigned char) (((unicodechar
>> 12) & 0x3F) | 0x80);
1157 string
[j
] = (unsigned char) (((unicodechar
>> 6) & 0x3F) | 0x80);
1159 string
[j
] = (unsigned char) ((unicodechar
& 0x3F) | 0x80);
1168 /* unnecessary escapes are allowed */
1171 string
[j
] = string
[i
];
1176 string
[j
] = string
[i
];
1189 /* Wraps a string in place, replacing a space with a newline character.
1190 * wrapstart is the minimum position to start wrapping or -1 for default */
1191 gboolean
utils_wrap_string(gchar
*string
, gint wrapstart
)
1193 gchar
*pos
, *linestart
;
1194 gboolean ret
= FALSE
;
1199 for (pos
= linestart
= string
; *pos
!= '\0'; pos
++)
1201 if (pos
- linestart
>= wrapstart
&& *pos
== ' ')
1213 * Converts the given UTF-8 encoded string into locale encoding.
1214 * On Windows platforms, it does nothing and instead it just returns a copy of the input string.
1216 * @param utf8_text UTF-8 encoded text.
1218 * @return The converted string in locale encoding, or a copy of the input string if conversion
1219 * failed. Should be freed with g_free(). If @a utf8_text is @c NULL, @c NULL is returned.
1221 gchar
*utils_get_locale_from_utf8(const gchar
*utf8_text
)
1224 /* just do nothing on Windows platforms, this ifdef is just to prevent unwanted conversions
1225 * which would result in wrongly converted strings */
1226 return g_strdup(utf8_text
);
1232 locale_text
= g_locale_from_utf8(utf8_text
, -1, NULL
, NULL
, NULL
);
1233 if (locale_text
== NULL
)
1234 locale_text
= g_strdup(utf8_text
);
1241 * Converts the given string (in locale encoding) into UTF-8 encoding.
1242 * On Windows platforms, it does nothing and instead it just returns a copy of the input string.
1244 * @param locale_text Text in locale encoding.
1246 * @return The converted string in UTF-8 encoding, or a copy of the input string if conversion
1247 * failed. Should be freed with g_free(). If @a locale_text is @c NULL, @c NULL is returned.
1249 gchar
*utils_get_utf8_from_locale(const gchar
*locale_text
)
1252 /* just do nothing on Windows platforms, this ifdef is just to prevent unwanted conversions
1253 * which would result in wrongly converted strings */
1254 return g_strdup(locale_text
);
1260 utf8_text
= g_locale_to_utf8(locale_text
, -1, NULL
, NULL
, NULL
);
1261 if (utf8_text
== NULL
)
1262 utf8_text
= g_strdup(locale_text
);
1268 /* Pass pointers to free after arg_count.
1269 * The last argument must be NULL as an extra check that arg_count is correct. */
1270 void utils_free_pointers(gsize arg_count
, ...)
1276 va_start(a
, arg_count
);
1277 for (i
= 0; i
< arg_count
; i
++)
1279 ptr
= va_arg(a
, gpointer
);
1282 ptr
= va_arg(a
, gpointer
);
1284 g_warning("Wrong arg_count!");
1289 /* Creates a string array deep copy of a series of non-NULL strings.
1290 * The first argument is nothing special.
1291 * The list must be ended with NULL.
1292 * If first is NULL, NULL is returned. */
1293 gchar
**utils_strv_new(const gchar
*first
, ...)
1300 g_return_val_if_fail(first
!= NULL
, NULL
);
1302 strvlen
= 1; /* for first argument */
1304 /* count other arguments */
1305 va_start(args
, first
);
1306 for (; va_arg(args
, gchar
*) != NULL
; strvlen
++);
1309 strv
= g_new(gchar
*, strvlen
+ 1); /* +1 for NULL terminator */
1310 strv
[0] = g_strdup(first
);
1312 va_start(args
, first
);
1313 for (i
= 1; str
= va_arg(args
, gchar
*), str
!= NULL
; i
++)
1315 strv
[i
] = g_strdup(str
);
1325 * Creates a directory if it doesn't already exist.
1326 * Creates intermediate parent directories as needed, too.
1327 * The permissions of the created directory are set 0700.
1329 * @param path The path of the directory to create, in locale encoding.
1330 * @param create_parent_dirs Whether to create intermediate parent directories if necessary.
1332 * @return 0 if the directory was successfully created, otherwise the @c errno of the
1333 * failed operation is returned.
1335 gint
utils_mkdir(const gchar
*path
, gboolean create_parent_dirs
)
1340 if (path
== NULL
|| strlen(path
) == 0)
1343 result
= (create_parent_dirs
) ? g_mkdir_with_parents(path
, mode
) : g_mkdir(path
, mode
);
1351 * Gets a list of files from the specified directory.
1352 * Locale encoding is expected for @a path and used for the file list. The list and the data
1353 * in the list should be freed after use, e.g.:
1355 * g_slist_foreach(list, (GFunc) g_free, NULL);
1356 * g_slist_free(list); @endcode
1358 * @note If you don't need a list you should use the foreach_dir() macro instead -
1359 * it's more efficient.
1361 * @param path The path of the directory to scan, in locale encoding.
1362 * @param full_path Whether to include the full path for each filename in the list. Obviously this
1363 * will use more memory.
1364 * @param sort Whether to sort alphabetically (UTF-8 safe).
1365 * @param error The location for storing a possible error, or @c NULL.
1367 * @return A newly allocated list or @c NULL if no files were found. The list and its data should be
1368 * freed when no longer needed.
1369 * @see utils_get_file_list().
1371 GSList
*utils_get_file_list_full(const gchar
*path
, gboolean full_path
, gboolean sort
, GError
**error
)
1373 GSList
*list
= NULL
;
1375 const gchar
*filename
;
1379 g_return_val_if_fail(path
!= NULL
, NULL
);
1381 dir
= g_dir_open(path
, 0, error
);
1385 foreach_dir(filename
, dir
)
1387 list
= g_slist_append(list
, full_path
?
1388 g_build_path(G_DIR_SEPARATOR_S
, path
, filename
, NULL
) : g_strdup(filename
));
1391 /* sorting last is quicker than on insertion */
1393 list
= g_slist_sort(list
, (GCompareFunc
) utils_str_casecmp
);
1399 * Gets a sorted list of files from the specified directory.
1400 * Locale encoding is expected for @a path and used for the file list. The list and the data
1401 * in the list should be freed after use, e.g.:
1403 * g_slist_foreach(list, (GFunc) g_free, NULL);
1404 * g_slist_free(list); @endcode
1406 * @param path The path of the directory to scan, in locale encoding.
1407 * @param length The location to store the number of non-@c NULL data items in the list,
1409 * @param error The location for storing a possible error, or @c NULL.
1411 * @return A newly allocated list or @c NULL if no files were found. The list and its data should be
1412 * freed when no longer needed.
1413 * @see utils_get_file_list_full().
1415 GSList
*utils_get_file_list(const gchar
*path
, guint
*length
, GError
**error
)
1417 GSList
*list
= utils_get_file_list_full(path
, FALSE
, TRUE
, error
);
1420 *length
= g_slist_length(list
);
1425 /* returns TRUE if any letter in str is a capital, FALSE otherwise. Should be Unicode safe. */
1426 gboolean
utils_str_has_upper(const gchar
*str
)
1430 if (! NZV(str
) || ! g_utf8_validate(str
, -1, NULL
))
1433 while (*str
!= '\0')
1435 c
= g_utf8_get_char(str
);
1436 /* check only letters and stop once the first non-capital was found */
1437 if (g_unichar_isalpha(c
) && g_unichar_isupper(c
))
1439 /* FIXME don't write a const string */
1440 str
= g_utf8_next_char(str
);
1446 static guint
utils_string_replace_helper(GString
*haystack
, const gchar
*needle
,
1447 const gchar
*replace
, const guint max_replaces
)
1449 const gchar
*stack
, *match
;
1453 g_return_val_if_fail(haystack
!= NULL
, 0);
1454 if (haystack
->len
== 0)
1456 g_return_val_if_fail(NZV(needle
), 0);
1458 stack
= haystack
->str
;
1459 if (! (match
= strstr(stack
, needle
)))
1463 pos
= match
- haystack
->str
;
1464 g_string_erase(haystack
, pos
, strlen(needle
));
1466 /* make next search after removed matching text.
1467 * (we have to be careful to only use haystack->str as its address may change) */
1468 stack
= haystack
->str
+ pos
;
1470 if (G_LIKELY(replace
))
1472 g_string_insert(haystack
, pos
, replace
);
1473 stack
= haystack
->str
+ pos
+ strlen(replace
); /* skip past replacement */
1476 while (++ret
!= max_replaces
&& (match
= strstr(stack
, needle
)));
1483 * Replaces all occurrences of @a needle in @a haystack with @a replace.
1484 * As of Geany 0.16, @a replace can match @a needle, so the following will work:
1485 * @code utils_string_replace_all(text, "\n", "\r\n"); @endcode
1487 * @param haystack The input string to operate on. This string is modified in place.
1488 * @param needle The string which should be replaced.
1489 * @param replace The replacement for @a needle.
1491 * @return Number of replacements made.
1493 guint
utils_string_replace_all(GString
*haystack
, const gchar
*needle
, const gchar
*replace
)
1495 return utils_string_replace_helper(haystack
, needle
, replace
, 0);
1500 * Replaces only the first occurrence of @a needle in @a haystack
1502 * For details, see utils_string_replace_all().
1504 * @param haystack The input string to operate on. This string is modified in place.
1505 * @param needle The string which should be replaced.
1506 * @param replace The replacement for @a needle.
1508 * @return Number of replacements made.
1512 guint
utils_string_replace_first(GString
*haystack
, const gchar
*needle
, const gchar
*replace
)
1514 return utils_string_replace_helper(haystack
, needle
, replace
, 1);
1518 /* Get project or default startup directory (if set), or NULL. */
1519 const gchar
*utils_get_default_dir_utf8(void)
1521 if (app
->project
&& NZV(app
->project
->base_path
))
1523 return app
->project
->base_path
;
1526 if (NZV(prefs
.default_open_path
))
1528 return prefs
.default_open_path
;
1534 static gboolean
check_error(GError
**error
)
1536 if (error
!= NULL
&& *error
!= NULL
)
1538 /* imitate the GLib warning */
1540 "GError set over the top of a previous GError or uninitialized memory.\n"
1541 "This indicates a bug in someone's code. You must ensure an error is NULL "
1542 "before it's set.");
1543 /* after returning the code may segfault, but we don't care because we should
1544 * make sure *error is NULL */
1552 * Wraps g_spawn_sync() and internally calls this function on Unix-like
1553 * systems. On Win32 platforms, it uses the Windows API.
1555 * @param dir The child's current working directory, or @a NULL to inherit parent's.
1556 * @param argv The child's argument vector.
1557 * @param env The child's environment, or @a NULL to inherit parent's.
1558 * @param flags Flags from GSpawnFlags.
1559 * @param child_setup A function to run in the child just before exec().
1560 * @param user_data The user data for child_setup.
1561 * @param std_out The return location for child output.
1562 * @param std_err The return location for child error messages.
1563 * @param exit_status The child exit status, as returned by waitpid().
1564 * @param error The return location for error or @a NULL.
1566 * @return @c TRUE on success, @c FALSE if an error was set.
1568 gboolean
utils_spawn_sync(const gchar
*dir
, gchar
**argv
, gchar
**env
, GSpawnFlags flags
,
1569 GSpawnChildSetupFunc child_setup
, gpointer user_data
, gchar
**std_out
,
1570 gchar
**std_err
, gint
*exit_status
, GError
**error
)
1574 if (! check_error(error
))
1579 *error
= g_error_new(G_SPAWN_ERROR
, G_SPAWN_ERROR_FAILED
, "argv must not be NULL");
1590 result
= win32_spawn(dir
, argv
, env
, flags
, std_out
, std_err
, exit_status
, error
);
1592 result
= g_spawn_sync(dir
, argv
, env
, flags
, NULL
, NULL
, std_out
, std_err
, exit_status
, error
);
1600 * Wraps g_spawn_async() and internally calls this function on Unix-like
1601 * systems. On Win32 platforms, it uses the Windows API.
1603 * @param dir The child's current working directory, or @a NULL to inherit parent's.
1604 * @param argv The child's argument vector.
1605 * @param env The child's environment, or @a NULL to inherit parent's.
1606 * @param flags Flags from GSpawnFlags.
1607 * @param child_setup A function to run in the child just before exec().
1608 * @param user_data The user data for child_setup.
1609 * @param child_pid The return location for child process ID, or NULL.
1610 * @param error The return location for error or @a NULL.
1612 * @return @c TRUE on success, @c FALSE if an error was set.
1614 gboolean
utils_spawn_async(const gchar
*dir
, gchar
**argv
, gchar
**env
, GSpawnFlags flags
,
1615 GSpawnChildSetupFunc child_setup
, gpointer user_data
, GPid
*child_pid
,
1620 if (! check_error(error
))
1625 *error
= g_error_new(G_SPAWN_ERROR
, G_SPAWN_ERROR_FAILED
, "argv must not be NULL");
1630 result
= win32_spawn(dir
, argv
, env
, flags
, NULL
, NULL
, NULL
, error
);
1632 result
= g_spawn_async(dir
, argv
, env
, flags
, NULL
, NULL
, child_pid
, error
);
1638 /* Similar to g_build_path() but (re)using a fixed buffer, so never free it.
1639 * This assumes a small enough resulting string length to be kept without freeing,
1640 * but this should be the case for filenames.
1641 * @warning As the buffer is reused, you can't call this recursively, e.g. for a
1642 * function argument and within the function called. */
1643 const gchar
*utils_build_path(const gchar
*first
, ...)
1645 static GString
*buffer
= NULL
;
1650 buffer
= g_string_new(first
);
1652 g_string_assign(buffer
, first
);
1654 va_start(args
, first
);
1657 str
= va_arg(args
, const gchar
*);
1661 g_string_append_c(buffer
, G_DIR_SEPARATOR
);
1662 g_string_append(buffer
, str
);
1670 /* Retrieves the path for the given URI.
1672 * - the path which was determined by g_filename_from_uri() or GIO
1673 * - NULL if the URI is non-local and gvfs-fuse is not installed
1674 * - a new copy of 'uri' if it is not an URI. */
1675 gchar
*utils_get_path_from_uri(const gchar
*uri
)
1677 gchar
*locale_filename
;
1679 g_return_val_if_fail(uri
!= NULL
, NULL
);
1681 if (! utils_is_uri(uri
))
1682 return g_strdup(uri
);
1684 /* this will work only for 'file://' URIs */
1685 locale_filename
= g_filename_from_uri(uri
, NULL
, NULL
);
1687 /* g_filename_from_uri() failed, so we probably have a non-local URI */
1688 if (locale_filename
== NULL
)
1690 GFile
*file
= g_file_new_for_uri(uri
);
1691 locale_filename
= g_file_get_path(file
);
1692 g_object_unref(file
);
1693 if (locale_filename
== NULL
)
1695 geany_debug("The URI '%s' could not be resolved to a local path. This means "
1696 "that the URI is invalid or that you don't have gvfs-fuse installed.", uri
);
1701 if (locale_filename
== NULL
)
1702 geany_debug("The URI '%s' could not be resolved to a local path. This means that the "
1703 "URI is invalid or that Geany can't use GVFS (maybe it is not installed).", uri
);
1705 return locale_filename
;
1709 gboolean
utils_is_uri(const gchar
*uri
)
1711 g_return_val_if_fail(uri
!= NULL
, FALSE
);
1713 return (strstr(uri
, "://") != NULL
);
1717 /* path should be in locale encoding */
1718 gboolean
utils_is_remote_path(const gchar
*path
)
1720 g_return_val_if_fail(path
!= NULL
, FALSE
);
1722 /* if path is an URI and it doesn't start "file://", we take it as remote */
1723 if (utils_is_uri(path
) && strncmp(path
, "file:", 5) != 0)
1727 if (glib_check_version(2, 16, 0) == NULL
) /* no need to check for this with GLib < 2.16 */
1729 static gchar
*fuse_path
= NULL
;
1730 static gsize len
= 0;
1732 if (G_UNLIKELY(fuse_path
== NULL
))
1734 fuse_path
= g_build_filename(g_get_home_dir(), ".gvfs", NULL
);
1735 len
= strlen(fuse_path
);
1737 /* Comparing the file path against a hardcoded path is not the most elegant solution
1738 * but for now it is better than nothing. Ideally, g_file_new_for_path() should create
1739 * proper GFile objects for Fuse paths, but it only does in future GVFS
1740 * versions (gvfs 1.1.1). */
1741 return (strncmp(path
, fuse_path
, len
) == 0);
1748 /* Remove all relative and untidy elements from the path of @a filename.
1749 * @param filename must be a valid absolute path.
1750 * @see tm_get_real_path() - also resolves links. */
1751 void utils_tidy_path(gchar
*filename
)
1753 GString
*str
= g_string_new(filename
);
1754 const gchar
*c
, *needle
;
1757 gboolean preserve_double_backslash
= FALSE
;
1759 g_return_if_fail(g_path_is_absolute(filename
));
1761 if (str
->len
>= 2 && strncmp(str
->str
, "\\\\", 2) == 0)
1762 preserve_double_backslash
= TRUE
;
1764 /* replace "/./" and "//" */
1765 utils_string_replace_all(str
, G_DIR_SEPARATOR_S
"." G_DIR_SEPARATOR_S
, G_DIR_SEPARATOR_S
);
1766 utils_string_replace_all(str
, G_DIR_SEPARATOR_S G_DIR_SEPARATOR_S
, G_DIR_SEPARATOR_S
);
1768 if (preserve_double_backslash
)
1769 g_string_prepend(str
, "\\");
1771 /* replace "/../" */
1772 needle
= G_DIR_SEPARATOR_S
".." G_DIR_SEPARATOR_S
;
1775 c
= strstr(str
->str
, needle
);
1782 break; /* bad path */
1784 /* replace "/../" */
1785 g_string_erase(str
, pos
, strlen(needle
));
1786 g_string_insert_c(str
, pos
, G_DIR_SEPARATOR
);
1788 tmp
= g_strndup(str
->str
, pos
); /* path up to "/../" */
1789 c
= g_strrstr(tmp
, G_DIR_SEPARATOR_S
);
1790 g_return_if_fail(c
);
1792 pos
= c
- tmp
; /* position of previous "/" */
1793 g_string_erase(str
, pos
, strlen(c
));
1797 g_return_if_fail(strlen(str
->str
) <= strlen(filename
));
1798 strcpy(filename
, str
->str
);
1799 g_string_free(str
, TRUE
);
1804 * Removes characters from a string, in place.
1806 * @param string String to search.
1807 * @param chars Characters to remove.
1809 * @return @a string - return value is only useful when nesting function calls, e.g.:
1810 * @code str = utils_str_remove_chars(g_strdup("f_o_o"), "_"); @endcode
1812 * @see @c g_strdelimit.
1814 gchar
*utils_str_remove_chars(gchar
*string
, const gchar
*chars
)
1819 g_return_val_if_fail(string
, NULL
);
1823 foreach_str(r
, string
)
1825 if (!strchr(chars
, *r
))
1833 static void utils_slist_remove_next(GSList
*node
)
1835 GSList
*old
= node
->next
;
1837 g_return_if_fail(old
);
1839 node
->next
= old
->next
;
1840 g_slist_free_1(old
);
1844 /* Gets list of sorted filenames with no path and no duplicates from user and system config */
1845 GSList
*utils_get_config_files(const gchar
*subdir
)
1847 gchar
*path
= g_build_path(G_DIR_SEPARATOR_S
, app
->configdir
, subdir
, NULL
);
1848 GSList
*list
= utils_get_file_list_full(path
, FALSE
, FALSE
, NULL
);
1849 GSList
*syslist
, *node
;
1853 utils_mkdir(path
, FALSE
);
1855 setptr(path
, g_build_path(G_DIR_SEPARATOR_S
, app
->datadir
, subdir
, NULL
));
1856 syslist
= utils_get_file_list_full(path
, FALSE
, FALSE
, NULL
);
1858 list
= g_slist_concat(list
, syslist
);
1860 list
= g_slist_sort(list
, (GCompareFunc
) utils_str_casecmp
);
1861 /* remove duplicates (next to each other after sorting) */
1862 foreach_slist(node
, list
)
1864 if (node
->next
&& utils_str_equal(node
->next
->data
, node
->data
))
1866 g_free(node
->next
->data
);
1867 utils_slist_remove_next(node
);
1875 /* Suffix can be NULL or a string which should be appended to the Help URL like
1876 * an anchor link, e.g. "#some_anchor". */
1877 gchar
*utils_get_help_url(const gchar
*suffix
)
1884 uri
= g_strconcat("file:///", app
->docdir
, "/Manual.html", NULL
);
1885 g_strdelimit(uri
, "\\", '/'); /* replace '\\' by '/' */
1888 uri
= g_strconcat("file://", app
->docdir
, "index.html", NULL
);
1891 if (! g_file_test(uri
+ skip
, G_FILE_TEST_IS_REGULAR
))
1892 { /* fall back to online documentation if it is not found on the hard disk */
1894 uri
= g_strconcat(GEANY_HOMEPAGE
, "manual/", VERSION
, "/index.html", NULL
);
1899 setptr(uri
, g_strconcat(uri
, suffix
, NULL
));
1906 static gboolean
str_in_array(const gchar
**haystack
, const gchar
*needle
)
1910 for (p
= haystack
; *p
!= NULL
; ++p
)
1912 if (utils_str_equal(*p
, needle
))
1920 * Copies the current environment into a new array.
1921 * @a exclude_vars is a @c NULL-terminated array of variable names which should be not copied.
1922 * All further arguments are key, value pairs of variables which should be added to
1925 * The argument list must be @c NULL-terminated.
1927 * @param exclude_vars @c NULL-terminated array of variable names to exclude.
1928 * @param first_varname Name of the first variable to copy into the new array.
1929 * @param ... Key-value pairs of variable names and values, @c NULL-terminated.
1931 * @return The new environment array.
1933 gchar
**utils_copy_environment(const gchar
**exclude_vars
, const gchar
*first_varname
, ...)
1939 const gchar
*key
, *value
;
1942 /* get all the environ variables */
1945 /* count the additional variables */
1946 va_start(args
, first_varname
);
1947 for (o
= 1; va_arg(args
, gchar
*) != NULL
; o
++);
1949 /* the passed arguments should be even (key, value pairs) */
1950 g_return_val_if_fail(o
% 2 == 0, NULL
);
1954 /* create an array large enough to hold the new environment */
1955 n
= g_strv_length(env
);
1956 /* 'n + o + 1' could leak a little bit when exclude_vars is set */
1957 result
= g_new(gchar
*, n
+ o
+ 1);
1959 /* copy the environment */
1960 for (n
= 0, p
= env
; *p
!= NULL
; ++p
)
1962 /* copy the variable */
1963 value
= g_getenv(*p
);
1964 if (G_LIKELY(value
!= NULL
))
1966 /* skip excluded variables */
1967 if (exclude_vars
!= NULL
&& str_in_array(exclude_vars
, *p
))
1970 result
[n
++] = g_strconcat(*p
, "=", value
, NULL
);
1975 /* now add additional variables */
1976 va_start(args
, first_varname
);
1977 key
= first_varname
;
1978 value
= va_arg(args
, gchar
*);
1981 result
[n
++] = g_strconcat(key
, "=", value
, NULL
);
1983 key
= va_arg(args
, gchar
*);
1986 value
= va_arg(args
, gchar
*);