1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /*
4 *******************************************************************************
5 *
6 * Copyright (C) 2003-2014, International Business Machines
7 * Corporation and others. All Rights Reserved.
8 *
9 *******************************************************************************
10 * file name: sorttest.c
11 * encoding: UTF-8
12 * tab size: 8 (not used)
13 * indentation:4
14 *
15 * created on: 2003aug04
16 * created by: Markus W. Scherer
17 *
18 * Test internal sorting functions.
19 */
20
21 #include <stdio.h>
22
23 #include "unicode/utypes.h"
24 #include "unicode/ucol.h"
25 #include "unicode/ustring.h"
26 #include "cmemory.h"
27 #include "cintltst.h"
28 #include "uarrsort.h"
29
30 static void
SortTest(void)31 SortTest(void) {
32 uint16_t small[]={ 8, 1, 2, 5, 4, 3, 7, 6 };
33 int32_t medium[]={ 10, 8, 1, 2, 5, 5, -1, 6, 4, 3, 9, 7, 5 };
34 uint32_t large[]={ 21, 10, 20, 19, 11, 12, 13, 10, 10, 10, 10,
35 8, 1, 2, 5, 10, 10, 4, 17, 18, 3, 9, 10, 7, 6, 14, 15, 16 };
36
37 int32_t i;
38 UErrorCode errorCode;
39
40 /* sort small array (stable) */
41 errorCode=U_ZERO_ERROR;
42 uprv_sortArray(small, UPRV_LENGTHOF(small), sizeof(small[0]), uprv_uint16Comparator, NULL, TRUE, &errorCode);
43 if(U_FAILURE(errorCode)) {
44 log_err("uprv_sortArray(small) failed - %s\n", u_errorName(errorCode));
45 return;
46 }
47 for(i=1; i<UPRV_LENGTHOF(small); ++i) {
48 if(small[i-1]>small[i]) {
49 log_err("uprv_sortArray(small) mis-sorted [%d]=%u > [%d]=%u\n", i-1, small[i-1], i, small[i]);
50 return;
51 }
52 }
53
54 /* for medium, add bits that will not be compared, to test stability */
55 for(i=0; i<UPRV_LENGTHOF(medium); ++i) {
56 medium[i]=(int32_t)((uint32_t)medium[i]<<4) | i;
57 }
58
59 /* sort medium array (stable) */
60 uprv_sortArray(medium, UPRV_LENGTHOF(medium), sizeof(medium[0]), uprv_int32Comparator, NULL, TRUE, &errorCode);
61 if(U_FAILURE(errorCode)) {
62 log_err("uprv_sortArray(medium) failed - %s\n", u_errorName(errorCode));
63 return;
64 }
65 for(i=1; i<UPRV_LENGTHOF(medium); ++i) {
66 if(medium[i-1]>=medium[i]) {
67 log_err("uprv_sortArray(medium) mis-sorted [%d]=%u > [%d]=%u\n", i-1, medium[i-1], i, medium[i]);
68 return;
69 }
70 }
71
72 /* sort large array (not stable) */
73 errorCode=U_ZERO_ERROR;
74 uprv_sortArray(large, UPRV_LENGTHOF(large), sizeof(large[0]), uprv_uint32Comparator, NULL, FALSE, &errorCode);
75 if(U_FAILURE(errorCode)) {
76 log_err("uprv_sortArray(large) failed - %s\n", u_errorName(errorCode));
77 return;
78 }
79 for(i=1; i<UPRV_LENGTHOF(large); ++i) {
80 if(large[i-1]>large[i]) {
81 log_err("uprv_sortArray(large) mis-sorted [%d]=%u > [%d]=%u\n", i-1, large[i-1], i, large[i]);
82 return;
83 }
84 }
85 }
86
87 #if !UCONFIG_NO_COLLATION
88
89 /*
90 * Fill an array with semi-random short strings.
91 * Vary them enough to be interesting, but create duplicates.
92 * With CYCLE=10 characters per STR_LEN=3 string positions there are only 1000 unique strings.
93 * NUM_LINES should be larger than this.
94 */
95 #define NUM_LINES 10000
96 #define STR_LEN 3
97 #define CYCLE 10
98
99 /*
100 * Use characters beyond the Latin Extended A block to avoid a collator fastpath.
101 * They should sort unique, so that we can later use a binary comparison for string equality.
102 */
103 #define BASE_CHAR 0x200
104
105 typedef struct Line {
106 UChar s[STR_LEN];
107 int32_t recordNumber;
108 } Line;
109
110 static void
printLines(const Line * lines)111 printLines(const Line *lines) {
112 (void)lines; // suppress compiler warnings about unused variable
113 #if 0
114 int32_t i, j;
115 for(i=0; i<NUM_LINES; ++i) {
116 const Line *line=lines+i;
117 for(j=0; j<STR_LEN; ++j) {
118 printf("%04x ", line->s[j]);
119 }
120 printf(" #%5d\n", line->recordNumber);
121 }
122 #endif
123 }
124
125 /* Use a collator so that the comparisons are not essentially free, for simple benchmarking. */
126 static int32_t U_EXPORT2
linesComparator(const void * context,const void * left,const void * right)127 linesComparator(const void *context, const void *left, const void *right) {
128 const UCollator *coll=(const UCollator *)context;
129 const Line *leftLine=(const Line *)left;
130 const Line *rightLine=(const Line *)right;
131 /* compare the strings but not the record number */
132 return ucol_strcoll(coll, leftLine->s, STR_LEN, rightLine->s, STR_LEN);
133 }
134
StableSortTest(void)135 static void StableSortTest(void) {
136 UErrorCode errorCode=U_ZERO_ERROR;
137 UCollator *coll;
138 Line *lines, *p;
139 UChar s[STR_LEN];
140 int32_t i, j;
141
142 coll=ucol_open("root", &errorCode);
143 if(U_FAILURE(errorCode)) {
144 log_data_err("ucol_open(root) failed - %s\n", u_errorName(errorCode));
145 return;
146 }
147
148 lines=p=(Line *)uprv_malloc(NUM_LINES*sizeof(Line));
149 uprv_memset(lines, 0, NUM_LINES*sizeof(Line)); /* avoid uninitialized memory */
150
151 for(j=0; j<STR_LEN; ++j) { s[j]=BASE_CHAR; }
152 j=0;
153 for(i=0; i<NUM_LINES; ++i) {
154 UChar c;
155 u_memcpy(p->s, s, STR_LEN);
156 p->recordNumber=i;
157 /* Modify the string for the next line. */
158 c=s[j]+1;
159 if(c==BASE_CHAR+CYCLE) { c=BASE_CHAR; }
160 s[j]=c;
161 if(++j==STR_LEN) { j=0; }
162 ++p;
163 }
164 puts("\n* lines before sorting");
165 printLines(lines);
166
167 uprv_sortArray(lines, NUM_LINES, (int32_t)sizeof(Line),
168 linesComparator, coll, TRUE, &errorCode);
169 if(U_FAILURE(errorCode)) {
170 log_err("uprv_sortArray() failed - %s\n", u_errorName(errorCode));
171 return;
172 }
173 puts("* lines after sorting");
174 printLines(lines);
175
176 /* Verify that the array is sorted correctly. */
177 p=lines;
178 for(i=1; i<NUM_LINES; ++i) {
179 Line *q=p+1; /* =lines+i */
180 /* Binary comparison first, for speed. In this case, equal strings must be identical. */
181 int32_t diff=u_strCompare(p->s, STR_LEN, q->s, STR_LEN, FALSE);
182 if(diff==0) {
183 if(p->recordNumber>=q->recordNumber) {
184 log_err("equal strings %d and %d out of order at sorted index %d\n",
185 (int)p->recordNumber, (int)q->recordNumber, (int)i);
186 break;
187 }
188 } else {
189 /* Compare unequal strings with the collator. */
190 diff=ucol_strcoll(coll, p->s, STR_LEN, q->s, STR_LEN);
191 if(diff>=0) {
192 log_err("unequal strings %d and %d out of order at sorted index %d\n",
193 (int)p->recordNumber, (int)q->recordNumber, (int)i);
194 break;
195 }
196 }
197 p=q;
198 }
199
200 uprv_free(lines);
201 ucol_close(coll);
202 }
203
204 #endif /* !UCONFIG_NO_COLLATION */
205
206 void
207 addSortTest(TestNode** root);
208
209 void
addSortTest(TestNode ** root)210 addSortTest(TestNode** root) {
211 addTest(root, &SortTest, "tsutil/sorttest/SortTest");
212 #if !UCONFIG_NO_COLLATION
213 addTest(root, &StableSortTest, "tsutil/sorttest/StableSortTest");
214 #endif
215 }
216