os/ossrv/glib/tests/tree-test.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* GLIB - Library of useful routines for C programming
sl@0
     2
 * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
sl@0
     3
 * Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
sl@0
     4
 * This library is free software; you can redistribute it and/or
sl@0
     5
 * modify it under the terms of the GNU Lesser General Public
sl@0
     6
 * License as published by the Free Software Foundation; either
sl@0
     7
 * version 2 of the License, or (at your option) any later version.
sl@0
     8
 *
sl@0
     9
 * This library is distributed in the hope that it will be useful,
sl@0
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
sl@0
    12
 * Lesser General Public License for more details.
sl@0
    13
 *
sl@0
    14
 * You should have received a copy of the GNU Lesser General Public
sl@0
    15
 * License along with this library; if not, write to the
sl@0
    16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
sl@0
    17
 * Boston, MA 02111-1307, USA.
sl@0
    18
 */
sl@0
    19
sl@0
    20
/*
sl@0
    21
 * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
sl@0
    22
 * file for a list of people on the GLib Team.  See the ChangeLog
sl@0
    23
 * files for a list of changes.  These files are distributed with
sl@0
    24
 * GLib at ftp://ftp.gtk.org/pub/gtk/. 
sl@0
    25
 */
sl@0
    26
sl@0
    27
#undef G_DISABLE_ASSERT
sl@0
    28
#undef G_LOG_DOMAIN
sl@0
    29
sl@0
    30
#include <stdio.h>
sl@0
    31
#include <string.h>
sl@0
    32
#include "glib.h"
sl@0
    33
sl@0
    34
#ifdef __SYMBIAN32__
sl@0
    35
#include "mrt2_glib2_test.h"
sl@0
    36
#endif /*__SYMBIAN32__*/
sl@0
    37
sl@0
    38
static gint
sl@0
    39
my_compare (gconstpointer a,
sl@0
    40
	    gconstpointer b)
sl@0
    41
{
sl@0
    42
  const char *cha = a;
sl@0
    43
  const char *chb = b;
sl@0
    44
sl@0
    45
  return *cha - *chb;
sl@0
    46
}
sl@0
    47
sl@0
    48
static gint
sl@0
    49
my_search (gconstpointer a,
sl@0
    50
	   gconstpointer b)
sl@0
    51
{
sl@0
    52
  return my_compare (b, a);
sl@0
    53
}
sl@0
    54
sl@0
    55
static gpointer destroyed_key = NULL;
sl@0
    56
static gpointer destroyed_value = NULL;
sl@0
    57
sl@0
    58
static void 
sl@0
    59
my_key_destroy (gpointer key)
sl@0
    60
{
sl@0
    61
  destroyed_key = key;
sl@0
    62
}
sl@0
    63
sl@0
    64
static void 
sl@0
    65
my_value_destroy (gpointer value)
sl@0
    66
{
sl@0
    67
  destroyed_value = value;
sl@0
    68
}
sl@0
    69
sl@0
    70
static gint
sl@0
    71
my_traverse (gpointer key,
sl@0
    72
	     gpointer value,
sl@0
    73
	     gpointer data)
sl@0
    74
{
sl@0
    75
  char *ch = key;
sl@0
    76
  g_assert ((*ch) > 0);
sl@0
    77
  return FALSE;
sl@0
    78
}
sl@0
    79
sl@0
    80
char chars[] = 
sl@0
    81
  "0123456789"
sl@0
    82
  "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
sl@0
    83
  "abcdefghijklmnopqrstuvwxyz";
sl@0
    84
sl@0
    85
char chars2[] = 
sl@0
    86
  "0123456789"
sl@0
    87
  "abcdefghijklmnopqrstuvwxyz";
sl@0
    88
sl@0
    89
static gint
sl@0
    90
check_order (gpointer key,
sl@0
    91
	     gpointer value,
sl@0
    92
	     gpointer data)
sl@0
    93
{
sl@0
    94
  char **p = data;
sl@0
    95
  char *ch = key;
sl@0
    96
  
sl@0
    97
  g_assert (**p == *ch);
sl@0
    98
sl@0
    99
  (*p)++;
sl@0
   100
sl@0
   101
  return FALSE;
sl@0
   102
}
sl@0
   103
sl@0
   104
sl@0
   105
sl@0
   106
int
sl@0
   107
main (int   argc,
sl@0
   108
      char *argv[])
