Update contrib.
1 /* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
2 #undef G_DISABLE_ASSERT
11 #include "mrt2_glib2_test.h"
12 #endif /*__SYMBIAN32__*/
21 compare_collate (const void *a, const void *b)
23 const Line *line_a = a;
24 const Line *line_b = b;
26 return g_utf8_collate (line_a->str, line_b->str);
30 compare_key (const void *a, const void *b)
32 const Line *line_a = a;
33 const Line *line_b = b;
35 return strcmp (line_a->key, line_b->key);
38 int main (int argc, char **argv)
42 GArray *line_array = g_array_new (FALSE, FALSE, sizeof(Line));
44 gboolean do_key = FALSE;
45 gboolean do_file = FALSE;
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);
49 g_set_print_handler(mrtPrintHandler);
50 #endif /*__SYMBIAN32__*/
52 /* FIXME: need to modify environment here,
53 * since g_utf8_collate_key calls setlocal (LC_COLLATE, "")
55 g_setenv ("LC_ALL", "en_US.UTF-8", TRUE);
56 locale = setlocale (LC_ALL, "en_US.UTF-8");
57 if (locale == NULL || strcmp (locale, "en_US.UTF-8") != 0)
59 fprintf (stderr, "No suitable locale, skipping test\n");
63 if (argc != 1 && argc != 2 && argc != 3)
65 fprintf (stderr, "Usage: unicode-collate [--key|--file] [FILE]\n");
72 if (strcmp (argv[1], "-key") == 0)
77 else if (strcmp (argv[1], "-file") == 0)
87 in = g_io_channel_new_file (argv[i], "r", &error);
90 fprintf (stderr, "Cannot open %s: %s\n", argv[i], error->message);
91 g_assert(FALSE && "unicode-collate failed");
93 testResultXml("unicode-collate");
100 in = g_io_channel_unix_new (fileno (stdin));
109 if (g_io_channel_read_line (in, &str, NULL, &term_pos, &error) != G_IO_STATUS_NORMAL)
112 str[term_pos] = '\0';
115 line.key = g_utf8_collate_key_for_filename (str, -1);
117 line.key = g_utf8_collate_key (str, -1);
120 g_array_append_val (line_array, line);
125 fprintf (stderr, "Error reading test file, %s\n", error->message);
126 g_assert(FALSE && "unicode-collate failed");
128 testResultXml("unicode-collate");
129 #endif /* EMULATOR */
133 qsort (line_array->data, line_array->len, sizeof (Line), do_key ? compare_key : compare_collate);
134 for (i = 0; i < line_array->len; i++)
135 printf ("%s\n", g_array_index (line_array, Line, i).str);
137 g_io_channel_unref (in);
140 testResultXml("unicode-collate");
141 #endif /* EMULATOR */