diff src/stringref.c @ 7786:203a18e56dc6

[gaim-migrate @ 8431] * Documentation is good. Not that I have any idea if any of my documentation works, because I haven't checked... I totally made up @note, but it sure seems reasonable to me. * A couple of stringref utility functions which seem useful in any case, like len and cmp. * I'm going ahead and pushing a stringref creation function which creates a zero-refcount stringref into CVS... Nothing uses it yet, but I think that it is useful even in the absence of major stringref conversion ... because it's garbage collected! If no one refs it before the next iteration of the mainloop, it will be freed ... if it is ref'd, of course, it will have to be freed normally by an unref at some later point. committer: Tailor Script <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Sun, 07 Dec 2003 16:28:34 +0000
parents 136c65e68fb1
children 6741cac0bf52
line wrap: on
line diff
--- a/src/stringref.c	Sun Dec 07 16:15:21 2003 +0000
+++ b/src/stringref.c	Sun Dec 07 16:28:34 2003 +0000
@@ -1,5 +1,5 @@
 /**
- * @file stringref.c Reference-counted strings
+ * @file stringref.c Reference-counted immutable strings
  * @ingroup core
  *
  * gaim
@@ -29,6 +29,11 @@
 
 #include "stringref.h"
 
+static GList *gclist = NULL;
+
+static void stringref_free(GaimStringref *stringref);
+static gboolean gs_idle_cb(gpointer data);
+
 GaimStringref *gaim_stringref_new(const char *value)
 {
 	GaimStringref *newref;
@@ -43,6 +48,24 @@
 	return newref;
 }
 
+GaimStringref *gaim_stringref_new_noref(const char *value)
+{
+	GaimStringref *newref;
+
+	if (value == NULL)
+		return NULL;
+
+	newref = g_malloc(sizeof(GaimStringref) + strlen(value) + 1);
+	strcpy(newref->value, value);
+	newref->ref = 0x80000000;
+
+	if (gclist == NULL)
+		g_idle_add(gs_idle_cb, NULL);
+	gclist = g_list_prepend(gclist, newref);
+
+	return newref;
+}
+
 GaimStringref *gaim_stringref_printf(const char *format, ...)
 {
 	GaimStringref *newref;
@@ -71,11 +94,54 @@
 void gaim_stringref_unref(GaimStringref *stringref)
 {
 	g_return_if_fail(stringref != NULL);
-	if (--stringref->ref == 0)
+	if ((--(stringref->ref) & 0x7fffffff) == 0) {
+		if (stringref->ref & 0x80000000)
+			gclist = g_list_remove(gclist, stringref);
 		g_free(stringref);
+	}
 }
 
 const char *gaim_stringref_value(const GaimStringref *stringref)
 {
 	return (stringref == NULL ? NULL : stringref->value);
 }
+
+int gaim_stringref_cmp(const GaimStringref *s1, const GaimStringref *s2)
+{
+	return (s1 == s2 ? 0 : strcmp(gaim_stringref_value(s1), gaim_stringref_value(s2)));
+}
+
+size_t gaim_stringref_len(const GaimStringref *stringref)
+{
+	return strlen(gaim_stringref_value(stringref));
+}
+
+static void stringref_free(GaimStringref *stringref)
+{
+#ifdef DEBUG
+	if (stringref->ref != 0) {
+		gaim_debug(GAIM_DEBUG_ERROR, "stringref", "Free of nonzero (%d) ref stringref!\n", stringref->ref);
+		return;
+	}
+#endif /* DEBUG */
+	g_free(stringref);
+}
+
+static gboolean gs_idle_cb(gpointer data)
+{
+	GaimStringref *ref;
+	GList *del;
+
+	while (gclist != NULL) {
+		ref = gclist->data;
+		ref->ref &= 0x7fffffff;
+		if (ref->ref == 0) {
+			stringref_free(ref);
+		}
+		del = gclist;
+		gclist = gclist->next;
+		g_list_free_1(del);
+	}
+
+	return FALSE;
+}