tarray.c 12.8 KB
Newer Older
H
more  
hzcheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program 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.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

S
tarray  
Shengliang Guan 已提交
16
#define _DEFAULT_SOURCE
H
more  
hzcheng 已提交
17
#include "tarray.h"
18
#include "tcoding.h"
H
more  
hzcheng 已提交
19

20
SArray* taosArrayInit(size_t size, size_t elemSize) {
H
more  
hzcheng 已提交
21 22 23 24 25 26
  assert(elemSize > 0);

  if (size < TARRAY_MIN_SIZE) {
    size = TARRAY_MIN_SIZE;
  }

wafwerar's avatar
wafwerar 已提交
27
  SArray* pArray = taosMemoryMalloc(sizeof(SArray));
H
more  
hzcheng 已提交
28 29 30 31
  if (pArray == NULL) {
    return NULL;
  }

H
Haojun Liao 已提交
32
  pArray->size = 0;
wafwerar's avatar
wafwerar 已提交
33
  pArray->pData = taosMemoryCalloc(size, elemSize);
H
more  
hzcheng 已提交
34
  if (pArray->pData == NULL) {
wafwerar's avatar
wafwerar 已提交
35
    taosMemoryFree(pArray);
H
more  
hzcheng 已提交
36 37 38 39 40 41 42 43
    return NULL;
  }

  pArray->capacity = size;
  pArray->elemSize = elemSize;
  return pArray;
}

H
hjxilinx 已提交
44
static int32_t taosArrayResize(SArray* pArray) {
H
more  
hzcheng 已提交
45 46 47 48 49
  assert(pArray->size >= pArray->capacity);

  size_t size = pArray->capacity;
  size = (size << 1u);

wafwerar's avatar
wafwerar 已提交
50
  void* tmp = taosMemoryRealloc(pArray->pData, size * pArray->elemSize);
H
hjxilinx 已提交
51 52
  if (tmp == NULL) {  // reallocate failed, the original buffer remains
    return -1;
H
more  
hzcheng 已提交
53 54 55 56
  }

  pArray->pData = tmp;
  pArray->capacity = size;
S
tarray  
Shengliang Guan 已提交
57

H
hjxilinx 已提交
58
  return 0;
H
more  
hzcheng 已提交
59 60
}

L
Liu Jicong 已提交
61 62
int32_t taosArrayEnsureCap(SArray* pArray, size_t newCap) {
  if (newCap > pArray->capacity) {
H
Hongze Cheng 已提交
63
    size_t tsize = (pArray->capacity << 1u);
L
Liu Jicong 已提交
64
    while (newCap > tsize) {
H
Hongze Cheng 已提交
65 66 67
      tsize = (tsize << 1u);
    }

wafwerar's avatar
wafwerar 已提交
68
    pArray->pData = taosMemoryRealloc(pArray->pData, tsize * pArray->elemSize);
H
Hongze Cheng 已提交
69
    if (pArray->pData == NULL) {
L
Liu Jicong 已提交
70
      return -1;
H
hjxilinx 已提交
71
    }
H
Hongze Cheng 已提交
72 73

    pArray->capacity = tsize;
H
more  
hzcheng 已提交
74
  }
L
Liu Jicong 已提交
75 76 77
  return 0;
}

S
tarray  
Shengliang Guan 已提交
78
void* taosArrayAddBatch(SArray* pArray, const void* pData, int32_t nEles) {
L
Liu Jicong 已提交
79
  if (pData == NULL) {
L
Liu Jicong 已提交
80 81 82
    return NULL;
  }

S
tarray  
Shengliang Guan 已提交
83
  if (taosArrayEnsureCap(pArray, pArray->size + nEles) != 0) {
L
Liu Jicong 已提交
84 85
    return NULL;
  }
H
more  
hzcheng 已提交
86 87

  void* dst = TARRAY_GET_ELEM(pArray, pArray->size);
H
Hongze Cheng 已提交
88
  memcpy(dst, pData, pArray->elemSize * nEles);
H
more  
hzcheng 已提交
89

H
Hongze Cheng 已提交
90
  pArray->size += nEles;
H
more  
hzcheng 已提交
91 92 93
  return dst;
}

