1998-06-10 23:21:14 +00:00
|
|
|
/* GLIB - Library of useful routines for C programming
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:02:02 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-06-10 23:21:14 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
2000-07-26 11:02:02 +00:00
|
|
|
* Lesser General Public License for more details.
|
1998-06-10 23:21:14 +00:00
|
|
|
*
|
2000-07-26 11:02:02 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2014-01-23 12:58:29 +01:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
1998-06-10 23:21:14 +00:00
|
|
|
*/
|
1998-12-15 05:28:02 +00:00
|
|
|
|
1999-02-24 06:14:27 +00:00
|
|
|
/*
|
2000-07-26 11:02:02 +00:00
|
|
|
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
|
1999-02-24 06:14:27 +00:00
|
|
|
* file for a list of people on the GLib Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2010-09-03 20:34:15 -04:00
|
|
|
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
1999-02-24 06:14:27 +00:00
|
|
|
*/
|
|
|
|
|
2010-09-03 20:34:15 -04:00
|
|
|
/*
|
1998-12-15 05:28:02 +00:00
|
|
|
* MT safe
|
|
|
|
*/
|
|
|
|
|
2002-12-04 01:27:44 +00:00
|
|
|
#include "config.h"
|
1999-04-17 20:04:49 +00:00
|
|
|
|
1998-06-10 23:21:14 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
2002-12-04 01:27:44 +00:00
|
|
|
|
2010-09-03 20:34:15 -04:00
|
|
|
#include "gstring.h"
|
|
|
|
|
2003-06-05 23:04:21 +00:00
|
|
|
#include "gprintf.h"
|
1998-06-10 23:21:14 +00:00
|
|
|
|
2002-12-04 01:27:44 +00:00
|
|
|
|
2005-05-02 15:45:45 +00:00
|
|
|
/**
|
2011-10-02 00:08:54 -04:00
|
|
|
* SECTION:strings
|
|
|
|
* @title: Strings
|
|
|
|
* @short_description: text buffers which grow automatically
|
|
|
|
* as text is added
|
2009-07-10 11:18:31 -04:00
|
|
|
*
|
2012-05-29 17:58:41 -04:00
|
|
|
* A #GString is an object that handles the memory management of a C
|
|
|
|
* string for you. The emphasis of #GString is on text, typically
|
|
|
|
* UTF-8. Crucially, the "str" member of a #GString is guaranteed to
|
|
|
|
* have a trailing nul character, and it is therefore always safe to
|
|
|
|
* call functions such as strchr() or g_strdup() on it.
|
|
|
|
*
|
|
|
|
* However, a #GString can also hold arbitrary binary data, because it
|
|
|
|
* has a "len" member, which includes any possible embedded nul
|
|
|
|
* characters in the data. Conceptually then, #GString is like a
|
|
|
|
* #GByteArray with the addition of many convenience methods for text,
|
|
|
|
* and a guaranteed nul terminator.
|
2005-05-02 15:45:45 +00:00
|
|
|
*/
|
1998-06-10 23:21:14 +00:00
|
|
|
|
2005-05-02 15:45:45 +00:00
|
|
|
/**
|
2011-10-02 00:08:54 -04:00
|
|
|
* GString:
|
|
|
|
* @str: points to the character data. It may move as text is added.
|
|
|
|
* The @str field is null-terminated and so
|
|
|
|
* can be used as an ordinary C string.
|
|
|
|
* @len: contains the length of the string, not including the
|
|
|
|
* terminating nul byte.
|
|
|
|
* @allocated_len: the number of bytes that can be stored in the
|
|
|
|
* string before it needs to be reallocated. May be larger than @len.
|
2005-05-02 15:45:45 +00:00
|
|
|
*
|
2011-10-02 00:08:54 -04:00
|
|
|
* The GString struct contains the public fields of a GString.
|
2011-10-01 23:23:40 -04:00
|
|
|
*/
|
2000-02-17 11:57:35 +00:00
|
|
|
|
1998-06-10 23:21:14 +00:00
|
|
|
|
Changes for 64-bit cleanliness, loosely based on patch from Mark Murnane.
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
Changes for 64-bit cleanliness, loosely based on patch
from Mark Murnane.
* gconvert.c (g_convert/g_convert_with_fallback): Remove
workarounds for since-fixed GNU libc bugs. Minor
doc fix.
* gconvert.[ch]: Change gint to gsize/gssize as
appropriate.
* gconvert.c (g_locale/filename_to/from_utf8): Fix incorrect
computation of bytes_read / bytes_written.
* gfileutils.[ch] (g_file_get_contents): Make length
out parameter 'gsize *len'.
* ghook.c (g_hook_compare_ids): Don't compare a
and b as 'a - b'.
* gmacros.h (GSIZE_TO_POINTER): Add GPOINTER_TO_SIZE,
GSIZE_TO_POINTER.
* gmain.c (g_timeout_prepare): Rewrite to avoid
overflows. (Fixes bug when system clock skews
backwards more than 24 days.)
* gmarkup.[ch]: Make lengths passed to callbacks
gsize, length for g_markup_parse-context_parse(),
g_markup_escape_text() gssize.
* gmessages.[ch] (g_printf_string_upper_bound): Change
return value to gsize.
* gmessages.c (printf_string_upper_bound): Remove
a ridiculous use of 'inline' on a 300 line function.
* gstring.[ch]: Represent size of string as a gsize,
not gint. Make parameters to functions take gsize,
or gssize where -1 is allowed.
* gstring.c (g_string_erase): Make
g_string_erase (string, pos, -1) a synonym for
g_string_truncate for consistency with other G*
APIs.
* gstrfuncs.[ch]: Make all functions taking a string
length, take a gsize, or gssize if -1 is allowed.
(g_strstr_len, g_strrstr_len). Also fix some boundary
conditions in g_str[r]str[_len].
* gutf8.c tests/unicode-encoding.c: Make parameters that
are byte lengths gsize, gssize as appropriate. Make
character offsets, other counts, glong.
* gasyncqueue.c gcompletion.c
timeloop.c timeloop-basic.c gutils.c gspawn.c.
Small 64 bit cleanliness fixups.
* glist.c (g_list_sort2, g_list_sort_real): Fix functions
that should have been static.
* gdate.c (g_date_fill_parse_tokens): Fix extra
declaration that was shadowing another.
* tests/module-test.c: Include string.h
Mon Jun 18 15:43:29 2001 Owen Taylor <otaylor@redhat.com>
* gutf8.c (g_get_charset): Make argument
G_CONST_RETURN char **.
2001-06-23 13:55:09 +00:00
|
|
|
#define MY_MAXSIZE ((gsize)-1)
|
|
|
|
|
|
|
|
static inline gsize
|
2011-10-01 23:23:40 -04:00
|
|
|
nearest_power (gsize base, gsize num)
|
Changes for 64-bit cleanliness, loosely based on patch from Mark Murnane.
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
Changes for 64-bit cleanliness, loosely based on patch
from Mark Murnane.
* gconvert.c (g_convert/g_convert_with_fallback): Remove
workarounds for since-fixed GNU libc bugs. Minor
doc fix.
* gconvert.[ch]: Change gint to gsize/gssize as
appropriate.
* gconvert.c (g_locale/filename_to/from_utf8): Fix incorrect
computation of bytes_read / bytes_written.
* gfileutils.[ch] (g_file_get_contents): Make length
out parameter 'gsize *len'.
* ghook.c (g_hook_compare_ids): Don't compare a
and b as 'a - b'.
* gmacros.h (GSIZE_TO_POINTER): Add GPOINTER_TO_SIZE,
GSIZE_TO_POINTER.
* gmain.c (g_timeout_prepare): Rewrite to avoid
overflows. (Fixes bug when system clock skews
backwards more than 24 days.)
* gmarkup.[ch]: Make lengths passed to callbacks
gsize, length for g_markup_parse-context_parse(),
g_markup_escape_text() gssize.
* gmessages.[ch] (g_printf_string_upper_bound): Change
return value to gsize.
* gmessages.c (printf_string_upper_bound): Remove
a ridiculous use of 'inline' on a 300 line function.
* gstring.[ch]: Represent size of string as a gsize,
not gint. Make parameters to functions take gsize,
or gssize where -1 is allowed.
* gstring.c (g_string_erase): Make
g_string_erase (string, pos, -1) a synonym for
g_string_truncate for consistency with other G*
APIs.
* gstrfuncs.[ch]: Make all functions taking a string
length, take a gsize, or gssize if -1 is allowed.
(g_strstr_len, g_strrstr_len). Also fix some boundary
conditions in g_str[r]str[_len].
* gutf8.c tests/unicode-encoding.c: Make parameters that
are byte lengths gsize, gssize as appropriate. Make
character offsets, other counts, glong.
* gasyncqueue.c gcompletion.c
timeloop.c timeloop-basic.c gutils.c gspawn.c.
Small 64 bit cleanliness fixups.
* glist.c (g_list_sort2, g_list_sort_real): Fix functions
that should have been static.
* gdate.c (g_date_fill_parse_tokens): Fix extra
declaration that was shadowing another.
* tests/module-test.c: Include string.h
Mon Jun 18 15:43:29 2001 Owen Taylor <otaylor@redhat.com>
* gutf8.c (g_get_charset): Make argument
G_CONST_RETURN char **.
2001-06-23 13:55:09 +00:00
|
|
|
{
|
|
|
|
if (num > MY_MAXSIZE / 2)
|
|
|
|
{
|
|
|
|
return MY_MAXSIZE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gsize n = base;
|
|
|
|
|
|
|
|
while (n < num)
|
2011-10-01 23:23:40 -04:00
|
|
|
n <<= 1;
|
|
|
|
|
Changes for 64-bit cleanliness, loosely based on patch from Mark Murnane.
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
Changes for 64-bit cleanliness, loosely based on patch
from Mark Murnane.
* gconvert.c (g_convert/g_convert_with_fallback): Remove
workarounds for since-fixed GNU libc bugs. Minor
doc fix.
* gconvert.[ch]: Change gint to gsize/gssize as
appropriate.
* gconvert.c (g_locale/filename_to/from_utf8): Fix incorrect
computation of bytes_read / bytes_written.
* gfileutils.[ch] (g_file_get_contents): Make length
out parameter 'gsize *len'.
* ghook.c (g_hook_compare_ids): Don't compare a
and b as 'a - b'.
* gmacros.h (GSIZE_TO_POINTER): Add GPOINTER_TO_SIZE,
GSIZE_TO_POINTER.
* gmain.c (g_timeout_prepare): Rewrite to avoid
overflows. (Fixes bug when system clock skews
backwards more than 24 days.)
* gmarkup.[ch]: Make lengths passed to callbacks
gsize, length for g_markup_parse-context_parse(),
g_markup_escape_text() gssize.
* gmessages.[ch] (g_printf_string_upper_bound): Change
return value to gsize.
* gmessages.c (printf_string_upper_bound): Remove
a ridiculous use of 'inline' on a 300 line function.
* gstring.[ch]: Represent size of string as a gsize,
not gint. Make parameters to functions take gsize,
or gssize where -1 is allowed.
* gstring.c (g_string_erase): Make
g_string_erase (string, pos, -1) a synonym for
g_string_truncate for consistency with other G*
APIs.
* gstrfuncs.[ch]: Make all functions taking a string
length, take a gsize, or gssize if -1 is allowed.
(g_strstr_len, g_strrstr_len). Also fix some boundary
conditions in g_str[r]str[_len].
* gutf8.c tests/unicode-encoding.c: Make parameters that
are byte lengths gsize, gssize as appropriate. Make
character offsets, other counts, glong.
* gasyncqueue.c gcompletion.c
timeloop.c timeloop-basic.c gutils.c gspawn.c.
Small 64 bit cleanliness fixups.
* glist.c (g_list_sort2, g_list_sort_real): Fix functions
that should have been static.
* gdate.c (g_date_fill_parse_tokens): Fix extra
declaration that was shadowing another.
* tests/module-test.c: Include string.h
Mon Jun 18 15:43:29 2001 Owen Taylor <otaylor@redhat.com>
* gutf8.c (g_get_charset): Make argument
G_CONST_RETURN char **.
2001-06-23 13:55:09 +00:00
|
|
|
return n;
|
|
|
|
}
|
|
|
|
}
|
1998-06-10 23:21:14 +00:00
|
|
|
|
|
|
|
static void
|
2011-10-01 23:23:40 -04:00
|
|
|
g_string_maybe_expand (GString *string,
|
|
|
|
gsize len)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
2001-06-30 15:22:13 +00:00
|
|
|
if (string->len + len >= string->allocated_len)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
2001-06-30 15:22:13 +00:00
|
|
|
string->allocated_len = nearest_power (1, string->len + len + 1);
|
|
|
|
string->str = g_realloc (string->str, string->allocated_len);
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_sized_new:
|
2011-10-01 23:23:40 -04:00
|
|
|
* @dfl_size: the default size of the space allocated to
|
|
|
|
* hold the string
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
2011-10-01 23:23:40 -04:00
|
|
|
* Creates a new #GString, with enough space for @dfl_size
|
|
|
|
* bytes. This is useful if you are going to add a lot of
|
|
|
|
* text to the string and don't want it to be reallocated
|
2006-12-16 06:14:45 +00:00
|
|
|
* too often.
|
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Returns: the new #GString
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
|
|
|
g_string_sized_new (gsize dfl_size)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
2005-11-01 18:10:31 +00:00
|
|
|
GString *string = g_slice_new (GString);
|
1998-06-10 23:21:14 +00:00
|
|
|
|
2001-06-30 15:22:13 +00:00
|
|
|
string->allocated_len = 0;
|
1998-06-10 23:21:14 +00:00
|
|
|
string->len = 0;
|
|
|
|
string->str = NULL;
|
|
|
|
|
|
|
|
g_string_maybe_expand (string, MAX (dfl_size, 2));
|
|
|
|
string->str[0] = 0;
|
|
|
|
|
2001-09-19 18:08:19 +00:00
|
|
|
return string;
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_new:
|
2013-12-06 12:23:09 +00:00
|
|
|
* @init: (nullable): the initial text to copy into the string, or %NULL to
|
|
|
|
* start with an empty string
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2006-12-16 06:14:45 +00:00
|
|
|
* Creates a new #GString, initialized with the given string.
|
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Returns: the new #GString
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
1998-06-10 23:21:14 +00:00
|
|
|
g_string_new (const gchar *init)
|
|
|
|
{
|
|
|
|
GString *string;
|
|
|
|
|
2003-03-30 22:02:20 +00:00
|
|
|
if (init == NULL || *init == '\0')
|
|
|
|
string = g_string_sized_new (2);
|
2011-10-01 23:23:40 -04:00
|
|
|
else
|
2003-03-30 22:02:20 +00:00
|
|
|
{
|
|
|
|
gint len;
|
|
|
|
|
|
|
|
len = strlen (init);
|
|
|
|
string = g_string_sized_new (len + 2);
|
1998-06-10 23:21:14 +00:00
|
|
|
|
2003-03-30 22:02:20 +00:00
|
|
|
g_string_append_len (string, init, len);
|
|
|
|
}
|
1998-06-10 23:21:14 +00:00
|
|
|
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_new_len:
|
2007-07-22 04:14:54 +00:00
|
|
|
* @init: initial contents of the string
|
|
|
|
* @len: length of @init to use
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
2011-10-01 23:23:40 -04:00
|
|
|
* Creates a new #GString with @len bytes of the @init buffer.
|
2007-07-22 04:14:54 +00:00
|
|
|
* Because a length is provided, @init need not be nul-terminated,
|
|
|
|
* and can contain embedded nul bytes.
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
2006-12-18 03:04:48 +00:00
|
|
|
* Since this function does not stop at nul bytes, it is the caller's
|
2011-10-01 23:23:40 -04:00
|
|
|
* responsibility to ensure that @init has at least @len addressable
|
2007-07-22 04:14:54 +00:00
|
|
|
* bytes.
|
2006-12-18 03:04:48 +00:00
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Returns: a new #GString
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
2000-10-27 02:46:04 +00:00
|
|
|
g_string_new_len (const gchar *init,
|
2011-10-01 23:23:40 -04:00
|
|
|
gssize len)
|
2000-10-27 02:46:04 +00:00
|
|
|
{
|
|
|
|
GString *string;
|
|
|
|
|
|
|
|
if (len < 0)
|
|
|
|
return g_string_new (init);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
string = g_string_sized_new (len);
|
2011-10-01 23:23:40 -04:00
|
|
|
|
2000-10-27 02:46:04 +00:00
|
|
|
if (init)
|
|
|
|
g_string_append_len (string, init, len);
|
2011-10-01 23:23:40 -04:00
|
|
|
|
2000-10-27 02:46:04 +00:00
|
|
|
return string;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_free:
|
2015-01-14 10:44:12 +00:00
|
|
|
* @string: (transfer full): a #GString
|
2011-10-01 23:23:40 -04:00
|
|
|
* @free_segment: if %TRUE, the actual character data is freed as well
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
|
|
|
* Frees the memory allocated for the #GString.
|
2011-10-01 23:23:40 -04:00
|
|
|
* If @free_segment is %TRUE it also frees the character data. If
|
2010-12-03 10:36:16 -05:00
|
|
|
* it's %FALSE, the caller gains ownership of the buffer and must
|
|
|
|
* free it after use with g_free().
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
2015-01-14 10:44:52 +00:00
|
|
|
* Returns: (nullable): the character data of @string
|
2006-12-16 06:14:45 +00:00
|
|
|
* (i.e. %NULL if @free_segment is %TRUE)
|
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
gchar *
|
|
|
|
g_string_free (GString *string,
|
|
|
|
gboolean free_segment)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
2000-08-17 21:37:18 +00:00
|
|
|
gchar *segment;
|
|
|
|
|
2000-09-01 13:45:43 +00:00
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
1998-06-10 23:21:14 +00:00
|
|
|
|
|
|
|
if (free_segment)
|
2000-08-17 21:37:18 +00:00
|
|
|
{
|
|
|
|
g_free (string->str);
|
|
|
|
segment = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
segment = string->str;
|
1998-06-10 23:21:14 +00:00
|
|
|
|
2005-11-01 18:10:31 +00:00
|
|
|
g_slice_free (GString, string);
|
2000-08-17 21:37:18 +00:00
|
|
|
|
|
|
|
return segment;
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2012-05-29 17:58:41 -04:00
|
|
|
/**
|
|
|
|
* g_string_free_to_bytes:
|
|
|
|
* @string: (transfer full): a #GString
|
|
|
|
*
|
|
|
|
* Transfers ownership of the contents of @string to a newly allocated
|
|
|
|
* #GBytes. The #GString structure itself is deallocated, and it is
|
|
|
|
* therefore invalid to use @string after invoking this function.
|
|
|
|
*
|
|
|
|
* Note that while #GString ensures that its buffer always has a
|
|
|
|
* trailing nul character (not reflected in its "len"), the returned
|
|
|
|
* #GBytes does not include this extra nul; i.e. it has length exactly
|
|
|
|
* equal to the "len" member.
|
|
|
|
*
|
|
|
|
* Returns: A newly allocated #GBytes containing contents of @string; @string itself is freed
|
|
|
|
* Since: 2.34
|
|
|
|
*/
|
|
|
|
GBytes*
|
|
|
|
g_string_free_to_bytes (GString *string)
|
|
|
|
{
|
|
|
|
gsize len;
|
|
|
|
gchar *buf;
|
|
|
|
|
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
|
|
|
|
|
|
|
len = string->len;
|
|
|
|
|
|
|
|
buf = g_string_free (string, FALSE);
|
|
|
|
|
|
|
|
return g_bytes_new_take (buf, len);
|
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_equal:
|
|
|
|
* @v: a #GString
|
|
|
|
* @v2: another #GString
|
|
|
|
*
|
2011-10-01 23:23:40 -04:00
|
|
|
* Compares two strings for equality, returning %TRUE if they are equal.
|
2006-12-16 06:14:45 +00:00
|
|
|
* For use with #GHashTable.
|
|
|
|
*
|
2013-09-09 23:35:25 +02:00
|
|
|
* Returns: %TRUE if the strings are the same length and contain the
|
2011-10-01 23:23:40 -04:00
|
|
|
* same bytes
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2000-06-29 20:09:36 +00:00
|
|
|
gboolean
|
|
|
|
g_string_equal (const GString *v,
|
|
|
|
const GString *v2)
|
|
|
|
{
|
|
|
|
gchar *p, *q;
|
2001-09-19 18:08:19 +00:00
|
|
|
GString *string1 = (GString *) v;
|
|
|
|
GString *string2 = (GString *) v2;
|
2011-10-01 23:23:40 -04:00
|
|
|
gsize i = string1->len;
|
2000-06-29 20:09:36 +00:00
|
|
|
|
|
|
|
if (i != string2->len)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
p = string1->str;
|
|
|
|
q = string2->str;
|
|
|
|
while (i)
|
|
|
|
{
|
|
|
|
if (*p != *q)
|
2011-10-01 23:23:40 -04:00
|
|
|
return FALSE;
|
2000-06-29 20:09:36 +00:00
|
|
|
p++;
|
|
|
|
q++;
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_hash:
|
|
|
|
* @str: a string to hash
|
|
|
|
*
|
|
|
|
* Creates a hash code for @str; for use with #GHashTable.
|
|
|
|
*
|
|
|
|
* Returns: hash code for @str
|
|
|
|
*/
|
2000-06-29 20:09:36 +00:00
|
|
|
guint
|
|
|
|
g_string_hash (const GString *str)
|
|
|
|
{
|
|
|
|
const gchar *p = str->str;
|
2011-10-01 23:23:40 -04:00
|
|
|
gsize n = str->len;
|
2000-06-29 20:09:36 +00:00
|
|
|
guint h = 0;
|
|
|
|
|
2011-10-01 23:23:40 -04:00
|
|
|
/* 31 bit hash function */
|
2000-06-29 20:09:36 +00:00
|
|
|
while (n--)
|
|
|
|
{
|
|
|
|
h = (h << 5) - h + *p;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_assign:
|
2011-10-01 23:23:40 -04:00
|
|
|
* @string: the destination #GString. Its current contents
|
2006-12-16 06:14:45 +00:00
|
|
|
* are destroyed.
|
|
|
|
* @rval: the string to copy into @string
|
|
|
|
*
|
2011-10-01 23:23:40 -04:00
|
|
|
* Copies the bytes from a string into a #GString,
|
|
|
|
* destroying any previous contents. It is rather like
|
|
|
|
* the standard strcpy() function, except that you do not
|
2006-12-16 06:14:45 +00:00
|
|
|
* have to worry about having enough space to copy the string.
|
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Returns: @string
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
2000-02-17 11:57:35 +00:00
|
|
|
g_string_assign (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
const gchar *rval)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
2000-02-17 11:57:35 +00:00
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
|
|
|
g_return_val_if_fail (rval != NULL, string);
|
2003-11-05 16:24:44 +00:00
|
|
|
|
2011-10-01 23:23:40 -04:00
|
|
|
/* Make sure assigning to itself doesn't corrupt the string. */
|
2003-11-05 16:24:44 +00:00
|
|
|
if (string->str != rval)
|
|
|
|
{
|
2011-10-01 23:23:40 -04:00
|
|
|
/* Assigning from substring should be ok, since
|
|
|
|
* g_string_truncate() does not reallocate.
|
|
|
|
*/
|
2003-11-05 16:24:44 +00:00
|
|
|
g_string_truncate (string, 0);
|
|
|
|
g_string_append (string, rval);
|
|
|
|
}
|
1998-06-10 23:21:14 +00:00
|
|
|
|
2000-02-17 11:57:35 +00:00
|
|
|
return string;
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_truncate:
|
|
|
|
* @string: a #GString
|
2007-07-22 04:14:54 +00:00
|
|
|
* @len: the new size of @string
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
2011-10-01 23:23:40 -04:00
|
|
|
* Cuts off the end of the GString, leaving the first @len bytes.
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Returns: @string
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
2001-09-19 18:08:19 +00:00
|
|
|
g_string_truncate (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
gsize len)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
|
|
|
|
2000-02-17 11:57:35 +00:00
|
|
|
string->len = MIN (len, string->len);
|
|
|
|
string->str[string->len] = 0;
|
1998-06-10 23:21:14 +00:00
|
|
|
|
2001-09-19 18:08:19 +00:00
|
|
|
return string;
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2001-06-30 15:22:13 +00:00
|
|
|
/**
|
|
|
|
* g_string_set_size:
|
2001-09-10 15:50:26 +00:00
|
|
|
* @string: a #GString
|
2001-06-30 15:22:13 +00:00
|
|
|
* @len: the new length
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2001-06-30 15:22:13 +00:00
|
|
|
* Sets the length of a #GString. If the length is less than
|
|
|
|
* the current length, the string will be truncated. If the
|
|
|
|
* length is greater than the current length, the contents
|
|
|
|
* of the newly added area are undefined. (However, as
|
2011-10-01 23:23:40 -04:00
|
|
|
* always, string->str[string->len] will be a nul byte.)
|
|
|
|
*
|
2014-02-19 19:35:23 -05:00
|
|
|
* Returns: @string
|
2011-10-01 23:23:40 -04:00
|
|
|
*/
|
|
|
|
GString *
|
2001-09-10 15:50:26 +00:00
|
|
|
g_string_set_size (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
gsize len)
|
2001-06-30 15:22:13 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
|
|
|
|
2001-09-19 18:08:19 +00:00
|
|
|
if (len >= string->allocated_len)
|
|
|
|
g_string_maybe_expand (string, len - string->len);
|
2011-10-01 23:23:40 -04:00
|
|
|
|
2001-09-19 18:08:19 +00:00
|
|
|
string->len = len;
|
|
|
|
string->str[len] = 0;
|
2001-06-30 15:22:13 +00:00
|
|
|
|
2001-09-10 15:50:26 +00:00
|
|
|
return string;
|
2001-06-30 15:22:13 +00:00
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_insert_len:
|
|
|
|
* @string: a #GString
|
2010-04-18 23:53:31 -04:00
|
|
|
* @pos: position in @string where insertion should
|
2006-12-16 06:14:45 +00:00
|
|
|
* happen, or -1 for at the end
|
|
|
|
* @val: bytes to insert
|
|
|
|
* @len: number of bytes of @val to insert
|
2010-04-18 23:53:31 -04:00
|
|
|
*
|
|
|
|
* Inserts @len bytes of @val into @string at @pos.
|
|
|
|
* Because @len is provided, @val may contain embedded
|
|
|
|
* nuls and need not be nul-terminated. If @pos is -1,
|
2006-12-16 06:14:45 +00:00
|
|
|
* bytes are inserted at the end of the string.
|
|
|
|
*
|
2010-04-18 23:53:31 -04:00
|
|
|
* Since this function does not stop at nul bytes, it is
|
|
|
|
* the caller's responsibility to ensure that @val has at
|
2007-07-22 04:14:54 +00:00
|
|
|
* least @len addressable bytes.
|
2006-12-18 03:04:48 +00:00
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Returns: @string
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
2001-09-19 18:08:19 +00:00
|
|
|
g_string_insert_len (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
gssize pos,
|
|
|
|
const gchar *val,
|
|
|
|
gssize len)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
2010-04-18 23:53:31 -04:00
|
|
|
g_return_val_if_fail (len == 0 || val != NULL, string);
|
|
|
|
|
|
|
|
if (len == 0)
|
|
|
|
return string;
|
2000-02-17 11:57:35 +00:00
|
|
|
|
|
|
|
if (len < 0)
|
|
|
|
len = strlen (val);
|
|
|
|
|
|
|
|
if (pos < 0)
|
|
|
|
pos = string->len;
|
Changes for 64-bit cleanliness, loosely based on patch from Mark Murnane.
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
Changes for 64-bit cleanliness, loosely based on patch
from Mark Murnane.
* gconvert.c (g_convert/g_convert_with_fallback): Remove
workarounds for since-fixed GNU libc bugs. Minor
doc fix.
* gconvert.[ch]: Change gint to gsize/gssize as
appropriate.
* gconvert.c (g_locale/filename_to/from_utf8): Fix incorrect
computation of bytes_read / bytes_written.
* gfileutils.[ch] (g_file_get_contents): Make length
out parameter 'gsize *len'.
* ghook.c (g_hook_compare_ids): Don't compare a
and b as 'a - b'.
* gmacros.h (GSIZE_TO_POINTER): Add GPOINTER_TO_SIZE,
GSIZE_TO_POINTER.
* gmain.c (g_timeout_prepare): Rewrite to avoid
overflows. (Fixes bug when system clock skews
backwards more than 24 days.)
* gmarkup.[ch]: Make lengths passed to callbacks
gsize, length for g_markup_parse-context_parse(),
g_markup_escape_text() gssize.
* gmessages.[ch] (g_printf_string_upper_bound): Change
return value to gsize.
* gmessages.c (printf_string_upper_bound): Remove
a ridiculous use of 'inline' on a 300 line function.
* gstring.[ch]: Represent size of string as a gsize,
not gint. Make parameters to functions take gsize,
or gssize where -1 is allowed.
* gstring.c (g_string_erase): Make
g_string_erase (string, pos, -1) a synonym for
g_string_truncate for consistency with other G*
APIs.
* gstrfuncs.[ch]: Make all functions taking a string
length, take a gsize, or gssize if -1 is allowed.
(g_strstr_len, g_strrstr_len). Also fix some boundary
conditions in g_str[r]str[_len].
* gutf8.c tests/unicode-encoding.c: Make parameters that
are byte lengths gsize, gssize as appropriate. Make
character offsets, other counts, glong.
* gasyncqueue.c gcompletion.c
timeloop.c timeloop-basic.c gutils.c gspawn.c.
Small 64 bit cleanliness fixups.
* glist.c (g_list_sort2, g_list_sort_real): Fix functions
that should have been static.
* gdate.c (g_date_fill_parse_tokens): Fix extra
declaration that was shadowing another.
* tests/module-test.c: Include string.h
Mon Jun 18 15:43:29 2001 Owen Taylor <otaylor@redhat.com>
* gutf8.c (g_get_charset): Make argument
G_CONST_RETURN char **.
2001-06-23 13:55:09 +00:00
|
|
|
else
|
2001-09-19 18:08:19 +00:00
|
|
|
g_return_val_if_fail (pos <= string->len, string);
|
1998-06-10 23:21:14 +00:00
|
|
|
|
2011-10-01 23:23:40 -04:00
|
|
|
/* Check whether val represents a substring of string.
|
|
|
|
* This test probably violates chapter and verse of the C standards,
|
|
|
|
* since ">=" and "<=" are only valid when val really is a substring.
|
|
|
|
* In practice, it will work on modern archs.
|
|
|
|
*/
|
2015-09-07 10:35:13 -04:00
|
|
|
if (G_UNLIKELY (val >= string->str && val <= string->str + string->len))
|
2003-11-05 16:24:44 +00:00
|
|
|
{
|
|
|
|
gsize offset = val - string->str;
|
|
|
|
gsize precount = 0;
|
|
|
|
|
|
|
|
g_string_maybe_expand (string, len);
|
|
|
|
val = string->str + offset;
|
|
|
|
/* At this point, val is valid again. */
|
|
|
|
|
|
|
|
/* Open up space where we are going to insert. */
|
|
|
|
if (pos < string->len)
|
Require C90 compliance
Assume all supported platforms implement C90, and therefore they
(correctly) implement atexit(), memmove(), setlocale(), strerror(),
and vprintf(), and have <float.h> and <limits.h>.
(Also remove the configure check testing that "do ... while (0)" works
correctly; the non-do/while-based version of G_STMT_START and
G_STMT_END was removed years ago, but the check remained. Also, remove
some checks that configure.ac claimed were needed for libcharset, but
aren't actually used.)
Note that removing the g_memmove() function is not an ABI break even
on systems where g_memmove() was previously not a macro, because it
was never marked GLIB_AVAILABLE_IN_ALL or listed in glib.symbols, so
it would have been glib-internal since 2004.
https://bugzilla.gnome.org/show_bug.cgi?id=710519
2013-10-19 13:03:58 -04:00
|
|
|
memmove (string->str + pos + len, string->str + pos, string->len - pos);
|
2003-11-05 16:24:44 +00:00
|
|
|
|
|
|
|
/* Move the source part before the gap, if any. */
|
|
|
|
if (offset < pos)
|
2010-04-18 23:53:31 -04:00
|
|
|
{
|
|
|
|
precount = MIN (len, pos - offset);
|
|
|
|
memcpy (string->str + pos, val, precount);
|
|
|
|
}
|
2003-11-05 16:24:44 +00:00
|
|
|
|
|
|
|
/* Move the source part after the gap, if any. */
|
|
|
|
if (len > precount)
|
2010-04-18 23:53:31 -04:00
|
|
|
memcpy (string->str + pos + precount,
|
|
|
|
val + /* Already moved: */ precount + /* Space opened up: */ len,
|
|
|
|
len - precount);
|
2003-11-05 16:24:44 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_string_maybe_expand (string, len);
|
|
|
|
|
|
|
|
/* If we aren't appending at the end, move a hunk
|
|
|
|
* of the old string to the end, opening up space
|
|
|
|
*/
|
|
|
|
if (pos < string->len)
|
Require C90 compliance
Assume all supported platforms implement C90, and therefore they
(correctly) implement atexit(), memmove(), setlocale(), strerror(),
and vprintf(), and have <float.h> and <limits.h>.
(Also remove the configure check testing that "do ... while (0)" works
correctly; the non-do/while-based version of G_STMT_START and
G_STMT_END was removed years ago, but the check remained. Also, remove
some checks that configure.ac claimed were needed for libcharset, but
aren't actually used.)
Note that removing the g_memmove() function is not an ABI break even
on systems where g_memmove() was previously not a macro, because it
was never marked GLIB_AVAILABLE_IN_ALL or listed in glib.symbols, so
it would have been glib-internal since 2004.
https://bugzilla.gnome.org/show_bug.cgi?id=710519
2013-10-19 13:03:58 -04:00
|
|
|
memmove (string->str + pos + len, string->str + pos, string->len - pos);
|
2003-11-05 16:24:44 +00:00
|
|
|
|
|
|
|
/* insert the new string */
|
2005-08-18 09:30:24 +00:00
|
|
|
if (len == 1)
|
|
|
|
string->str[pos] = *val;
|
|
|
|
else
|
|
|
|
memcpy (string->str + pos, val, len);
|
2003-11-05 16:24:44 +00:00
|
|
|
}
|
1998-06-10 23:21:14 +00:00
|
|
|
|
|
|
|
string->len += len;
|
|
|
|
|
2000-02-17 11:57:35 +00:00
|
|
|
string->str[string->len] = 0;
|
|
|
|
|
2001-09-19 18:08:19 +00:00
|
|
|
return string;
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2007-11-28 14:49:22 +00:00
|
|
|
#define SUB_DELIM_CHARS "!$&'()*+,;="
|
|
|
|
|
|
|
|
static gboolean
|
2011-10-01 23:23:40 -04:00
|
|
|
is_valid (char c,
|
|
|
|
const char *reserved_chars_allowed)
|
2007-11-28 14:49:22 +00:00
|
|
|
{
|
|
|
|
if (g_ascii_isalnum (c) ||
|
|
|
|
c == '-' ||
|
|
|
|
c == '.' ||
|
|
|
|
c == '_' ||
|
|
|
|
c == '~')
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if (reserved_chars_allowed &&
|
|
|
|
strchr (reserved_chars_allowed, c) != NULL)
|
|
|
|
return TRUE;
|
2011-10-01 23:23:40 -04:00
|
|
|
|
2007-11-28 14:49:22 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2011-10-01 23:23:40 -04:00
|
|
|
static gboolean
|
2007-11-28 14:49:22 +00:00
|
|
|
gunichar_ok (gunichar c)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
(c != (gunichar) -2) &&
|
|
|
|
(c != (gunichar) -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_string_append_uri_escaped:
|
|
|
|
* @string: a #GString
|
|
|
|
* @unescaped: a string
|
2011-10-01 23:23:40 -04:00
|
|
|
* @reserved_chars_allowed: a string of reserved characters allowed
|
|
|
|
* to be used, or %NULL
|
2007-11-28 14:49:22 +00:00
|
|
|
* @allow_utf8: set %TRUE if the escaped string may include UTF8 characters
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2007-11-28 14:49:22 +00:00
|
|
|
* Appends @unescaped to @string, escaped any characters that
|
|
|
|
* are reserved in URIs using URI-style escape sequences.
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2007-11-28 14:49:22 +00:00
|
|
|
* Returns: @string
|
|
|
|
*
|
|
|
|
* Since: 2.16
|
2011-10-01 23:23:40 -04:00
|
|
|
*/
|
2007-11-28 14:49:22 +00:00
|
|
|
GString *
|
2011-10-01 23:23:40 -04:00
|
|
|
g_string_append_uri_escaped (GString *string,
|
|
|
|
const gchar *unescaped,
|
|
|
|
const gchar *reserved_chars_allowed,
|
|
|
|
gboolean allow_utf8)
|
2007-11-28 14:49:22 +00:00
|
|
|
{
|
|
|
|
unsigned char c;
|
2011-10-01 23:23:40 -04:00
|
|
|
const gchar *end;
|
2007-11-28 14:49:22 +00:00
|
|
|
static const gchar hex[16] = "0123456789ABCDEF";
|
|
|
|
|
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
|
|
|
g_return_val_if_fail (unescaped != NULL, NULL);
|
|
|
|
|
|
|
|
end = unescaped + strlen (unescaped);
|
2011-10-01 23:23:40 -04:00
|
|
|
|
2007-11-28 14:49:22 +00:00
|
|
|
while ((c = *unescaped) != 0)
|
|
|
|
{
|
|
|
|
if (c >= 0x80 && allow_utf8 &&
|
2011-10-01 23:23:40 -04:00
|
|
|
gunichar_ok (g_utf8_get_char_validated (unescaped, end - unescaped)))
|
|
|
|
{
|
|
|
|
int len = g_utf8_skip [c];
|
|
|
|
g_string_append_len (string, unescaped, len);
|
|
|
|
unescaped += len;
|
|
|
|
}
|
2007-11-28 14:49:22 +00:00
|
|
|
else if (is_valid (c, reserved_chars_allowed))
|
2011-10-01 23:23:40 -04:00
|
|
|
{
|
|
|
|
g_string_append_c (string, c);
|
|
|
|
unescaped++;
|
|
|
|
}
|
2007-11-28 14:49:22 +00:00
|
|
|
else
|
2011-10-01 23:23:40 -04:00
|
|
|
{
|
|
|
|
g_string_append_c (string, '%');
|
|
|
|
g_string_append_c (string, hex[((guchar)c) >> 4]);
|
|
|
|
g_string_append_c (string, hex[((guchar)c) & 0xf]);
|
|
|
|
unescaped++;
|
|
|
|
}
|
2007-11-28 14:49:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_append:
|
2007-07-22 04:14:54 +00:00
|
|
|
* @string: a #GString
|
|
|
|
* @val: the string to append onto the end of @string
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
|
|
|
* Adds a string onto the end of a #GString, expanding
|
2007-07-22 04:14:54 +00:00
|
|
|
* it if necessary.
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Returns: @string
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
2001-09-19 18:08:19 +00:00
|
|
|
g_string_append (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
const gchar *val)
|
|
|
|
{
|
2001-09-19 18:08:19 +00:00
|
|
|
return g_string_insert_len (string, -1, val, -1);
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_append_len:
|
|
|
|
* @string: a #GString
|
|
|
|
* @val: bytes to append
|
2007-07-22 04:14:54 +00:00
|
|
|
* @len: number of bytes of @val to use
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
|
|
|
* Appends @len bytes of @val to @string. Because @len is
|
|
|
|
* provided, @val may contain embedded nuls and need not
|
2007-07-22 04:14:54 +00:00
|
|
|
* be nul-terminated.
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
|
|
|
* Since this function does not stop at nul bytes, it is
|
|
|
|
* the caller's responsibility to ensure that @val has at
|
2007-07-22 04:14:54 +00:00
|
|
|
* least @len addressable bytes.
|
2006-12-18 03:04:48 +00:00
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Returns: @string
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
|
|
|
g_string_append_len (GString *string,
|
2000-02-17 11:57:35 +00:00
|
|
|
const gchar *val,
|
2011-10-01 23:23:40 -04:00
|
|
|
gssize len)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
2000-02-17 11:57:35 +00:00
|
|
|
return g_string_insert_len (string, -1, val, len);
|
|
|
|
}
|
1998-06-10 23:21:14 +00:00
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_append_c:
|
2007-07-22 04:14:54 +00:00
|
|
|
* @string: a #GString
|
|
|
|
* @c: the byte to append onto the end of @string
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
2011-10-01 23:23:40 -04:00
|
|
|
* Adds a byte onto the end of a #GString, expanding
|
2007-07-22 04:14:54 +00:00
|
|
|
* it if necessary.
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Returns: @string
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2004-02-19 17:42:00 +00:00
|
|
|
#undef g_string_append_c
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
2001-09-19 18:08:19 +00:00
|
|
|
g_string_append_c (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
gchar c)
|
2000-02-17 11:57:35 +00:00
|
|
|
{
|
2001-09-19 18:08:19 +00:00
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
1998-06-10 23:21:14 +00:00
|
|
|
|
2001-09-19 18:08:19 +00:00
|
|
|
return g_string_insert_c (string, -1, c);
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2001-07-19 14:35:48 +00:00
|
|
|
/**
|
|
|
|
* g_string_append_unichar:
|
|
|
|
* @string: a #GString
|
|
|
|
* @wc: a Unicode character
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2001-07-19 14:35:48 +00:00
|
|
|
* Converts a Unicode character into UTF-8, and appends it
|
|
|
|
* to the string.
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2014-02-19 19:35:23 -05:00
|
|
|
* Returns: @string
|
2011-10-01 23:23:40 -04:00
|
|
|
*/
|
|
|
|
GString *
|
2001-07-19 14:35:48 +00:00
|
|
|
g_string_append_unichar (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
gunichar wc)
|
|
|
|
{
|
2001-07-19 14:35:48 +00:00
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
2011-10-01 23:23:40 -04:00
|
|
|
|
2001-07-19 14:35:48 +00:00
|
|
|
return g_string_insert_unichar (string, -1, wc);
|
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_prepend:
|
|
|
|
* @string: a #GString
|
2007-07-22 04:14:54 +00:00
|
|
|
* @val: the string to prepend on the start of @string
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
2011-10-01 23:23:40 -04:00
|
|
|
* Adds a string on to the start of a #GString,
|
2006-12-16 06:14:45 +00:00
|
|
|
* expanding it if necessary.
|
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Returns: @string
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
2001-09-19 18:08:19 +00:00
|
|
|
g_string_prepend (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
const gchar *val)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
2001-09-19 18:08:19 +00:00
|
|
|
return g_string_insert_len (string, 0, val, -1);
|
2000-02-17 11:57:35 +00:00
|
|
|
}
|
1998-06-10 23:21:14 +00:00
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_prepend_len:
|
|
|
|
* @string: a #GString
|
|
|
|
* @val: bytes to prepend
|
|
|
|
* @len: number of bytes in @val to prepend
|
|
|
|
*
|
2011-10-01 23:23:40 -04:00
|
|
|
* Prepends @len bytes of @val to @string.
|
|
|
|
* Because @len is provided, @val may contain
|
2006-12-16 06:14:45 +00:00
|
|
|
* embedded nuls and need not be nul-terminated.
|
|
|
|
*
|
2011-10-01 23:23:40 -04:00
|
|
|
* Since this function does not stop at nul bytes,
|
|
|
|
* it is the caller's responsibility to ensure that
|
2007-07-22 04:14:54 +00:00
|
|
|
* @val has at least @len addressable bytes.
|
2006-12-18 03:04:48 +00:00
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Returns: @string
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
|
|
|
g_string_prepend_len (GString *string,
|
2000-02-17 11:57:35 +00:00
|
|
|
const gchar *val,
|
2011-10-01 23:23:40 -04:00
|
|
|
gssize len)
|
2000-02-17 11:57:35 +00:00
|
|
|
{
|
|
|
|
return g_string_insert_len (string, 0, val, len);
|
|
|
|
}
|
1998-06-10 23:21:14 +00:00
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_prepend_c:
|
|
|
|
* @string: a #GString
|
|
|
|
* @c: the byte to prepend on the start of the #GString
|
|
|
|
*
|
2011-10-01 23:23:40 -04:00
|
|
|
* Adds a byte onto the start of a #GString,
|
2006-12-16 06:14:45 +00:00
|
|
|
* expanding it if necessary.
|
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Returns: @string
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
2001-09-19 18:08:19 +00:00
|
|
|
g_string_prepend_c (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
gchar c)
|
|
|
|
{
|
2001-09-19 18:08:19 +00:00
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
2011-10-01 23:23:40 -04:00
|
|
|
|
2001-09-19 18:08:19 +00:00
|
|
|
return g_string_insert_c (string, 0, c);
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2001-07-19 14:35:48 +00:00
|
|
|
/**
|
2001-09-28 21:39:26 +00:00
|
|
|
* g_string_prepend_unichar:
|
2007-07-22 04:14:54 +00:00
|
|
|
* @string: a #GString
|
|
|
|
* @wc: a Unicode character
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2001-07-19 14:35:48 +00:00
|
|
|
* Converts a Unicode character into UTF-8, and prepends it
|
|
|
|
* to the string.
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2014-02-19 19:35:23 -05:00
|
|
|
* Returns: @string
|
2011-10-01 23:23:40 -04:00
|
|
|
*/
|
|
|
|
GString *
|
2001-07-19 14:35:48 +00:00
|
|
|
g_string_prepend_unichar (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
gunichar wc)
|
|
|
|
{
|
2001-07-19 14:35:48 +00:00
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
2011-10-01 23:23:40 -04:00
|
|
|
|
2001-07-19 14:35:48 +00:00
|
|
|
return g_string_insert_unichar (string, 0, wc);
|
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_insert:
|
|
|
|
* @string: a #GString
|
|
|
|
* @pos: the position to insert the copy of the string
|
|
|
|
* @val: the string to insert
|
|
|
|
*
|
2011-10-01 23:23:40 -04:00
|
|
|
* Inserts a copy of a string into a #GString,
|
2006-12-16 06:14:45 +00:00
|
|
|
* expanding it if necessary.
|
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Returns: @string
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
2001-09-19 18:08:19 +00:00
|
|
|
g_string_insert (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
gssize pos,
|
|
|
|
const gchar *val)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
2001-09-19 18:08:19 +00:00
|
|
|
return g_string_insert_len (string, pos, val, -1);
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_insert_c:
|
|
|
|
* @string: a #GString
|
|
|
|
* @pos: the position to insert the byte
|
|
|
|
* @c: the byte to insert
|
|
|
|
*
|
|
|
|
* Inserts a byte into a #GString, expanding it if necessary.
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Returns: @string
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
2001-09-19 18:08:19 +00:00
|
|
|
g_string_insert_c (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
gssize pos,
|
|
|
|
gchar c)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
|
|
|
|
|
|
|
g_string_maybe_expand (string, 1);
|
|
|
|
|
2000-02-17 11:57:35 +00:00
|
|
|
if (pos < 0)
|
|
|
|
pos = string->len;
|
Changes for 64-bit cleanliness, loosely based on patch from Mark Murnane.
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
Changes for 64-bit cleanliness, loosely based on patch
from Mark Murnane.
* gconvert.c (g_convert/g_convert_with_fallback): Remove
workarounds for since-fixed GNU libc bugs. Minor
doc fix.
* gconvert.[ch]: Change gint to gsize/gssize as
appropriate.
* gconvert.c (g_locale/filename_to/from_utf8): Fix incorrect
computation of bytes_read / bytes_written.
* gfileutils.[ch] (g_file_get_contents): Make length
out parameter 'gsize *len'.
* ghook.c (g_hook_compare_ids): Don't compare a
and b as 'a - b'.
* gmacros.h (GSIZE_TO_POINTER): Add GPOINTER_TO_SIZE,
GSIZE_TO_POINTER.
* gmain.c (g_timeout_prepare): Rewrite to avoid
overflows. (Fixes bug when system clock skews
backwards more than 24 days.)
* gmarkup.[ch]: Make lengths passed to callbacks
gsize, length for g_markup_parse-context_parse(),
g_markup_escape_text() gssize.
* gmessages.[ch] (g_printf_string_upper_bound): Change
return value to gsize.
* gmessages.c (printf_string_upper_bound): Remove
a ridiculous use of 'inline' on a 300 line function.
* gstring.[ch]: Represent size of string as a gsize,
not gint. Make parameters to functions take gsize,
or gssize where -1 is allowed.
* gstring.c (g_string_erase): Make
g_string_erase (string, pos, -1) a synonym for
g_string_truncate for consistency with other G*
APIs.
* gstrfuncs.[ch]: Make all functions taking a string
length, take a gsize, or gssize if -1 is allowed.
(g_strstr_len, g_strrstr_len). Also fix some boundary
conditions in g_str[r]str[_len].
* gutf8.c tests/unicode-encoding.c: Make parameters that
are byte lengths gsize, gssize as appropriate. Make
character offsets, other counts, glong.
* gasyncqueue.c gcompletion.c
timeloop.c timeloop-basic.c gutils.c gspawn.c.
Small 64 bit cleanliness fixups.
* glist.c (g_list_sort2, g_list_sort_real): Fix functions
that should have been static.
* gdate.c (g_date_fill_parse_tokens): Fix extra
declaration that was shadowing another.
* tests/module-test.c: Include string.h
Mon Jun 18 15:43:29 2001 Owen Taylor <otaylor@redhat.com>
* gutf8.c (g_get_charset): Make argument
G_CONST_RETURN char **.
2001-06-23 13:55:09 +00:00
|
|
|
else
|
2001-09-19 18:08:19 +00:00
|
|
|
g_return_val_if_fail (pos <= string->len, string);
|
2011-10-01 23:23:40 -04:00
|
|
|
|
2000-02-17 11:57:35 +00:00
|
|
|
/* If not just an append, move the old stuff */
|
|
|
|
if (pos < string->len)
|
Require C90 compliance
Assume all supported platforms implement C90, and therefore they
(correctly) implement atexit(), memmove(), setlocale(), strerror(),
and vprintf(), and have <float.h> and <limits.h>.
(Also remove the configure check testing that "do ... while (0)" works
correctly; the non-do/while-based version of G_STMT_START and
G_STMT_END was removed years ago, but the check remained. Also, remove
some checks that configure.ac claimed were needed for libcharset, but
aren't actually used.)
Note that removing the g_memmove() function is not an ABI break even
on systems where g_memmove() was previously not a macro, because it
was never marked GLIB_AVAILABLE_IN_ALL or listed in glib.symbols, so
it would have been glib-internal since 2004.
https://bugzilla.gnome.org/show_bug.cgi?id=710519
2013-10-19 13:03:58 -04:00
|
|
|
memmove (string->str + pos + 1, string->str + pos, string->len - pos);
|
1998-06-10 23:21:14 +00:00
|
|
|
|
|
|
|
string->str[pos] = c;
|
|
|
|
|
|
|
|
string->len += 1;
|
|
|
|
|
|
|
|
string->str[string->len] = 0;
|
|
|
|
|
2001-09-19 18:08:19 +00:00
|
|
|
return string;
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2001-07-19 14:35:48 +00:00
|
|
|
/**
|
|
|
|
* g_string_insert_unichar:
|
Remove references to nonexisting functions
* glib/gmain.c: Remove references to nonexisting functions
g_source_set_callback_closure(), g_source_poll(), g_source_add()
from docs.
* glib/gdir.c (g_dir_open): Typo fix in docs.
* glib/gasyncqueue.c (g_async_queue_lock):
(g_async_queue_unref_and_unlock): Fix markup to avoid erroneous
<link>s in docs.
* glib/gwin32.c: Escape #'s leading to erroneous <link>s in docs.
* glib/gtree.c: Replace some occurances of Gtree by GTree in docs.
* glib/gstring.c (g_string_insert_unichar): Typo fix in docs.
* glib/tmpl/conversions.sgml: Add GIConv.
* glib/tmpl/main.sgml: Fix references to nonexisting functions
g_main_loop_destroy(), g_source_add(), g_source_connect().
* glib/glib-sections.txt: Add GIConv, g_str_has_prefix, g_str_has_suffix.
* glib/tmpl/linked_lists_single.sgml:
* glib/tmpl/linked_lists_double.sgml: GListAllocator doesn't exist.
* glib/glib-docs.sgml: Declare hash entity.
* glib/tmpl/macros.sgml: Escape # in #ifdef to suppress erroneous links.
* gobject/Makefile.am, gobject/gobject-docs.sgml, gobject/tmpl/*:
* glib/Makefile.am, glib/glib-docs.sgml, glib/tmpl/*: Produce XML,
not SGML.
2002-05-26 22:46:28 +00:00
|
|
|
* @string: a #GString
|
2011-10-01 23:23:40 -04:00
|
|
|
* @pos: the position at which to insert character, or -1
|
|
|
|
* to append at the end of the string
|
2001-07-19 14:35:48 +00:00
|
|
|
* @wc: a Unicode character
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2001-07-19 14:35:48 +00:00
|
|
|
* Converts a Unicode character into UTF-8, and insert it
|
|
|
|
* into the string at the given position.
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2014-02-19 19:35:23 -05:00
|
|
|
* Returns: @string
|
2011-10-01 23:23:40 -04:00
|
|
|
*/
|
|
|
|
GString *
|
|
|
|
g_string_insert_unichar (GString *string,
|
|
|
|
gssize pos,
|
|
|
|
gunichar wc)
|
2005-08-18 09:30:24 +00:00
|
|
|
{
|
|
|
|
gint charlen, first, i;
|
|
|
|
gchar *dest;
|
2001-07-19 14:35:48 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
|
|
|
|
2005-08-18 09:30:24 +00:00
|
|
|
/* Code copied from g_unichar_to_utf() */
|
|
|
|
if (wc < 0x80)
|
|
|
|
{
|
|
|
|
first = 0;
|
|
|
|
charlen = 1;
|
|
|
|
}
|
|
|
|
else if (wc < 0x800)
|
|
|
|
{
|
|
|
|
first = 0xc0;
|
|
|
|
charlen = 2;
|
|
|
|
}
|
|
|
|
else if (wc < 0x10000)
|
|
|
|
{
|
|
|
|
first = 0xe0;
|
|
|
|
charlen = 3;
|
|
|
|
}
|
|
|
|
else if (wc < 0x200000)
|
|
|
|
{
|
|
|
|
first = 0xf0;
|
|
|
|
charlen = 4;
|
|
|
|
}
|
|
|
|
else if (wc < 0x4000000)
|
|
|
|
{
|
|
|
|
first = 0xf8;
|
|
|
|
charlen = 5;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
first = 0xfc;
|
|
|
|
charlen = 6;
|
|
|
|
}
|
|
|
|
/* End of copied code */
|
|
|
|
|
|
|
|
g_string_maybe_expand (string, charlen);
|
|
|
|
|
|
|
|
if (pos < 0)
|
|
|
|
pos = string->len;
|
|
|
|
else
|
|
|
|
g_return_val_if_fail (pos <= string->len, string);
|
|
|
|
|
|
|
|
/* If not just an append, move the old stuff */
|
|
|
|
if (pos < string->len)
|
Require C90 compliance
Assume all supported platforms implement C90, and therefore they
(correctly) implement atexit(), memmove(), setlocale(), strerror(),
and vprintf(), and have <float.h> and <limits.h>.
(Also remove the configure check testing that "do ... while (0)" works
correctly; the non-do/while-based version of G_STMT_START and
G_STMT_END was removed years ago, but the check remained. Also, remove
some checks that configure.ac claimed were needed for libcharset, but
aren't actually used.)
Note that removing the g_memmove() function is not an ABI break even
on systems where g_memmove() was previously not a macro, because it
was never marked GLIB_AVAILABLE_IN_ALL or listed in glib.symbols, so
it would have been glib-internal since 2004.
https://bugzilla.gnome.org/show_bug.cgi?id=710519
2013-10-19 13:03:58 -04:00
|
|
|
memmove (string->str + pos + charlen, string->str + pos, string->len - pos);
|
2005-08-18 09:30:24 +00:00
|
|
|
|
|
|
|
dest = string->str + pos;
|
|
|
|
/* Code copied from g_unichar_to_utf() */
|
|
|
|
for (i = charlen - 1; i > 0; --i)
|
|
|
|
{
|
|
|
|
dest[i] = (wc & 0x3f) | 0x80;
|
|
|
|
wc >>= 6;
|
|
|
|
}
|
|
|
|
dest[0] = wc | first;
|
|
|
|
/* End of copied code */
|
2011-10-01 23:23:40 -04:00
|
|
|
|
2005-08-18 09:30:24 +00:00
|
|
|
string->len += charlen;
|
|
|
|
|
|
|
|
string->str[string->len] = 0;
|
|
|
|
|
|
|
|
return string;
|
2001-07-19 14:35:48 +00:00
|
|
|
}
|
|
|
|
|
2007-06-15 11:54:21 +00:00
|
|
|
/**
|
|
|
|
* g_string_overwrite:
|
|
|
|
* @string: a #GString
|
|
|
|
* @pos: the position at which to start overwriting
|
|
|
|
* @val: the string that will overwrite the @string starting at @pos
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2007-06-15 11:54:21 +00:00
|
|
|
* Overwrites part of a string, lengthening it if necessary.
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2014-02-19 19:35:23 -05:00
|
|
|
* Returns: @string
|
2007-06-15 11:54:21 +00:00
|
|
|
*
|
|
|
|
* Since: 2.14
|
2011-10-01 23:23:40 -04:00
|
|
|
*/
|
2007-06-15 11:54:21 +00:00
|
|
|
GString *
|
|
|
|
g_string_overwrite (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
gsize pos,
|
|
|
|
const gchar *val)
|
2007-06-15 11:54:21 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (val != NULL, string);
|
|
|
|
return g_string_overwrite_len (string, pos, val, strlen (val));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_string_overwrite_len:
|
|
|
|
* @string: a #GString
|
|
|
|
* @pos: the position at which to start overwriting
|
|
|
|
* @val: the string that will overwrite the @string starting at @pos
|
|
|
|
* @len: the number of bytes to write from @val
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
|
|
|
* Overwrites part of a string, lengthening it if necessary.
|
2007-07-22 04:14:54 +00:00
|
|
|
* This function will work with embedded nuls.
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2014-02-19 19:35:23 -05:00
|
|
|
* Returns: @string
|
2007-06-15 11:54:21 +00:00
|
|
|
*
|
|
|
|
* Since: 2.14
|
2011-10-01 23:23:40 -04:00
|
|
|
*/
|
2007-06-15 11:54:21 +00:00
|
|
|
GString *
|
2007-07-22 04:14:54 +00:00
|
|
|
g_string_overwrite_len (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
gsize pos,
|
|
|
|
const gchar *val,
|
|
|
|
gssize len)
|
2007-06-15 11:54:21 +00:00
|
|
|
{
|
|
|
|
gsize end;
|
|
|
|
|
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
|
|
|
|
|
|
|
if (!len)
|
|
|
|
return string;
|
|
|
|
|
|
|
|
g_return_val_if_fail (val != NULL, string);
|
|
|
|
g_return_val_if_fail (pos <= string->len, string);
|
|
|
|
|
|
|
|
if (len < 0)
|
|
|
|
len = strlen (val);
|
|
|
|
|
|
|
|
end = pos + len;
|
|
|
|
|
|
|
|
if (end > string->len)
|
|
|
|
g_string_maybe_expand (string, end - string->len);
|
|
|
|
|
|
|
|
memcpy (string->str + pos, val, len);
|
|
|
|
|
|
|
|
if (end > string->len)
|
|
|
|
{
|
|
|
|
string->str[end] = '\0';
|
|
|
|
string->len = end;
|
|
|
|
}
|
|
|
|
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_erase:
|
|
|
|
* @string: a #GString
|
|
|
|
* @pos: the position of the content to remove
|
|
|
|
* @len: the number of bytes to remove, or -1 to remove all
|
|
|
|
* following bytes
|
|
|
|
*
|
|
|
|
* Removes @len bytes from a #GString, starting at position @pos.
|
|
|
|
* The rest of the #GString is shifted down to fill the gap.
|
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Returns: @string
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
2001-09-19 18:08:19 +00:00
|
|
|
g_string_erase (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
gssize pos,
|
|
|
|
gssize len)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
2001-09-19 18:08:19 +00:00
|
|
|
g_return_val_if_fail (pos >= 0, string);
|
|
|
|
g_return_val_if_fail (pos <= string->len, string);
|
1998-06-10 23:21:14 +00:00
|
|
|
|
Changes for 64-bit cleanliness, loosely based on patch from Mark Murnane.
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
Changes for 64-bit cleanliness, loosely based on patch
from Mark Murnane.
* gconvert.c (g_convert/g_convert_with_fallback): Remove
workarounds for since-fixed GNU libc bugs. Minor
doc fix.
* gconvert.[ch]: Change gint to gsize/gssize as
appropriate.
* gconvert.c (g_locale/filename_to/from_utf8): Fix incorrect
computation of bytes_read / bytes_written.
* gfileutils.[ch] (g_file_get_contents): Make length
out parameter 'gsize *len'.
* ghook.c (g_hook_compare_ids): Don't compare a
and b as 'a - b'.
* gmacros.h (GSIZE_TO_POINTER): Add GPOINTER_TO_SIZE,
GSIZE_TO_POINTER.
* gmain.c (g_timeout_prepare): Rewrite to avoid
overflows. (Fixes bug when system clock skews
backwards more than 24 days.)
* gmarkup.[ch]: Make lengths passed to callbacks
gsize, length for g_markup_parse-context_parse(),
g_markup_escape_text() gssize.
* gmessages.[ch] (g_printf_string_upper_bound): Change
return value to gsize.
* gmessages.c (printf_string_upper_bound): Remove
a ridiculous use of 'inline' on a 300 line function.
* gstring.[ch]: Represent size of string as a gsize,
not gint. Make parameters to functions take gsize,
or gssize where -1 is allowed.
* gstring.c (g_string_erase): Make
g_string_erase (string, pos, -1) a synonym for
g_string_truncate for consistency with other G*
APIs.
* gstrfuncs.[ch]: Make all functions taking a string
length, take a gsize, or gssize if -1 is allowed.
(g_strstr_len, g_strrstr_len). Also fix some boundary
conditions in g_str[r]str[_len].
* gutf8.c tests/unicode-encoding.c: Make parameters that
are byte lengths gsize, gssize as appropriate. Make
character offsets, other counts, glong.
* gasyncqueue.c gcompletion.c
timeloop.c timeloop-basic.c gutils.c gspawn.c.
Small 64 bit cleanliness fixups.
* glist.c (g_list_sort2, g_list_sort_real): Fix functions
that should have been static.
* gdate.c (g_date_fill_parse_tokens): Fix extra
declaration that was shadowing another.
* tests/module-test.c: Include string.h
Mon Jun 18 15:43:29 2001 Owen Taylor <otaylor@redhat.com>
* gutf8.c (g_get_charset): Make argument
G_CONST_RETURN char **.
2001-06-23 13:55:09 +00:00
|
|
|
if (len < 0)
|
|
|
|
len = string->len - pos;
|
|
|
|
else
|
|
|
|
{
|
2001-09-19 18:08:19 +00:00
|
|
|
g_return_val_if_fail (pos + len <= string->len, string);
|
Changes for 64-bit cleanliness, loosely based on patch from Mark Murnane.
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
Changes for 64-bit cleanliness, loosely based on patch
from Mark Murnane.
* gconvert.c (g_convert/g_convert_with_fallback): Remove
workarounds for since-fixed GNU libc bugs. Minor
doc fix.
* gconvert.[ch]: Change gint to gsize/gssize as
appropriate.
* gconvert.c (g_locale/filename_to/from_utf8): Fix incorrect
computation of bytes_read / bytes_written.
* gfileutils.[ch] (g_file_get_contents): Make length
out parameter 'gsize *len'.
* ghook.c (g_hook_compare_ids): Don't compare a
and b as 'a - b'.
* gmacros.h (GSIZE_TO_POINTER): Add GPOINTER_TO_SIZE,
GSIZE_TO_POINTER.
* gmain.c (g_timeout_prepare): Rewrite to avoid
overflows. (Fixes bug when system clock skews
backwards more than 24 days.)
* gmarkup.[ch]: Make lengths passed to callbacks
gsize, length for g_markup_parse-context_parse(),
g_markup_escape_text() gssize.
* gmessages.[ch] (g_printf_string_upper_bound): Change
return value to gsize.
* gmessages.c (printf_string_upper_bound): Remove
a ridiculous use of 'inline' on a 300 line function.
* gstring.[ch]: Represent size of string as a gsize,
not gint. Make parameters to functions take gsize,
or gssize where -1 is allowed.
* gstring.c (g_string_erase): Make
g_string_erase (string, pos, -1) a synonym for
g_string_truncate for consistency with other G*
APIs.
* gstrfuncs.[ch]: Make all functions taking a string
length, take a gsize, or gssize if -1 is allowed.
(g_strstr_len, g_strrstr_len). Also fix some boundary
conditions in g_str[r]str[_len].
* gutf8.c tests/unicode-encoding.c: Make parameters that
are byte lengths gsize, gssize as appropriate. Make
character offsets, other counts, glong.
* gasyncqueue.c gcompletion.c
timeloop.c timeloop-basic.c gutils.c gspawn.c.
Small 64 bit cleanliness fixups.
* glist.c (g_list_sort2, g_list_sort_real): Fix functions
that should have been static.
* gdate.c (g_date_fill_parse_tokens): Fix extra
declaration that was shadowing another.
* tests/module-test.c: Include string.h
Mon Jun 18 15:43:29 2001 Owen Taylor <otaylor@redhat.com>
* gutf8.c (g_get_charset): Make argument
G_CONST_RETURN char **.
2001-06-23 13:55:09 +00:00
|
|
|
|
|
|
|
if (pos + len < string->len)
|
Require C90 compliance
Assume all supported platforms implement C90, and therefore they
(correctly) implement atexit(), memmove(), setlocale(), strerror(),
and vprintf(), and have <float.h> and <limits.h>.
(Also remove the configure check testing that "do ... while (0)" works
correctly; the non-do/while-based version of G_STMT_START and
G_STMT_END was removed years ago, but the check remained. Also, remove
some checks that configure.ac claimed were needed for libcharset, but
aren't actually used.)
Note that removing the g_memmove() function is not an ABI break even
on systems where g_memmove() was previously not a macro, because it
was never marked GLIB_AVAILABLE_IN_ALL or listed in glib.symbols, so
it would have been glib-internal since 2004.
https://bugzilla.gnome.org/show_bug.cgi?id=710519
2013-10-19 13:03:58 -04:00
|
|
|
memmove (string->str + pos, string->str + pos + len, string->len - (pos + len));
|
Changes for 64-bit cleanliness, loosely based on patch from Mark Murnane.
Wed Jun 20 12:00:54 2001 Owen Taylor <otaylor@redhat.com>
Changes for 64-bit cleanliness, loosely based on patch
from Mark Murnane.
* gconvert.c (g_convert/g_convert_with_fallback): Remove
workarounds for since-fixed GNU libc bugs. Minor
doc fix.
* gconvert.[ch]: Change gint to gsize/gssize as
appropriate.
* gconvert.c (g_locale/filename_to/from_utf8): Fix incorrect
computation of bytes_read / bytes_written.
* gfileutils.[ch] (g_file_get_contents): Make length
out parameter 'gsize *len'.
* ghook.c (g_hook_compare_ids): Don't compare a
and b as 'a - b'.
* gmacros.h (GSIZE_TO_POINTER): Add GPOINTER_TO_SIZE,
GSIZE_TO_POINTER.
* gmain.c (g_timeout_prepare): Rewrite to avoid
overflows. (Fixes bug when system clock skews
backwards more than 24 days.)
* gmarkup.[ch]: Make lengths passed to callbacks
gsize, length for g_markup_parse-context_parse(),
g_markup_escape_text() gssize.
* gmessages.[ch] (g_printf_string_upper_bound): Change
return value to gsize.
* gmessages.c (printf_string_upper_bound): Remove
a ridiculous use of 'inline' on a 300 line function.
* gstring.[ch]: Represent size of string as a gsize,
not gint. Make parameters to functions take gsize,
or gssize where -1 is allowed.
* gstring.c (g_string_erase): Make
g_string_erase (string, pos, -1) a synonym for
g_string_truncate for consistency with other G*
APIs.
* gstrfuncs.[ch]: Make all functions taking a string
length, take a gsize, or gssize if -1 is allowed.
(g_strstr_len, g_strrstr_len). Also fix some boundary
conditions in g_str[r]str[_len].
* gutf8.c tests/unicode-encoding.c: Make parameters that
are byte lengths gsize, gssize as appropriate. Make
character offsets, other counts, glong.
* gasyncqueue.c gcompletion.c
timeloop.c timeloop-basic.c gutils.c gspawn.c.
Small 64 bit cleanliness fixups.
* glist.c (g_list_sort2, g_list_sort_real): Fix functions
that should have been static.
* gdate.c (g_date_fill_parse_tokens): Fix extra
declaration that was shadowing another.
* tests/module-test.c: Include string.h
Mon Jun 18 15:43:29 2001 Owen Taylor <otaylor@redhat.com>
* gutf8.c (g_get_charset): Make argument
G_CONST_RETURN char **.
2001-06-23 13:55:09 +00:00
|
|
|
}
|
1998-06-10 23:21:14 +00:00
|
|
|
|
|
|
|
string->len -= len;
|
2011-10-01 23:23:40 -04:00
|
|
|
|
1998-06-10 23:21:14 +00:00
|
|
|
string->str[string->len] = 0;
|
|
|
|
|
2001-09-19 18:08:19 +00:00
|
|
|
return string;
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2001-06-30 16:54:33 +00:00
|
|
|
/**
|
|
|
|
* g_string_ascii_down:
|
|
|
|
* @string: a GString
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
|
|
|
* Converts all uppercase ASCII letters to lowercase ASCII letters.
|
|
|
|
*
|
2014-02-19 19:35:23 -05:00
|
|
|
* Returns: passed-in @string pointer, with all the
|
2011-10-01 23:23:40 -04:00
|
|
|
* uppercase characters converted to lowercase in place,
|
|
|
|
* with semantics that exactly match g_ascii_tolower().
|
|
|
|
*/
|
|
|
|
GString *
|
2001-06-30 16:54:33 +00:00
|
|
|
g_string_ascii_down (GString *string)
|
|
|
|
{
|
|
|
|
gchar *s;
|
2004-01-15 21:33:58 +00:00
|
|
|
gint n;
|
2001-06-30 16:54:33 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
|
|
|
|
2004-01-15 21:33:58 +00:00
|
|
|
n = string->len;
|
2001-06-30 16:54:33 +00:00
|
|
|
s = string->str;
|
|
|
|
|
|
|
|
while (n)
|
|
|
|
{
|
|
|
|
*s = g_ascii_tolower (*s);
|
|
|
|
s++;
|
|
|
|
n--;
|
|
|
|
}
|
|
|
|
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_string_ascii_up:
|
|
|
|
* @string: a GString
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
|
|
|
* Converts all lowercase ASCII letters to uppercase ASCII letters.
|
|
|
|
*
|
2014-02-19 19:35:23 -05:00
|
|
|
* Returns: passed-in @string pointer, with all the
|
2011-10-01 23:23:40 -04:00
|
|
|
* lowercase characters converted to uppercase in place,
|
|
|
|
* with semantics that exactly match g_ascii_toupper().
|
|
|
|
*/
|
|
|
|
GString *
|
2001-06-30 16:54:33 +00:00
|
|
|
g_string_ascii_up (GString *string)
|
|
|
|
{
|
|
|
|
gchar *s;
|
2004-01-16 20:44:03 +00:00
|
|
|
gint n;
|
2001-06-30 16:54:33 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
|
|
|
|
2004-01-16 20:44:03 +00:00
|
|
|
n = string->len;
|
2001-06-30 16:54:33 +00:00
|
|
|
s = string->str;
|
|
|
|
|
|
|
|
while (n)
|
|
|
|
{
|
|
|
|
*s = g_ascii_toupper (*s);
|
|
|
|
s++;
|
|
|
|
n--;
|
|
|
|
}
|
|
|
|
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
2002-11-28 20:46:29 +00:00
|
|
|
/**
|
|
|
|
* g_string_down:
|
|
|
|
* @string: a #GString
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2002-11-28 20:46:29 +00:00
|
|
|
* Converts a #GString to lowercase.
|
|
|
|
*
|
2011-10-01 23:23:40 -04:00
|
|
|
* Returns: the #GString
|
2002-11-28 20:46:29 +00:00
|
|
|
*
|
2011-10-01 23:23:40 -04:00
|
|
|
* Deprecated:2.2: This function uses the locale-specific
|
|
|
|
* tolower() function, which is almost never the right thing.
|
|
|
|
* Use g_string_ascii_down() or g_utf8_strdown() instead.
|
2002-11-28 20:46:29 +00:00
|
|
|
*/
|
2011-10-01 23:23:40 -04:00
|
|
|
GString *
|
2001-09-19 18:08:19 +00:00
|
|
|
g_string_down (GString *string)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
1999-07-24 18:50:58 +00:00
|
|
|
guchar *s;
|
2004-01-15 21:33:58 +00:00
|
|
|
glong n;
|
1998-06-10 23:21:14 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
|
|
|
|
2011-10-01 23:23:40 -04:00
|
|
|
n = string->len;
|
2000-09-29 13:37:01 +00:00
|
|
|
s = (guchar *) string->str;
|
1998-06-10 23:21:14 +00:00
|
|
|
|
2000-06-29 20:09:36 +00:00
|
|
|
while (n)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
2001-06-30 16:54:33 +00:00
|
|
|
if (isupper (*s))
|
2011-10-01 23:23:40 -04:00
|
|
|
*s = tolower (*s);
|
1998-06-10 23:21:14 +00:00
|
|
|
s++;
|
2000-06-29 20:09:36 +00:00
|
|
|
n--;
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2001-09-19 18:08:19 +00:00
|
|
|
return string;
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2002-11-28 20:46:29 +00:00
|
|
|
/**
|
|
|
|
* g_string_up:
|
2011-10-01 23:23:40 -04:00
|
|
|
* @string: a #GString
|
|
|
|
*
|
2002-11-28 20:46:29 +00:00
|
|
|
* Converts a #GString to uppercase.
|
2011-10-01 23:23:40 -04:00
|
|
|
*
|
2014-02-19 19:35:23 -05:00
|
|
|
* Returns: @string
|
2002-11-28 20:46:29 +00:00
|
|
|
*
|
2011-10-01 23:23:40 -04:00
|
|
|
* Deprecated:2.2: This function uses the locale-specific
|
|
|
|
* toupper() function, which is almost never the right thing.
|
|
|
|
* Use g_string_ascii_up() or g_utf8_strup() instead.
|
|
|
|
*/
|
|
|
|
GString *
|
2001-09-19 18:08:19 +00:00
|
|
|
g_string_up (GString *string)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
1999-07-24 18:50:58 +00:00
|
|
|
guchar *s;
|
2004-01-15 21:33:58 +00:00
|
|
|
glong n;
|
1998-06-10 23:21:14 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
|
|
|
|
2004-01-15 21:33:58 +00:00
|
|
|
n = string->len;
|
2000-09-29 13:37:01 +00:00
|
|
|
s = (guchar *) string->str;
|
1998-06-10 23:21:14 +00:00
|
|
|
|
2000-06-29 20:09:36 +00:00
|
|
|
while (n)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
2001-06-30 16:54:33 +00:00
|
|
|
if (islower (*s))
|
2011-10-01 23:23:40 -04:00
|
|
|
*s = toupper (*s);
|
1998-06-10 23:21:14 +00:00
|
|
|
s++;
|
2000-06-29 20:09:36 +00:00
|
|
|
n--;
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2001-09-19 18:08:19 +00:00
|
|
|
return string;
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2007-06-15 12:43:54 +00:00
|
|
|
/**
|
|
|
|
* g_string_append_vprintf:
|
2007-07-22 04:14:54 +00:00
|
|
|
* @string: a #GString
|
|
|
|
* @format: the string format. See the printf() documentation
|
|
|
|
* @args: the list of arguments to insert in the output
|
2007-06-15 12:43:54 +00:00
|
|
|
*
|
|
|
|
* Appends a formatted string onto the end of a #GString.
|
2008-01-18 09:41:46 +00:00
|
|
|
* This function is similar to g_string_append_printf()
|
2007-06-15 12:43:54 +00:00
|
|
|
* except that the arguments to the format string are passed
|
|
|
|
* as a va_list.
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
g_string_append_vprintf (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
const gchar *format,
|
|
|
|
va_list args)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
2007-06-22 17:04:07 +00:00
|
|
|
gchar *buf;
|
|
|
|
gint len;
|
2011-10-01 23:23:40 -04:00
|
|
|
|
2007-06-15 12:43:54 +00:00
|
|
|
g_return_if_fail (string != NULL);
|
2007-07-22 04:14:54 +00:00
|
|
|
g_return_if_fail (format != NULL);
|
2007-06-15 12:43:54 +00:00
|
|
|
|
2007-07-22 04:14:54 +00:00
|
|
|
len = g_vasprintf (&buf, format, args);
|
2007-06-22 17:04:07 +00:00
|
|
|
|
|
|
|
if (len >= 0)
|
|
|
|
{
|
|
|
|
g_string_maybe_expand (string, len);
|
|
|
|
memcpy (string->str + string->len, buf, len + 1);
|
|
|
|
string->len += len;
|
|
|
|
g_free (buf);
|
|
|
|
}
|
2007-06-15 12:43:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_string_vprintf:
|
2007-07-22 04:14:54 +00:00
|
|
|
* @string: a #GString
|
|
|
|
* @format: the string format. See the printf() documentation
|
|
|
|
* @args: the parameters to insert into the format string
|
2007-06-15 12:43:54 +00:00
|
|
|
*
|
2011-10-01 23:23:40 -04:00
|
|
|
* Writes a formatted string into a #GString.
|
|
|
|
* This function is similar to g_string_printf() except that
|
2007-07-22 04:14:54 +00:00
|
|
|
* the arguments to the format string are passed as a va_list.
|
2007-06-15 12:43:54 +00:00
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
g_string_vprintf (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
const gchar *format,
|
|
|
|
va_list args)
|
2007-06-15 12:43:54 +00:00
|
|
|
{
|
|
|
|
g_string_truncate (string, 0);
|
2007-07-22 04:14:54 +00:00
|
|
|
g_string_append_vprintf (string, format, args);
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_sprintf:
|
2007-07-22 04:14:54 +00:00
|
|
|
* @string: a #GString
|
|
|
|
* @format: the string format. See the sprintf() documentation
|
2011-07-22 13:25:32 +02:00
|
|
|
* @...: the parameters to insert into the format string
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
|
|
|
* Writes a formatted string into a #GString.
|
|
|
|
* This is similar to the standard sprintf() function,
|
2011-10-01 23:23:40 -04:00
|
|
|
* except that the #GString buffer automatically expands
|
|
|
|
* to contain the results. The previous contents of the
|
|
|
|
* #GString are destroyed.
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
|
|
|
* Deprecated: This function has been renamed to g_string_printf().
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_string_printf:
|
2007-07-22 04:14:54 +00:00
|
|
|
* @string: a #GString
|
|
|
|
* @format: the string format. See the printf() documentation
|
2011-07-22 13:25:32 +02:00
|
|
|
* @...: the parameters to insert into the format string
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
|
|
|
* Writes a formatted string into a #GString.
|
|
|
|
* This is similar to the standard sprintf() function,
|
2011-10-01 23:23:40 -04:00
|
|
|
* except that the #GString buffer automatically expands
|
|
|
|
* to contain the results. The previous contents of the
|
2006-12-16 06:14:45 +00:00
|
|
|
* #GString are destroyed.
|
|
|
|
*/
|
1998-06-10 23:21:14 +00:00
|
|
|
void
|
2007-07-22 04:14:54 +00:00
|
|
|
g_string_printf (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
const gchar *format,
|
|
|
|
...)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
removed this function which was not publically exported in glib.h. to
Mon Aug 24 02:08:56 1998 Tim Janik <timj@gtk.org>
* glib.h:
* gstring.c:
* gstrfuncs.c:
(g_vsprintf): removed this function which was not publically
exported in glib.h. to export it, it should have been named
differently in the first place, since its semantics differ from
vsprintf(). apart from that, it was a possible cause for
problems since it worked on a previously allocated memory area and
was used in a lot places of glib. exporting it would have been a
guararant for problems with threaded programs.
(g_printf_string_upper_bound): exported this function to return
a string size, guarranteed to be big enough to hold the fully
expanded format+args string. added 'q', 'L' and 'll' flag handling.
in fact, the newly allocated area is in most cases much bigger than
required.
(g_strdup_vprintf()): new function returning a newly allocated string
containing the contents of *format and associated args (size is
calculated with g_printf_string_upper_bound()).
(g_strdup_printf): new function which wraps g_strdup_vprintf().
* configure.in: check for va_copy() or __va_copy() alternatively.
check whether va_lists can be copyied by value.
* glib.h: provide a definition for G_VA_COPY.
* glib.h:
* gmessages.c:
(g_logv):
(g_vsnprintf):
pass va_lists by value, not by reference, since this causes problems
on platforms that implement va_list as as arrays. internaly, use
G_VA_COPY (new_arg, org_arg); va_end (new_arg); to produce a second
va_list variable, if multiple passes are required. changed all
callers.
* glib.h:
* gerror.h:
renamed g_debug() to g_on_error_query(), cleaned up a bit.
renamed g_stack_trace() to g_on_error_stack_trace() since both
functions cluttered different namespaces.
there is an appropriate comment in glib.h now that explains the
unix and gdb specific dependencies of both functions.
removed g_attach_process().
g_on_error_stack_trace() should probably be handled with caution,
i've seem several different linux versions (2.0.x) become unstable
after invokation of this function.
1998-08-24 05:26:53 +00:00
|
|
|
va_list args;
|
1998-06-10 23:21:14 +00:00
|
|
|
|
|
|
|
g_string_truncate (string, 0);
|
|
|
|
|
2007-07-22 04:14:54 +00:00
|
|
|
va_start (args, format);
|
|
|
|
g_string_append_vprintf (string, format, args);
|
removed this function which was not publically exported in glib.h. to
Mon Aug 24 02:08:56 1998 Tim Janik <timj@gtk.org>
* glib.h:
* gstring.c:
* gstrfuncs.c:
(g_vsprintf): removed this function which was not publically
exported in glib.h. to export it, it should have been named
differently in the first place, since its semantics differ from
vsprintf(). apart from that, it was a possible cause for
problems since it worked on a previously allocated memory area and
was used in a lot places of glib. exporting it would have been a
guararant for problems with threaded programs.
(g_printf_string_upper_bound): exported this function to return
a string size, guarranteed to be big enough to hold the fully
expanded format+args string. added 'q', 'L' and 'll' flag handling.
in fact, the newly allocated area is in most cases much bigger than
required.
(g_strdup_vprintf()): new function returning a newly allocated string
containing the contents of *format and associated args (size is
calculated with g_printf_string_upper_bound()).
(g_strdup_printf): new function which wraps g_strdup_vprintf().
* configure.in: check for va_copy() or __va_copy() alternatively.
check whether va_lists can be copyied by value.
* glib.h: provide a definition for G_VA_COPY.
* glib.h:
* gmessages.c:
(g_logv):
(g_vsnprintf):
pass va_lists by value, not by reference, since this causes problems
on platforms that implement va_list as as arrays. internaly, use
G_VA_COPY (new_arg, org_arg); va_end (new_arg); to produce a second
va_list variable, if multiple passes are required. changed all
callers.
* glib.h:
* gerror.h:
renamed g_debug() to g_on_error_query(), cleaned up a bit.
renamed g_stack_trace() to g_on_error_stack_trace() since both
functions cluttered different namespaces.
there is an appropriate comment in glib.h now that explains the
unix and gdb specific dependencies of both functions.
removed g_attach_process().
g_on_error_stack_trace() should probably be handled with caution,
i've seem several different linux versions (2.0.x) become unstable
after invokation of this function.
1998-08-24 05:26:53 +00:00
|
|
|
va_end (args);
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|
|
|
|
|
2006-12-16 06:14:45 +00:00
|
|
|
/**
|
|
|
|
* g_string_sprintfa:
|
2007-07-22 04:14:54 +00:00
|
|
|
* @string: a #GString
|
|
|
|
* @format: the string format. See the sprintf() documentation
|
2011-07-22 13:25:32 +02:00
|
|
|
* @...: the parameters to insert into the format string
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
|
|
|
* Appends a formatted string onto the end of a #GString.
|
2008-01-18 09:41:46 +00:00
|
|
|
* This function is similar to g_string_sprintf() except that
|
2011-10-01 23:23:40 -04:00
|
|
|
* the text is appended to the #GString.
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
2007-07-22 04:14:54 +00:00
|
|
|
* Deprecated: This function has been renamed to g_string_append_printf()
|
2006-12-16 06:14:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_string_append_printf:
|
2007-07-22 04:14:54 +00:00
|
|
|
* @string: a #GString
|
|
|
|
* @format: the string format. See the printf() documentation
|
2011-07-22 13:25:32 +02:00
|
|
|
* @...: the parameters to insert into the format string
|
2006-12-16 06:14:45 +00:00
|
|
|
*
|
|
|
|
* Appends a formatted string onto the end of a #GString.
|
2011-10-01 23:23:40 -04:00
|
|
|
* This function is similar to g_string_printf() except
|
2006-12-16 06:14:45 +00:00
|
|
|
* that the text is appended to the #GString.
|
|
|
|
*/
|
1998-06-10 23:21:14 +00:00
|
|
|
void
|
2007-07-22 04:14:54 +00:00
|
|
|
g_string_append_printf (GString *string,
|
2011-10-01 23:23:40 -04:00
|
|
|
const gchar *format,
|
|
|
|
...)
|
1998-06-10 23:21:14 +00:00
|
|
|
{
|
removed this function which was not publically exported in glib.h. to
Mon Aug 24 02:08:56 1998 Tim Janik <timj@gtk.org>
* glib.h:
* gstring.c:
* gstrfuncs.c:
(g_vsprintf): removed this function which was not publically
exported in glib.h. to export it, it should have been named
differently in the first place, since its semantics differ from
vsprintf(). apart from that, it was a possible cause for
problems since it worked on a previously allocated memory area and
was used in a lot places of glib. exporting it would have been a
guararant for problems with threaded programs.
(g_printf_string_upper_bound): exported this function to return
a string size, guarranteed to be big enough to hold the fully
expanded format+args string. added 'q', 'L' and 'll' flag handling.
in fact, the newly allocated area is in most cases much bigger than
required.
(g_strdup_vprintf()): new function returning a newly allocated string
containing the contents of *format and associated args (size is
calculated with g_printf_string_upper_bound()).
(g_strdup_printf): new function which wraps g_strdup_vprintf().
* configure.in: check for va_copy() or __va_copy() alternatively.
check whether va_lists can be copyied by value.
* glib.h: provide a definition for G_VA_COPY.
* glib.h:
* gmessages.c:
(g_logv):
(g_vsnprintf):
pass va_lists by value, not by reference, since this causes problems
on platforms that implement va_list as as arrays. internaly, use
G_VA_COPY (new_arg, org_arg); va_end (new_arg); to produce a second
va_list variable, if multiple passes are required. changed all
callers.
* glib.h:
* gerror.h:
renamed g_debug() to g_on_error_query(), cleaned up a bit.
renamed g_stack_trace() to g_on_error_stack_trace() since both
functions cluttered different namespaces.
there is an appropriate comment in glib.h now that explains the
unix and gdb specific dependencies of both functions.
removed g_attach_process().
g_on_error_stack_trace() should probably be handled with caution,
i've seem several different linux versions (2.0.x) become unstable
after invokation of this function.
1998-08-24 05:26:53 +00:00
|
|
|
va_list args;
|
1998-06-10 23:21:14 +00:00
|
|
|
|
2007-07-22 04:14:54 +00:00
|
|
|
va_start (args, format);
|
|
|
|
g_string_append_vprintf (string, format, args);
|
removed this function which was not publically exported in glib.h. to
Mon Aug 24 02:08:56 1998 Tim Janik <timj@gtk.org>
* glib.h:
* gstring.c:
* gstrfuncs.c:
(g_vsprintf): removed this function which was not publically
exported in glib.h. to export it, it should have been named
differently in the first place, since its semantics differ from
vsprintf(). apart from that, it was a possible cause for
problems since it worked on a previously allocated memory area and
was used in a lot places of glib. exporting it would have been a
guararant for problems with threaded programs.
(g_printf_string_upper_bound): exported this function to return
a string size, guarranteed to be big enough to hold the fully
expanded format+args string. added 'q', 'L' and 'll' flag handling.
in fact, the newly allocated area is in most cases much bigger than
required.
(g_strdup_vprintf()): new function returning a newly allocated string
containing the contents of *format and associated args (size is
calculated with g_printf_string_upper_bound()).
(g_strdup_printf): new function which wraps g_strdup_vprintf().
* configure.in: check for va_copy() or __va_copy() alternatively.
check whether va_lists can be copyied by value.
* glib.h: provide a definition for G_VA_COPY.
* glib.h:
* gmessages.c:
(g_logv):
(g_vsnprintf):
pass va_lists by value, not by reference, since this causes problems
on platforms that implement va_list as as arrays. internaly, use
G_VA_COPY (new_arg, org_arg); va_end (new_arg); to produce a second
va_list variable, if multiple passes are required. changed all
callers.
* glib.h:
* gerror.h:
renamed g_debug() to g_on_error_query(), cleaned up a bit.
renamed g_stack_trace() to g_on_error_stack_trace() since both
functions cluttered different namespaces.
there is an appropriate comment in glib.h now that explains the
unix and gdb specific dependencies of both functions.
removed g_attach_process().
g_on_error_stack_trace() should probably be handled with caution,
i've seem several different linux versions (2.0.x) become unstable
after invokation of this function.
1998-08-24 05:26:53 +00:00
|
|
|
va_end (args);
|
1998-06-10 23:21:14 +00:00
|
|
|
}
|