sl@0
   109
{
sl@0
   110
  gint i;
sl@0
   111
  GTree *tree;
sl@0
   112
  gboolean removed;
sl@0
   113
  char c, d;
sl@0
   114
  char *p;
sl@0
   115
  #ifdef __SYMBIAN32__
sl@0
   116
  g_log_set_handler (NULL,  G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
sl@0
   117
  g_set_print_handler(mrtPrintHandler);
sl@0
   118
  #endif /*__SYMBIAN32__*/
sl@0
   119
sl@0
   120
  tree = g_tree_new (my_compare);
sl@0
   121
sl@0
   122
  for (i = 0; chars[i]; i++)
sl@0
   123
    g_tree_insert (tree, &chars[i], &chars[i]);
sl@0
   124
sl@0
   125
  g_tree_foreach (tree, my_traverse, NULL);
sl@0
   126
sl@0
   127
  g_assert (g_tree_nnodes (tree) == strlen (chars));
sl@0
   128
  g_assert (g_tree_height (tree) == 6);
sl@0
   129
  
sl@0
   130
  p = chars;
sl@0
   131
  g_tree_foreach (tree, check_order, &p);
sl@0
   132
sl@0
   133
  for (i = 0; i < 26; i++)
sl@0
   134
    {
sl@0
   135
      removed = g_tree_remove (tree, &chars[i + 10]);
sl@0
   136
      g_assert (removed);
sl@0
   137
    }
sl@0
   138
sl@0
   139
  c = '\0';
sl@0
   140
  removed = g_tree_remove (tree, &c);
sl@0
   141
  g_assert (removed == FALSE);
sl@0
   142
sl@0
   143
  g_tree_foreach (tree, my_traverse, NULL);
sl@0
   144
sl@0
   145
  g_assert (g_tree_nnodes (tree) == strlen (chars2));
sl@0
   146
  g_assert (g_tree_height (tree) == 6);
sl@0
   147
sl@0
   148
  p = chars2;
sl@0
   149
  g_tree_foreach (tree, check_order, &p);
sl@0
   150
sl@0
   151
  for (i = 25; i >= 0; i--)
sl@0
   152
    g_tree_insert (tree, &chars[i + 10], &chars[i + 10]);
sl@0
   153
sl@0
   154
  p = chars;
sl@0
   155
  g_tree_foreach (tree, check_order, &p);
sl@0
   156
sl@0
   157
  c = '0';
sl@0
   158
  p = g_tree_lookup (tree, &c); 
sl@0
   159
  g_assert (p && *p == c);
sl@0
   160
sl@0
   161
  c = 'A';
sl@0
   162
  p = g_tree_lookup (tree, &c);
sl@0
   163
  g_assert (p && *p == c);
sl@0
   164
sl@0
   165
  c = 'a';
sl@0
   166
  p = g_tree_lookup (tree, &c);
sl@0
   167
  g_assert (p && *p == c);
sl@0
   168
sl@0
   169
  c = 'z';
sl@0
   170
  p = g_tree_lookup (tree, &c);
sl@0
   171
  g_assert (p && *p == c);
sl@0
   172
sl@0
   173
  c = '!';
sl@0
   174
  p = g_tree_lookup (tree, &c);
sl@0
   175
  g_assert (p == NULL);
sl@0
   176
sl@0
   177
  c = '=';
sl@0
   178
  p = g_tree_lookup (tree, &c);
sl@0
   179
  g_assert (p == NULL);
sl@0
   180
sl@0
   181
  c = '|';
sl@0
   182
  p = g_tree_lookup (tree, &c);
sl@0
   183
  g_assert (p == NULL);
sl@0
   184
sl@0
   185
  c = '0';
sl@0
   186
  p = g_tree_search (tree, my_search, &c); 
sl@0
   187
  g_assert (p && *p == c);
sl@0
   188
sl@0
   189
  c = 'A';
sl@0
   190
  p = g_tree_search (tree, my_search, &c);
sl@0
   191
  g_assert (p && *p == c);
sl@0
   192
sl@0
   193
  c = 'a';
sl@0
   194
  p = g_tree_search (tree, my_search, &c);
sl@0
   195
  g_assert (p &&*p == c);
sl@0
   196
sl@0
   197
  c = 'z';
sl@0
   198
  p = g_tree_search (tree, my_search, &c);
sl@0
   199
  g_assert (p && *p == c);
sl@0
   200
sl@0
   201
  c = '!';
sl@0
   202
  p = g_tree_search (tree, my_search, &c);
sl@0
   203
  g_assert (p == NULL);
sl@0
   204
sl@0
   205
  c = '=';
sl@0
   206
  p = g_tree_search (tree, my_search, &c);
sl@0
   207
  g_assert (p == NULL);
sl@0
   208
sl@0
   209
  c = '|';
sl@0
   210
  p = g_tree_search (tree, my_search, &c);
sl@0
   211
  g_assert (p == NULL);
sl@0
   212
sl@0
   213
sl@0
   214
  g_tree_destroy (tree);
sl@0
   215
sl@0
   216
  tree = g_tree_new_full ((GCompareDataFunc)my_compare, NULL, 
sl@0
   217
			  my_key_destroy, 
sl@0
   218
			  my_value_destroy);
sl@0
   219
sl@0
   220
  for (i = 0; chars[i]; i++)
sl@0
   221
    g_tree_insert (tree, &chars[i], &chars[i]);
sl@0
   222
  
sl@0
   223
  c = '0';
sl@0
   224
  g_tree_insert (tree, &c, &c);
sl@0
   225
  g_assert (destroyed_key == &c);
sl@0
   226
  g_assert (destroyed_value == &chars[0]);
sl@0
   227
  destroyed_key = NULL;
sl@0
   228
  destroyed_value = NULL;
sl@0
   229
sl@0
   230
  d = '1';
sl@0
   231
  g_tree_replace (tree, &d, &d);
sl@0
   232
  g_assert (destroyed_key == &chars[1]);
sl@0
   233
  g_assert (destroyed_value == &chars[1]);
sl@0
   234
  destroyed_key = NULL;
sl@0
   235
  destroyed_value = NULL;
sl@0
   236
sl@0
   237
  c = '2';
sl@0
   238
  removed = g_tree_remove (tree, &c);
sl@0
   239
  g_assert (removed);
sl@0
   240
  g_assert (destroyed_key == &chars[2]);
sl@0
   241
  g_assert (destroyed_value == &chars[2]);
sl@0
   242
  destroyed_key = NULL;
sl@0
   243
  destroyed_value = NULL;
sl@0
   244
sl@0
   245
  c = '3';
sl@0
   246
  removed = g_tree_steal (tree, &c);
sl@0
   247
  g_assert (removed);
sl@0
   248
  g_assert (destroyed_key == NULL);
sl@0
   249
  g_assert (destroyed_value == NULL);
sl@0
   250
#ifdef __SYMBIAN32__
sl@0
   251
  testResultXml("tree-test");
sl@0
   252
#endif /* EMULATOR */
sl@0
   253
  return 0;
sl@0
   254
}
sl@0
   255