os/ossrv/ofdbus/dbus-glib/dbus/dbus-gutils.c
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ofdbus/dbus-glib/dbus/dbus-gutils.c	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,141 @@
     1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
     1.5 +/* dbus-gutils.c Utils shared between convenience lib and installed lib
     1.6 + *
     1.7 + * Copyright (C) 2003  Red Hat, Inc.
     1.8 + * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
     1.9 + * Licensed under the Academic Free License version 2.1
    1.10 + *
    1.11 + * This program is free software; you can redistribute it and/or modify
    1.12 + * it under the terms of the GNU General Public License as published by
    1.13 + * the Free Software Foundation; either version 2 of the License, or
    1.14 + * (at your option) any later version.
    1.15 + *
    1.16 + * This program is distributed in the hope that it will be useful,
    1.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.19 + * GNU General Public License for more details.
    1.20 + *
    1.21 + * You should have received a copy of the GNU General Public License
    1.22 + * along with this program; if not, write to the Free Software
    1.23 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    1.24 + *
    1.25 + */
    1.26 +
    1.27 +#ifndef __SYMBIAN32__
    1.28 +#include <config.h>
    1.29 +#else
    1.30 +#include "config.h"
    1.31 +#endif //__SYMBIAN32__
    1.32 +#include "dbus-gutils.h"
    1.33 +#include "dbus-gtest.h"
    1.34 +#include <string.h>
    1.35 +
    1.36 +#ifdef __SYMBIAN32__
    1.37 +#include<glib_global.h>
    1.38 +#endif
    1.39 +
    1.40 +#ifndef DOXYGEN_SHOULD_SKIP_THIS
    1.41 +
    1.42 +char**
    1.43 +_dbus_gutils_split_path (const char *path)
    1.44 +{
    1.45 +  int len;
    1.46 +  char **split;
    1.47 +  int n_components;
    1.48 +  int i, j, comp;
    1.49 +
    1.50 +  len = strlen (path);
    1.51 +
    1.52 +  n_components = 0;
    1.53 +  if (path[1] != '\0') /* if not "/" */
    1.54 +    {
    1.55 +      i = 0;
    1.56 +      while (i < len)
    1.57 +        {
    1.58 +          if (path[i] == '/')
    1.59 +            n_components += 1;
    1.60 +          ++i;
    1.61 +        }
    1.62 +    }
    1.63 +
    1.64 +  split = g_new0 (char*, n_components + 1);
    1.65 +
    1.66 +  comp = 0;
    1.67 +  if (n_components == 0)
    1.68 +    i = 1;
    1.69 +  else
    1.70 +    i = 0;
    1.71 +  while (comp < n_components)
    1.72 +    {
    1.73 +      if (path[i] == '/')
    1.74 +        ++i;
    1.75 +      j = i;
    1.76 +
    1.77 +      while (j < len && path[j] != '/')
    1.78 +        ++j;
    1.79 +
    1.80 +      /* Now [i, j) is the path component */
    1.81 +      g_assert (i < j);
    1.82 +      g_assert (path[i] != '/');
    1.83 +      g_assert (j == len || path[j] == '/');
    1.84 +
    1.85 +      split[comp] = g_strndup (&path[i], j - i + 1);
    1.86 +
    1.87 +      split[comp][j-i] = '\0';
    1.88 +
    1.89 +      ++comp;
    1.90 +      i = j;
    1.91 +    }
    1.92 +  g_assert (i == len);
    1.93 +
    1.94 +  return split;
    1.95 +}
    1.96 +
    1.97 +char*
    1.98 +_dbus_gutils_wincaps_to_uscore (const char *caps)
    1.99 +{
   1.100 +  const char *p;
   1.101 +  GString *str;
   1.102 +
   1.103 +  str = g_string_new (NULL);
   1.104 +  p = caps;
   1.105 +  while (*p)
   1.106 +    {
   1.107 +      if (g_ascii_isupper (*p))
   1.108 +        {
   1.109 +          if (str->len > 0 &&
   1.110 +              (str->len < 2 || str->str[str->len-2] != '_'))
   1.111 +            g_string_append_c (str, '_');
   1.112 +          g_string_append_c (str, g_ascii_tolower (*p));
   1.113 +        }
   1.114 +      else
   1.115 +        {
   1.116 +          g_string_append_c (str, *p);
   1.117 +        }
   1.118 +      ++p;
   1.119 +    }
   1.120 +
   1.121 +  return g_string_free (str, FALSE);
   1.122 +}
   1.123 +
   1.124 +
   1.125 +#ifdef DBUS_BUILD_TESTS
   1.126 +
   1.127 +/**
   1.128 + * @ingroup DBusGLibInternals
   1.129 + * Unit test for GLib utils internals
   1.130 + * Returns: #TRUE on success.
   1.131 + */
   1.132 +  	#ifdef __SYMBIAN32__
   1.133 +	EXPORT_C
   1.134 +	#endif
   1.135 +gboolean
   1.136 +_dbus_gutils_test (const char *test_data_dir)
   1.137 +{
   1.138 +
   1.139 +  return TRUE;
   1.140 +}
   1.141 +
   1.142 +#endif /* DBUS_BUILD_TESTS */
   1.143 +
   1.144 +#endif /* DOXYGEN_SHOULD_SKIP_THIS */