S
tarray  
Shengliang Guan 已提交
94
void taosArrayRemoveBatch(SArray* pArray, const int32_t* pData, int32_t numOfElems) {
95 96 97 98 99 100 101 102 103 104 105 106
  assert(pArray != NULL && pData != NULL);
  if (numOfElems <= 0) {
    return;
  }

  size_t size = taosArrayGetSize(pArray);
  if (numOfElems >= size) {
    taosArrayClear(pArray);
    return;
  }

  int32_t i = pData[0] + 1, j = 0;
S
tarray  
Shengliang Guan 已提交
107
  while (i < size) {
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
    if (j == numOfElems - 1) {
      break;
    }

    char* p = TARRAY_GET_ELEM(pArray, i);
    if (i > pData[j] && i < pData[j + 1]) {
      char* dst = TARRAY_GET_ELEM(pArray, i - (j + 1));
      memmove(dst, p, pArray->elemSize);
    } else if (i == pData[j + 1]) {
      j += 1;
    }

    i += 1;
  }

H
Haojun Liao 已提交
123
  assert(i == pData[numOfElems - 1] + 1 && i <= size);
124 125

  int32_t srcIndex = pData[numOfElems - 1] + 1;
H
Haojun Liao 已提交
126 127 128 129 130 131
  int32_t dstIndex = pData[numOfElems - 1] - numOfElems + 1;
  if (pArray->size - srcIndex > 0) {
    char* dst = TARRAY_GET_ELEM(pArray, dstIndex);
    char* src = TARRAY_GET_ELEM(pArray, srcIndex);
    memmove(dst, src, pArray->elemSize * (pArray->size - srcIndex));
  }
132 133 134 135

  pArray->size -= numOfElems;
}

S
tarray  
Shengliang Guan 已提交
136
void taosArrayRemoveDuplicate(SArray* pArray, __compar_fn_t comparFn, void (*fp)(void*)) {
137 138 139 140 141 142 143 144
  assert(pArray);

  size_t size = pArray->size;
  if (size <= 1) {
    return;
  }

  int32_t pos = 0;
S
tarray  
Shengliang Guan 已提交
145
  for (int32_t i = 1; i < size; ++i) {
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
    char* p1 = taosArrayGet(pArray, pos);
    char* p2 = taosArrayGet(pArray, i);

    if (comparFn(p1, p2) == 0) {
      // do nothing
    } else {
      if (pos + 1 != i) {
        void* p = taosArrayGet(pArray, pos + 1);
        if (fp != NULL) {
          fp(p);
        }

        taosArraySet(pArray, pos + 1, p2);
        pos += 1;
      } else {
        pos += 1;
      }
    }
  }

  if (fp != NULL) {
S
tarray  
Shengliang Guan 已提交
167
    for (int32_t i = pos + 1; i < pArray->size; ++i) {
168 169 170 171 172 173 174 175
      void* p = taosArrayGet(pArray, i);
      fp(p);
    }
  }

  pArray->size = pos + 1;
}

H
Haojun Liao 已提交
176
void* taosArrayAddAll(SArray* pArray, const SArray* pInput) {
S
tarray  
Shengliang Guan 已提交
177
  return taosArrayAddBatch(pArray, pInput->pData, (int32_t)taosArrayGetSize(pInput));
H
Haojun Liao 已提交
178 179
}

weixin_48148422's avatar
weixin_48148422 已提交
180
void* taosArrayPop(SArray* pArray) {
S
tarray  
Shengliang Guan 已提交
181
  assert(pArray != NULL);
182 183

  if (pArray->size == 0) {
weixin_48148422's avatar
weixin_48148422 已提交
184
    return NULL;
H
more  
hzcheng 已提交
185 186
  }
  pArray->size -= 1;
weixin_48148422's avatar
weixin_48148422 已提交
187
  return TARRAY_GET_ELEM(pArray, pArray->size);
H
more  
hzcheng 已提交
188 189
}

190
void* taosArrayGet(const SArray* pArray, size_t index) {
H
more  
hzcheng 已提交
191 192 193 194
  assert(index < pArray->size);
  return TARRAY_GET_ELEM(pArray, index);
}

