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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* GMime
* Copyright (C) 2000-2012 Jeffrey Stedfast
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free
* Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <glib.h>
#include <errno.h>
#include <string.h>
#include <stdio.h>
#include "gmime-charset.h"
#include "gmime-iconv.h"
#include "cache.h"
#ifdef ENABLE_WARNINGS
#define w(x) x
#else
#define w(x)
#endif /* ENABLE_WARNINGS */
/**
* SECTION: gmime-iconv
* @title: gmime-iconv
* @short_description: Low-level routines for converting text from one charset to another
* @see_also:
*
* These functions are wrappers around the system iconv(3)
* routines. The purpose of these wrappers are two-fold:
*
* 1. Cache iconv_t descriptors for you in order to optimize
* opening/closing many descriptors frequently
*
* and
*
* 2. To use the appropriate system charset alias for the MIME charset
* names given as arguments.
**/
#define ICONV_CACHE_SIZE (16)
typedef struct {
CacheNode node;
guint32 refcount : 31;
guint32 used : 1;
iconv_t cd;
} IconvCacheNode;
static Cache *iconv_cache = NULL;
static GHashTable *iconv_open_hash = NULL;
#ifdef GMIME_ICONV_DEBUG
static int cache_misses = 0;
static int shutdown = 0;
#define d(x) x
#else
#define d(x)
#endif /* GMIME_ICONV_DEBUG */
#ifdef G_THREADS_ENABLED
static GStaticMutex iconv_cache_lock = G_STATIC_MUTEX_INIT;
#define ICONV_CACHE_LOCK() g_static_mutex_lock (&iconv_cache_lock)
#define ICONV_CACHE_UNLOCK() g_static_mutex_unlock (&iconv_cache_lock)
#else
#define ICONV_CACHE_LOCK()
#define ICONV_CACHE_UNLOCK()
#endif /* G_THREADS_ENABLED */
/* caller *must* hold the iconv_cache_lock to call any of the following functions */
/**
* iconv_cache_node_new:
* @key: cache key
* @cd: iconv descriptor
*
* Creates a new cache node, inserts it into the cache and increments
* the cache size.
*
* Returns: a pointer to the newly allocated cache node.
**/
static IconvCacheNode *
iconv_cache_node_new (const char *key, iconv_t cd)
{
IconvCacheNode *node;
#ifdef GMIME_ICONV_DEBUG
cache_misses++;
#endif
node = (IconvCacheNode *) cache_node_insert (iconv_cache, key);
node->refcount = 1;
node->used = TRUE;
node->cd = cd;
return node;
}
static void
iconv_cache_node_free (CacheNode *node)
{
IconvCacheNode *inode = (IconvCacheNode *) node;
#ifdef GMIME_ICONV_DEBUG
if (shutdown) {
fprintf (stderr, "%s: open=%d; used=%s\n", node->key,
inode->refcount, inode->used ? "yes" : "no");
}
#endif
iconv_close (inode->cd);
}
/**
* iconv_cache_node_expire:
* @node: cache node
*
* Decides whether or not a cache node should be expired.
**/
static gboolean
iconv_cache_node_expire (Cache *cache, CacheNode *node)
{
IconvCacheNode *inode = (IconvCacheNode *) node;
if (inode->refcount == 0)
return TRUE;
return FALSE;
}
static void
iconv_open_node_free (gpointer key, gpointer value, gpointer user_data)
{
iconv_t cd = (iconv_t) key;
IconvCacheNode *node;
node = (IconvCacheNode *) cache_node_lookup (iconv_cache, value, FALSE);
g_assert (node);
if (cd != node->cd) {
node->refcount--;
iconv_close (cd);
}
}
/**
* g_mime_iconv_shutdown:
*
* Frees internal iconv caches created in g_mime_iconv_init().
*
* Note: this function is called for you by g_mime_shutdown().
**/
void
g_mime_iconv_shutdown (void)
{
if (!iconv_cache)
return;
#ifdef GMIME_ICONV_DEBUG
fprintf (stderr, "There were %d iconv cache misses\n", cache_misses);
fprintf (stderr, "The following %d iconv cache buckets are still open:\n", iconv_cache->size);
shutdown = 1;
#endif
g_hash_table_foreach (iconv_open_hash, iconv_open_node_free, NULL);
g_hash_table_destroy (iconv_open_hash);
iconv_open_hash = NULL;
cache_free (iconv_cache);
iconv_cache = NULL;
}
/**
* g_mime_iconv_init:
*
* Initialize GMime's iconv cache. This *MUST* be called before any
* gmime-iconv interfaces will work correctly.
*
* Note: this function is called for you by g_mime_init().
**/
void
g_mime_iconv_init (void)
{
if (iconv_cache)
return;
g_mime_charset_map_init ();
iconv_open_hash = g_hash_table_new (g_direct_hash, g_direct_equal);
iconv_cache = cache_new (iconv_cache_node_expire, iconv_cache_node_free,
sizeof (IconvCacheNode), ICONV_CACHE_SIZE);
}
/**
* g_mime_iconv_open:
* @to: charset to convert to
* @from: charset to convert from
*
* Allocates a coversion descriptor suitable for converting byte
* sequences from charset @from to charset @to. The resulting
* descriptor can be used with iconv() (or the g_mime_iconv() wrapper) any
* number of times until closed using g_mime_iconv_close().
*
* See the manual page for iconv_open(3) for further details.
*
* Returns: a new conversion descriptor for use with g_mime_iconv() on
* success or (iconv_t) %-1 on fail as well as setting an appropriate
* errno value.
**/
iconv_t
g_mime_iconv_open (const char *to, const char *from)
{
IconvCacheNode *node;
iconv_t cd;
char *key;
if (from == NULL || to == NULL) {
errno = EINVAL;
return (iconv_t) -1;
}
if (!g_ascii_strcasecmp (from, "x-unknown"))
from = g_mime_locale_charset ();
from = g_mime_charset_iconv_name (from);
to = g_mime_charset_iconv_name (to);
key = g_alloca (strlen (from) + strlen (to) + 2);
sprintf (key, "%s:%s", from, to);
ICONV_CACHE_LOCK ();
if ((node = (IconvCacheNode *) cache_node_lookup (iconv_cache, key, TRUE))) {
if (node->used) {
if ((cd = iconv_open (to, from)) == (iconv_t) -1)
goto exception;
} else {
/* Apparently iconv on Solaris <= 7 segfaults if you pass in
* NULL for anything but inbuf; work around that. (NULL outbuf
* or NULL *outbuf is allowed by Unix98.)
*/
size_t inleft = 0, outleft = 0;
char *outbuf = NULL;
cd = node->cd;
node->used = TRUE;
/* reset the descriptor */
iconv (cd, NULL, &inleft, &outbuf, &outleft);
}
node->refcount++;
} else {
if ((cd = iconv_open (to, from)) == (iconv_t) -1)
goto exception;
node = iconv_cache_node_new (key, cd);
}
g_hash_table_insert (iconv_open_hash, cd, ((CacheNode *) node)->key);
ICONV_CACHE_UNLOCK ();
return cd;
exception:
ICONV_CACHE_UNLOCK ();
#if w(!)0
if (errno == EINVAL)
g_warning ("Conversion from '%s' to '%s' is not supported", from, to);
else
g_warning ("Could not open converter from '%s' to '%s': %s",
from, to, strerror (errno));
#endif
return cd;
}
/**
* g_mime_iconv_close:
* @cd: iconv conversion descriptor
*
* Closes the iconv descriptor @cd.
*
* See the manual page for iconv_close(3) for further details.
*
* Returns: %0 on success or %-1 on fail as well as setting an
* appropriate errno value.
**/
int
g_mime_iconv_close (iconv_t cd)
{
IconvCacheNode *node;
const char *key;
if (cd == (iconv_t) -1)
return 0;
ICONV_CACHE_LOCK ();
if ((key = g_hash_table_lookup (iconv_open_hash, cd))) {
g_hash_table_remove (iconv_open_hash, cd);
node = (IconvCacheNode *) cache_node_lookup (iconv_cache, key, FALSE);
g_assert (node);
if (iconv_cache->size > ICONV_CACHE_SIZE) {
/* expire before unreffing this node so that it wont get uncached */
cache_expire_unused (iconv_cache);
}
node->refcount--;
if (cd == node->cd)
node->used = FALSE;
else
iconv_close (cd);
} else {
ICONV_CACHE_UNLOCK ();
d(g_warning ("This iconv context wasn't opened using g_mime_iconv_open()"));
return iconv_close (cd);
}
ICONV_CACHE_UNLOCK ();
return 0;
}
|