-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsort.c
281 lines (237 loc) · 7.3 KB
/
sort.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/*
Copyright 2013 Karl Robillard
This file is part of the Boron programming language.
Boron is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Boron is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with Boron. If not, see <http://www.gnu.org/licenses/>.
*/
#include "quickSortIndex.h"
#define OPT_SORT_CASE 0x01
#define OPT_SORT_GROUP 0x02
#define OPT_SORT_FIELD 0x04
struct CompareField
{
UThread* ut;
UBlockIt fb;
uint32_t opt;
};
/*
static int _binByte( const UBuffer* bin, UIndex pos )
{
if( pos >= 0 && pos < bin->used )
return bin->ptr.b[ pos ];
return -1;
}
*/
static int _compareField( struct CompareField* cf,
const UCell* a, const UCell* b )
{
UThread* ut = cf->ut;
const UCell* it;
int i;
int rev;
int type = ur_type(a);
if( type != ur_type(b) )
return 0;
switch( type )
{
#if 0
case UT_BINARY:
case UT_STRING:
case UT_FILE:
{
const UBuffer* bufA = ur_bufferSer( a );
const UBuffer* bufB = ur_bufferSer( b );
int ca;
for( it = cf->fb.it; it != cf->fb.end; ++it )
{
if( ur_is(it, UT_INT) )
{
// Convert from one-based index but allow negative
// position to skip from end.
i = ur_int(it);
if( i > 0 )
--i;
if( type == UT_BINARY )
{
ca = _binByte( bufA, i + a->series.it );
i = _binByte( bufB, i + b->series.it );
}
else
{
ca = ur_strChar( bufA, i + a->series.it );
i = ur_strChar( bufB, i + b->series.it );
if( ! (cf->opt & OPT_SORT_CASE) )
{
ca = ur_charLowercase( ca );
i = ur_charLowercase( i );
}
}
if( ca > i )
return 1;
if( ca < i )
return -1;
}
}
}
break;
#endif
case UT_BLOCK:
{
USeriesIter siA;
USeriesIter siB;
int pos;
ur_seriesSlice( ut, &siA, a );
ur_seriesSlice( ut, &siB, b );
for( it = cf->fb.it; it != cf->fb.end; )
{
if( ur_is(it, UT_INT) )
{
// Convert from one-based index but allow negative
// position to pick from end.
i = ur_int(it);
if( i > 0 )
--i;
if( (++it != cf->fb.end) && ur_is(it, UT_OPTION) )
{
++it;
rev = 1;
}
else
{
rev = 0;
}
#define SORT_BLK_CELL(res, si, index) \
pos = index + ((index < 0) ? si.end : si.it); \
if( pos < si.it || pos >= si.end ) \
return 0; \
res = si.buf->ptr.cell + pos;
SORT_BLK_CELL( a, siA, i );
SORT_BLK_CELL( b, siB, i );
if( (i = ur_compare( ut, a, b )) )
return rev ? -i : i;
}
else
{
++it;
}
}
}
break;
case UT_CONTEXT:
{
const UBuffer* bufA = ur_bufferSer( a );
const UBuffer* bufB = ur_bufferSer( b );
UAtom word;
for( it = cf->fb.it; it != cf->fb.end; )
{
if( ur_is(it, UT_WORD) )
{
word = ur_atom(it);
if( (++it != cf->fb.end) && ur_is(it, UT_OPTION) )
{
++it;
rev = 1;
}
else
{
rev = 0;
}
if( (i = ur_ctxLookup( bufA, word )) < 0 )
return 0;
a = ur_ctxCell( bufA, i );
if( (i = ur_ctxLookup( bufB, word )) < 0 )
return 0;
b = ur_ctxCell( bufB, i );
if( (i = ur_compare( ut, a, b )) )
return rev ? -i : i;
}
else
{
++it;
}
}
}
break;
}
return 0;
}
/*-cf-
sort
set series
/case Use case-sensitive comparison with string types.
/group Compare groups of elements by first value in group.
size int!
/field Sort on specified context words or block indices.
which block!
return: New series with sorted elements.
group: series
*/
CFUNC(cfunc_sort)
{
int type = ur_type(a1);
if( ur_isBlockType(type) )
{
QuickSortIndex qs;
struct CompareField fld;
UBlockIt bi;
UBuffer* blk;
uint32_t* ip;
uint32_t* iend;
int group;
int len;
int indexLen;
ur_blockIt( ut, &bi, a1 );
len = bi.end - bi.it;
fld.opt = CFUNC_OPTIONS;
if( fld.opt & OPT_SORT_GROUP )
{
group = ur_int(CFUNC_OPT_ARG(2));
if( group < 1 )
group = 1;
indexLen = len / group;
len = indexLen * group; // Remove any partial group.
}
else
{
group = 1;
indexLen = len;
}
blk = ur_makeBlockCell( ut, type, len, res ); // gc!
qs.index = ((uint32_t*) (blk->ptr.cell + len)) - indexLen;
qs.data = (uint8_t*) bi.it;
qs.elemSize = sizeof(UCell);
if( fld.opt & OPT_SORT_FIELD )
{
fld.ut = ut;
ur_blockIt( ut, &fld.fb, CFUNC_OPT_ARG(3) );
qs.user = (void*) &fld;
qs.compare = (QuickSortFunc) _compareField;
}
else
{
qs.user = (void*) ut;
qs.compare = (QuickSortFunc) ((fld.opt & OPT_SORT_CASE) ?
ur_compareCase : ur_compare);
}
ip = qs.index;
iend = ip + quickSortIndex( &qs, 0, len, group );
len = qs.elemSize * group;
while( ip != iend )
{
memCpy( blk->ptr.cell + blk->used, bi.it + *ip, len );
blk->used += group;
++ip;
}
return UR_OK;
}
return ur_error( ut, UR_ERR_INTERNAL, "FIXME: sort only supports block!" );
}
/*EOF*/