-
Notifications
You must be signed in to change notification settings - Fork 998
/
Copy pathbmerge.c
468 lines (446 loc) · 26 KB
/
bmerge.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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
#include "data.table.h"
/*
Implements binary search (a.k.a. divide and conquer).
http://en.wikipedia.org/wiki/Binary_search
http://www.tbray.org/ongoing/When/200x/2003/03/22/Binary
http://googleresearch.blogspot.com/2006/06/extra-extra-read-all-about-it-nearly.html
Differences over standard binary search (e.g. bsearch in stdlib.h) :
o list of vectors (key of many columns) of different types
o ties (groups)
o NA,NAN,-Inf,+Inf are distinct values and can be joined to
o type double is joined within tolerance (apx 11 s.f.) according to setNumericRounding (default off)
o join to prevailing value (roll join a.k.a locf), forwards or backwards
o join to nearest
o roll the beginning and end optionally
o limit the roll distance to a user provided value
o non equi joins (no != yet) since 1.9.8
*/
#define EQ 1
#define LE 2
#define LT 3
#define GE 4
#define GT 5
static const SEXP *idtVec, *xdtVec;
static const int *icols, *xcols;
static SEXP nqgrp;
static int ncol, *o, *xo, *retFirst, *retLength, *retIndex, *allLen1, *allGrp1, *rollends, ilen, anslen;
static int *op, nqmaxgrp;
static int ctr, nomatch; // populating matches for non-equi joins
enum {ALL, FIRST, LAST} mult = ALL;
static double roll, rollabs;
static Rboolean rollToNearest=FALSE;
#define XIND(i) (xo ? xo[(i)]-1 : i)
void bmerge_r(int xlowIn, int xuppIn, int ilowIn, int iuppIn, int col, int thisgrp, int lowmax, int uppmax);
SEXP bmerge(SEXP idt, SEXP xdt, SEXP icolsArg, SEXP xcolsArg, SEXP xoArg, SEXP rollarg, SEXP rollendsArg, SEXP nomatchArg, SEXP multArg, SEXP opArg, SEXP nqgrpArg, SEXP nqmaxgrpArg) {
const bool verbose = GetVerbose();
double tic=0.0, tic0=0.0;
if (verbose)
tic = omp_get_wtime();
int xN, iN, protecti=0;
ctr=0; // needed for non-equi join case
SEXP retFirstArg, retLengthArg, retIndexArg, allLen1Arg, allGrp1Arg;
retFirstArg = retLengthArg = retIndexArg = R_NilValue; // suppress gcc msg
// iArg, xArg, icolsArg and xcolsArg
idtVec = SEXPPTR_RO(idt); // set globals so bmerge_r can see them.
xdtVec = SEXPPTR_RO(xdt);
if (!isInteger(icolsArg)) internal_error(__func__, "icols is not integer vector"); // # nocov
if (!isInteger(xcolsArg)) internal_error(__func__, "xcols is not integer vector"); // # nocov
if ((LENGTH(icolsArg)==0 || LENGTH(xcolsArg)==0) && LENGTH(idt)>0) // We let through LENGTH(i) == 0 for tests 2126.*
internal_error(__func__, "icols and xcols must be non-empty integer vectors");
if (LENGTH(icolsArg) > LENGTH(xcolsArg)) internal_error(__func__, "length(icols) [%d] > length(xcols) [%d]", LENGTH(icolsArg), LENGTH(xcolsArg)); // # nocov
icols = INTEGER(icolsArg);
xcols = INTEGER(xcolsArg);
xN = LENGTH(xdt) ? LENGTH(VECTOR_ELT(xdt,0)) : 0;
iN = ilen = anslen = LENGTH(idt) ? LENGTH(VECTOR_ELT(idt,0)) : 0;
ncol = LENGTH(icolsArg); // there may be more sorted columns in x than involved in the join
for(int col=0; col<ncol; col++) {
if (icols[col]==NA_INTEGER) internal_error(__func__, "icols[%d] is NA", col); // # nocov
if (xcols[col]==NA_INTEGER) internal_error(__func__, "xcols[%d] is NA", col); // # nocov
if (icols[col]>LENGTH(idt) || icols[col]<1) error(_("icols[%d]=%d outside range [1,length(i)=%d]"), col, icols[col], LENGTH(idt));
if (xcols[col]>LENGTH(xdt) || xcols[col]<1) error(_("xcols[%d]=%d outside range [1,length(x)=%d]"), col, xcols[col], LENGTH(xdt));
int it = TYPEOF(VECTOR_ELT(idt, icols[col]-1));
int xt = TYPEOF(VECTOR_ELT(xdt, xcols[col]-1));
if (iN && it!=xt)
error("typeof x.%s (%s) != typeof i.%s (%s)", CHAR(STRING_ELT(getAttrib(xdt,R_NamesSymbol),xcols[col]-1)), type2char(xt), CHAR(STRING_ELT(getAttrib(idt,R_NamesSymbol),icols[col]-1)), type2char(it)); // # notranslate
if (iN && it!=LGLSXP && it!=INTSXP && it!=REALSXP && it!=STRSXP)
error(_("Type '%s' is not supported for joining/merging"), type2char(it));
}
// rollArg, rollendsArg
roll = 0.0; rollToNearest = FALSE;
if (isString(rollarg)) {
if (strcmp(CHAR(STRING_ELT(rollarg,0)),"nearest") != 0) error(_("roll is character but not 'nearest'"));
if (ncol>0 && TYPEOF(VECTOR_ELT(idt, icols[ncol-1]-1))==STRSXP) error(_("roll='nearest' can't be applied to a character column, yet."));
roll=1.0; rollToNearest=TRUE; // the 1.0 here is just any non-0.0, so roll!=0.0 can be used later
} else {
if (!isReal(rollarg)) internal_error(__func__, "roll is not character or double"); // # nocov
roll = REAL(rollarg)[0]; // more common case (rolling forwards or backwards) or no roll when 0.0
}
rollabs = fabs(roll);
if (!isLogical(rollendsArg) || LENGTH(rollendsArg) != 2)
error(_("rollends must be a length 2 logical vector"));
rollends = LOGICAL(rollendsArg);
if (isNull(nomatchArg)) {
nomatch=0;
} else {
if (length(nomatchArg)!=1 || (!isLogical(nomatchArg) && !isInteger(nomatchArg)))
internal_error(__func__, "nomatchArg must be NULL or length-1 logical/integer"); // # nocov
nomatch = INTEGER(nomatchArg)[0];
if (nomatch!=NA_INTEGER && nomatch!=0)
internal_error(__func__, "nomatchArg must be NULL, NA, NA_integer_ or 0L"); // # nocov
}
// mult arg
if (!strcmp(CHAR(STRING_ELT(multArg, 0)), "all")) mult = ALL;
else if (!strcmp(CHAR(STRING_ELT(multArg, 0)), "first")) mult = FIRST;
else if (!strcmp(CHAR(STRING_ELT(multArg, 0)), "last")) mult = LAST;
else internal_error(__func__, "invalid value for 'mult'"); // # nocov
// opArg
if (!isInteger(opArg) || length(opArg)!=ncol)
internal_error(__func__, "opArg is not an integer vector of length equal to length(on)"); // # nocov
op = INTEGER(opArg);
for (int i=0; i<ncol; ++i) {
// check up front to avoid default: cases in non-equi switches which may be in parallel regions which could not call error()
if (op[i]<EQ/*1*/ || op[i]>GT/*5*/)
internal_error(__func__, "'%s'. Unrecognized value op[col]=%d", // # nocov
CHAR(STRING_ELT(getAttrib(xdt,R_NamesSymbol),xcols[i]-1)), op[i]); // # nocov
if (op[i]!=EQ && TYPEOF(xdtVec[xcols[i]-1])==STRSXP)
error(_("Only '==' operator is supported for columns of type character.")); // # nocov
}
if (!isInteger(nqgrpArg))
internal_error(__func__, "nqgrpArg must be an integer vector"); // # nocov
nqgrp = nqgrpArg; // set global for bmerge_r
const int scols = (!length(nqgrpArg)) ? 0 : -1; // starting col index, -1 is external group column for non-equi join case
// nqmaxgrpArg
if (!isInteger(nqmaxgrpArg) || length(nqmaxgrpArg) != 1 || INTEGER(nqmaxgrpArg)[0] <= 0)
internal_error(__func__, "nqmaxgrpArg is not a positive length-1 integer vector"); // # nocov
nqmaxgrp = INTEGER(nqmaxgrpArg)[0];
if (nqmaxgrp>1 && mult == ALL) {
// non-equi case with mult=ALL, may need reallocation
anslen = 1.1 * ((iN > 1000) ? iN : 1000);
retFirst = R_Calloc(anslen, int); // anslen is set above
retLength = R_Calloc(anslen, int);
retIndex = R_Calloc(anslen, int);
// initialise retIndex here directly, as next loop is meant for both equi and non-equi joins
for (int j=0; j<anslen; j++) retIndex[j] = j+1;
} else { // equi joins (or) non-equi join but no multiple matches
retFirstArg = PROTECT(allocVector(INTSXP, anslen));
retFirst = INTEGER(retFirstArg);
retLengthArg = PROTECT(allocVector(INTSXP, anslen)); // TODO: no need to allocate length at all when
retLength = INTEGER(retLengthArg); // mult = "first" / "last"
retIndexArg = PROTECT(allocVector(INTSXP, 0));
retIndex = INTEGER(retIndexArg);
protecti += 3;
}
for (int j=0; j<anslen; j++) {
// defaults need to populated here as bmerge_r may well not touch many locations, say if the last row of i is before the first row of x.
retFirst[j] = nomatch; // default to no match for NA goto below
// retLength[j] = 0; // TO DO: do this to save the branch below and later branches at R level to set .N to 0
retLength[j] = nomatch==0 ? 0 : 1;
}
// allLen1Arg
allLen1Arg = PROTECT(allocVector(LGLSXP, 1));
allLen1 = LOGICAL(allLen1Arg);
allLen1[0] = TRUE; // All-0 and All-NA are considered all length 1 according to R code currently. Really, it means any(length>1).
// allGrp1Arg, if TRUE, out of all nested group ids, only one of them matches 'x'. Might be rare, but helps to be more efficient in that case.
allGrp1Arg = PROTECT(allocVector(LGLSXP, 1));
allGrp1 = LOGICAL(allGrp1Arg);
allGrp1[0] = TRUE;
protecti += 2;
SEXP ascArg = PROTECT(ScalarInteger(1));
SEXP reuseSortingArg = INHERITS(idt, char_datatable) ? ScalarLogical(TRUE) : ScalarLogical(FALSE);
SEXP oSxp = PROTECT(forderReuseSorting(idt, icolsArg, /* retGrpArg= */ScalarLogical(FALSE), /* retStatsArg= */ScalarLogical(FALSE), /* sortGroupsArg= */ScalarLogical(TRUE), ascArg, /* naArg= */ScalarLogical(FALSE), reuseSortingArg)); protecti++;
UNPROTECT(2); // down stack to 'ascArg'
PROTECT(oSxp);
if (!LENGTH(oSxp))
o = NULL;
else
o = INTEGER(oSxp);
// xo arg
xo = NULL;
if (length(xoArg)) {
if (!isInteger(xoArg)) internal_error(__func__, "xoArg is not an integer vector"); // # nocov
xo = INTEGER(xoArg);
}
// start bmerge
if (iN) {
if (verbose)
tic0 = omp_get_wtime();
// embarrassingly parallel if we've storage space for nqmaxgrp*iN
for (int kk=0; kk<nqmaxgrp; kk++) {
bmerge_r(-1,xN,-1,iN,scols,kk+1,1,1);
}
if (verbose)
Rprintf("bmerge: looping bmerge_r took %.3fs\n", omp_get_wtime()-tic0);
}
ctr += iN;
if (nqmaxgrp > 1 && mult == ALL) {
// memcpy ret* to SEXP
retFirstArg = PROTECT(allocVector(INTSXP, ctr));
retLengthArg = PROTECT(allocVector(INTSXP, ctr));
retIndexArg = PROTECT(allocVector(INTSXP, ctr));
protecti += 3;
memcpy(INTEGER(retFirstArg), retFirst, sizeof(int)*ctr);
memcpy(INTEGER(retLengthArg), retLength, sizeof(int)*ctr);
memcpy(INTEGER(retIndexArg), retIndex, sizeof(int)*ctr);
}
SEXP ans = PROTECT(allocVector(VECSXP, 5)); protecti++;
SEXP ansnames = PROTECT(allocVector(STRSXP, 5)); protecti++;
SET_VECTOR_ELT(ans, 0, retFirstArg);
SET_VECTOR_ELT(ans, 1, retLengthArg);
SET_VECTOR_ELT(ans, 2, retIndexArg);
SET_VECTOR_ELT(ans, 3, allLen1Arg);
SET_VECTOR_ELT(ans, 4, allGrp1Arg);
SET_STRING_ELT(ansnames, 0, char_starts); // changed from mkChar to char_ to pass the grep in CRAN_Release.cmd
SET_STRING_ELT(ansnames, 1, char_lens);
SET_STRING_ELT(ansnames, 2, char_indices);
SET_STRING_ELT(ansnames, 3, char_allLen1);
SET_STRING_ELT(ansnames, 4, char_allGrp1);
setAttrib(ans, R_NamesSymbol, ansnames);
if (nqmaxgrp > 1 && mult == ALL) {
R_Free(retFirst);
R_Free(retLength);
R_Free(retIndex);
}
if (verbose)
Rprintf("bmerge: took %.3fs\n", omp_get_wtime()-tic);
UNPROTECT(protecti);
return (ans);
}
void bmerge_r(int xlowIn, int xuppIn, int ilowIn, int iuppIn, int col, int thisgrp, int lowmax, int uppmax)
// col is >0 and <=ncol-1 if this range of [xlow,xupp] and [ilow,iupp] match up to but not including that column
// lowmax=1 if xlowIn is the lower bound of this group (needed for roll)
// uppmax=1 if xuppIn is the upper bound of this group (needed for roll)
// new: col starts with -1 for non-equi joins, which gathers rows from nested id group counter 'thisgrp'
{
int xlow=xlowIn, xupp=xuppIn, ilow=ilowIn, iupp=iuppIn;
int lir = ilow + (iupp-ilow)/2; // lir = logical i row.
int ir = o ? o[lir]-1 : lir; // ir = the actual i row if i were ordered
const bool isDataCol = col>-1; // check once for non nq join grp id internal technical, non-data, field
const bool isRollCol = roll!=0.0 && col==ncol-1; // col==ncol-1 implies col>-1
SEXP ic, xc;
if (isDataCol) {
ic = idtVec[icols[col]-1]; // ic = i column
xc = xdtVec[xcols[col]-1]; // xc = x column
// it was checked in bmerge() above that TYPEOF(ic)==TYPEOF(xc)
} else {
ic = R_NilValue;
xc = nqgrp;
}
bool rollLow=false, rollUpp=false;
#define DO(XVAL, CMP1, CMP2, TYPE, LOWDIST, UPPDIST, IVAL) \
while (xlow < xupp-1) { \
int mid = xlow + (xupp-xlow)/2; \
XVAL; \
if (CMP1) { /* relies on NA_INTEGER==INT_MIN, tested in init.c */ \
xlow=mid; \
} else if (CMP2) { /* TO DO: switch(sign(xval-ival)) ? */ \
xupp=mid; \
} else { \
/* xval == ival including NA_INTEGER==NA_INTEGER \
branch mid to find start and end of this group in this column \
TO DO?: not if mult=first|last and col<ncol-1 */ \
int tmplow = mid; \
while (tmplow<xupp-1) { \
int mid = tmplow + (xupp-tmplow)/2; \
if (WRAP(xcv[XIND(mid)]) == IVAL) tmplow=mid; else xupp=mid; \
} \
int tmpupp = mid; \
while (xlow<tmpupp-1) { \
int mid = xlow + (tmpupp-xlow)/2; \
if (WRAP(xcv[XIND(mid)]) == IVAL) tmpupp=mid; else xlow=mid; \
} \
/* xlow and xupp now surround the group in xc */ \
break; \
} \
} \
if (!isDataCol) \
break; \
if (isRollCol && xlow==xupp-1) { /* no match found in last column */ \
if (rollToNearest) { \
/* when rollToNearest you can't limit the distance currently */ \
/* rollToNearest not yet supported for STRSXP (checked up front) */ \
if ( (!lowmax || xlow>xlowIn) && (!uppmax || xupp<xuppIn) ) { \
if ( LOWDIST <= UPPDIST ) \
rollLow=true; \
else \
rollUpp=true; \
} \
else if (uppmax && xupp==xuppIn && rollends[1]) \
rollLow=true; \
else if (lowmax && xlow==xlowIn && rollends[0]) \
rollUpp=true; \
} else { \
/* Regular roll=TRUE|+ve|-ve */ \
if ((( roll>0.0 && (!lowmax || xlow>xlowIn) && (xupp<xuppIn || !uppmax || rollends[1])) \
|| ( roll<0.0 && xupp==xuppIn && uppmax && rollends[1]) ) \
&& ( isinf(rollabs) || ((LOWDIST)-(TYPE)rollabs <= (TYPE)1e-6) )) \
/* ^^^^^^^^^^^^^^ always true for STRSXP where LOWDIST is a dummy */ \
rollLow=true; \
else \
if ((( roll<0.0 && (!uppmax || xupp<xuppIn) && (xlow>xlowIn || !lowmax || rollends[0])) \
|| ( roll>0.0 && xlow==xlowIn && lowmax && rollends[0]) ) \
&& ( isinf(rollabs) || ((UPPDIST)-(TYPE)rollabs <= (TYPE)1e-6) )) \
rollUpp=true; \
} \
} \
if (op[col] != EQ) { \
/* never true for STRSXP checked up front */ \
switch (op[col]) { \
case LE : if (!ISNAT(ival)) xlow = xlowIn; break; \
case LT : xupp = xlow + 1; if (!ISNAT(ival)) xlow = xlowIn; break; \
case GE : if (!ISNAT(ival)) xupp = xuppIn; break; \
case GT : xlow = xupp - 1; if (!ISNAT(ival)) xupp = xuppIn; break; \
/* no other cases; checked up front to avoid handling error in parallel region */ \
} \
/* for LE/LT cases, ensure xlow excludes NA indices, != EQ is checked above already */ \
if (op[col]<=3 && xlow<xupp-1 && (!ISNAT(ival)) && (ISNAT(xcv[XIND(xlow+1)]))) { \
int tmplow = xlow, tmpupp = xupp; \
while (tmplow < tmpupp-1) { \
int mid = tmplow + (tmpupp-tmplow)/2; \
if (ISNAT(xcv[XIND(mid)])) tmplow = mid; else tmpupp = mid; \
} \
xlow = tmplow; /* tmplow is the index of last NA value */ \
} \
} \
int tmplow = lir; \
while (tmplow<iupp-1) { /* TO DO: could double up from lir rather than halving from iupp */ \
int mid = tmplow + (iupp-tmplow)/2; \
if (WRAP(icv[ o ? o[mid]-1 : mid ]) == IVAL) tmplow=mid; else iupp=mid; \
/* if we could guarantee ivals to be *always* sorted for all columns independently \
(= max(nestedid) = 1), could speed this up 2x by checking GE,GT,LE,LT separately */ \
} \
int tmpupp = lir; \
while (ilow<tmpupp-1) { \
int mid = ilow + (tmpupp-ilow)/2; \
if (WRAP(icv[ o ? o[mid]-1 : mid ]) == IVAL) tmpupp=mid; else ilow=mid; \
} \
/* ilow and iupp now surround the group in ic, too */
switch (TYPEOF(xc)) {
case LGLSXP : case INTSXP : { // including factors
const int *icv = isDataCol ? INTEGER(ic) : NULL;
const int *xcv = INTEGER(xc);
const int ival = isDataCol ? icv[ir] : thisgrp;
#define ISNAT(x) ((x)==NA_INTEGER)
#define WRAP(x) (x) // wrap not needed for int
DO(const int xval = xcv[XIND(mid)], xval<ival, xval>ival, int, ival-xcv[XIND(xlow)], xcv[XIND(xupp)]-ival, ival)
} break;
case STRSXP : {
// op[col]==EQ checked up front to avoid an if() here and non-thread-safe error()
// not sure why non-EQ is not supported for STRSXP though as it seems straightforward (StrCmp returns sign to indicate GT or LT)
const SEXP *icv = STRING_PTR_RO(ic);
const SEXP *xcv = STRING_PTR_RO(xc);
const SEXP ival = ENC2UTF8(icv[ir]);
#undef ISNAT
#undef WRAP
#define ISNAT(x) (x) // ISNAT only used for non-equi which doesn't occur for STRSXP
#define WRAP(x) (ENC2UTF8(x))
DO(int tmp=StrCmp(ENC2UTF8(xcv[XIND(mid)]), ival), tmp<0, tmp>0, int, 0, 0, ival)
// NA_STRING are allowed and joined to; does not do ENC2UTF8 again inside StrCmp
// TO DO: deal with mixed encodings and locale optionally; could StrCmp non-ascii in a thread-safe non-alloc manner
} break;
case REALSXP :
if (INHERITS(xc, char_integer64)) {
const int64_t *icv = (const int64_t *)REAL(ic);
const int64_t *xcv = (const int64_t *)REAL(xc);
const int64_t ival = icv[ir];
#undef ISNAT
#undef WRAP
#define ISNAT(x) ((x)==NA_INTEGER64)
#define WRAP(x) (x)
DO(const int64_t xval=xcv[XIND(mid)], xval<ival, xval>ival, int64_t, ival-xcv[XIND(xlow)], xcv[XIND(xupp)]-ival, ival)
} else {
const double *icv = REAL(ic);
const double *xcv = REAL(xc);
const double ival = icv[ir];
const uint64_t ivalt = dtwiddle(ival); // TO: remove dtwiddle by dealing with NA, NaN, -Inf, +Inf up front
#undef ISNAT
#undef WRAP
#define ISNAT(x) (ISNAN(x))
#define WRAP(x) (dtwiddle(x))
DO(const uint64_t xval=dtwiddle(xcv[XIND(mid)]), xval<ivalt, xval>ivalt, double, icv[ir]-xcv[XIND(xlow)], xcv[XIND(xupp)]-icv[ir], ivalt)
}
break;
// supported types were checked up front to avoid handling an error here in (future) parallel region
default: // # nocov
internal_error("Invalid join/merge type '%s' should have been caught earlier", type2char(TYPEOF(xc))); // # nocov
}
if (xlow<xupp-1 || rollLow || rollUpp) { // if value found, xlow and xupp surround it, unlike standard binary search where low falls on it
if (col<ncol-1) { // could include col==-1 here (a non-equi non-data column)
bmerge_r(xlow, xupp, ilow, iupp, col+1, thisgrp, 1, 1);
// final two 1's are lowmax and uppmax
} else {
int len = xupp-xlow-1+rollLow+rollUpp; // rollLow and rollUpp cannot both be true
if (mult==ALL && len>1) allLen1[0] = FALSE;
if (nqmaxgrp == 1) {
const int rf = (mult!=LAST) ? xlow+2-rollLow : xupp+rollUpp; // extra +1 for 1-based indexing at R level
const int rl = (mult==ALL) ? len : 1;
for (int j=ilow+1; j<iupp; j++) { // usually iterates once only for j=ir
const int k = o ? o[j]-1 : j;
retFirst[k] = rf;
retLength[k]= rl;
// retIndex initialisation is taken care of in bmerge and doesn't change for thisgrp=1
}
} else {
// non-equi join
for (int j=ilow+1; j<iupp; j++) {
const int k = o ? o[j]-1 : j;
if (retFirst[k] != nomatch) {
if (mult == ALL) {
// for this irow, we've matches on more than one group
allGrp1[0] = FALSE;
retFirst[ctr+ilen] = xlow+2;
retLength[ctr+ilen] = len;
retIndex[ctr+ilen] = k+1;
++ctr;
if (ctr+ilen >= anslen) {
anslen = 1.1*anslen;
retFirst = R_Realloc(retFirst, anslen, int); // if fails, it fails inside R_Realloc with R error
retLength = R_Realloc(retLength, anslen, int);
retIndex = R_Realloc(retIndex, anslen, int);
}
} else if (mult == FIRST) {
retFirst[k] = (XIND(retFirst[k]-1) > XIND(xlow+1)) ? xlow+2 : retFirst[k];
retLength[k] = 1;
} else {
retFirst[k] = (XIND(retFirst[k]-1) < XIND(xupp-1)) ? xupp : retFirst[k];
retLength[k] = 1;
}
} else {
// none of the groups so far have filled in for this index. So use it!
if (mult == ALL) {
retFirst[k] = xlow+2;
retLength[k] = len;
retIndex[k] = k+1;
// no need to increment ctr of course
} else {
retFirst[k] = (mult == FIRST) ? xlow+2 : xupp;
retLength[k] = 1;
}
}
}
}
}
}
switch (op[col]) {
case EQ:
if (ilow>ilowIn && (xlow>xlowIn || isRollCol))
bmerge_r(xlowIn, xlow+1, ilowIn, ilow+1, col, 1, lowmax, uppmax && xlow+1==xuppIn);
if (iupp<iuppIn && (xupp<xuppIn || isRollCol))
bmerge_r(xupp-1, xuppIn, iupp-1, iuppIn, col, 1, lowmax && xupp-1==xlowIn, uppmax);
break;
case LE: case LT:
// roll is not yet implemented
if (ilow>ilowIn)
bmerge_r(xlowIn, xuppIn, ilowIn, ilow+1, col, 1, lowmax, uppmax && xlow+1==xuppIn);
if (iupp<iuppIn)
bmerge_r(xlowIn, xuppIn, iupp-1, iuppIn, col, 1, lowmax && xupp-1==xlowIn, uppmax);
break;
case GE: case GT:
// roll is not yet implemented
if (ilow>ilowIn)
bmerge_r(xlowIn, xuppIn, ilowIn, ilow+1, col, 1, lowmax, uppmax && xlow+1==xuppIn);
if (iupp<iuppIn)
bmerge_r(xlowIn, xuppIn, iupp-1, iuppIn, col, 1, lowmax && xupp-1==xlowIn, uppmax);
break;
default : break; // one of 5 valid cases checked up front
}
}