mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-04 10:16:17 +01:00
Add this function.
2000-09-10 Havoc Pennington <hp@redhat.com> * gutf8.c (g_utf8_validate): Add this function.
This commit is contained in:
parent
333f4c4325
commit
49c937fcbb
@ -1,3 +1,7 @@
|
||||
2000-09-10 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutf8.c (g_utf8_validate): Add this function.
|
||||
|
||||
Sat Sep 9 18:50:42 2000 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strescape): Add a missing g_return_if_fail().
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-09-10 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutf8.c (g_utf8_validate): Add this function.
|
||||
|
||||
Sat Sep 9 18:50:42 2000 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strescape): Add a missing g_return_if_fail().
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-09-10 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutf8.c (g_utf8_validate): Add this function.
|
||||
|
||||
Sat Sep 9 18:50:42 2000 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strescape): Add a missing g_return_if_fail().
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-09-10 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutf8.c (g_utf8_validate): Add this function.
|
||||
|
||||
Sat Sep 9 18:50:42 2000 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strescape): Add a missing g_return_if_fail().
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-09-10 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutf8.c (g_utf8_validate): Add this function.
|
||||
|
||||
Sat Sep 9 18:50:42 2000 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strescape): Add a missing g_return_if_fail().
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-09-10 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutf8.c (g_utf8_validate): Add this function.
|
||||
|
||||
Sat Sep 9 18:50:42 2000 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strescape): Add a missing g_return_if_fail().
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-09-10 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutf8.c (g_utf8_validate): Add this function.
|
||||
|
||||
Sat Sep 9 18:50:42 2000 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strescape): Add a missing g_return_if_fail().
|
||||
|
@ -1,3 +1,7 @@
|
||||
2000-09-10 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gutf8.c (g_utf8_validate): Add this function.
|
||||
|
||||
Sat Sep 9 18:50:42 2000 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gstrfuncs.c (g_strescape): Add a missing g_return_if_fail().
|
||||
|
@ -185,6 +185,14 @@ gchar * g_ucs4_to_utf8 (const gunichar *str,
|
||||
gint g_unichar_to_utf8 (gunichar c,
|
||||
char *outbuf);
|
||||
|
||||
/* Validate a UTF8 string, return TRUE if valid, put pointer to
|
||||
* first invalid char in **end
|
||||
*/
|
||||
|
||||
gboolean g_utf8_validate (const gchar *str,
|
||||
gint len,
|
||||
const gchar **end);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
75
glib/gutf8.c
75
glib/gutf8.c
@ -487,3 +487,78 @@ g_utf8_to_ucs4 (const char *str, int len)
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* g_utf8_validate:
|
||||
* @str: a pointer to character data
|
||||
* @max_len: max bytes to validate, or -1 to go until nul
|
||||
* @end: return location for end of valid data
|
||||
*
|
||||
* Validates UTF-8 encoded text. @str is the text to validate;
|
||||
* if @str is nul-terminated, then @max_len can be -1, otherwise
|
||||
* @max_len should be the number of bytes to validate.
|
||||
* If @end is non-NULL, then the end of the valid range
|
||||
* will be stored there (i.e. the address of the first invalid byte
|
||||
* if some bytes were invalid, or the end of the text being validated
|
||||
* otherwise).
|
||||
*
|
||||
* Returns TRUE if all of @str was valid. Many GLib and GTK+
|
||||
* routines <emphasis>require</emphasis> valid UTF8 as input;
|
||||
* so data read from a file or the network should be checked
|
||||
* with g_utf8_validate() before doing anything else with it.
|
||||
*
|
||||
* Return value: TRUE if the text was valid UTF-8.
|
||||
**/
|
||||
gboolean
|
||||
g_utf8_validate (const gchar *str,
|
||||
gint max_len,
|
||||
const gchar **end)
|
||||
{
|
||||
|
||||
const gchar *p;
|
||||
gboolean retval = TRUE;
|
||||
|
||||
if (end)
|
||||
*end = str;
|
||||
|
||||
p = str;
|
||||
|
||||
while ((max_len < 0 || (p - str) < max_len) && *p)
|
||||
{
|
||||
int i, mask = 0, len;
|
||||
gunichar result;
|
||||
unsigned char c = (unsigned char) *p;
|
||||
|
||||
UTF8_COMPUTE (c, mask, len);
|
||||
|
||||
if (len == -1)
|
||||
{
|
||||
retval = FALSE;
|
||||
break;
|
||||
}
|
||||
|
||||
/* check that the expected number of bytes exists in str */
|
||||
if (max_len >= 0 &&
|
||||
((max_len - (p - str)) < len))
|
||||
{
|
||||
retval = FALSE;
|
||||
break;
|
||||
}
|
||||
|
||||
UTF8_GET (result, p, i, mask, len);
|
||||
|
||||
if (result == (gunichar)-1)
|
||||
{
|
||||
retval = FALSE;
|
||||
break;
|
||||
}
|
||||
|
||||
p += len;
|
||||
}
|
||||
|
||||
if (end)
|
||||
*end = p;
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
||||
|
@ -185,6 +185,14 @@ gchar * g_ucs4_to_utf8 (const gunichar *str,
|
||||
gint g_unichar_to_utf8 (gunichar c,
|
||||
char *outbuf);
|
||||
|
||||
/* Validate a UTF8 string, return TRUE if valid, put pointer to
|
||||
* first invalid char in **end
|
||||
*/
|
||||
|
||||
gboolean g_utf8_validate (const gchar *str,
|
||||
gint len,
|
||||
const gchar **end);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
75
gutf8.c
75
gutf8.c
@ -487,3 +487,78 @@ g_utf8_to_ucs4 (const char *str, int len)
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* g_utf8_validate:
|
||||
* @str: a pointer to character data
|
||||
* @max_len: max bytes to validate, or -1 to go until nul
|
||||
* @end: return location for end of valid data
|
||||
*
|
||||
* Validates UTF-8 encoded text. @str is the text to validate;
|
||||
* if @str is nul-terminated, then @max_len can be -1, otherwise
|
||||
* @max_len should be the number of bytes to validate.
|
||||
* If @end is non-NULL, then the end of the valid range
|
||||
* will be stored there (i.e. the address of the first invalid byte
|
||||
* if some bytes were invalid, or the end of the text being validated
|
||||
* otherwise).
|
||||
*
|
||||
* Returns TRUE if all of @str was valid. Many GLib and GTK+
|
||||
* routines <emphasis>require</emphasis> valid UTF8 as input;
|
||||
* so data read from a file or the network should be checked
|
||||
* with g_utf8_validate() before doing anything else with it.
|
||||
*
|
||||
* Return value: TRUE if the text was valid UTF-8.
|
||||
**/
|
||||
gboolean
|
||||
g_utf8_validate (const gchar *str,
|
||||
gint max_len,
|
||||
const gchar **end)
|
||||
{
|
||||
|
||||
const gchar *p;
|
||||
gboolean retval = TRUE;
|
||||
|
||||
if (end)
|
||||
*end = str;
|
||||
|
||||
p = str;
|
||||
|
||||
while ((max_len < 0 || (p - str) < max_len) && *p)
|
||||
{
|
||||
int i, mask = 0, len;
|
||||
gunichar result;
|
||||
unsigned char c = (unsigned char) *p;
|
||||
|
||||
UTF8_COMPUTE (c, mask, len);
|
||||
|
||||
if (len == -1)
|
||||
{
|
||||
retval = FALSE;
|
||||
break;
|
||||
}
|
||||
|
||||
/* check that the expected number of bytes exists in str */
|
||||
if (max_len >= 0 &&
|
||||
((max_len - (p - str)) < len))
|
||||
{
|
||||
retval = FALSE;
|
||||
break;
|
||||
}
|
||||
|
||||
UTF8_GET (result, p, i, mask, len);
|
||||
|
||||
if (result == (gunichar)-1)
|
||||
{
|
||||
retval = FALSE;
|
||||
break;
|
||||
}
|
||||
|
||||
p += len;
|
||||
}
|
||||
|
||||
if (end)
|
||||
*end = p;
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user