1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
/* GKrellM
| Copyright (C) 1999-2006 Bill Wilson
|
| Author: Bill Wilson billw@gkrellm.net
| Latest versions might be found at: http://gkrellm.net
|
| This program is free software which I release under the GNU General Public
| License. You may redistribute and/or modify this program under the terms
| of that 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. Version 2 is in the
| COPYRIGHT file in the top level directory of this distribution.
|
| To get a copy of the GNU General Puplic License, write to the Free Software
| Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "gkrellmd.h"
#include "gkrellmd-private.h"
gboolean
gkrellmd_dup_string(gchar **dst, gchar *src)
{
if (!dst || (!*dst && !src))
return FALSE;
if (*dst)
{
if (src && !strcmp(*dst, src))
return FALSE;
g_free(*dst);
}
*dst = g_strdup(src);
return TRUE;
}
gboolean
gkrellm_dup_string(gchar **dst, gchar *src)
{
return gkrellmd_dup_string(dst, src);
}
static gboolean
any(gchar c, gchar *s)
{
while (*s)
if (c == *s++)
return TRUE;
return FALSE;
}
/* Return a duplicated token from a string. "*string" points to the source
| string and is updated to point to the string remaining after the
| found token. If there is no next token, return an empty dupped string
| (not a NULL pointer) and leave *string unchanged.
| Unlike strtok(): args are not modified, gkrellm_token() can be used on
| constant strings, delimeter identity is not lost, and it's thread safe.
| Only the caller's initial string pointer is modified.
*/
gchar *
gkrellmd_dup_token(gchar **string, gchar *delimeters)
{
gchar *str, *s, *delims;
gboolean quoted = FALSE;
if (!string || !*string)
return g_strdup("");
str = *string;
delims = delimeters ? delimeters : " \t\n";
while (any(*str, delims))
++str;
if (*str == '"')
{
quoted = TRUE;
++str;
for (s = str; *s && *s != '"'; ++s)
;
}
else
for (s = str; *s && !any(*s, delims); ++s)
;
*string = (quoted && *s) ? s + 1 : s;
return g_strndup(str, s - str);
}
gchar *
gkrellm_dup_token(gchar **string, gchar *delimeters)
{
return gkrellmd_dup_token(string, delimeters);
}
void
gkrellmd_free_glist_and_data(GList **list_head)
{
GList *list;
if (*list_head == NULL)
return;
/* could use g_list_foreach(*list_head, (G_FUNC)g_free, NULL);
*/
for (list = *list_head; list; list = list->next)
if (list->data)
g_free(list->data);
g_list_free(*list_head);
*list_head = NULL;
}
void
gkrellm_free_glist_and_data(GList **list_head)
{
gkrellmd_free_glist_and_data(list_head);
}
/* If there is a line in the gstring ('\n' delimited) copy it to the
| line buffer including the newline and erase it from the gstring.
*/
gboolean
gkrellmd_getline_from_gstring(GString **gstring, gchar *line, gint size)
{
GString *gstr = *gstring;
gchar *s;
gint len, n;
if (gstr && gstr->str && (s = strchr(gstr->str, '\n')) != NULL)
{
n = len = s - gstr->str + 1;
if (n >= size)
n = size - 1; /* Truncate the line to fit */
strncpy(line, gstr->str, n);
line[n] = '\0';
*gstring = g_string_erase(gstr, 0, len);
return TRUE;
}
return FALSE;
}
gboolean
gkrellm_getline_from_gstring(GString **gstring, gchar *line, gint size)
{
return gkrellmd_getline_from_gstring(gstring, line, size);
}
|