349eb27fbec2454233eb467fbd050640eb25493c
[metze/wireshark/wip.git] / wsutil / cfutils.c
1 /* cfutils.c
2  * Routines to work around deficiencies in Core Foundation, such as the
3  * lack of a routine to convert a CFString to a C string of arbitrary
4  * size.
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 2001 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  */
24
25 #include "config.h"
26
27 #ifdef HAVE_OS_X_FRAMEWORKS
28 #include <glib.h>
29 #include <CoreFoundation/CoreFoundation.h>
30 #include <wsutil/cfutils.h>
31
32 /*
33  * Convert a CFString to a UTF-8-encoded C string; the resulting string
34  * is allocated with g_malloc().  Returns NULL if the conversion fails.
35  */
36 char *
37 CFString_to_C_string(CFStringRef cfstring)
38 {
39         CFIndex string_len;
40         char *string;
41
42         string_len = CFStringGetMaximumSizeForEncoding(CFStringGetLength(cfstring),
43             kCFStringEncodingUTF8);
44         string = (char *)g_malloc(string_len + 1);
45         if (!CFStringGetCString(cfstring, string, string_len + 1,
46             kCFStringEncodingUTF8)) {
47                 g_free(string);
48                 return NULL;
49         }
50         return string;
51 }
52 #endif