os/ossrv/glib/tests/unicode-collate.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
sl@0
     2
#undef G_DISABLE_ASSERT
sl@0
     3
#undef G_LOG_DOMAIN
sl@0
     4
sl@0
     5
#include <glib.h>
sl@0
     6
#include <stdio.h>
sl@0
     7
#include <stdlib.h>
sl@0
     8
#include <string.h>
sl@0
     9
#include <locale.h>
sl@0
    10
#ifdef __SYMBIAN32__
sl@0
    11
#include "mrt2_glib2_test.h"
sl@0
    12
#endif /*__SYMBIAN32__*/
sl@0
    13
sl@0
    14
typedef struct {
sl@0
    15
  const char *key;
sl@0
    16
  const char *str;
sl@0
    17
} Line;
sl@0
    18
  
sl@0
    19
sl@0
    20
int 
sl@0
    21
compare_collate (const void *a, const void *b)
sl@0
    22
{
sl@0
    23
  const Line *line_a = a;
sl@0
    24
  const Line *line_b = b;
sl@0
    25
sl@0
    26
  return g_utf8_collate (line_a->str, line_b->str);
sl@0
    27
}
sl@0
    28
sl@0
    29
int 
sl@0
    30
compare_key (const void *a, const void *b)
sl@0
    31
{
sl@0
    32
  const Line *line_a = a;
sl@0
    33
  const Line *line_b = b;
sl@0
    34
sl@0
    35
  return strcmp (line_a->key, line_b->key);
sl@0
    36
}
sl@0
    37
sl@0
    38
int main (int argc, char **argv)
sl@0
    39
{
sl@0
    40
  GIOChannel *in;
sl@0
    41
  GError *error = NULL;
sl@0
    42
  GArray *line_array = g_array_new (FALSE, FALSE, sizeof(Line));
sl@0
    43
  guint i;
sl@0
    44
  gboolean do_key = FALSE;
sl@0
    45
  gboolean do_file = FALSE;
sl@0
    46
  gchar *locale;
sl@0
    47
  #ifdef __SYMBIAN32__
sl@0
    48
  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
    49
  g_set_print_handler(mrtPrintHandler);
sl@0
    50
  #endif /*__SYMBIAN32__*/
sl@0
    51
sl@0
    52
  /* FIXME: need to modify environment here,
sl@0
    53
   * since g_utf8_collate_key calls setlocal (LC_COLLATE, "")
sl@0
    54
   */
sl@0
    55
  g_setenv ("LC_ALL", "en_US.UTF-8", TRUE);
sl@0
    56
  locale = setlocale (LC_ALL, "en_US.UTF-8");
sl@0
    57
  if (locale == NULL || strcmp (locale, "en_US.UTF-8") != 0)
sl@0
    58
    {
sl@0
    59
      fprintf (stderr, "No suitable locale, skipping test\n"); 
sl@0
    60
      return 2;
sl@0
    61
    }
sl@0
    62
sl@0
    63
  if (argc != 1 && argc != 2 && argc != 3)
sl@0
    64
    {
sl@0
    65
      fprintf (stderr, "Usage: unicode-collate [--key|--file] [FILE]\n");
sl@0
    66
      return 1;
sl@0
    67
    }
sl@0
    68
sl@0
    69
  i = 1;
sl@0
    70
  if (argc > 1)
sl@0
    71
    {
sl@0
    72
      if (strcmp (argv[1], "-key") == 0)
sl@0
    73
        {
sl@0
    74
          do_key = TRUE;
sl@0
    75
	  i = 2;
sl@0
    76
        }
sl@0
    77
      else if (strcmp (argv[1], "-file") == 0)
sl@0
    78
        {
sl@0
    79
          do_key = TRUE;
sl@0
    80
          do_file = TRUE;
sl@0
    81
	  i = 2;
sl@0
    82
        }
sl@0
    83
    }
sl@0
    84
sl@0
    85
 if (argc > i)
sl@0
    86
    {
sl@0
    87
      in = g_io_channel_new_file (argv[i], "r", &error);
sl@0
    88
      if (!in)
sl@0
    89
	{
sl@0
    90
	  fprintf (stderr, "Cannot open %s: %s\n", argv[i], error->message);
sl@0
    91
  	g_assert(FALSE && "unicode-collate failed");
sl@0
    92
  	#ifdef __SYMBIAN32__
sl@0
    93
  	testResultXml("unicode-collate");
sl@0
    94
  	#endif /* EMULATOR */	
sl@0
    95
	  return 1;
sl@0
    96
	}
sl@0
    97
    }
sl@0
    98
  else
sl@0
    99
    {
sl@0
   100
      in = g_io_channel_unix_new (fileno (stdin));
sl@0
   101
    }
sl@0
   102
sl@0
   103
  while (TRUE)
sl@0
   104
    {
sl@0
   105
      gsize term_pos;
sl@0
   106
      gchar *str;
sl@0
   107
      Line line;
sl@0
   108
sl@0
   109
      if (g_io_channel_read_line (in, &str, NULL, &term_pos, &error) != G_IO_STATUS_NORMAL)
sl@0
   110
	break;
sl@0
   111
sl@0
   112
      str[term_pos] = '\0';
sl@0
   113
sl@0
   114
      if (do_file)
sl@0
   115
	line.key = g_utf8_collate_key_for_filename (str, -1);
sl@0
   116
      else
sl@0
   117
	line.key = g_utf8_collate_key (str, -1);
sl@0
   118
      line.str = str;
sl@0
   119
sl@0
   120
      g_array_append_val (line_array, line);
sl@0
   121
    }
sl@0
   122
sl@0
   123
  if (error)
sl@0
   124
    {
sl@0
   125
      fprintf (stderr, "Error reading test file, %s\n", error->message);
sl@0
   126
      g_assert(FALSE && "unicode-collate failed");
sl@0
   127
      #ifdef __SYMBIAN32__
sl@0
   128
  	  testResultXml("unicode-collate");
sl@0
   129
  	  #endif /* EMULATOR */
sl@0
   130
      return 1;
sl@0
   131
    }
sl@0
   132
sl@0
   133
  qsort (line_array->data, line_array->len, sizeof (Line), do_key ? compare_key : compare_collate);
sl@0
   134
  for (i = 0; i < line_array->len; i++)
sl@0
   135
    printf ("%s\n", g_array_index (line_array, Line, i).str);
sl@0
   136
sl@0
   137
  g_io_channel_unref (in);
sl@0
   138
  
sl@0
   139
  #ifdef __SYMBIAN32__
sl@0
   140
  testResultXml("unicode-collate");
sl@0
   141
  #endif /* EMULATOR */
sl@0
   142
  return 0;
sl@0
   143
}