2 * @file stringref.c Reference-counted immutable strings
8 * Purple is the legal property of its developers, whose names are too numerous
9 * to list here. Please refer to the COPYRIGHT file distributed with this
10 * source distribution.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
34 #include "eventloop.h"
35 #include "stringref.h"
38 * The internal representation of a stringref.
40 * @note For this structure to be useful, the string contained within
41 * it must be immutable -- for this reason, do _not_ access it
44 struct _PurpleStringref
{
45 guint32 ref
; /**< The reference count of this string.
46 * Note that reference counts are only
47 * 31 bits, and the high-order bit
48 * indicates whether this string is up
49 * for GC at the next idle handler...
50 * But you aren't going to touch this
52 char value
[1]; /**< The string contained in this ref.
53 * Notice that it is simply "hanging
54 * off the end" of the ref ... this
55 * is to save an allocation. */
58 #define REFCOUNT(x) ((x) & 0x7fffffff)
60 static GList
*gclist
= NULL
;
62 static void stringref_free(PurpleStringref
*stringref
);
63 static gboolean
gs_idle_cb(gpointer data
);
65 PurpleStringref
*purple_stringref_new(const char *value
)
67 PurpleStringref
*newref
;
72 newref
= g_malloc(sizeof(PurpleStringref
) + strlen(value
));
73 strcpy(newref
->value
, value
);
79 PurpleStringref
*purple_stringref_new_noref(const char *value
)
81 PurpleStringref
*newref
;
86 newref
= g_malloc(sizeof(PurpleStringref
) + strlen(value
));
87 strcpy(newref
->value
, value
);
88 newref
->ref
= 0x80000000;
91 purple_timeout_add(0, gs_idle_cb
, NULL
);
92 gclist
= g_list_prepend(gclist
, newref
);
97 PurpleStringref
*purple_stringref_printf(const char *format
, ...)
99 PurpleStringref
*newref
;
105 va_start(ap
, format
);
106 newref
= g_malloc(sizeof(PurpleStringref
) + g_printf_string_upper_bound(format
, ap
));
107 vsprintf(newref
->value
, format
, ap
);
114 PurpleStringref
*purple_stringref_ref(PurpleStringref
*stringref
)
116 if (stringref
== NULL
)
122 void purple_stringref_unref(PurpleStringref
*stringref
)
124 if (stringref
== NULL
)
126 if (REFCOUNT(--(stringref
->ref
)) == 0) {
127 if (stringref
->ref
& 0x80000000)
128 gclist
= g_list_remove(gclist
, stringref
);
129 stringref_free(stringref
);
133 const char *purple_stringref_value(const PurpleStringref
*stringref
)
135 return (stringref
== NULL
? NULL
: stringref
->value
);
138 int purple_stringref_cmp(const PurpleStringref
*s1
, const PurpleStringref
*s2
)
140 return (s1
== s2
? 0 : strcmp(purple_stringref_value(s1
), purple_stringref_value(s2
)));
143 size_t purple_stringref_len(const PurpleStringref
*stringref
)
145 return strlen(purple_stringref_value(stringref
));
148 static void stringref_free(PurpleStringref
*stringref
)
151 if (REFCOUNT(stringref
->ref
) != 0) {
152 purple_debug(PURPLE_DEBUG_ERROR
, "stringref", "Free of nonzero (%d) ref stringref!\n", REFCOUNT(stringref
->ref
));
159 static gboolean
gs_idle_cb(gpointer data
)
161 PurpleStringref
*ref
;
164 while (gclist
!= NULL
) {
166 if (REFCOUNT(ref
->ref
) == 0) {
170 gclist
= gclist
->next
;