195
void* taosArrayGetP(const SArray* pArray, size_t index) {
H
Haojun Liao 已提交
196
  assert(index < pArray->size);
S
tarray  
Shengliang Guan 已提交
197

H
Haojun Liao 已提交
198
  void* d = TARRAY_GET_ELEM(pArray, index);
S
tarray  
Shengliang Guan 已提交
199

H
Haojun Liao 已提交
200
  return *(void**)d;
H
hjxilinx 已提交
201 202
}

S
tarray  
Shengliang Guan 已提交
203
void* taosArrayGetLast(const SArray* pArray) { return TARRAY_GET_ELEM(pArray, pArray->size - 1); }
H
Haojun Liao 已提交
204

S
Shengliang Guan 已提交
205 206 207 208 209 210
size_t taosArrayGetSize(const SArray* pArray) {
  if (pArray == NULL) {
    return 0;
  }
  return pArray->size;
}
H
more  
hzcheng 已提交
211

212 213 214 215 216
void taosArraySetSize(SArray* pArray, size_t size) {
  assert(size <= pArray->capacity);
  pArray->size = size;
}

H
hjxilinx 已提交
217
void* taosArrayInsert(SArray* pArray, size_t index, void* pData) {
H
more  
hzcheng 已提交
218
  if (pArray == NULL || pData == NULL) {
H
hjxilinx 已提交
219
    return NULL;
H
more  
hzcheng 已提交
220 221 222
  }

  if (index >= pArray->size) {
H
hjxilinx 已提交
223
    return taosArrayPush(pArray, pData);
H
more  
hzcheng 已提交
224 225 226
  }

  if (pArray->size >= pArray->capacity) {
H
hjxilinx 已提交
227
    int32_t ret = taosArrayResize(pArray);
S
tarray  
Shengliang Guan 已提交
228

H
hjxilinx 已提交
229 230 231
    if (ret < 0) {
      return NULL;
    }
H
more  
hzcheng 已提交
232 233 234 235
  }

  void* dst = TARRAY_GET_ELEM(pArray, index);

S
Shengliang Guan 已提交
236 237
  int32_t remain = (int32_t)(pArray->size - index);
  memmove((char*)dst + pArray->elemSize, (char*)dst, pArray->elemSize * remain);
H
more  
hzcheng 已提交
238 239 240
  memcpy(dst, pData, pArray->elemSize);

  pArray->size += 1;
S
tarray  
Shengliang Guan 已提交
241

H
hjxilinx 已提交
242
  return dst;
H
more  
hzcheng 已提交
243 244
}

H
Hongze Cheng 已提交
245
void taosArraySet(SArray* pArray, size_t index, void* pData) {
H
refact  
Hongze Cheng 已提交
246 247 248 249
  assert(index < pArray->size);
  memcpy(TARRAY_GET_ELEM(pArray, index), pData, pArray->elemSize);
}

L
Liu Jicong 已提交
250 251 252
void taosArrayPopFrontBatch(SArray* pArray, size_t cnt) {
  assert(cnt <= pArray->size);
  pArray->size = pArray->size - cnt;
S
tarray  
Shengliang Guan 已提交
253
  if (pArray->size == 0) {
L
Liu Jicong 已提交
254 255
    return;
  }
L
Liu Jicong 已提交
256
  memmove(pArray->pData, (char*)pArray->pData + cnt * pArray->elemSize, pArray->size * pArray->elemSize);
L
Liu Jicong 已提交
257 258
}

L
Liu Jicong 已提交
259 260 261 262 263
void taosArrayPopTailBatch(SArray* pArray, size_t cnt) {
  assert(cnt <= pArray->size);
  pArray->size = pArray->size - cnt;
}

264 265
void taosArrayRemove(SArray* pArray, size_t index) {
  assert(index < pArray->size);
S
tarray  
Shengliang Guan 已提交
266

267 268 269 270
  if (index == pArray->size - 1) {
    taosArrayPop(pArray);
    return;
  }
S
tarray  
Shengliang Guan 已提交
271

272
  size_t remain = pArray->size - index - 1;
S
tarray  
Shengliang Guan 已提交
273 274
  memmove((char*)pArray->pData + index * pArray->elemSize, (char*)pArray->pData + (index + 1) * pArray->elemSize,
          remain * pArray->elemSize);
275 276 277
  pArray->size -= 1;
}

