Sun, 20 May 2007 06:19:49 +0000
merge of 'b98e72d4089afb8a1879e5fe9627cfb132ee88de'
and 'b2836a24d81e7a1bd1d21b3aea8794b094391344'
| 7763 | 1 | /** |
| 7786 | 2 | * @file stringref.c Reference-counted immutable strings |
| 7763 | 3 | * @ingroup core |
| 4 | * | |
| 5 | * gaim | |
| 6 | * | |
| 8046 | 7 | * Gaim is the legal property of its developers, whose names are too numerous |
| 8 | * to list here. Please refer to the COPYRIGHT file distributed with this | |
| 9 | * source distribution. | |
| 7763 | 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify | |
| 12 | * it under the terms of the GNU General Public License as published by | |
| 13 | * the Free Software Foundation; either version 2 of the License, or | |
| 14 | * (at your option) any later version. | |
| 15 | * | |
| 16 | * This program is distributed in the hope that it will be useful, | |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 | * GNU General Public License for more details. | |
| 20 | * | |
| 21 | * You should have received a copy of the GNU General Public License | |
| 22 | * along with this program; if not, write to the Free Software | |
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 24 | * | |
| 25 | */ | |
| 26 | ||
| 27 | #include "internal.h" | |
| 28 | ||
| 29 | #include <string.h> | |
| 7767 | 30 | #include <stdarg.h> |
| 7763 | 31 | |
| 7789 | 32 | #include "debug.h" |
| 7763 | 33 | #include "stringref.h" |
| 34 | ||
|
14988
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
35 | /** |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
36 | * The internal representation of a stringref. |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
37 | * |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
38 | * @note For this structure to be useful, the string contained within |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
39 | * it must be immutable -- for this reason, do _not_ access it |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
40 | * directly! |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
41 | */ |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
42 | struct _GaimStringref { |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
43 | guint32 ref; /**< The reference count of this string. |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
44 | * Note that reference counts are only |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
45 | * 31 bits, and the high-order bit |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
46 | * indicates whether this string is up |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
47 | * for GC at the next idle handler... |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
48 | * But you aren't going to touch this |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
49 | * anyway, right? */ |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
50 | char value[1]; /**< The string contained in this ref. |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
51 | * Notice that it is simply "hanging |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
52 | * off the end" of the ref ... this |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
53 | * is to save an allocation. */ |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
54 | }; |
|
66b34458d49e
[gaim-migrate @ 17698]
Richard Laager <rlaager@pidgin.im>
parents:
14254
diff
changeset
|
55 | |
| 7795 | 56 | #define REFCOUNT(x) ((x) & 0x7fffffff) |
| 57 | ||
| 7786 | 58 | static GList *gclist = NULL; |
| 59 | ||
| 60 | static void stringref_free(GaimStringref *stringref); | |
| 61 | static gboolean gs_idle_cb(gpointer data); | |
| 62 | ||
| 7763 | 63 | GaimStringref *gaim_stringref_new(const char *value) |
| 64 | { | |
| 65 | GaimStringref *newref; | |
| 66 | ||
| 7772 | 67 | if (value == NULL) |
| 68 | return NULL; | |
| 69 | ||
| 8072 | 70 | newref = g_malloc(sizeof(GaimStringref) + strlen(value)); |
| 7763 | 71 | strcpy(newref->value, value); |
| 72 | newref->ref = 1; | |
| 73 | ||
| 74 | return newref; | |
| 75 | } | |
| 76 | ||
| 7786 | 77 | GaimStringref *gaim_stringref_new_noref(const char *value) |
| 78 | { | |
| 79 | GaimStringref *newref; | |
| 80 | ||
| 81 | if (value == NULL) | |
| 82 | return NULL; | |
| 83 | ||
| 8072 | 84 | newref = g_malloc(sizeof(GaimStringref) + strlen(value)); |
| 7786 | 85 | strcpy(newref->value, value); |
| 86 | newref->ref = 0x80000000; | |
| 87 | ||
| 88 | if (gclist == NULL) | |
| 89 | g_idle_add(gs_idle_cb, NULL); | |
| 90 | gclist = g_list_prepend(gclist, newref); | |
| 91 | ||
| 92 | return newref; | |
| 93 | } | |
| 94 | ||
| 7767 | 95 | GaimStringref *gaim_stringref_printf(const char *format, ...) |
| 96 | { | |
| 97 | GaimStringref *newref; | |
| 98 | va_list ap; | |
| 99 | ||
| 100 | if (format == NULL) | |
| 101 | return NULL; | |
| 102 | ||
| 103 | va_start(ap, format); | |
| 104 | newref = g_malloc(sizeof(GaimStringref) + g_printf_string_upper_bound(format, ap)); | |
| 105 | vsprintf(newref->value, format, ap); | |
| 106 | va_end(ap); | |
| 7784 | 107 | newref->ref = 1; |
| 7767 | 108 | |
| 109 | return newref; | |
| 110 | } | |
| 111 | ||
| 7763 | 112 | GaimStringref *gaim_stringref_ref(GaimStringref *stringref) |
| 113 | { | |
| 114 | if (stringref == NULL) | |
| 115 | return NULL; | |
| 116 | stringref->ref++; | |
| 117 | return stringref; | |
| 118 | } | |
| 119 | ||
| 120 | void gaim_stringref_unref(GaimStringref *stringref) | |
| 121 | { | |
| 7790 | 122 | if (stringref == NULL) |
| 123 | return; | |
| 7795 | 124 | if (REFCOUNT(--(stringref->ref)) == 0) { |
| 7786 | 125 | if (stringref->ref & 0x80000000) |
| 126 | gclist = g_list_remove(gclist, stringref); | |
| 7788 | 127 | stringref_free(stringref); |
| 7786 | 128 | } |
| 7763 | 129 | } |
| 130 | ||
| 7768 | 131 | const char *gaim_stringref_value(const GaimStringref *stringref) |
| 7763 | 132 | { |
| 133 | return (stringref == NULL ? NULL : stringref->value); | |
| 134 | } | |
| 7786 | 135 | |
| 136 | int gaim_stringref_cmp(const GaimStringref *s1, const GaimStringref *s2) | |
| 137 | { | |
| 138 | return (s1 == s2 ? 0 : strcmp(gaim_stringref_value(s1), gaim_stringref_value(s2))); | |
| 139 | } | |
| 140 | ||
| 141 | size_t gaim_stringref_len(const GaimStringref *stringref) | |
| 142 | { | |
| 143 | return strlen(gaim_stringref_value(stringref)); | |
| 144 | } | |
| 145 | ||
| 146 | static void stringref_free(GaimStringref *stringref) | |
| 147 | { | |
| 148 | #ifdef DEBUG | |
| 7795 | 149 | if (REFCOUNT(stringref->ref) != 0) { |
| 7796 | 150 | gaim_debug(GAIM_DEBUG_ERROR, "stringref", "Free of nonzero (%d) ref stringref!\n", REFCOUNT(stringref->ref)); |
| 7786 | 151 | return; |
| 152 | } | |
| 153 | #endif /* DEBUG */ | |
| 154 | g_free(stringref); | |
| 155 | } | |
| 156 | ||
| 157 | static gboolean gs_idle_cb(gpointer data) | |
| 158 | { | |
| 159 | GaimStringref *ref; | |
| 160 | GList *del; | |
| 161 | ||
| 162 | while (gclist != NULL) { | |
| 163 | ref = gclist->data; | |
| 7795 | 164 | if (REFCOUNT(ref->ref) == 0) { |
| 7786 | 165 | stringref_free(ref); |
| 166 | } | |
| 167 | del = gclist; | |
| 168 | gclist = gclist->next; | |
| 169 | g_list_free_1(del); | |
| 170 | } | |
| 171 | ||
| 172 | return FALSE; | |
| 173 | } |