- Move setting _U_ into config.h, because
[obnox/wireshark/wip.git] / epan / codecs.c
1 /* codecs.c
2  * codecs interface   2007 Tomas Kukosa
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  * 
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  * 
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include <epan/codecs.h>
30
31 struct codec_handle {
32         const char *name;
33         codec_init_fn init_fn;
34         codec_release_fn release_fn;
35         codec_decode_fn decode_fn;
36 };
37
38 /*
39  * List of registered codecs.
40  */
41 static GHashTable *registered_codecs = NULL;
42
43
44 /* Find a registered codec by name. */
45 codec_handle_t
46 find_codec(const char *name)
47 {
48         return (registered_codecs) ? g_hash_table_lookup(registered_codecs, name) : NULL;
49 }
50
51 /* Register a codec by name. */
52 void
53 register_codec(const char *name, codec_init_fn init_fn, codec_release_fn release_fn, codec_decode_fn decode_fn)
54 {
55         struct codec_handle *handle;
56
57         /* Create our hash table if it doesn't already exist */
58         if (registered_codecs == NULL) {
59                 registered_codecs = g_hash_table_new(g_str_hash, g_str_equal);
60                 g_assert(registered_codecs != NULL);
61         }
62
63         /* Make sure the registration is unique */
64         g_assert(g_hash_table_lookup(registered_codecs, name) == NULL);
65
66         handle = g_malloc(sizeof (struct codec_handle));
67         handle->name = name;
68         handle->init_fn = init_fn;
69         handle->release_fn = release_fn;
70         handle->decode_fn = decode_fn;
71
72         g_hash_table_insert(registered_codecs, (gpointer)name, (gpointer) handle);
73 }
74
75 void *codec_init(codec_handle_t codec)
76 {
77         if (!codec) return NULL;
78         return (codec->init_fn)();
79 }
80
81 void codec_release(codec_handle_t codec, void *context)
82 {
83         if (!codec) return;
84         (codec->release_fn)(context);
85 }
86
87 int codec_decode(codec_handle_t codec, void *context, const void *input, int inputSizeBytes, void *output, int *outputSizeBytes)
88 {
89         if (!codec) return 0;
90         return (codec->decode_fn)(context, input, inputSizeBytes, output, outputSizeBytes);
91 }