H
Haojun Liao 已提交
278 279 280 281 282 283 284 285
SArray* taosArrayFromList(const void* src, size_t size, size_t elemSize) {
  assert(src != NULL && elemSize > 0);
  SArray* pDst = taosArrayInit(size, elemSize);

  memcpy(pDst->pData, src, elemSize * size);
  pDst->size = size;

  return pDst;
286 287
}

H
Haojun Liao 已提交
288
SArray* taosArrayDup(const SArray* pSrc) {
H
hjxilinx 已提交
289
  assert(pSrc != NULL);
S
tarray  
Shengliang Guan 已提交
290 291

  if (pSrc->size == 0) {  // empty array list
H
hjxilinx 已提交
292 293
    return taosArrayInit(8, pSrc->elemSize);
  }
S
tarray  
Shengliang Guan 已提交
294

H
hjxilinx 已提交
295
  SArray* dst = taosArrayInit(pSrc->size, pSrc->elemSize);
S
tarray  
Shengliang Guan 已提交
296

H
hjxilinx 已提交
297 298 299 300 301
  memcpy(dst->pData, pSrc->pData, pSrc->elemSize * pSrc->size);
  dst->size = pSrc->size;
  return dst;
}

weixin_48148422's avatar
weixin_48148422 已提交
302
void taosArrayClear(SArray* pArray) {
S
Shengliang Guan 已提交
303
  if (pArray == NULL) return;
weixin_48148422's avatar
weixin_48148422 已提交
304 305 306
  pArray->size = 0;
}

D
dapan1121 已提交
307 308 309 310 311 312 313 314 315 316 317 318 319 320
void taosArrayClearEx(SArray* pArray, void (*fp)(void*)) {
  if (pArray == NULL) return;
  if (fp == NULL) {
    pArray->size = 0;
    return;
  }

  for (int32_t i = 0; i < pArray->size; ++i) {
    fp(TARRAY_GET_ELEM(pArray, i));
  }

  pArray->size = 0;
}

R
root 已提交
321 322 323 324 325 326 327 328 329 330 331 332 333 334
void taosArrayClearP(SArray* pArray, FDelete fp) {
  if (pArray == NULL) return;
  if (fp == NULL) {
    pArray->size = 0;
    return;
  }

  for (int32_t i = 0; i < pArray->size; ++i) {
    fp(*(void**)TARRAY_GET_ELEM(pArray, i));
  }

  pArray->size = 0;
}

H
Hongze Cheng 已提交
335 336
void* taosArrayDestroy(SArray* pArray) {
  if (pArray) {
wafwerar's avatar
wafwerar 已提交
337 338
    taosMemoryFree(pArray->pData);
    taosMemoryFree(pArray);
H
more  
hzcheng 已提交
339 340
  }

H
Hongze Cheng 已提交
341
  return NULL;
H
more  
hzcheng 已提交
342
}
weixin_48148422's avatar
weixin_48148422 已提交
343

344 345 346 347 348 349 350 351
void taosArrayDestroyP(SArray* pArray, FDelete fp) {
  for (int32_t i = 0; i < pArray->size; i++) {
    fp(*(void**)TARRAY_GET_ELEM(pArray, i));
  }
  taosArrayDestroy(pArray);
}

void taosArrayDestroyEx(SArray* pArray, FDelete fp) {
H
Haojun Liao 已提交
352 353 354 355
  if (pArray == NULL) {
    return;
  }

H
Haojun Liao 已提交
356
  if (fp == NULL) {
H
Haojun Liao 已提交
357 358
    taosArrayDestroy(pArray);
    return;
H
Haojun Liao 已提交
359 360
  }

S
tarray  
Shengliang Guan 已提交
361
  for (int32_t i = 0; i < pArray->size; ++i) {
H
Haojun Liao 已提交
362 363 364 365 366 367
    fp(TARRAY_GET_ELEM(pArray, i));
  }

  taosArrayDestroy(pArray);
}

