2005-11-22 12:26:26 +00:00
|
|
|
/*
|
|
|
|
* utils.c - this file is part of Geany, a fast and lightweight IDE
|
|
|
|
*
|
2011-01-19 19:39:09 +00:00
|
|
|
* Copyright 2005-2011 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
|
|
|
|
* Copyright 2006-2011 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
2005-11-22 12:26:26 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2006-05-12 16:11:14 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2005-11-22 12:26:26 +00:00
|
|
|
*
|
2005-11-27 20:49:50 +00:00
|
|
|
* $Id$
|
2005-11-22 12:26:26 +00:00
|
|
|
*/
|
|
|
|
|
2007-02-24 11:41:56 +00:00
|
|
|
/*
|
|
|
|
* General utility functions, non-GTK related.
|
|
|
|
*/
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2005-12-29 20:01:18 +00:00
|
|
|
#include "geany.h"
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <unistd.h>
|
2005-12-29 20:01:18 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2007-01-14 17:09:17 +00:00
|
|
|
#include <stdarg.h>
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2005-12-29 20:01:18 +00:00
|
|
|
#ifdef HAVE_SYS_STAT_H
|
|
|
|
# include <sys/stat.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
# include <sys/types.h>
|
2005-11-22 12:26:26 +00:00
|
|
|
#endif
|
|
|
|
|
2007-03-10 17:26:03 +00:00
|
|
|
#include <glib/gstdio.h>
|
2009-01-12 00:33:29 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_GIO
|
|
|
|
# include <gio/gio.h>
|
|
|
|
#endif
|
2007-03-10 17:26:03 +00:00
|
|
|
|
2007-08-23 11:34:06 +00:00
|
|
|
#include "prefs.h"
|
2005-11-22 12:26:26 +00:00
|
|
|
#include "support.h"
|
|
|
|
#include "document.h"
|
2007-08-15 15:37:21 +00:00
|
|
|
#include "filetypes.h"
|
2005-12-29 20:01:18 +00:00
|
|
|
#include "dialogs.h"
|
2006-07-25 12:44:42 +00:00
|
|
|
#include "win32.h"
|
2007-12-21 17:25:58 +00:00
|
|
|
#include "project.h"
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
#include "utils.h"
|
|
|
|
|
2006-08-07 14:53:58 +00:00
|
|
|
|
2009-01-28 19:30:18 +00:00
|
|
|
/**
|
|
|
|
* Tries to open the given URI in a browser.
|
|
|
|
* On Windows, the system's default browser is opened.
|
|
|
|
* On non-Windows systems, the browser command set in the preferences dialog is used. In case
|
2009-07-21 22:09:43 +00:00
|
|
|
* that fails or it is unset, @c xdg-open is used as fallback as well as some other known
|
2009-01-28 19:30:18 +00:00
|
|
|
* browsers.
|
|
|
|
*
|
|
|
|
* @param uri The URI to open in the web browser.
|
2009-01-30 18:53:23 +00:00
|
|
|
*
|
|
|
|
* @since 0.16
|
2009-01-28 19:30:18 +00:00
|
|
|
**/
|
|
|
|
void utils_open_browser(const gchar *uri)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-07-26 17:02:16 +00:00
|
|
|
#ifdef G_OS_WIN32
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_if_fail(uri != NULL);
|
2006-07-25 12:44:42 +00:00
|
|
|
win32_open_browser(uri);
|
2005-11-22 12:26:26 +00:00
|
|
|
#else
|
2009-01-28 19:30:18 +00:00
|
|
|
gchar *cmdline;
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_if_fail(uri != NULL);
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2009-07-14 18:45:22 +00:00
|
|
|
cmdline = g_strconcat(tool_prefs.browser_cmd, " \"", uri, "\"", NULL);
|
2008-06-10 13:51:45 +00:00
|
|
|
if (! g_spawn_command_line_async(cmdline, NULL))
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2008-06-10 13:51:45 +00:00
|
|
|
const gchar *argv[3];
|
|
|
|
|
|
|
|
argv[0] = "xdg-open";
|
|
|
|
argv[1] = uri;
|
|
|
|
argv[2] = NULL;
|
|
|
|
if (! g_spawn_async(NULL, (gchar**)argv, NULL, G_SPAWN_SEARCH_PATH,
|
|
|
|
NULL, NULL, NULL, NULL))
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2008-06-10 13:51:45 +00:00
|
|
|
argv[0] = "firefox";
|
|
|
|
if (! g_spawn_async(NULL, (gchar**)argv, NULL, G_SPAWN_SEARCH_PATH,
|
|
|
|
NULL, NULL, NULL, NULL))
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2008-06-10 13:51:45 +00:00
|
|
|
argv[0] = "mozilla";
|
|
|
|
if (! g_spawn_async(NULL, (gchar**)argv, NULL, G_SPAWN_SEARCH_PATH, NULL,
|
|
|
|
NULL, NULL, NULL))
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2008-06-10 13:51:45 +00:00
|
|
|
argv[0] = "opera";
|
|
|
|
if (! g_spawn_async(NULL, (gchar**)argv, NULL, G_SPAWN_SEARCH_PATH,
|
|
|
|
NULL, NULL, NULL, NULL))
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2008-06-10 13:51:45 +00:00
|
|
|
argv[0] = "konqueror";
|
|
|
|
if (! g_spawn_async(NULL, (gchar**)argv, NULL, G_SPAWN_SEARCH_PATH,
|
|
|
|
NULL, NULL, NULL, NULL))
|
|
|
|
{
|
|
|
|
argv[0] = "netscape";
|
|
|
|
g_spawn_async(NULL, (gchar**)argv, NULL, G_SPAWN_SEARCH_PATH,
|
|
|
|
NULL, NULL, NULL, NULL);
|
|
|
|
}
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-06-10 13:51:45 +00:00
|
|
|
g_free(cmdline);
|
2005-11-22 12:26:26 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* taken from anjuta, to determine the EOL mode of the file */
|
2008-02-27 14:23:13 +00:00
|
|
|
gint utils_get_line_endings(const gchar* buffer, glong size)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
guint cr, lf, crlf, max_mode;
|
|
|
|
gint mode;
|
|
|
|
|
2010-08-01 10:23:19 +00:00
|
|
|
if (size == -1)
|
|
|
|
size = strlen(buffer);
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
cr = lf = crlf = 0;
|
|
|
|
|
2009-04-05 21:07:40 +00:00
|
|
|
for (i = 0; i < size ; i++)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2009-04-05 21:07:40 +00:00
|
|
|
if (buffer[i] == 0x0a)
|
2007-08-24 11:31:27 +00:00
|
|
|
{
|
2008-02-27 13:17:29 +00:00
|
|
|
/* LF */
|
2005-11-22 12:26:26 +00:00
|
|
|
lf++;
|
|
|
|
}
|
2009-04-05 21:07:40 +00:00
|
|
|
else if (buffer[i] == 0x0d)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2009-09-16 14:13:38 +00:00
|
|
|
if (i >= (size - 1))
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2008-02-27 13:17:29 +00:00
|
|
|
/* Last char, CR */
|
2005-11-22 12:26:26 +00:00
|
|
|
cr++;
|
2007-08-24 11:31:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-09-16 14:13:38 +00:00
|
|
|
if (buffer[i + 1] != 0x0a)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2008-02-27 13:17:29 +00:00
|
|
|
/* CR */
|
2005-11-22 12:26:26 +00:00
|
|
|
cr++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-02-27 13:17:29 +00:00
|
|
|
/* CRLF */
|
2005-11-22 12:26:26 +00:00
|
|
|
crlf++;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Vote for the maximum */
|
|
|
|
mode = SC_EOL_LF;
|
|
|
|
max_mode = lf;
|
2007-08-24 11:31:27 +00:00
|
|
|
if (crlf > max_mode)
|
|
|
|
{
|
2005-11-22 12:26:26 +00:00
|
|
|
mode = SC_EOL_CRLF;
|
|
|
|
max_mode = crlf;
|
|
|
|
}
|
2007-08-24 11:31:27 +00:00
|
|
|
if (cr > max_mode)
|
|
|
|
{
|
2005-11-22 12:26:26 +00:00
|
|
|
mode = SC_EOL_CR;
|
|
|
|
max_mode = cr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 11:34:06 +00:00
|
|
|
gboolean utils_isbrace(gchar c, gboolean include_angles)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-06-24 14:36:35 +00:00
|
|
|
switch (c)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-12-24 12:07:35 +00:00
|
|
|
case '<':
|
|
|
|
case '>':
|
2007-08-23 11:34:06 +00:00
|
|
|
return include_angles;
|
2006-12-24 12:07:35 +00:00
|
|
|
|
2006-06-24 14:36:35 +00:00
|
|
|
case '(':
|
|
|
|
case ')':
|
|
|
|
case '{':
|
|
|
|
case '}':
|
|
|
|
case '[':
|
2006-06-29 18:22:11 +00:00
|
|
|
case ']': return TRUE;
|
|
|
|
default: return FALSE;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 11:34:06 +00:00
|
|
|
gboolean utils_is_opening_brace(gchar c, gboolean include_angles)
|
2006-06-29 18:22:11 +00:00
|
|
|
{
|
|
|
|
switch (c)
|
|
|
|
{
|
2006-12-24 12:07:35 +00:00
|
|
|
case '<':
|
2007-08-23 11:34:06 +00:00
|
|
|
return include_angles;
|
2006-12-24 12:07:35 +00:00
|
|
|
|
2006-06-29 18:22:11 +00:00
|
|
|
case '(':
|
|
|
|
case '{':
|
|
|
|
case '[': return TRUE;
|
|
|
|
default: return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2008-02-17 18:00:42 +00:00
|
|
|
/**
|
2010-11-30 18:25:16 +00:00
|
|
|
* Writes @a text into a file named @a filename.
|
|
|
|
* If the file doesn't exist, it will be created.
|
|
|
|
* If it already exists, it will be overwritten.
|
2008-02-17 18:00:42 +00:00
|
|
|
*
|
2010-11-30 18:25:16 +00:00
|
|
|
* @warning You should use @c g_file_set_contents() instead if you don't need
|
|
|
|
* file permissions and other metadata to be preserved, as that always handles
|
|
|
|
* disk exhaustion safely.
|
2008-02-17 18:00:42 +00:00
|
|
|
*
|
2010-11-30 18:25:16 +00:00
|
|
|
* @param filename The filename of the file to write, in locale encoding.
|
|
|
|
* @param text The text to write into the file.
|
|
|
|
*
|
|
|
|
* @return 0 if the file was successfully written, otherwise the @c errno of the
|
|
|
|
* failed operation is returned.
|
2008-02-17 18:00:42 +00:00
|
|
|
**/
|
2005-12-12 16:19:30 +00:00
|
|
|
gint utils_write_file(const gchar *filename, const gchar *text)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_val_if_fail(filename != NULL, ENOENT);
|
|
|
|
g_return_val_if_fail(text != NULL, EINVAL);
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2009-05-11 15:56:33 +00:00
|
|
|
if (file_prefs.use_safe_file_saving)
|
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
if (! g_file_set_contents(filename, text, -1, &error))
|
|
|
|
{
|
|
|
|
geany_debug("%s: could not write to file %s (%s)", G_STRFUNC, filename, error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
return EIO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2009-05-11 15:56:33 +00:00
|
|
|
FILE *fp;
|
|
|
|
gint bytes_written, len;
|
2010-11-30 18:18:24 +00:00
|
|
|
gboolean fail = FALSE;
|
2009-05-11 15:56:33 +00:00
|
|
|
|
|
|
|
if (filename == NULL)
|
|
|
|
return ENOENT;
|
|
|
|
|
|
|
|
len = strlen(text);
|
2010-11-30 18:18:24 +00:00
|
|
|
errno = 0;
|
2009-05-11 15:56:33 +00:00
|
|
|
fp = g_fopen(filename, "w");
|
2010-11-30 18:18:24 +00:00
|
|
|
if (fp == NULL)
|
|
|
|
fail = TRUE;
|
|
|
|
else
|
2009-05-11 15:56:33 +00:00
|
|
|
{
|
2010-11-30 18:18:24 +00:00
|
|
|
bytes_written = fwrite(text, sizeof(gchar), len, fp);
|
2009-05-11 15:56:33 +00:00
|
|
|
|
|
|
|
if (len != bytes_written)
|
|
|
|
{
|
2010-11-30 18:18:24 +00:00
|
|
|
fail = TRUE;
|
2009-05-11 15:56:33 +00:00
|
|
|
geany_debug(
|
|
|
|
"utils_write_file(): written only %d bytes, had to write %d bytes to %s",
|
|
|
|
bytes_written, len, filename);
|
|
|
|
}
|
2010-11-30 18:18:24 +00:00
|
|
|
if (fclose(fp) != 0)
|
|
|
|
fail = TRUE;
|
2009-05-11 15:56:33 +00:00
|
|
|
}
|
2010-11-30 18:18:24 +00:00
|
|
|
if (fail)
|
2009-05-11 15:56:33 +00:00
|
|
|
{
|
|
|
|
geany_debug("utils_write_file(): could not write to file %s (%s)",
|
|
|
|
filename, g_strerror(errno));
|
2010-11-30 18:18:24 +00:00
|
|
|
return NVL(errno, EIO);
|
2009-05-11 15:56:33 +00:00
|
|
|
}
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
2005-12-12 16:19:30 +00:00
|
|
|
return 0;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-16 15:07:40 +00:00
|
|
|
/** Searches backward through @a size bytes looking for a '<', then returns the tag, if any.
|
|
|
|
* @param sel .
|
|
|
|
* @param size .
|
|
|
|
* @return The tag name.
|
2005-11-22 12:26:26 +00:00
|
|
|
*/
|
2010-10-25 16:58:13 +00:00
|
|
|
gchar *utils_find_open_xml_tag(const gchar sel[], gint size)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2010-11-16 15:07:40 +00:00
|
|
|
/* stolen from anjuta and modified */
|
2005-11-22 12:26:26 +00:00
|
|
|
const gchar *begin, *cur;
|
|
|
|
|
2009-04-05 21:07:40 +00:00
|
|
|
if (G_UNLIKELY(size < 3))
|
2008-07-03 12:32:55 +00:00
|
|
|
{ /* Smallest tag is "<p>" which is 3 characters */
|
|
|
|
return NULL;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
begin = &sel[0];
|
2010-10-27 16:12:05 +00:00
|
|
|
cur = &sel[size - 1];
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2010-05-08 13:10:24 +00:00
|
|
|
/* Skip to the character before the closing brace */
|
|
|
|
while (cur > begin)
|
|
|
|
{
|
|
|
|
if (*cur == '>')
|
|
|
|
break;
|
|
|
|
--cur;
|
|
|
|
}
|
|
|
|
--cur;
|
|
|
|
/* skip whitespace */
|
|
|
|
while (cur > begin && isspace(*cur))
|
|
|
|
cur--;
|
|
|
|
if (*cur == '/')
|
|
|
|
return NULL; /* we found a short tag which doesn't need to be closed */
|
2005-11-22 12:26:26 +00:00
|
|
|
while (cur > begin)
|
|
|
|
{
|
2010-05-08 13:10:33 +00:00
|
|
|
if (*cur == '<')
|
|
|
|
break;
|
2010-10-27 16:12:05 +00:00
|
|
|
else if (*cur == '>')
|
|
|
|
break;
|
2005-11-22 12:26:26 +00:00
|
|
|
--cur;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*cur == '<')
|
|
|
|
{
|
2010-10-25 16:58:13 +00:00
|
|
|
GString *result;
|
2008-07-03 14:39:49 +00:00
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
cur++;
|
2010-10-25 16:58:13 +00:00
|
|
|
if (*cur == '/')
|
|
|
|
return NULL; /* we found a closing tag */
|
|
|
|
|
|
|
|
result = g_string_sized_new(64);
|
2008-07-03 14:39:49 +00:00
|
|
|
while (strchr(":_-.", *cur) || isalnum(*cur))
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2008-07-03 12:32:55 +00:00
|
|
|
g_string_append_c(result, *cur);
|
2005-11-22 12:26:26 +00:00
|
|
|
cur++;
|
|
|
|
}
|
2008-07-03 14:39:49 +00:00
|
|
|
return g_string_free(result, FALSE);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
2008-07-03 14:39:49 +00:00
|
|
|
return NULL;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-22 13:18:26 +00:00
|
|
|
/* Returns true if tag_name is a self-closing tag */
|
2010-10-25 16:58:13 +00:00
|
|
|
gboolean utils_is_short_html_tag(const gchar *tag_name)
|
|
|
|
{
|
2010-12-22 13:18:26 +00:00
|
|
|
const gchar names[][20] = {
|
|
|
|
"area",
|
|
|
|
"base",
|
|
|
|
"basefont", /* < or not < */
|
|
|
|
"br",
|
|
|
|
"frame",
|
|
|
|
"hr",
|
|
|
|
"img",
|
|
|
|
"input",
|
|
|
|
"link",
|
|
|
|
"meta"
|
|
|
|
};
|
|
|
|
|
|
|
|
if (tag_name)
|
|
|
|
{
|
|
|
|
if (bsearch(tag_name, names, G_N_ELEMENTS(names), 20,
|
|
|
|
(GCompareFunc)g_ascii_strcasecmp))
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
2010-10-25 16:58:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-14 15:36:27 +00:00
|
|
|
const gchar *utils_get_eol_name(gint eol_mode)
|
|
|
|
{
|
|
|
|
switch (eol_mode)
|
|
|
|
{
|
|
|
|
case SC_EOL_CRLF: return _("Win (CRLF)"); break;
|
|
|
|
case SC_EOL_CR: return _("Mac (CR)"); break;
|
|
|
|
default: return _("Unix (LF)"); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-01 10:23:19 +00:00
|
|
|
const gchar *utils_get_eol_char(gint eol_mode)
|
|
|
|
{
|
|
|
|
switch (eol_mode)
|
|
|
|
{
|
|
|
|
case SC_EOL_CRLF: return "\r\n"; break;
|
|
|
|
case SC_EOL_CR: return "\r"; break;
|
|
|
|
default: return "\n"; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-09 18:17:57 +00:00
|
|
|
/* Converts line endings to @a target_eol_mode. */
|
|
|
|
void utils_ensure_same_eol_characters(GString *string, gint target_eol_mode)
|
2010-08-01 17:20:50 +00:00
|
|
|
{
|
2010-11-09 18:17:57 +00:00
|
|
|
const gchar *eol_str = utils_get_eol_char(target_eol_mode);
|
2010-08-01 17:20:50 +00:00
|
|
|
|
2010-11-09 18:17:57 +00:00
|
|
|
/* first convert data to LF only */
|
|
|
|
utils_string_replace_all(string, "\r\n", "\n");
|
|
|
|
utils_string_replace_all(string, "\r", "\n");
|
2010-08-01 17:20:50 +00:00
|
|
|
|
2010-11-09 18:17:57 +00:00
|
|
|
if (target_eol_mode == SC_EOL_LF)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* now convert to desired line endings */
|
|
|
|
utils_string_replace_all(string, "\n", eol_str);
|
2010-08-01 17:20:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
gboolean utils_atob(const gchar *str)
|
|
|
|
{
|
2009-04-05 21:07:40 +00:00
|
|
|
if (G_UNLIKELY(str == NULL))
|
2008-11-11 18:15:14 +00:00
|
|
|
return FALSE;
|
|
|
|
else if (strcmp(str, "TRUE") == 0 || strcmp(str, "true") == 0)
|
|
|
|
return TRUE;
|
|
|
|
return FALSE;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-25 11:50:48 +00:00
|
|
|
/* NULL-safe version of g_path_is_absolute(). */
|
2005-11-22 12:26:26 +00:00
|
|
|
gboolean utils_is_absolute_path(const gchar *path)
|
|
|
|
{
|
2011-03-24 22:00:18 +00:00
|
|
|
if (G_UNLIKELY(! NZV(path)))
|
2005-11-22 12:26:26 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2008-04-25 11:50:48 +00:00
|
|
|
return g_path_is_absolute(path);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-27 15:40:19 +00:00
|
|
|
/* Skips root if path is absolute, do nothing otherwise.
|
|
|
|
* This is a relative-safe version of g_path_skip_root().
|
|
|
|
*/
|
|
|
|
const gchar *utils_path_skip_root(const gchar *path)
|
|
|
|
{
|
|
|
|
const gchar *path_relative;
|
|
|
|
|
|
|
|
path_relative = g_path_skip_root(path);
|
|
|
|
|
|
|
|
return (path_relative != NULL) ? path_relative : path;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-07 14:37:57 +00:00
|
|
|
gdouble utils_scale_round(gdouble val, gdouble factor)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2008-02-27 13:17:29 +00:00
|
|
|
/*val = floor(val * factor + 0.5);*/
|
2005-11-22 12:26:26 +00:00
|
|
|
val = floor(val);
|
|
|
|
val = MAX(val, 0);
|
|
|
|
val = MIN(val, factor);
|
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-11 19:18:51 +00:00
|
|
|
/**
|
|
|
|
* A replacement function for g_strncasecmp() to compare strings case-insensitive.
|
|
|
|
* It converts both strings into lowercase using g_utf8_strdown() and then compare
|
|
|
|
* both strings using strcmp().
|
|
|
|
* This is not completely accurate regarding locale-specific case sorting rules
|
|
|
|
* but seems to be a good compromise between correctness and performance.
|
|
|
|
*
|
|
|
|
* The input strings should be in UTF-8 or locale encoding.
|
|
|
|
*
|
2009-07-21 22:09:43 +00:00
|
|
|
* @param s1 Pointer to first string or @c NULL.
|
|
|
|
* @param s2 Pointer to second string or @c NULL.
|
2008-11-11 19:18:51 +00:00
|
|
|
*
|
|
|
|
* @return an integer less than, equal to, or greater than zero if @a s1 is found, respectively,
|
|
|
|
* to be less than, to match, or to be greater than @a s2.
|
2009-01-30 18:53:23 +00:00
|
|
|
*
|
|
|
|
* @since 0.16
|
|
|
|
*/
|
2008-11-11 19:18:51 +00:00
|
|
|
gint utils_str_casecmp(const gchar *s1, const gchar *s2)
|
|
|
|
{
|
2008-11-12 13:05:33 +00:00
|
|
|
gchar *tmp1, *tmp2;
|
2008-11-11 19:18:51 +00:00
|
|
|
gint result;
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_val_if_fail(s1 != NULL, 1);
|
|
|
|
g_return_val_if_fail(s2 != NULL, -1);
|
2008-11-11 19:18:51 +00:00
|
|
|
|
2008-11-12 13:05:33 +00:00
|
|
|
tmp1 = g_strdup(s1);
|
|
|
|
tmp2 = g_strdup(s2);
|
2008-11-11 19:18:51 +00:00
|
|
|
|
|
|
|
/* first ensure strings are UTF-8 */
|
2008-11-12 13:05:33 +00:00
|
|
|
if (! g_utf8_validate(s1, -1, NULL))
|
|
|
|
setptr(tmp1, g_locale_to_utf8(s1, -1, NULL, NULL, NULL));
|
|
|
|
if (! g_utf8_validate(s2, -1, NULL))
|
|
|
|
setptr(tmp2, g_locale_to_utf8(s2, -1, NULL, NULL, NULL));
|
2008-11-11 19:18:51 +00:00
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
if (tmp1 == NULL)
|
2008-11-11 19:18:51 +00:00
|
|
|
{
|
2008-11-12 13:05:33 +00:00
|
|
|
g_free(tmp2);
|
2008-11-11 19:18:51 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2009-04-15 22:47:33 +00:00
|
|
|
if (tmp2 == NULL)
|
2008-11-11 19:18:51 +00:00
|
|
|
{
|
2008-11-12 13:05:33 +00:00
|
|
|
g_free(tmp1);
|
2008-11-11 19:18:51 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* then convert the strings into a case-insensitive form */
|
2008-11-12 13:05:33 +00:00
|
|
|
setptr(tmp1, g_utf8_strdown(tmp1, -1));
|
|
|
|
setptr(tmp2, g_utf8_strdown(tmp2, -1));
|
2008-11-11 19:18:51 +00:00
|
|
|
|
|
|
|
/* compare */
|
|
|
|
result = strcmp(tmp1, tmp2);
|
|
|
|
|
2008-11-12 13:05:33 +00:00
|
|
|
g_free(tmp1);
|
|
|
|
g_free(tmp2);
|
2008-11-11 19:18:51 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-21 20:52:51 +00:00
|
|
|
/**
|
|
|
|
* Truncates the input string to a given length.
|
|
|
|
* Characters are removed from the middle of the string, so the start and the end of string
|
|
|
|
* won't change.
|
|
|
|
*
|
|
|
|
* @param string Input string.
|
|
|
|
* @param truncate_length The length in characters of the resulting string.
|
|
|
|
*
|
2009-07-21 22:09:43 +00:00
|
|
|
* @return A copy of @a string which is truncated to @a truncate_length characters,
|
2009-04-21 20:52:51 +00:00
|
|
|
* should be freed when no longer needed.
|
|
|
|
*
|
|
|
|
* @since 0.17
|
|
|
|
*/
|
|
|
|
/* This following function is taken from Gedit. */
|
|
|
|
gchar *utils_str_middle_truncate(const gchar *string, guint truncate_length)
|
|
|
|
{
|
|
|
|
GString *truncated;
|
|
|
|
guint length;
|
|
|
|
guint n_chars;
|
|
|
|
guint num_left_chars;
|
|
|
|
guint right_offset;
|
|
|
|
guint delimiter_length;
|
|
|
|
const gchar *delimiter = "\342\200\246";
|
|
|
|
|
|
|
|
g_return_val_if_fail(string != NULL, NULL);
|
|
|
|
|
|
|
|
length = strlen(string);
|
|
|
|
|
|
|
|
g_return_val_if_fail(g_utf8_validate(string, length, NULL), NULL);
|
|
|
|
|
|
|
|
/* It doesnt make sense to truncate strings to less than the size of the delimiter plus 2
|
|
|
|
* characters (one on each side) */
|
|
|
|
delimiter_length = g_utf8_strlen(delimiter, -1);
|
|
|
|
if (truncate_length < (delimiter_length + 2))
|
|
|
|
return g_strdup(string);
|
|
|
|
|
|
|
|
n_chars = g_utf8_strlen(string, length);
|
|
|
|
|
|
|
|
/* Make sure the string is not already small enough. */
|
|
|
|
if (n_chars <= truncate_length)
|
|
|
|
return g_strdup (string);
|
|
|
|
|
|
|
|
/* Find the 'middle' where the truncation will occur. */
|
|
|
|
num_left_chars = (truncate_length - delimiter_length) / 2;
|
|
|
|
right_offset = n_chars - truncate_length + num_left_chars + delimiter_length;
|
|
|
|
|
|
|
|
truncated = g_string_new_len(string, g_utf8_offset_to_pointer(string, num_left_chars) - string);
|
|
|
|
g_string_append(truncated, delimiter);
|
|
|
|
g_string_append(truncated, g_utf8_offset_to_pointer(string, right_offset));
|
|
|
|
|
|
|
|
return g_string_free(truncated, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-17 18:00:42 +00:00
|
|
|
/**
|
2009-07-21 22:09:43 +00:00
|
|
|
* @c NULL-safe string comparison. Returns @c TRUE if both @a a and @a b are @c NULL
|
|
|
|
* or if @a a and @a b refer to valid strings which are equal.
|
2008-02-17 18:00:42 +00:00
|
|
|
*
|
2009-07-21 22:09:43 +00:00
|
|
|
* @param a Pointer to first string or @c NULL.
|
|
|
|
* @param b Pointer to second string or @c NULL.
|
2008-02-17 18:00:42 +00:00
|
|
|
*
|
2009-07-21 22:09:43 +00:00
|
|
|
* @return @c TRUE if @a a equals @a b, else @c FALSE.
|
2008-02-17 18:00:42 +00:00
|
|
|
**/
|
2006-12-07 16:09:45 +00:00
|
|
|
gboolean utils_str_equal(const gchar *a, const gchar *b)
|
|
|
|
{
|
2008-02-17 18:00:42 +00:00
|
|
|
/* (taken from libexo from os-cillation) */
|
2009-04-15 22:47:33 +00:00
|
|
|
if (a == NULL && b == NULL) return TRUE;
|
|
|
|
else if (a == NULL || b == NULL) return FALSE;
|
2006-12-07 16:09:45 +00:00
|
|
|
|
|
|
|
while (*a == *b++)
|
|
|
|
if (*a++ == '\0')
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-17 18:00:42 +00:00
|
|
|
/**
|
2010-03-15 13:01:16 +00:00
|
|
|
* Removes the extension from @a filename and return the result in a newly allocated string.
|
2008-02-17 18:00:42 +00:00
|
|
|
*
|
|
|
|
* @param filename The filename to operate on.
|
|
|
|
*
|
|
|
|
* @return A newly-allocated string, should be freed when no longer needed.
|
|
|
|
**/
|
2005-11-22 12:26:26 +00:00
|
|
|
gchar *utils_remove_ext_from_filename(const gchar *filename)
|
|
|
|
{
|
2009-04-05 21:07:40 +00:00
|
|
|
gchar *last_dot;
|
2007-03-03 13:34:15 +00:00
|
|
|
gchar *result;
|
|
|
|
gint i;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_val_if_fail(filename != NULL, NULL);
|
2006-05-12 16:11:14 +00:00
|
|
|
|
2009-04-05 21:07:40 +00:00
|
|
|
last_dot = strrchr(filename, '.');
|
|
|
|
if (! last_dot)
|
|
|
|
return g_strdup(filename);
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
/* assumes extension is small, so extra bytes don't matter */
|
|
|
|
result = g_malloc(strlen(filename));
|
2007-03-03 13:34:15 +00:00
|
|
|
i = 0;
|
2005-11-22 12:26:26 +00:00
|
|
|
while ((filename + i) != last_dot)
|
|
|
|
{
|
|
|
|
result[i] = filename[i];
|
|
|
|
i++;
|
|
|
|
}
|
2007-03-03 13:34:15 +00:00
|
|
|
result[i] = 0;
|
2005-11-22 12:26:26 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
gchar utils_brace_opposite(gchar ch)
|
|
|
|
{
|
|
|
|
switch (ch)
|
|
|
|
{
|
|
|
|
case '(': return ')';
|
|
|
|
case ')': return '(';
|
|
|
|
case '[': return ']';
|
|
|
|
case ']': return '[';
|
|
|
|
case '{': return '}';
|
|
|
|
case '}': return '{';
|
|
|
|
case '<': return '>';
|
|
|
|
case '>': return '<';
|
|
|
|
default: return '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-20 11:24:23 +00:00
|
|
|
gchar *utils_get_hostname(void)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2008-02-10 17:53:18 +00:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
return win32_get_hostname();
|
|
|
|
#elif defined(HAVE_GETHOSTNAME)
|
|
|
|
gchar hostname[100];
|
|
|
|
if (gethostname(hostname, sizeof(hostname)) == 0)
|
|
|
|
return g_strdup(hostname);
|
2005-11-22 12:26:26 +00:00
|
|
|
#endif
|
2008-02-10 17:53:18 +00:00
|
|
|
return g_strdup("localhost");
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-06 19:59:01 +00:00
|
|
|
/* Checks whether the given file can be written. locale_filename is expected in locale encoding.
|
|
|
|
* Returns 0 if it can be written, otherwise it returns errno */
|
2011-02-06 16:47:18 +00:00
|
|
|
gint utils_is_file_writable(const gchar *locale_filename)
|
2008-01-06 19:59:01 +00:00
|
|
|
{
|
|
|
|
gchar *file;
|
|
|
|
gint ret;
|
|
|
|
|
|
|
|
if (! g_file_test(locale_filename, G_FILE_TEST_EXISTS) &&
|
|
|
|
! g_file_test(locale_filename, G_FILE_TEST_IS_DIR))
|
2008-02-27 13:17:29 +00:00
|
|
|
/* get the file's directory to check for write permission if it doesn't yet exist */
|
2008-01-06 19:59:01 +00:00
|
|
|
file = g_path_get_dirname(locale_filename);
|
|
|
|
else
|
|
|
|
file = g_strdup(locale_filename);
|
|
|
|
|
|
|
|
#ifdef G_OS_WIN32
|
2008-02-27 13:17:29 +00:00
|
|
|
/* use _waccess on Windows, access() doesn't accept special characters */
|
2008-01-06 19:59:01 +00:00
|
|
|
ret = win32_check_write_permission(file);
|
|
|
|
#else
|
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
/* access set also errno to "FILE NOT FOUND" even if locale_filename is writeable, so use
|
|
|
|
* errno only when access() explicitly returns an error */
|
2008-01-06 19:59:01 +00:00
|
|
|
if (access(file, R_OK | W_OK) != 0)
|
|
|
|
ret = errno;
|
|
|
|
else
|
|
|
|
ret = 0;
|
2008-01-09 15:40:22 +00:00
|
|
|
#endif
|
2008-01-06 19:59:01 +00:00
|
|
|
g_free(file);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-11 15:21:11 +00:00
|
|
|
/* Replaces all occurrences of needle in haystack with replacement.
|
2009-07-23 16:01:45 +00:00
|
|
|
* Warning: *haystack must be a heap address; it may be freed and reassigned.
|
|
|
|
* Note: utils_string_replace_all() will always be faster when @a replacement is longer
|
|
|
|
* than @a needle.
|
2008-11-14 14:15:32 +00:00
|
|
|
* All strings have to be NULL-terminated.
|
|
|
|
* See utils_string_replace_all() for details. */
|
2009-07-23 16:01:45 +00:00
|
|
|
void utils_str_replace_all(gchar **haystack, const gchar *needle, const gchar *replacement)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2008-11-16 17:55:23 +00:00
|
|
|
GString *str;
|
2008-11-18 17:14:00 +00:00
|
|
|
|
2009-07-23 16:01:45 +00:00
|
|
|
g_return_if_fail(*haystack != NULL);
|
2008-11-18 17:14:00 +00:00
|
|
|
|
2009-07-23 16:01:45 +00:00
|
|
|
str = g_string_new(*haystack);
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2009-07-23 16:01:45 +00:00
|
|
|
g_free(*haystack);
|
2008-11-14 14:15:32 +00:00
|
|
|
utils_string_replace_all(str, needle, replacement);
|
|
|
|
|
2009-07-23 16:01:45 +00:00
|
|
|
*haystack = g_string_free(str, FALSE);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-28 15:41:44 +00:00
|
|
|
gint utils_strpos(const gchar *haystack, const gchar *needle)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
gint haystack_length = strlen(haystack);
|
|
|
|
gint needle_length = strlen(needle);
|
|
|
|
gint i, j, pos = -1;
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
if (needle_length > haystack_length)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (i = 0; (i < haystack_length) && pos == -1; i++)
|
|
|
|
{
|
2009-04-05 21:07:40 +00:00
|
|
|
if (haystack[i] == needle[0] && needle_length == 1)
|
|
|
|
return i;
|
2005-12-28 15:41:44 +00:00
|
|
|
else if (haystack[i] == needle[0])
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
for (j = 1; (j < needle_length); j++)
|
|
|
|
{
|
2009-09-16 14:13:38 +00:00
|
|
|
if (haystack[i + j] == needle[j])
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2009-04-05 21:07:40 +00:00
|
|
|
if (pos == -1)
|
|
|
|
pos = i;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pos = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-21 17:40:04 +00:00
|
|
|
/**
|
2010-03-12 18:15:48 +00:00
|
|
|
* Retrieves a formatted date/time string from strftime().
|
2008-11-21 17:40:04 +00:00
|
|
|
* This function should be preferred to directly calling strftime() since this function
|
|
|
|
* works on UTF-8 encoded strings.
|
|
|
|
*
|
|
|
|
* @param format The format string to pass to strftime(3). See the strftime(3)
|
|
|
|
* documentation for details, in UTF-8 encoding.
|
|
|
|
* @param time_to_use The date/time to use, in time_t format or NULL to use the current time.
|
|
|
|
*
|
|
|
|
* @return A newly-allocated string, should be freed when no longer needed.
|
2009-01-30 18:53:23 +00:00
|
|
|
*
|
|
|
|
* @since 0.16
|
|
|
|
*/
|
2007-11-17 13:09:19 +00:00
|
|
|
gchar *utils_get_date_time(const gchar *format, time_t *time_to_use)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2007-11-17 13:09:19 +00:00
|
|
|
const struct tm *tm;
|
2008-11-21 17:40:04 +00:00
|
|
|
static gchar date[1024];
|
|
|
|
gchar *locale_format;
|
|
|
|
gsize len;
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_val_if_fail(format != NULL, NULL);
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2008-11-21 18:32:41 +00:00
|
|
|
if (! g_utf8_validate(format, -1, NULL))
|
|
|
|
{
|
|
|
|
locale_format = g_locale_from_utf8(format, -1, NULL, NULL, NULL);
|
|
|
|
if (locale_format == NULL)
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
locale_format = g_strdup(format);
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2007-11-17 13:09:19 +00:00
|
|
|
if (time_to_use != NULL)
|
2008-11-21 17:40:04 +00:00
|
|
|
tm = localtime(time_to_use);
|
2007-11-17 13:09:19 +00:00
|
|
|
else
|
2008-11-21 17:40:04 +00:00
|
|
|
{
|
|
|
|
time_t tp = time(NULL);
|
|
|
|
tm = localtime(&tp);
|
|
|
|
}
|
2007-11-17 13:09:19 +00:00
|
|
|
|
2008-11-21 17:40:04 +00:00
|
|
|
len = strftime(date, 1024, locale_format, tm);
|
|
|
|
g_free(locale_format);
|
|
|
|
if (len == 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (! g_utf8_validate(date, len, NULL))
|
|
|
|
return g_locale_to_utf8(date, len, NULL, NULL, NULL);
|
|
|
|
else
|
|
|
|
return g_strdup(date);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 14:23:13 +00:00
|
|
|
gchar *utils_get_initials(const gchar *name)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
gint i = 1, j = 1;
|
|
|
|
gchar *initials = g_malloc0(5);
|
|
|
|
|
|
|
|
initials[0] = name[0];
|
|
|
|
while (name[i] != '\0' && j < 4)
|
|
|
|
{
|
|
|
|
if (name[i] == ' ' && name[i + 1] != ' ')
|
|
|
|
{
|
|
|
|
initials[j++] = name[i + 1];
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
return initials;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-17 18:00:42 +00:00
|
|
|
/**
|
2010-03-12 18:15:48 +00:00
|
|
|
* Wraps g_key_file_get_integer() to add a default value argument.
|
2008-02-17 18:00:42 +00:00
|
|
|
*
|
|
|
|
* @param config A GKeyFile object.
|
|
|
|
* @param section The group name to look in for the key.
|
|
|
|
* @param key The key to find.
|
2009-07-21 22:09:43 +00:00
|
|
|
* @param default_value The default value which will be returned when @a section or @a key
|
2008-02-17 18:00:42 +00:00
|
|
|
* don't exist.
|
|
|
|
*
|
2009-07-21 22:09:43 +00:00
|
|
|
* @return The value associated with @a key as an integer, or the given default value if the value
|
2008-02-17 18:00:42 +00:00
|
|
|
* could not be retrieved.
|
|
|
|
**/
|
|
|
|
gint utils_get_setting_integer(GKeyFile *config, const gchar *section, const gchar *key,
|
|
|
|
const gint default_value)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
gint tmp;
|
|
|
|
GError *error = NULL;
|
|
|
|
|
2009-04-05 21:07:40 +00:00
|
|
|
if (G_UNLIKELY(config == NULL))
|
|
|
|
return default_value;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
tmp = g_key_file_get_integer(config, section, key, &error);
|
2011-03-24 22:00:18 +00:00
|
|
|
if (error)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
g_error_free(error);
|
|
|
|
return default_value;
|
|
|
|
}
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-17 18:00:42 +00:00
|
|
|
/**
|
2010-03-12 18:15:48 +00:00
|
|
|
* Wraps g_key_file_get_boolean() to add a default value argument.
|
2008-02-17 18:00:42 +00:00
|
|
|
*
|
|
|
|
* @param config A GKeyFile object.
|
|
|
|
* @param section The group name to look in for the key.
|
|
|
|
* @param key The key to find.
|
|
|
|
* @param default_value The default value which will be returned when @c section or @c key
|
|
|
|
* don't exist.
|
|
|
|
*
|
2009-07-21 22:09:43 +00:00
|
|
|
* @return The value associated with @a key as a boolean, or the given default value if the value
|
2008-02-17 18:00:42 +00:00
|
|
|
* could not be retrieved.
|
|
|
|
**/
|
|
|
|
gboolean utils_get_setting_boolean(GKeyFile *config, const gchar *section, const gchar *key,
|
|
|
|
const gboolean default_value)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
gboolean tmp;
|
|
|
|
GError *error = NULL;
|
|
|
|
|
2009-04-05 21:07:40 +00:00
|
|
|
if (G_UNLIKELY(config == NULL))
|
|
|
|
return default_value;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
tmp = g_key_file_get_boolean(config, section, key, &error);
|
2011-03-24 22:00:18 +00:00
|
|
|
if (error)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
g_error_free(error);
|
|
|
|
return default_value;
|
|
|
|
}
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-17 18:00:42 +00:00
|
|
|
/**
|
2010-03-12 18:15:48 +00:00
|
|
|
* Wraps g_key_file_get_string() to add a default value argument.
|
2008-02-17 18:00:42 +00:00
|
|
|
*
|
|
|
|
* @param config A GKeyFile object.
|
|
|
|
* @param section The group name to look in for the key.
|
|
|
|
* @param key The key to find.
|
2009-07-21 22:09:43 +00:00
|
|
|
* @param default_value The default value which will be returned when @a section or @a key
|
2008-02-17 18:00:42 +00:00
|
|
|
* don't exist.
|
|
|
|
*
|
2009-07-21 22:09:43 +00:00
|
|
|
* @return A newly allocated string, either the value for @a key or a copy of the given
|
2008-12-01 13:06:25 +00:00
|
|
|
* default value if it could not be retrieved.
|
2008-02-17 18:00:42 +00:00
|
|
|
**/
|
|
|
|
gchar *utils_get_setting_string(GKeyFile *config, const gchar *section, const gchar *key,
|
|
|
|
const gchar *default_value)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
gchar *tmp;
|
|
|
|
|
2009-04-05 21:07:40 +00:00
|
|
|
if (G_UNLIKELY(config == NULL))
|
|
|
|
return g_strdup(default_value);
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2009-10-19 15:19:09 +00:00
|
|
|
tmp = g_key_file_get_string(config, section, key, NULL);
|
2011-03-24 22:00:18 +00:00
|
|
|
if (!tmp)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2008-12-01 13:06:25 +00:00
|
|
|
return g_strdup(default_value);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-11 02:16:02 +00:00
|
|
|
gchar *utils_get_hex_from_color(GdkColor *color)
|
|
|
|
{
|
2006-04-27 17:58:52 +00:00
|
|
|
gchar *buffer = g_malloc0(9);
|
2005-12-11 02:16:02 +00:00
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_val_if_fail(color != NULL, NULL);
|
2006-08-22 19:03:38 +00:00
|
|
|
|
2006-04-27 17:58:52 +00:00
|
|
|
g_snprintf(buffer, 8, "#%02X%02X%02X",
|
2005-12-11 02:16:02 +00:00
|
|
|
(guint) (utils_scale_round(color->red / 256, 255)),
|
|
|
|
(guint) (utils_scale_round(color->green / 256, 255)),
|
|
|
|
(guint) (utils_scale_round(color->blue / 256, 255)));
|
2006-05-12 16:11:14 +00:00
|
|
|
|
2006-04-27 17:58:52 +00:00
|
|
|
return buffer;
|
2005-12-11 02:16:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-08 17:00:28 +00:00
|
|
|
guint utils_invert_color(guint color)
|
|
|
|
{
|
|
|
|
guint r, g, b;
|
|
|
|
|
|
|
|
r = 0xffffff - color;
|
|
|
|
g = 0xffffff - (color >> 8);
|
|
|
|
b = 0xffffff - (color >> 16);
|
|
|
|
|
|
|
|
return (r | (g << 8) | (b << 16));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-01-26 21:32:46 +00:00
|
|
|
/* Get directory from current file in the notebook.
|
|
|
|
* Returns dir string that should be freed or NULL, depending on whether current file is valid.
|
2007-12-02 10:52:19 +00:00
|
|
|
* Returned string is in UTF-8 encoding */
|
2008-02-20 11:24:23 +00:00
|
|
|
gchar *utils_get_current_file_dir_utf8(void)
|
2006-01-26 21:32:46 +00:00
|
|
|
{
|
2008-06-15 13:35:48 +00:00
|
|
|
GeanyDocument *doc = document_get_current();
|
2006-01-26 21:32:46 +00:00
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
if (doc != NULL)
|
2006-01-26 21:32:46 +00:00
|
|
|
{
|
2008-02-27 13:17:29 +00:00
|
|
|
/* get current filename */
|
2008-06-15 13:35:48 +00:00
|
|
|
const gchar *cur_fname = doc->file_name;
|
2006-01-26 21:32:46 +00:00
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
if (cur_fname != NULL)
|
2006-01-26 21:32:46 +00:00
|
|
|
{
|
2008-02-27 13:17:29 +00:00
|
|
|
/* get folder part from current filename */
|
|
|
|
return g_path_get_dirname(cur_fname); /* returns "." if no path */
|
2006-01-26 21:32:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
return NULL; /* no file open */
|
2006-01-26 21:32:46 +00:00
|
|
|
}
|
2006-02-06 06:34:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* very simple convenience function */
|
2008-02-20 11:24:23 +00:00
|
|
|
void utils_beep(void)
|
2006-02-06 06:34:06 +00:00
|
|
|
{
|
2009-04-15 22:47:33 +00:00
|
|
|
if (prefs.beep_on_errors)
|
|
|
|
gdk_beep();
|
2006-02-06 06:34:06 +00:00
|
|
|
}
|
2006-02-22 13:41:50 +00:00
|
|
|
|
2006-02-25 22:26:43 +00:00
|
|
|
|
2006-02-22 13:41:50 +00:00
|
|
|
/* taken from busybox, thanks */
|
2008-02-28 16:06:04 +00:00
|
|
|
gchar *utils_make_human_readable_str(guint64 size, gulong block_size,
|
2008-02-17 18:00:42 +00:00
|
|
|
gulong display_unit)
|
2006-02-22 13:41:50 +00:00
|
|
|
{
|
|
|
|
/* The code will adjust for additional (appended) units. */
|
2006-04-27 17:58:52 +00:00
|
|
|
static const gchar zero_and_units[] = { '0', 0, 'K', 'M', 'G', 'T' };
|
|
|
|
static const gchar fmt[] = "%Lu %c%c";
|
|
|
|
static const gchar fmt_tenths[] = "%Lu.%d %c%c";
|
2006-02-22 13:41:50 +00:00
|
|
|
|
2008-02-28 16:06:04 +00:00
|
|
|
guint64 val;
|
2006-04-27 17:58:52 +00:00
|
|
|
gint frac;
|
|
|
|
const gchar *u;
|
|
|
|
const gchar *f;
|
2006-02-22 13:41:50 +00:00
|
|
|
|
|
|
|
u = zero_and_units;
|
|
|
|
f = fmt;
|
|
|
|
frac = 0;
|
|
|
|
|
|
|
|
val = size * block_size;
|
2009-04-15 22:47:33 +00:00
|
|
|
if (val == 0)
|
2009-04-05 21:07:40 +00:00
|
|
|
return g_strdup(u);
|
2006-02-22 13:41:50 +00:00
|
|
|
|
|
|
|
if (display_unit)
|
|
|
|
{
|
|
|
|
val += display_unit/2; /* Deal with rounding. */
|
|
|
|
val /= display_unit; /* Don't combine with the line above!!! */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++u;
|
2009-07-04 09:18:01 +00:00
|
|
|
while ((val >= 1024) && (u < zero_and_units + sizeof(zero_and_units) - 1))
|
2006-02-22 13:41:50 +00:00
|
|
|
{
|
|
|
|
f = fmt_tenths;
|
|
|
|
++u;
|
2009-09-16 14:13:38 +00:00
|
|
|
frac = ((((gint)(val % 1024)) * 10) + (1024 / 2)) / 1024;
|
2009-07-04 09:18:01 +00:00
|
|
|
val /= 1024;
|
2006-02-22 13:41:50 +00:00
|
|
|
}
|
|
|
|
if (frac >= 10)
|
|
|
|
{ /* We need to round up here. */
|
|
|
|
++val;
|
|
|
|
frac = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If f==fmt then 'frac' and 'u' are ignored. */
|
|
|
|
return g_strdup_printf(f, val, frac, *u, 'b');
|
|
|
|
}
|
2006-02-26 18:19:28 +00:00
|
|
|
|
2006-05-05 16:07:40 +00:00
|
|
|
|
2009-05-30 11:57:56 +00:00
|
|
|
static guint utils_get_value_of_hex(const gchar ch)
|
2006-05-22 11:55:07 +00:00
|
|
|
{
|
|
|
|
if (ch >= '0' && ch <= '9')
|
|
|
|
return ch - '0';
|
|
|
|
else if (ch >= 'A' && ch <= 'F')
|
|
|
|
return ch - 'A' + 10;
|
|
|
|
else if (ch >= 'a' && ch <= 'f')
|
|
|
|
return ch - 'a' + 10;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-27 20:57:13 +00:00
|
|
|
/* utils_strtod() converts a string containing a hex colour ("0x00ff00") into an integer.
|
|
|
|
* Basically, it is the same as strtod() would do, but it does not understand hex colour values,
|
2009-06-05 15:59:58 +00:00
|
|
|
* before ANSI-C99. With with_route set, it takes strings of the format "#00ff00".
|
|
|
|
* Returns -1 on failure. */
|
2006-07-27 20:57:13 +00:00
|
|
|
gint utils_strtod(const gchar *source, gchar **end, gboolean with_route)
|
2006-05-22 11:55:07 +00:00
|
|
|
{
|
2006-07-27 20:57:13 +00:00
|
|
|
guint red, green, blue, offset = 0;
|
2006-05-22 11:55:07 +00:00
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_val_if_fail(source != NULL, -1);
|
|
|
|
|
|
|
|
if (with_route && (strlen(source) != 7 || source[0] != '#'))
|
2006-07-27 20:57:13 +00:00
|
|
|
return -1;
|
|
|
|
else if (! with_route && (strlen(source) != 8 || source[0] != '0' ||
|
|
|
|
(source[1] != 'x' && source[1] != 'X')))
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
/* offset is set to 1 when the string starts with 0x, otherwise it starts with #
|
|
|
|
* and we don't need to increase the index */
|
2006-07-27 20:57:13 +00:00
|
|
|
if (! with_route)
|
|
|
|
offset = 1;
|
2006-05-22 11:55:07 +00:00
|
|
|
|
2006-07-27 20:57:13 +00:00
|
|
|
red = utils_get_value_of_hex(
|
|
|
|
source[1 + offset]) * 16 + utils_get_value_of_hex(source[2 + offset]);
|
|
|
|
green = utils_get_value_of_hex(
|
|
|
|
source[3 + offset]) * 16 + utils_get_value_of_hex(source[4 + offset]);
|
|
|
|
blue = utils_get_value_of_hex(
|
|
|
|
source[5 + offset]) * 16 + utils_get_value_of_hex(source[6 + offset]);
|
2006-05-22 11:55:07 +00:00
|
|
|
|
2006-07-27 20:57:13 +00:00
|
|
|
return (red | (green << 8) | (blue << 16));
|
2006-05-22 11:55:07 +00:00
|
|
|
}
|
|
|
|
|
2006-05-12 16:11:14 +00:00
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
/* Returns: newly allocated string with the current time formatted HH:MM:SS. */
|
2008-02-20 11:24:23 +00:00
|
|
|
gchar *utils_get_current_time_string(void)
|
2006-07-01 12:02:30 +00:00
|
|
|
{
|
2006-09-17 20:40:15 +00:00
|
|
|
const time_t tp = time(NULL);
|
|
|
|
const struct tm *tmval = localtime(&tp);
|
|
|
|
gchar *result = g_malloc0(9);
|
|
|
|
|
2006-09-26 16:54:20 +00:00
|
|
|
strftime(result, 9, "%H:%M:%S", tmval);
|
2006-09-17 20:40:15 +00:00
|
|
|
result[8] = '\0';
|
2006-07-01 12:02:30 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-01 21:45:43 +00:00
|
|
|
GIOChannel *utils_set_up_io_channel(
|
|
|
|
gint fd, GIOCondition cond, gboolean nblock, GIOFunc func, gpointer data)
|
2006-07-13 14:30:44 +00:00
|
|
|
{
|
|
|
|
GIOChannel *ioc;
|
2008-02-27 13:17:29 +00:00
|
|
|
/*const gchar *encoding;*/
|
2006-07-13 14:30:44 +00:00
|
|
|
|
2007-06-13 12:00:23 +00:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
ioc = g_io_channel_win32_new_fd(fd);
|
|
|
|
#else
|
2006-07-13 14:30:44 +00:00
|
|
|
ioc = g_io_channel_unix_new(fd);
|
2007-06-13 12:00:23 +00:00
|
|
|
#endif
|
2006-07-13 14:30:44 +00:00
|
|
|
|
2007-03-01 21:45:43 +00:00
|
|
|
if (nblock)
|
|
|
|
g_io_channel_set_flags(ioc, G_IO_FLAG_NONBLOCK, NULL);
|
2007-03-03 13:34:15 +00:00
|
|
|
|
2007-03-01 10:54:37 +00:00
|
|
|
g_io_channel_set_encoding(ioc, NULL, NULL);
|
|
|
|
/*
|
2006-07-13 14:30:44 +00:00
|
|
|
if (! g_get_charset(&encoding))
|
|
|
|
{ // hope this works reliably
|
2007-03-01 10:54:37 +00:00
|
|
|
GError *error = NULL;
|
2006-07-13 14:30:44 +00:00
|
|
|
g_io_channel_set_encoding(ioc, encoding, &error);
|
|
|
|
if (error)
|
|
|
|
{
|
2009-01-21 22:49:21 +00:00
|
|
|
geany_debug("%s: %s", G_STRFUNC, error->message);
|
2006-07-13 14:30:44 +00:00
|
|
|
g_error_free(error);
|
|
|
|
return ioc;
|
|
|
|
}
|
|
|
|
}
|
2007-03-01 10:54:37 +00:00
|
|
|
*/
|
2008-02-27 13:17:29 +00:00
|
|
|
/* "auto-close" ;-) */
|
2006-07-13 14:30:44 +00:00
|
|
|
g_io_channel_set_close_on_unref(ioc, TRUE);
|
|
|
|
|
|
|
|
g_io_add_watch(ioc, cond, func, data);
|
|
|
|
g_io_channel_unref(ioc);
|
|
|
|
|
|
|
|
return ioc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-16 22:02:31 +00:00
|
|
|
gchar **utils_read_file_in_array(const gchar *filename)
|
|
|
|
{
|
|
|
|
gchar **result = NULL;
|
|
|
|
gchar *data;
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_val_if_fail(filename != NULL, NULL);
|
2006-07-16 22:02:31 +00:00
|
|
|
|
|
|
|
g_file_get_contents(filename, &data, NULL, NULL);
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
if (data != NULL)
|
2006-07-16 22:02:31 +00:00
|
|
|
{
|
|
|
|
result = g_strsplit_set(data, "\r\n", -1);
|
2009-01-18 23:05:54 +00:00
|
|
|
g_free(data);
|
2006-07-16 22:02:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2006-07-19 11:30:59 +00:00
|
|
|
|
|
|
|
/* Contributed by Stefan Oltmanns, thanks.
|
2010-03-01 18:28:57 +00:00
|
|
|
* Replaces \\, \r, \n, \t and \uXXX by their real counterparts.
|
|
|
|
* keep_backslash is used for regex strings to leave '\\' and '\?' in place */
|
2010-03-01 18:16:28 +00:00
|
|
|
gboolean utils_str_replace_escape(gchar *string, gboolean keep_backslash)
|
2006-07-19 11:30:59 +00:00
|
|
|
{
|
2009-02-10 21:11:25 +00:00
|
|
|
gsize i, j, len;
|
2006-07-19 11:30:59 +00:00
|
|
|
guint unicodechar;
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_val_if_fail(string != NULL, FALSE);
|
|
|
|
|
2006-07-19 11:30:59 +00:00
|
|
|
j = 0;
|
2009-02-10 21:11:25 +00:00
|
|
|
len = strlen(string);
|
|
|
|
for (i = 0; i < len; i++)
|
2006-07-19 11:30:59 +00:00
|
|
|
{
|
2009-04-15 22:47:33 +00:00
|
|
|
if (string[i]=='\\')
|
2006-07-19 11:30:59 +00:00
|
|
|
{
|
|
|
|
if (i++ >= strlen(string))
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
switch (string[i])
|
|
|
|
{
|
|
|
|
case '\\':
|
2010-03-01 18:16:28 +00:00
|
|
|
if (keep_backslash)
|
|
|
|
string[j++] = '\\';
|
2006-07-19 11:30:59 +00:00
|
|
|
string[j] = '\\';
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
string[j] = '\n';
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
string[j] = '\r';
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
string[j] = '\t';
|
|
|
|
break;
|
|
|
|
#if 0
|
2008-02-27 13:17:29 +00:00
|
|
|
case 'x': /* Warning: May produce illegal utf-8 string! */
|
2006-07-19 11:30:59 +00:00
|
|
|
i += 2;
|
|
|
|
if (i >= strlen(string))
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2009-09-16 14:13:38 +00:00
|
|
|
if (isdigit(string[i - 1])) string[j] = string[i - 1] - 48;
|
|
|
|
else if (isxdigit(string[i - 1])) string[j] = tolower(string[i - 1])-87;
|
2006-07-19 11:30:59 +00:00
|
|
|
else return FALSE;
|
|
|
|
string[j] <<= 4;
|
2009-09-16 14:13:38 +00:00
|
|
|
if (isdigit(string[i])) string[j] |= string[i] - 48;
|
2006-07-19 11:30:59 +00:00
|
|
|
else if (isxdigit(string[i])) string[j] |= tolower(string[i])-87;
|
|
|
|
else return FALSE;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case 'u':
|
2010-02-25 18:30:43 +00:00
|
|
|
{
|
2006-07-19 11:30:59 +00:00
|
|
|
i += 2;
|
|
|
|
if (i >= strlen(string))
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2009-09-16 14:13:38 +00:00
|
|
|
if (isdigit(string[i - 1])) unicodechar = string[i - 1] - 48;
|
|
|
|
else if (isxdigit(string[i - 1])) unicodechar = tolower(string[i - 1])-87;
|
2006-07-19 11:30:59 +00:00
|
|
|
else return FALSE;
|
|
|
|
unicodechar <<= 4;
|
2009-09-16 14:13:38 +00:00
|
|
|
if (isdigit(string[i])) unicodechar |= string[i] - 48;
|
2006-07-19 11:30:59 +00:00
|
|
|
else if (isxdigit(string[i])) unicodechar |= tolower(string[i])-87;
|
|
|
|
else return FALSE;
|
2009-09-16 14:13:38 +00:00
|
|
|
if (((i + 2) < strlen(string)) && (isdigit(string[i + 1]) || isxdigit(string[i + 1]))
|
|
|
|
&& (isdigit(string[i + 2]) || isxdigit(string[i + 2])))
|
2006-07-19 11:30:59 +00:00
|
|
|
{
|
|
|
|
i += 2;
|
|
|
|
unicodechar <<= 8;
|
2009-09-16 14:13:38 +00:00
|
|
|
if (isdigit(string[i - 1])) unicodechar |= ((string[i - 1] - 48) << 4);
|
|
|
|
else unicodechar |= ((tolower(string[i - 1])-87) << 4);
|
|
|
|
if (isdigit(string[i])) unicodechar |= string[i] - 48;
|
2006-07-19 11:30:59 +00:00
|
|
|
else unicodechar |= tolower(string[i])-87;
|
|
|
|
}
|
2009-09-16 14:13:38 +00:00
|
|
|
if (((i + 2) < strlen(string)) && (isdigit(string[i + 1]) || isxdigit(string[i + 1]))
|
|
|
|
&& (isdigit(string[i + 2]) || isxdigit(string[i + 2])))
|
2006-07-19 11:30:59 +00:00
|
|
|
{
|
|
|
|
i += 2;
|
|
|
|
unicodechar <<= 8;
|
2009-09-16 14:13:38 +00:00
|
|
|
if (isdigit(string[i - 1])) unicodechar |= ((string[i - 1] - 48) << 4);
|
|
|
|
else unicodechar |= ((tolower(string[i - 1])-87) << 4);
|
|
|
|
if (isdigit(string[i])) unicodechar |= string[i] - 48;
|
2006-07-19 11:30:59 +00:00
|
|
|
else unicodechar |= tolower(string[i])-87;
|
|
|
|
}
|
2009-09-16 14:13:38 +00:00
|
|
|
if (unicodechar < 0x80)
|
2006-07-19 11:30:59 +00:00
|
|
|
{
|
|
|
|
string[j] = unicodechar;
|
|
|
|
}
|
|
|
|
else if (unicodechar < 0x800)
|
|
|
|
{
|
2009-09-16 14:13:38 +00:00
|
|
|
string[j] = (unsigned char) ((unicodechar >> 6) | 0xC0);
|
2006-07-19 11:30:59 +00:00
|
|
|
j++;
|
2009-09-16 14:13:38 +00:00
|
|
|
string[j] = (unsigned char) ((unicodechar & 0x3F) | 0x80);
|
2006-07-19 11:30:59 +00:00
|
|
|
}
|
|
|
|
else if (unicodechar < 0x10000)
|
|
|
|
{
|
|
|
|
string[j] = (unsigned char) ((unicodechar >> 12) | 0xE0);
|
|
|
|
j++;
|
|
|
|
string[j] = (unsigned char) (((unicodechar >> 6) & 0x3F) | 0x80);
|
|
|
|
j++;
|
|
|
|
string[j] = (unsigned char) ((unicodechar & 0x3F) | 0x80);
|
|
|
|
}
|
2008-02-27 13:17:29 +00:00
|
|
|
else if (unicodechar < 0x110000) /* more chars are not allowed in unicode */
|
2006-07-19 11:30:59 +00:00
|
|
|
{
|
|
|
|
string[j] = (unsigned char) ((unicodechar >> 18) | 0xF0);
|
|
|
|
j++;
|
|
|
|
string[j] = (unsigned char) (((unicodechar >> 12) & 0x3F) | 0x80);
|
|
|
|
j++;
|
|
|
|
string[j] = (unsigned char) (((unicodechar >> 6) & 0x3F) | 0x80);
|
|
|
|
j++;
|
|
|
|
string[j] = (unsigned char) ((unicodechar & 0x3F) | 0x80);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
break;
|
2010-02-25 18:30:43 +00:00
|
|
|
}
|
2006-07-19 11:30:59 +00:00
|
|
|
default:
|
2010-02-25 18:30:43 +00:00
|
|
|
/* unnecessary escapes are allowed */
|
2010-03-01 18:28:57 +00:00
|
|
|
if (keep_backslash)
|
|
|
|
string[j++] = '\\';
|
2010-02-25 18:30:43 +00:00
|
|
|
string[j] = string[i];
|
2006-07-19 11:30:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
string[j] = string[i];
|
|
|
|
}
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
while (j < i)
|
|
|
|
{
|
|
|
|
string[j] = 0;
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2006-07-22 01:29:10 +00:00
|
|
|
|
2006-08-03 13:27:30 +00:00
|
|
|
/* Wraps a string in place, replacing a space with a newline character.
|
|
|
|
* wrapstart is the minimum position to start wrapping or -1 for default */
|
|
|
|
gboolean utils_wrap_string(gchar *string, gint wrapstart)
|
|
|
|
{
|
|
|
|
gchar *pos, *linestart;
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
2009-04-05 21:07:40 +00:00
|
|
|
if (wrapstart < 0)
|
|
|
|
wrapstart = 80;
|
2006-08-03 13:27:30 +00:00
|
|
|
|
|
|
|
for (pos = linestart = string; *pos != '\0'; pos++)
|
|
|
|
{
|
|
|
|
if (pos - linestart >= wrapstart && *pos == ' ')
|
|
|
|
{
|
|
|
|
*pos = '\n';
|
|
|
|
linestart = pos;
|
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2006-08-12 21:36:55 +00:00
|
|
|
|
|
|
|
|
2008-02-17 18:00:42 +00:00
|
|
|
/**
|
|
|
|
* Converts the given UTF-8 encoded string into locale encoding.
|
|
|
|
* On Windows platforms, it does nothing and instead it just returns a copy of the input string.
|
|
|
|
*
|
|
|
|
* @param utf8_text UTF-8 encoded text.
|
|
|
|
*
|
|
|
|
* @return The converted string in locale encoding, or a copy of the input string if conversion
|
|
|
|
* failed. Should be freed with g_free(). If @a utf8_text is @c NULL, @c NULL is returned.
|
|
|
|
**/
|
2006-08-12 21:36:55 +00:00
|
|
|
gchar *utils_get_locale_from_utf8(const gchar *utf8_text)
|
|
|
|
{
|
2007-04-16 15:58:34 +00:00
|
|
|
#ifdef G_OS_WIN32
|
2008-02-27 13:17:29 +00:00
|
|
|
/* just do nothing on Windows platforms, this ifdef is just to prevent unwanted conversions
|
|
|
|
* which would result in wrongly converted strings */
|
2007-04-16 15:58:34 +00:00
|
|
|
return g_strdup(utf8_text);
|
|
|
|
#else
|
2007-12-21 16:34:07 +00:00
|
|
|
gchar *locale_text;
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
if (! utf8_text)
|
2007-12-21 16:34:07 +00:00
|
|
|
return NULL;
|
|
|
|
locale_text = g_locale_from_utf8(utf8_text, -1, NULL, NULL, NULL);
|
2009-04-15 22:47:33 +00:00
|
|
|
if (locale_text == NULL)
|
2007-12-21 16:34:07 +00:00
|
|
|
locale_text = g_strdup(utf8_text);
|
2006-08-12 21:36:55 +00:00
|
|
|
return locale_text;
|
2007-04-16 15:58:34 +00:00
|
|
|
#endif
|
2006-08-12 21:36:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-17 18:00:42 +00:00
|
|
|
/**
|
|
|
|
* Converts the given string (in locale encoding) into UTF-8 encoding.
|
|
|
|
* On Windows platforms, it does nothing and instead it just returns a copy of the input string.
|
|
|
|
*
|
|
|
|
* @param locale_text Text in locale encoding.
|
|
|
|
*
|
|
|
|
* @return The converted string in UTF-8 encoding, or a copy of the input string if conversion
|
|
|
|
* failed. Should be freed with g_free(). If @a locale_text is @c NULL, @c NULL is returned.
|
|
|
|
**/
|
2006-08-12 21:36:55 +00:00
|
|
|
gchar *utils_get_utf8_from_locale(const gchar *locale_text)
|
|
|
|
{
|
2007-04-16 15:58:34 +00:00
|
|
|
#ifdef G_OS_WIN32
|
2008-02-27 13:17:29 +00:00
|
|
|
/* just do nothing on Windows platforms, this ifdef is just to prevent unwanted conversions
|
|
|
|
* which would result in wrongly converted strings */
|
2007-04-16 15:58:34 +00:00
|
|
|
return g_strdup(locale_text);
|
|
|
|
#else
|
2007-12-21 16:34:07 +00:00
|
|
|
gchar *utf8_text;
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
if (! locale_text)
|
2007-12-21 16:34:07 +00:00
|
|
|
return NULL;
|
|
|
|
utf8_text = g_locale_to_utf8(locale_text, -1, NULL, NULL, NULL);
|
2009-04-15 22:47:33 +00:00
|
|
|
if (utf8_text == NULL)
|
2007-12-21 16:34:07 +00:00
|
|
|
utf8_text = g_strdup(locale_text);
|
2006-08-12 21:36:55 +00:00
|
|
|
return utf8_text;
|
2007-04-16 15:58:34 +00:00
|
|
|
#endif
|
2006-08-12 21:36:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-15 16:15:28 +00:00
|
|
|
/* Pass pointers to free after arg_count.
|
|
|
|
* The last argument must be NULL as an extra check that arg_count is correct. */
|
|
|
|
void utils_free_pointers(gsize arg_count, ...)
|
|
|
|
{
|
|
|
|
va_list a;
|
|
|
|
gsize i;
|
|
|
|
gpointer ptr;
|
|
|
|
|
|
|
|
va_start(a, arg_count);
|
|
|
|
for (i = 0; i < arg_count; i++)
|
|
|
|
{
|
|
|
|
ptr = va_arg(a, gpointer);
|
|
|
|
g_free(ptr);
|
|
|
|
}
|
|
|
|
ptr = va_arg(a, gpointer);
|
|
|
|
if (ptr)
|
|
|
|
g_warning("Wrong arg_count!");
|
|
|
|
va_end(a);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-21 15:41:24 +00:00
|
|
|
/* currently unused */
|
|
|
|
#if 0
|
2007-04-23 15:52:44 +00:00
|
|
|
/* Creates a string array deep copy of a series of non-NULL strings.
|
|
|
|
* The first argument is nothing special.
|
|
|
|
* The list must be ended with NULL.
|
|
|
|
* If first is NULL, NULL is returned. */
|
2008-02-27 14:23:13 +00:00
|
|
|
gchar **utils_strv_new(const gchar *first, ...)
|
2007-02-08 16:26:45 +00:00
|
|
|
{
|
|
|
|
gsize strvlen, i;
|
|
|
|
va_list args;
|
|
|
|
gchar *str;
|
|
|
|
gchar **strv;
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_val_if_fail(first != NULL, NULL);
|
2007-02-08 16:26:45 +00:00
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
strvlen = 1; /* for first argument */
|
2007-02-08 16:26:45 +00:00
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
/* count other arguments */
|
2007-02-08 16:26:45 +00:00
|
|
|
va_start(args, first);
|
|
|
|
for (; va_arg(args, gchar*) != NULL; strvlen++);
|
|
|
|
va_end(args);
|
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
strv = g_new(gchar*, strvlen + 1); /* +1 for NULL terminator */
|
2007-02-08 16:26:45 +00:00
|
|
|
strv[0] = g_strdup(first);
|
|
|
|
|
|
|
|
va_start(args, first);
|
|
|
|
for (i = 1; str = va_arg(args, gchar*), str != NULL; i++)
|
|
|
|
{
|
|
|
|
strv[i] = g_strdup(str);
|
|
|
|
}
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
strv[i] = NULL;
|
|
|
|
return strv;
|
|
|
|
}
|
2010-10-21 15:41:24 +00:00
|
|
|
#endif
|
2007-02-08 16:26:45 +00:00
|
|
|
|
|
|
|
|
2008-02-17 18:00:42 +00:00
|
|
|
/**
|
2010-03-15 13:01:16 +00:00
|
|
|
* Creates a directory if it doesn't already exist.
|
|
|
|
* Creates intermediate parent directories as needed, too.
|
2008-11-16 17:52:38 +00:00
|
|
|
* The permissions of the created directory are set 0700.
|
2008-02-17 18:00:42 +00:00
|
|
|
*
|
|
|
|
* @param path The path of the directory to create, in locale encoding.
|
|
|
|
* @param create_parent_dirs Whether to create intermediate parent directories if necessary.
|
|
|
|
*
|
|
|
|
* @return 0 if the directory was successfully created, otherwise the @c errno of the
|
|
|
|
* failed operation is returned.
|
|
|
|
**/
|
2007-03-10 17:26:03 +00:00
|
|
|
gint utils_mkdir(const gchar *path, gboolean create_parent_dirs)
|
2007-01-17 23:44:08 +00:00
|
|
|
{
|
2007-03-10 17:26:03 +00:00
|
|
|
gint mode = 0700;
|
|
|
|
gint result;
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
if (path == NULL || strlen(path) == 0)
|
2007-01-17 23:44:08 +00:00
|
|
|
return EFAULT;
|
|
|
|
|
2007-03-10 17:26:03 +00:00
|
|
|
result = (create_parent_dirs) ? g_mkdir_with_parents(path, mode) : g_mkdir(path, mode);
|
|
|
|
if (result != 0)
|
|
|
|
return errno;
|
2007-01-17 23:44:08 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2007-03-10 17:26:03 +00:00
|
|
|
|
|
|
|
|
2009-09-29 13:51:54 +00:00
|
|
|
/**
|
2009-09-29 12:10:17 +00:00
|
|
|
* Gets a list of files from the specified directory.
|
2009-09-17 16:47:45 +00:00
|
|
|
* Locale encoding is expected for @a path and used for the file list. The list and the data
|
|
|
|
* in the list should be freed after use, e.g.:
|
|
|
|
* @code
|
|
|
|
* g_slist_foreach(list, (GFunc) g_free, NULL);
|
|
|
|
* g_slist_free(list); @endcode
|
2008-02-17 18:00:42 +00:00
|
|
|
*
|
2009-09-29 12:10:17 +00:00
|
|
|
* @note If you don't need a list you should use the foreach_dir() macro instead -
|
|
|
|
* it's more efficient.
|
2008-02-17 18:00:42 +00:00
|
|
|
*
|
2009-09-17 16:47:45 +00:00
|
|
|
* @param path The path of the directory to scan, in locale encoding.
|
2009-09-29 12:10:17 +00:00
|
|
|
* @param full_path Whether to include the full path for each filename in the list. Obviously this
|
|
|
|
* will use more memory.
|
|
|
|
* @param sort Whether to sort alphabetically (UTF-8 safe).
|
2009-09-17 16:47:45 +00:00
|
|
|
* @param error The location for storing a possible error, or @c NULL.
|
|
|
|
*
|
2009-09-29 12:10:17 +00:00
|
|
|
* @return A newly allocated list or @c NULL if no files were found. The list and its data should be
|
|
|
|
* freed when no longer needed.
|
|
|
|
* @see utils_get_file_list().
|
2008-02-17 18:00:42 +00:00
|
|
|
**/
|
2009-09-29 12:10:17 +00:00
|
|
|
GSList *utils_get_file_list_full(const gchar *path, gboolean full_path, gboolean sort, GError **error)
|
2007-05-11 11:42:00 +00:00
|
|
|
{
|
|
|
|
GSList *list = NULL;
|
|
|
|
GDir *dir;
|
2009-09-17 16:47:45 +00:00
|
|
|
const gchar *filename;
|
2007-05-11 11:42:00 +00:00
|
|
|
|
|
|
|
if (error)
|
|
|
|
*error = NULL;
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_val_if_fail(path != NULL, NULL);
|
2007-05-11 11:42:00 +00:00
|
|
|
|
|
|
|
dir = g_dir_open(path, 0, error);
|
2009-04-15 22:47:33 +00:00
|
|
|
if (dir == NULL)
|
2007-05-11 11:42:00 +00:00
|
|
|
return NULL;
|
|
|
|
|
2009-09-17 16:47:45 +00:00
|
|
|
foreach_dir(filename, dir)
|
2007-05-11 11:42:00 +00:00
|
|
|
{
|
2011-03-10 22:27:04 +00:00
|
|
|
list = g_slist_prepend(list, full_path ?
|
2009-09-29 12:10:17 +00:00
|
|
|
g_build_path(G_DIR_SEPARATOR_S, path, filename, NULL) : g_strdup(filename));
|
2007-05-11 11:42:00 +00:00
|
|
|
}
|
|
|
|
g_dir_close(dir);
|
2009-09-21 12:34:16 +00:00
|
|
|
/* sorting last is quicker than on insertion */
|
2009-09-29 12:10:17 +00:00
|
|
|
if (sort)
|
|
|
|
list = g_slist_sort(list, (GCompareFunc) utils_str_casecmp);
|
2011-03-10 22:27:04 +00:00
|
|
|
else
|
|
|
|
list = g_slist_reverse(list);
|
2009-09-29 12:10:17 +00:00
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a sorted list of files from the specified directory.
|
|
|
|
* Locale encoding is expected for @a path and used for the file list. The list and the data
|
|
|
|
* in the list should be freed after use, e.g.:
|
|
|
|
* @code
|
|
|
|
* g_slist_foreach(list, (GFunc) g_free, NULL);
|
|
|
|
* g_slist_free(list); @endcode
|
|
|
|
*
|
|
|
|
* @param path The path of the directory to scan, in locale encoding.
|
|
|
|
* @param length The location to store the number of non-@c NULL data items in the list,
|
|
|
|
* unless @c NULL.
|
|
|
|
* @param error The location for storing a possible error, or @c NULL.
|
|
|
|
*
|
|
|
|
* @return A newly allocated list or @c NULL if no files were found. The list and its data should be
|
|
|
|
* freed when no longer needed.
|
|
|
|
* @see utils_get_file_list_full().
|
|
|
|
**/
|
|
|
|
GSList *utils_get_file_list(const gchar *path, guint *length, GError **error)
|
|
|
|
{
|
|
|
|
GSList *list = utils_get_file_list_full(path, FALSE, TRUE, error);
|
2007-05-11 11:42:00 +00:00
|
|
|
|
|
|
|
if (length)
|
2009-09-29 12:10:17 +00:00
|
|
|
*length = g_slist_length(list);
|
2007-05-11 11:42:00 +00:00
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-07 19:01:55 +00:00
|
|
|
/* returns TRUE if any letter in str is a capital, FALSE otherwise. Should be Unicode safe. */
|
|
|
|
gboolean utils_str_has_upper(const gchar *str)
|
|
|
|
{
|
|
|
|
gunichar c;
|
|
|
|
|
2009-04-05 21:07:40 +00:00
|
|
|
if (! NZV(str) || ! g_utf8_validate(str, -1, NULL))
|
2007-09-07 19:01:55 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
while (*str != '\0')
|
|
|
|
{
|
|
|
|
c = g_utf8_get_char(str);
|
2008-02-27 13:17:29 +00:00
|
|
|
/* check only letters and stop once the first non-capital was found */
|
2007-09-07 19:01:55 +00:00
|
|
|
if (g_unichar_isalpha(c) && g_unichar_isupper(c))
|
|
|
|
return TRUE;
|
2008-03-13 17:53:03 +00:00
|
|
|
/* FIXME don't write a const string */
|
2007-09-07 19:01:55 +00:00
|
|
|
str = g_utf8_next_char(str);
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
2007-09-11 15:21:11 +00:00
|
|
|
|
|
|
|
|
2009-01-11 21:05:03 +00:00
|
|
|
static guint utils_string_replace_helper(GString *haystack, const gchar *needle,
|
|
|
|
const gchar *replace, const guint max_replaces)
|
|
|
|
{
|
|
|
|
const gchar *stack, *match;
|
|
|
|
guint ret = 0;
|
|
|
|
gssize pos;
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_val_if_fail(haystack != NULL, 0);
|
|
|
|
if (haystack->len == 0)
|
2009-01-11 21:05:03 +00:00
|
|
|
return FALSE;
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_val_if_fail(NZV(needle), 0);
|
2009-01-11 21:05:03 +00:00
|
|
|
|
|
|
|
stack = haystack->str;
|
|
|
|
if (! (match = strstr(stack, needle)))
|
|
|
|
return 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
pos = match - haystack->str;
|
|
|
|
g_string_erase(haystack, pos, strlen(needle));
|
|
|
|
|
|
|
|
/* make next search after removed matching text.
|
|
|
|
* (we have to be careful to only use haystack->str as its address may change) */
|
|
|
|
stack = haystack->str + pos;
|
|
|
|
|
2009-04-05 21:07:40 +00:00
|
|
|
if (G_LIKELY(replace))
|
2009-01-11 21:05:03 +00:00
|
|
|
{
|
|
|
|
g_string_insert(haystack, pos, replace);
|
|
|
|
stack = haystack->str + pos + strlen(replace); /* skip past replacement */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (++ret != max_replaces && (match = strstr(stack, needle)));
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-17 18:00:42 +00:00
|
|
|
/**
|
2009-07-21 22:09:43 +00:00
|
|
|
* Replaces all occurrences of @a needle in @a haystack with @a replace.
|
2008-11-13 17:19:52 +00:00
|
|
|
* As of Geany 0.16, @a replace can match @a needle, so the following will work:
|
|
|
|
* @code utils_string_replace_all(text, "\n", "\r\n"); @endcode
|
2008-02-17 18:00:42 +00:00
|
|
|
*
|
2008-11-13 17:19:52 +00:00
|
|
|
* @param haystack The input string to operate on. This string is modified in place.
|
|
|
|
* @param needle The string which should be replaced.
|
2009-07-21 22:09:43 +00:00
|
|
|
* @param replace The replacement for @a needle.
|
2008-02-17 18:00:42 +00:00
|
|
|
*
|
2010-03-12 18:15:48 +00:00
|
|
|
* @return Number of replacements made.
|
2008-02-17 18:00:42 +00:00
|
|
|
**/
|
2009-01-11 21:05:03 +00:00
|
|
|
guint utils_string_replace_all(GString *haystack, const gchar *needle, const gchar *replace)
|
2007-09-11 15:21:11 +00:00
|
|
|
{
|
2009-01-11 21:05:03 +00:00
|
|
|
return utils_string_replace_helper(haystack, needle, replace, 0);
|
|
|
|
}
|
2008-11-13 17:19:52 +00:00
|
|
|
|
|
|
|
|
2009-01-30 16:12:25 +00:00
|
|
|
/**
|
2010-03-12 18:15:48 +00:00
|
|
|
* Replaces only the first occurrence of @a needle in @a haystack
|
2009-07-21 22:09:43 +00:00
|
|
|
* with @a replace.
|
2009-01-30 16:12:25 +00:00
|
|
|
* For details, see utils_string_replace_all().
|
2009-01-11 21:05:03 +00:00
|
|
|
*
|
|
|
|
* @param haystack The input string to operate on. This string is modified in place.
|
|
|
|
* @param needle The string which should be replaced.
|
2009-07-21 22:09:43 +00:00
|
|
|
* @param replace The replacement for @a needle.
|
2009-01-11 21:05:03 +00:00
|
|
|
*
|
2010-03-12 18:15:48 +00:00
|
|
|
* @return Number of replacements made.
|
2009-01-30 18:53:23 +00:00
|
|
|
*
|
|
|
|
* @since 0.16
|
2009-01-11 21:05:03 +00:00
|
|
|
*/
|
|
|
|
guint utils_string_replace_first(GString *haystack, const gchar *needle, const gchar *replace)
|
|
|
|
{
|
|
|
|
return utils_string_replace_helper(haystack, needle, replace, 1);
|
2007-09-11 15:21:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-21 17:25:58 +00:00
|
|
|
/* Get project or default startup directory (if set), or NULL. */
|
2008-02-20 11:24:23 +00:00
|
|
|
const gchar *utils_get_default_dir_utf8(void)
|
2007-12-21 17:25:58 +00:00
|
|
|
{
|
|
|
|
if (app->project && NZV(app->project->base_path))
|
|
|
|
{
|
|
|
|
return app->project->base_path;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NZV(prefs.default_open_path))
|
|
|
|
{
|
|
|
|
return prefs.default_open_path;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-24 10:27:32 +00:00
|
|
|
static gboolean check_error(GError **error)
|
|
|
|
{
|
2009-04-15 22:47:33 +00:00
|
|
|
if (error != NULL && *error != NULL)
|
2008-02-24 10:27:32 +00:00
|
|
|
{
|
|
|
|
/* imitate the GLib warning */
|
|
|
|
g_warning(
|
|
|
|
"GError set over the top of a previous GError or uninitialized memory.\n"
|
|
|
|
"This indicates a bug in someone's code. You must ensure an error is NULL "
|
|
|
|
"before it's set.");
|
|
|
|
/* after returning the code may segfault, but we don't care because we should
|
|
|
|
* make sure *error is NULL */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-03-15 13:01:16 +00:00
|
|
|
* Wraps g_spawn_sync() and internally calls this function on Unix-like
|
2008-02-24 10:27:32 +00:00
|
|
|
* systems. On Win32 platforms, it uses the Windows API.
|
|
|
|
*
|
|
|
|
* @param dir The child's current working directory, or @a NULL to inherit parent's.
|
|
|
|
* @param argv The child's argument vector.
|
|
|
|
* @param env The child's environment, or @a NULL to inherit parent's.
|
|
|
|
* @param flags Flags from GSpawnFlags.
|
|
|
|
* @param child_setup A function to run in the child just before exec().
|
|
|
|
* @param user_data The user data for child_setup.
|
|
|
|
* @param std_out The return location for child output.
|
|
|
|
* @param std_err The return location for child error messages.
|
|
|
|
* @param exit_status The child exit status, as returned by waitpid().
|
|
|
|
* @param error The return location for error or @a NULL.
|
|
|
|
*
|
2009-07-21 22:09:43 +00:00
|
|
|
* @return @c TRUE on success, @c FALSE if an error was set.
|
2008-02-24 10:27:32 +00:00
|
|
|
**/
|
|
|
|
gboolean utils_spawn_sync(const gchar *dir, gchar **argv, gchar **env, GSpawnFlags flags,
|
|
|
|
GSpawnChildSetupFunc child_setup, gpointer user_data, gchar **std_out,
|
|
|
|
gchar **std_err, gint *exit_status, GError **error)
|
|
|
|
{
|
|
|
|
gboolean result;
|
|
|
|
|
|
|
|
if (! check_error(error))
|
|
|
|
return FALSE;
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
if (argv == NULL)
|
2008-02-24 10:27:32 +00:00
|
|
|
{
|
|
|
|
*error = g_error_new(G_SPAWN_ERROR, G_SPAWN_ERROR_FAILED, "argv must not be NULL");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (std_out)
|
|
|
|
*std_out = NULL;
|
|
|
|
|
|
|
|
if (std_err)
|
|
|
|
*std_err = NULL;
|
|
|
|
|
|
|
|
#ifdef G_OS_WIN32
|
2008-02-27 16:08:07 +00:00
|
|
|
result = win32_spawn(dir, argv, env, flags, std_out, std_err, exit_status, error);
|
2008-02-24 10:27:32 +00:00
|
|
|
#else
|
|
|
|
result = g_spawn_sync(dir, argv, env, flags, NULL, NULL, std_out, std_err, exit_status, error);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-03-15 13:01:16 +00:00
|
|
|
* Wraps g_spawn_async() and internally calls this function on Unix-like
|
2008-02-24 10:27:32 +00:00
|
|
|
* systems. On Win32 platforms, it uses the Windows API.
|
|
|
|
*
|
|
|
|
* @param dir The child's current working directory, or @a NULL to inherit parent's.
|
|
|
|
* @param argv The child's argument vector.
|
|
|
|
* @param env The child's environment, or @a NULL to inherit parent's.
|
|
|
|
* @param flags Flags from GSpawnFlags.
|
|
|
|
* @param child_setup A function to run in the child just before exec().
|
|
|
|
* @param user_data The user data for child_setup.
|
|
|
|
* @param child_pid The return location for child process ID, or NULL.
|
|
|
|
* @param error The return location for error or @a NULL.
|
|
|
|
*
|
2009-07-21 22:09:43 +00:00
|
|
|
* @return @c TRUE on success, @c FALSE if an error was set.
|
2008-02-24 10:27:32 +00:00
|
|
|
**/
|
|
|
|
gboolean utils_spawn_async(const gchar *dir, gchar **argv, gchar **env, GSpawnFlags flags,
|
|
|
|
GSpawnChildSetupFunc child_setup, gpointer user_data, GPid *child_pid,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
gboolean result;
|
|
|
|
|
|
|
|
if (! check_error(error))
|
|
|
|
return FALSE;
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
if (argv == NULL)
|
2008-02-24 10:27:32 +00:00
|
|
|
{
|
|
|
|
*error = g_error_new(G_SPAWN_ERROR, G_SPAWN_ERROR_FAILED, "argv must not be NULL");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef G_OS_WIN32
|
2008-02-27 16:08:07 +00:00
|
|
|
result = win32_spawn(dir, argv, env, flags, NULL, NULL, NULL, error);
|
2008-02-24 10:27:32 +00:00
|
|
|
#else
|
|
|
|
result = g_spawn_async(dir, argv, env, flags, NULL, NULL, child_pid, error);
|
|
|
|
#endif
|
|
|
|
return result;
|
|
|
|
}
|
2008-11-26 13:15:53 +00:00
|
|
|
|
|
|
|
|
2011-03-17 12:17:04 +00:00
|
|
|
static gboolean utils_string_vappend(GString *buffer, const gchar *sep, va_list args)
|
|
|
|
{
|
|
|
|
const gchar *str = va_arg(args, const gchar *);
|
|
|
|
|
|
|
|
if (!str)
|
|
|
|
return FALSE;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
g_string_append(buffer, str);
|
|
|
|
str = va_arg(args, const gchar *);
|
|
|
|
if (str && sep)
|
|
|
|
g_string_append(buffer, sep);
|
|
|
|
}
|
|
|
|
while (str);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-26 13:15:53 +00:00
|
|
|
/* Similar to g_build_path() but (re)using a fixed buffer, so never free it.
|
|
|
|
* This assumes a small enough resulting string length to be kept without freeing,
|
2009-07-20 11:21:05 +00:00
|
|
|
* but this should be the case for filenames.
|
|
|
|
* @warning As the buffer is reused, you can't call this recursively, e.g. for a
|
|
|
|
* function argument and within the function called. */
|
2008-11-26 13:15:53 +00:00
|
|
|
const gchar *utils_build_path(const gchar *first, ...)
|
|
|
|
{
|
2008-11-29 18:34:56 +00:00
|
|
|
static GString *buffer = NULL;
|
2008-11-26 13:15:53 +00:00
|
|
|
va_list args;
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
if (! buffer)
|
2008-11-26 13:15:53 +00:00
|
|
|
buffer = g_string_new(first);
|
|
|
|
else
|
|
|
|
g_string_assign(buffer, first);
|
|
|
|
|
2011-03-17 12:17:04 +00:00
|
|
|
g_string_append_c(buffer, G_DIR_SEPARATOR);
|
2008-11-26 13:15:53 +00:00
|
|
|
|
2011-03-17 12:17:04 +00:00
|
|
|
va_start(args, first);
|
|
|
|
utils_string_vappend(buffer, G_DIR_SEPARATOR_S, args);
|
2008-11-26 13:15:53 +00:00
|
|
|
va_end(args);
|
2011-03-17 12:17:04 +00:00
|
|
|
return buffer->str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Concatenates a path with other strings.
|
|
|
|
* @param path A path, which will have a separator added before the other strings.
|
|
|
|
* @param ... Strings to concatenate (no directory separators will be
|
|
|
|
* inserted between them).
|
|
|
|
* E.g. filename = utils_make_filename(app->datadir, "filetypes.", ext, NULL); */
|
2011-04-11 14:26:51 +00:00
|
|
|
gchar *utils_make_filename(const gchar *path, ...)
|
2011-03-17 12:17:04 +00:00
|
|
|
{
|
|
|
|
static GString *buffer = NULL;
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
if (! buffer)
|
|
|
|
buffer = g_string_new(path);
|
|
|
|
else
|
|
|
|
g_string_assign(buffer, path);
|
2008-11-26 13:15:53 +00:00
|
|
|
|
2011-03-17 12:17:04 +00:00
|
|
|
g_string_append_c(buffer, G_DIR_SEPARATOR);
|
|
|
|
|
|
|
|
va_start(args, path);
|
|
|
|
utils_string_vappend(buffer, NULL, args);
|
|
|
|
va_end(args);
|
2011-04-11 14:26:51 +00:00
|
|
|
return g_strdup(buffer->str);
|
2008-11-26 13:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-09 18:21:12 +00:00
|
|
|
/* Retrieves the path for the given URI.
|
|
|
|
* It returns:
|
|
|
|
* - the path which was determined by g_filename_from_uri() or GIO
|
|
|
|
* - NULL if the URI is non-local and gvfs-fuse is not installed
|
|
|
|
* - a new copy of 'uri' if it is not an URI. */
|
|
|
|
gchar *utils_get_path_from_uri(const gchar *uri)
|
|
|
|
{
|
|
|
|
gchar *locale_filename;
|
|
|
|
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_val_if_fail(uri != NULL, NULL);
|
2009-01-09 18:21:12 +00:00
|
|
|
|
|
|
|
if (! utils_is_uri(uri))
|
|
|
|
return g_strdup(uri);
|
|
|
|
|
|
|
|
/* this will work only for 'file://' URIs */
|
|
|
|
locale_filename = g_filename_from_uri(uri, NULL, NULL);
|
|
|
|
#ifdef HAVE_GIO
|
|
|
|
/* g_filename_from_uri() failed, so we probably have a non-local URI */
|
|
|
|
if (locale_filename == NULL)
|
|
|
|
{
|
|
|
|
GFile *file = g_file_new_for_uri(uri);
|
|
|
|
locale_filename = g_file_get_path(file);
|
|
|
|
g_object_unref(file);
|
|
|
|
if (locale_filename == NULL)
|
|
|
|
{
|
|
|
|
geany_debug("The URI '%s' could not be resolved to a local path. This means "
|
|
|
|
"that the URI is invalid or that you don't have gvfs-fuse installed.", uri);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (locale_filename == NULL)
|
|
|
|
geany_debug("The URI '%s' could not be resolved to a local path. This means that the "
|
|
|
|
"URI is invalid or that Geany can't use GVFS (maybe it is not installed).", uri);
|
|
|
|
|
|
|
|
return locale_filename;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
gboolean utils_is_uri(const gchar *uri)
|
|
|
|
{
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_val_if_fail(uri != NULL, FALSE);
|
2009-01-09 18:21:12 +00:00
|
|
|
|
|
|
|
return (strstr(uri, "://") != NULL);
|
|
|
|
}
|
2009-01-09 18:22:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* path should be in locale encoding */
|
|
|
|
gboolean utils_is_remote_path(const gchar *path)
|
|
|
|
{
|
2009-04-15 22:47:33 +00:00
|
|
|
g_return_val_if_fail(path != NULL, FALSE);
|
2009-01-09 18:22:07 +00:00
|
|
|
|
|
|
|
/* if path is an URI and it doesn't start "file://", we take it as remote */
|
|
|
|
if (utils_is_uri(path) && strncmp(path, "file:", 5) != 0)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
#ifndef G_OS_WIN32
|
2009-01-19 19:30:18 +00:00
|
|
|
if (glib_check_version(2, 16, 0) == NULL) /* no need to check for this with GLib < 2.16 */
|
2009-01-09 18:22:07 +00:00
|
|
|
{
|
|
|
|
static gchar *fuse_path = NULL;
|
|
|
|
static gsize len = 0;
|
2009-01-19 19:30:18 +00:00
|
|
|
|
2009-04-05 21:07:40 +00:00
|
|
|
if (G_UNLIKELY(fuse_path == NULL))
|
2009-01-09 18:22:07 +00:00
|
|
|
{
|
|
|
|
fuse_path = g_build_filename(g_get_home_dir(), ".gvfs", NULL);
|
|
|
|
len = strlen(fuse_path);
|
|
|
|
}
|
|
|
|
/* Comparing the file path against a hardcoded path is not the most elegant solution
|
|
|
|
* but for now it is better than nothing. Ideally, g_file_new_for_path() should create
|
|
|
|
* proper GFile objects for Fuse paths, but it only does in future GVFS
|
|
|
|
* versions (gvfs 1.1.1). */
|
|
|
|
return (strncmp(path, fuse_path, len) == 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-20 15:37:02 +00:00
|
|
|
/* Remove all relative and untidy elements from the path of @a filename.
|
|
|
|
* @param filename must be a valid absolute path.
|
|
|
|
* @see tm_get_real_path() - also resolves links. */
|
|
|
|
void utils_tidy_path(gchar *filename)
|
|
|
|
{
|
|
|
|
GString *str = g_string_new(filename);
|
|
|
|
const gchar *c, *needle;
|
|
|
|
gchar *tmp;
|
|
|
|
gssize pos;
|
2009-08-29 19:06:19 +00:00
|
|
|
gboolean preserve_double_backslash = FALSE;
|
2009-07-20 15:37:02 +00:00
|
|
|
|
|
|
|
g_return_if_fail(g_path_is_absolute(filename));
|
|
|
|
|
2009-08-29 19:06:19 +00:00
|
|
|
if (str->len >= 2 && strncmp(str->str, "\\\\", 2) == 0)
|
|
|
|
preserve_double_backslash = TRUE;
|
|
|
|
|
2009-07-20 15:37:02 +00:00
|
|
|
/* replace "/./" and "//" */
|
|
|
|
utils_string_replace_all(str, G_DIR_SEPARATOR_S "." G_DIR_SEPARATOR_S, G_DIR_SEPARATOR_S);
|
|
|
|
utils_string_replace_all(str, G_DIR_SEPARATOR_S G_DIR_SEPARATOR_S, G_DIR_SEPARATOR_S);
|
|
|
|
|
2009-08-29 19:06:19 +00:00
|
|
|
if (preserve_double_backslash)
|
|
|
|
g_string_prepend(str, "\\");
|
|
|
|
|
2009-09-14 11:14:23 +00:00
|
|
|
/* replace "/../" */
|
|
|
|
needle = G_DIR_SEPARATOR_S ".." G_DIR_SEPARATOR_S;
|
2009-07-20 15:37:02 +00:00
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
c = strstr(str->str, needle);
|
|
|
|
if (c == NULL)
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pos = c - str->str;
|
|
|
|
if (pos <= 3)
|
|
|
|
break; /* bad path */
|
|
|
|
|
2009-09-14 11:14:23 +00:00
|
|
|
/* replace "/../" */
|
|
|
|
g_string_erase(str, pos, strlen(needle));
|
|
|
|
g_string_insert_c(str, pos, G_DIR_SEPARATOR);
|
2009-07-20 15:37:02 +00:00
|
|
|
|
2009-09-14 11:14:23 +00:00
|
|
|
tmp = g_strndup(str->str, pos); /* path up to "/../" */
|
2009-07-20 15:37:02 +00:00
|
|
|
c = g_strrstr(tmp, G_DIR_SEPARATOR_S);
|
|
|
|
g_return_if_fail(c);
|
|
|
|
|
|
|
|
pos = c - tmp; /* position of previous "/" */
|
|
|
|
g_string_erase(str, pos, strlen(c));
|
|
|
|
g_free(tmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_return_if_fail(strlen(str->str) <= strlen(filename));
|
|
|
|
strcpy(filename, str->str);
|
|
|
|
g_string_free(str, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-20 23:10:46 +00:00
|
|
|
/**
|
2010-03-15 13:01:16 +00:00
|
|
|
* Removes characters from a string, in place.
|
2009-07-20 23:10:46 +00:00
|
|
|
*
|
2009-07-23 11:00:32 +00:00
|
|
|
* @param string String to search.
|
2009-07-20 23:10:46 +00:00
|
|
|
* @param chars Characters to remove.
|
|
|
|
*
|
2009-07-23 11:00:32 +00:00
|
|
|
* @return @a string - return value is only useful when nesting function calls, e.g.:
|
|
|
|
* @code str = utils_str_remove_chars(g_strdup("f_o_o"), "_"); @endcode
|
|
|
|
*
|
|
|
|
* @see @c g_strdelimit.
|
2009-07-20 23:10:46 +00:00
|
|
|
**/
|
2009-07-23 11:00:32 +00:00
|
|
|
gchar *utils_str_remove_chars(gchar *string, const gchar *chars)
|
2009-07-20 23:10:46 +00:00
|
|
|
{
|
2009-07-23 11:00:32 +00:00
|
|
|
const gchar *r;
|
|
|
|
gchar *w = string;
|
2009-07-20 23:10:46 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail(string, NULL);
|
2011-03-24 22:00:18 +00:00
|
|
|
if (G_UNLIKELY(! NZV(chars)))
|
2009-07-23 11:00:32 +00:00
|
|
|
return string;
|
2009-07-20 23:10:46 +00:00
|
|
|
|
2009-07-23 11:00:32 +00:00
|
|
|
foreach_str(r, string)
|
2009-07-20 23:10:46 +00:00
|
|
|
{
|
2009-07-23 11:00:32 +00:00
|
|
|
if (!strchr(chars, *r))
|
|
|
|
*w++ = *r;
|
2009-07-20 23:10:46 +00:00
|
|
|
}
|
2009-07-23 11:00:32 +00:00
|
|
|
*w = 0x0;
|
|
|
|
return string;
|
2009-07-20 23:10:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-04 14:47:07 +00:00
|
|
|
static void utils_slist_remove_next(GSList *node)
|
|
|
|
{
|
|
|
|
GSList *old = node->next;
|
|
|
|
|
|
|
|
g_return_if_fail(old);
|
|
|
|
|
|
|
|
node->next = old->next;
|
|
|
|
g_slist_free_1(old);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Gets list of sorted filenames with no path and no duplicates from user and system config */
|
|
|
|
GSList *utils_get_config_files(const gchar *subdir)
|
|
|
|
{
|
|
|
|
gchar *path = g_build_path(G_DIR_SEPARATOR_S, app->configdir, subdir, NULL);
|
|
|
|
GSList *list = utils_get_file_list_full(path, FALSE, FALSE, NULL);
|
|
|
|
GSList *syslist, *node;
|
|
|
|
|
|
|
|
if (!list)
|
|
|
|
{
|
|
|
|
utils_mkdir(path, FALSE);
|
|
|
|
}
|
|
|
|
setptr(path, g_build_path(G_DIR_SEPARATOR_S, app->datadir, subdir, NULL));
|
|
|
|
syslist = utils_get_file_list_full(path, FALSE, FALSE, NULL);
|
|
|
|
/* merge lists */
|
|
|
|
list = g_slist_concat(list, syslist);
|
|
|
|
|
|
|
|
list = g_slist_sort(list, (GCompareFunc) utils_str_casecmp);
|
|
|
|
/* remove duplicates (next to each other after sorting) */
|
|
|
|
foreach_slist(node, list)
|
|
|
|
{
|
|
|
|
if (node->next && utils_str_equal(node->next->data, node->data))
|
|
|
|
{
|
|
|
|
g_free(node->next->data);
|
|
|
|
utils_slist_remove_next(node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_free(path);
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-23 22:59:36 +00:00
|
|
|
/* Suffix can be NULL or a string which should be appended to the Help URL like
|
|
|
|
* an anchor link, e.g. "#some_anchor". */
|
|
|
|
gchar *utils_get_help_url(const gchar *suffix)
|
|
|
|
{
|
|
|
|
gint skip;
|
|
|
|
gchar *uri;
|
|
|
|
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
skip = 8;
|
|
|
|
uri = g_strconcat("file:///", app->docdir, "/Manual.html", NULL);
|
|
|
|
g_strdelimit(uri, "\\", '/'); /* replace '\\' by '/' */
|
|
|
|
#else
|
|
|
|
skip = 7;
|
2010-11-01 15:17:22 +00:00
|
|
|
uri = g_strconcat("file://", app->docdir, "/index.html", NULL);
|
2009-11-23 22:59:36 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (! g_file_test(uri + skip, G_FILE_TEST_IS_REGULAR))
|
|
|
|
{ /* fall back to online documentation if it is not found on the hard disk */
|
|
|
|
g_free(uri);
|
|
|
|
uri = g_strconcat(GEANY_HOMEPAGE, "manual/", VERSION, "/index.html", NULL);
|
|
|
|
}
|
2010-01-01 22:55:18 +00:00
|
|
|
|
2009-11-23 22:59:36 +00:00
|
|
|
if (suffix != NULL)
|
|
|
|
{
|
|
|
|
setptr(uri, g_strconcat(uri, suffix, NULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
return uri;
|
|
|
|
}
|
|
|
|
|
2010-01-24 14:18:00 +00:00
|
|
|
|
|
|
|
static gboolean str_in_array(const gchar **haystack, const gchar *needle)
|
|
|
|
{
|
|
|
|
const gchar **p;
|
|
|
|
|
|
|
|
for (p = haystack; *p != NULL; ++p)
|
|
|
|
{
|
|
|
|
if (utils_str_equal(*p, needle))
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-15 14:48:43 +00:00
|
|
|
/**
|
|
|
|
* Copies the current environment into a new array.
|
|
|
|
* @a exclude_vars is a @c NULL-terminated array of variable names which should be not copied.
|
2010-01-24 14:18:00 +00:00
|
|
|
* All further arguments are key, value pairs of variables which should be added to
|
|
|
|
* the environment.
|
|
|
|
*
|
2010-03-15 14:48:43 +00:00
|
|
|
* The argument list must be @c NULL-terminated.
|
|
|
|
*
|
|
|
|
* @param exclude_vars @c NULL-terminated array of variable names to exclude.
|
|
|
|
* @param first_varname Name of the first variable to copy into the new array.
|
|
|
|
* @param ... Key-value pairs of variable names and values, @c NULL-terminated.
|
|
|
|
*
|
|
|
|
* @return The new environment array.
|
|
|
|
**/
|
2010-01-24 14:18:00 +00:00
|
|
|
gchar **utils_copy_environment(const gchar **exclude_vars, const gchar *first_varname, ...)
|
|
|
|
{
|
|
|
|
gchar **result;
|
|
|
|
gchar **p;
|
|
|
|
gchar **env;
|
|
|
|
va_list args;
|
|
|
|
const gchar *key, *value;
|
|
|
|
guint n, o;
|
|
|
|
|
|
|
|
/* get all the environ variables */
|
|
|
|
env = g_listenv();
|
|
|
|
|
|
|
|
/* count the additional variables */
|
|
|
|
va_start(args, first_varname);
|
|
|
|
for (o = 1; va_arg(args, gchar*) != NULL; o++);
|
|
|
|
va_end(args);
|
|
|
|
/* the passed arguments should be even (key, value pairs) */
|
|
|
|
g_return_val_if_fail(o % 2 == 0, NULL);
|
|
|
|
|
|
|
|
o /= 2;
|
|
|
|
|
|
|
|
/* create an array large enough to hold the new environment */
|
|
|
|
n = g_strv_length(env);
|
|
|
|
/* 'n + o + 1' could leak a little bit when exclude_vars is set */
|
|
|
|
result = g_new(gchar *, n + o + 1);
|
|
|
|
|
|
|
|
/* copy the environment */
|
|
|
|
for (n = 0, p = env; *p != NULL; ++p)
|
|
|
|
{
|
|
|
|
/* copy the variable */
|
|
|
|
value = g_getenv(*p);
|
|
|
|
if (G_LIKELY(value != NULL))
|
|
|
|
{
|
|
|
|
/* skip excluded variables */
|
|
|
|
if (exclude_vars != NULL && str_in_array(exclude_vars, *p))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
result[n++] = g_strconcat(*p, "=", value, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_strfreev(env);
|
|
|
|
|
|
|
|
/* now add additional variables */
|
|
|
|
va_start(args, first_varname);
|
|
|
|
key = first_varname;
|
|
|
|
value = va_arg(args, gchar*);
|
|
|
|
while (key != NULL)
|
|
|
|
{
|
|
|
|
result[n++] = g_strconcat(key, "=", value, NULL);
|
|
|
|
|
|
|
|
key = va_arg(args, gchar*);
|
|
|
|
if (key == NULL)
|
|
|
|
break;
|
|
|
|
value = va_arg(args, gchar*);
|
|
|
|
}
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
result[n] = NULL;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-05 11:07:10 +00:00
|
|
|
/* Joins @a first and @a second into a new string vector, freeing the originals.
|
|
|
|
* The original contents are reused. */
|
|
|
|
gchar **utils_strv_join(gchar **first, gchar **second)
|
|
|
|
{
|
|
|
|
gchar **strv;
|
|
|
|
gchar **rptr, **wptr;
|
|
|
|
|
|
|
|
if (!first)
|
|
|
|
return second;
|
|
|
|
if (!second)
|
|
|
|
return first;
|
|
|
|
|
|
|
|
strv = g_new0(gchar*, g_strv_length(first) + g_strv_length(second) + 1);
|
|
|
|
wptr = strv;
|
|
|
|
|
|
|
|
foreach_strv(rptr, first)
|
|
|
|
*wptr++ = *rptr;
|
|
|
|
foreach_strv(rptr, second)
|
|
|
|
*wptr++ = *rptr;
|
|
|
|
|
|
|
|
g_free(first);
|
|
|
|
g_free(second);
|
|
|
|
return strv;
|
|
|
|
}
|