sl@0
|
1 |
/* -*- mode: C; c-file-style: "gnu" -*- */
|
sl@0
|
2 |
/* dbus-gutils.c Utils shared between convenience lib and installed lib
|
sl@0
|
3 |
*
|
sl@0
|
4 |
* Copyright (C) 2003 Red Hat, Inc.
|
sl@0
|
5 |
* Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
6 |
* Licensed under the Academic Free License version 2.1
|
sl@0
|
7 |
*
|
sl@0
|
8 |
* This program is free software; you can redistribute it and/or modify
|
sl@0
|
9 |
* it under the terms of the GNU General Public License as published by
|
sl@0
|
10 |
* the Free Software Foundation; either version 2 of the License, or
|
sl@0
|
11 |
* (at your option) any later version.
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* This program is distributed in the hope that it will be useful,
|
sl@0
|
14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
sl@0
|
16 |
* GNU General Public License for more details.
|
sl@0
|
17 |
*
|
sl@0
|
18 |
* You should have received a copy of the GNU General Public License
|
sl@0
|
19 |
* along with this program; if not, write to the Free Software
|
sl@0
|
20 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
sl@0
|
21 |
*
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef __SYMBIAN32__
|
sl@0
|
25 |
#include <config.h>
|
sl@0
|
26 |
#else
|
sl@0
|
27 |
#include "config.h"
|
sl@0
|
28 |
#endif //__SYMBIAN32__
|
sl@0
|
29 |
#include "dbus-gutils.h"
|
sl@0
|
30 |
#include "dbus-gtest.h"
|
sl@0
|
31 |
#include <string.h>
|
sl@0
|
32 |
|
sl@0
|
33 |
#ifdef __SYMBIAN32__
|
sl@0
|
34 |
#include<glib_global.h>
|
sl@0
|
35 |
#endif
|
sl@0
|
36 |
|
sl@0
|
37 |
#ifndef DOXYGEN_SHOULD_SKIP_THIS
|
sl@0
|
38 |
|
sl@0
|
39 |
char**
|
sl@0
|
40 |
_dbus_gutils_split_path (const char *path)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
int len;
|
sl@0
|
43 |
char **split;
|
sl@0
|
44 |
int n_components;
|
sl@0
|
45 |
int i, j, comp;
|
sl@0
|
46 |
|
sl@0
|
47 |
len = strlen (path);
|
sl@0
|
48 |
|
sl@0
|
49 |
n_components = 0;
|
sl@0
|
50 |
if (path[1] != '\0') /* if not "/" */
|
sl@0
|
51 |
{
|
sl@0
|
52 |
i = 0;
|
sl@0
|
53 |
while (i < len)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
if (path[i] == '/')
|
sl@0
|
56 |
n_components += 1;
|
sl@0
|
57 |
++i;
|
sl@0
|
58 |
}
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
split = g_new0 (char*, n_components + 1);
|
sl@0
|
62 |
|
sl@0
|
63 |
comp = 0;
|
sl@0
|
64 |
if (n_components == 0)
|
sl@0
|
65 |
i = 1;
|
sl@0
|
66 |
else
|
sl@0
|
67 |
i = 0;
|
sl@0
|
68 |
while (comp < n_components)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
if (path[i] == '/')
|
sl@0
|
71 |
++i;
|
sl@0
|
72 |
j = i;
|
sl@0
|
73 |
|
sl@0
|
74 |
while (j < len && path[j] != '/')
|
sl@0
|
75 |
++j;
|
sl@0
|
76 |
|
sl@0
|
77 |
/* Now [i, j) is the path component */
|
sl@0
|
78 |
g_assert (i < j);
|
sl@0
|
79 |
g_assert (path[i] != '/');
|
sl@0
|
80 |
g_assert (j == len || path[j] == '/');
|
sl@0
|
81 |
|
sl@0
|
82 |
split[comp] = g_strndup (&path[i], j - i + 1);
|
sl@0
|
83 |
|
sl@0
|
84 |
split[comp][j-i] = '\0';
|
sl@0
|
85 |
|
sl@0
|
86 |
++comp;
|
sl@0
|
87 |
i = j;
|
sl@0
|
88 |
}
|
sl@0
|
89 |
g_assert (i == len);
|
sl@0
|
90 |
|
sl@0
|
91 |
return split;
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
char*
|
sl@0
|
95 |
_dbus_gutils_wincaps_to_uscore (const char *caps)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
const char *p;
|
sl@0
|
98 |
GString *str;
|
sl@0
|
99 |
|
sl@0
|
100 |
str = g_string_new (NULL);
|
sl@0
|
101 |
p = caps;
|
sl@0
|
102 |
while (*p)
|
sl@0
|
103 |
{
|
sl@0
|
104 |
if (g_ascii_isupper (*p))
|
sl@0
|
105 |
{
|
sl@0
|
106 |
if (str->len > 0 &&
|
sl@0
|
107 |
(str->len < 2 || str->str[str->len-2] != '_'))
|
sl@0
|
108 |
g_string_append_c (str, '_');
|
sl@0
|
109 |
g_string_append_c (str, g_ascii_tolower (*p));
|
sl@0
|
110 |
}
|
sl@0
|
111 |
else
|
sl@0
|
112 |
{
|
sl@0
|
113 |
g_string_append_c (str, *p);
|
sl@0
|
114 |
}
|
sl@0
|
115 |
++p;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
return g_string_free (str, FALSE);
|
sl@0
|
119 |
}
|
sl@0
|
120 |
|
sl@0
|
121 |
|
sl@0
|
122 |
#ifdef DBUS_BUILD_TESTS
|
sl@0
|
123 |
|
sl@0
|
124 |
/**
|
sl@0
|
125 |
* @ingroup DBusGLibInternals
|
sl@0
|
126 |
* Unit test for GLib utils internals
|
sl@0
|
127 |
* Returns: #TRUE on success.
|
sl@0
|
128 |
*/
|
sl@0
|
129 |
#ifdef __SYMBIAN32__
|
sl@0
|
130 |
EXPORT_C
|
sl@0
|
131 |
#endif
|
sl@0
|
132 |
gboolean
|
sl@0
|
133 |
_dbus_gutils_test (const char *test_data_dir)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
|
sl@0
|
136 |
return TRUE;
|
sl@0
|
137 |
}
|
sl@0
|
138 |
|
sl@0
|
139 |
#endif /* DBUS_BUILD_TESTS */
|
sl@0
|
140 |
|
sl@0
|
141 |
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
|