368
void taosArraySort(SArray* pArray, __compar_fn_t compar) {
weixin_48148422's avatar
weixin_48148422 已提交
369 370 371 372 373 374
  assert(pArray != NULL);
  assert(compar != NULL);

  qsort(pArray->pData, pArray->size, pArray->elemSize, compar);
}

S
tarray  
Shengliang Guan 已提交
375
void* taosArraySearch(const SArray* pArray, const void* key, __compar_fn_t comparFn, int32_t flags) {
376
  assert(pArray != NULL && comparFn != NULL);
weixin_48148422's avatar
weixin_48148422 已提交
377 378
  assert(key != NULL);

H
refact  
Hongze Cheng 已提交
379
  return taosbsearch(key, pArray->pData, pArray->size, pArray->elemSize, comparFn, flags);
weixin_48148422's avatar
weixin_48148422 已提交
380 381
}

S
tarray  
Shengliang Guan 已提交
382
int32_t taosArraySearchIdx(const SArray* pArray, const void* key, __compar_fn_t comparFn, int32_t flags) {
L
Liu Jicong 已提交
383
  void* item = taosArraySearch(pArray, key, comparFn, flags);
L
Liu Jicong 已提交
384
  return item == NULL ? -1 : (int32_t)((char*)item - (char*)pArray->pData) / pArray->elemSize;
L
Liu Jicong 已提交
385 386
}

387
void taosArraySortString(SArray* pArray, __compar_fn_t comparFn) {
weixin_48148422's avatar
weixin_48148422 已提交
388
  assert(pArray != NULL);
389
  qsort(pArray->pData, pArray->size, pArray->elemSize, comparFn);
weixin_48148422's avatar
weixin_48148422 已提交
390 391
}

S
tarray  
Shengliang Guan 已提交
392
char* taosArraySearchString(const SArray* pArray, const char* key, __compar_fn_t comparFn, int32_t flags) {
weixin_48148422's avatar
weixin_48148422 已提交
393 394 395
  assert(pArray != NULL);
  assert(key != NULL);

H
refact  
Hongze Cheng 已提交
396
  void* p = taosbsearch(&key, pArray->pData, pArray->size, pArray->elemSize, comparFn, flags);
weixin_48148422's avatar
weixin_48148422 已提交
397 398 399 400
  if (p == NULL) {
    return NULL;
  }
  return *(char**)p;
401 402
}

S
tarray  
Shengliang Guan 已提交
403 404
static int32_t taosArrayPartition(SArray* pArray, int32_t i, int32_t j, __ext_compar_fn_t fn, const void* userData) {
  void* key = taosArrayGetP(pArray, i);
405
  while (i < j) {
S
tarray  
Shengliang Guan 已提交
406 407 408 409 410
    while (i < j && fn(taosArrayGetP(pArray, j), key, userData) >= 0) {
      j--;
    }
    if (i < j) {
      void* a = taosArrayGetP(pArray, j);
411 412
      taosArraySet(pArray, i, &a);
    }
S
tarray  
Shengliang Guan 已提交
413 414 415
    while (i < j && fn(taosArrayGetP(pArray, i), key, userData) <= 0) {
      i++;
    }
416
    if (i < j) {
S
tarray  
Shengliang Guan 已提交
417
      void* a = taosArrayGetP(pArray, i);
418 419 420
      taosArraySet(pArray, j, &a);
    }
  }
S
tarray  
Shengliang Guan 已提交
421
  taosArraySet(pArray, i, &key);
422 423 424
  return i;
}

S
tarray  
Shengliang Guan 已提交
425 426
static void taosArrayQuicksortHelper(SArray* pArray, int32_t low, int32_t high, __ext_compar_fn_t fn,
                                     const void* param) {
427
  if (low < high) {
S
tarray  
Shengliang Guan 已提交
428
    int32_t idx = taosArrayPartition(pArray, low, high, fn, param);
429 430
    taosArrayQuicksortHelper(pArray, low, idx - 1, fn, param);
    taosArrayQuicksortHelper(pArray, idx + 1, high, fn, param);
S
tarray  
Shengliang Guan 已提交
431
  }
432 433
}

S
tarray  
Shengliang Guan 已提交
434
static void taosArrayQuickSort(SArray* pArray, __ext_compar_fn_t fn, const void* param) {
435
  if (pArray->size <= 1) {
436
    return;
S
tarray  
Shengliang Guan 已提交
437 438
  }
  taosArrayQuicksortHelper(pArray, 0, (int32_t)(taosArrayGetSize(pArray) - 1), fn, param);
439
}
S
tarray  
Shengliang Guan 已提交
440 441

static void taosArrayInsertSort(SArray* pArray, __ext_compar_fn_t fn, const void* param) {
442
  if (pArray->size <= 1) {
443
    return;
S
tarray  
Shengliang Guan 已提交
444 445 446
  }
  for (int32_t i = 1; i <= pArray->size - 1; ++i) {
    for (int32_t j = i; j > 0; --j) {
447
      if (fn(taosArrayGetP(pArray, j), taosArrayGetP(pArray, j - 1), param) == -1) {
S
tarray  
Shengliang Guan 已提交
448 449
        void* a = taosArrayGetP(pArray, j);
        void* b = taosArrayGetP(pArray, j - 1);
450 451 452 453 454 455 456
        taosArraySet(pArray, j - 1, &a);
        taosArraySet(pArray, j, &b);
      } else {
        break;
      }
    }
  }
457
  return;
S
tarray  
Shengliang Guan 已提交
458 459
}

460
SArray* taosArrayDeepCopy(const SArray* pSrc, FCopy deepCopy) {
L
Liu Jicong 已提交
461 462
  ASSERT(pSrc->elemSize == sizeof(void*));
  SArray* pArray = taosArrayInit(pSrc->size, sizeof(void*));
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
  for (int32_t i = 0; i < pSrc->size; i++) {
    void* clone = deepCopy(taosArrayGetP(pSrc, i));
    taosArrayPush(pArray, &clone);
  }
  return pArray;
}

int32_t taosEncodeArray(void** buf, const SArray* pArray, FEncode encode) {
  int32_t tlen = 0;
  int32_t sz = pArray->size;
  tlen += taosEncodeFixedI32(buf, sz);
  for (int32_t i = 0; i < sz; i++) {
    void* data = taosArrayGetP(pArray, i);
    tlen += encode(buf, data);
  }
  return tlen;
}

void* taosDecodeArray(const void* buf, SArray** pArray, FDecode decode, int32_t dataSz) {
  int32_t sz;
  buf = taosDecodeFixedI32(buf, &sz);
  *pArray = taosArrayInit(sz, sizeof(void*));
  for (int32_t i = 0; i < sz; i++) {
    void* data = taosMemoryCalloc(1, dataSz);
    buf = decode(buf, data);
L
Liu Jicong 已提交
488
    taosArrayPush(*pArray, &data);
489 490 491 492
  }
  return (void*)buf;
}

493
// todo remove it
S
tarray  
Shengliang Guan 已提交
494 495 496 497 498
// order array<type *>
void taosArraySortPWithExt(SArray* pArray, __ext_compar_fn_t fn, const void* param) {
  taosArrayGetSize(pArray) > 8 ? taosArrayQuickSort(pArray, fn, param) : taosArrayInsertSort(pArray, fn, param);
}
// TODO(yihaoDeng) add order array<type>
L
Liu Jicong 已提交
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
//

char* taosShowStrArray(const SArray* pArray) {
  int32_t sz = pArray->size;
  int32_t tlen = 0;
  for (int32_t i = 0; i < sz; i++) {
    tlen += strlen(taosArrayGetP(pArray, i)) + 1;
  }
  char* res = taosMemoryCalloc(1, tlen);
  char* buf = res;
  for (int32_t i = 0; i < sz; i++) {
    char*   str = taosArrayGetP(pArray, i);
    int32_t len = strlen(str);
    memcpy(buf, str, len);
    buf += len;
    if (i != sz - 1) *buf = ',';
  }
  return res;
}