@@ -440,48 +440,51 @@ const {
440
440
void
441
441
ColgroupSegment::getValueByPhysicId (size_t id, valvec<byte>* val, DbContext* ctx)
442
442
const {
443
+ auto cols1 = ctx->cols .get ();
444
+ auto cols2 = ctx->cols .get ();
445
+ auto buf1 = ctx->bufs .get ();
443
446
val->risk_set_size (0 );
444
- ctx-> buf1 . risk_set_size ( 0 );
445
- ctx-> cols1 . erase_all ( );
447
+ cols1-> erase_all ( );
448
+ buf1-> risk_set_size ( 0 );
446
449
447
450
// getValueAppend to ctx->buf1
448
451
const size_t colgroupNum = m_colgroups.size ();
449
452
for (size_t i = 0 ; i < colgroupNum; ++i) {
450
453
const Schema& iSchema = m_schema->getColgroupSchema (i);
451
454
if (iSchema.m_keepCols .has_any1 ()) {
452
- size_t oldsize = ctx-> buf1 . size ();
453
- m_colgroups[i]->getValueAppend (id, &ctx-> buf1 , ctx);
454
- iSchema.parseRowAppend (ctx-> buf1 , oldsize, &ctx-> cols1 );
455
+ size_t oldsize = buf1-> size ();
456
+ m_colgroups[i]->getValueAppend (id, buf1. get () , ctx);
457
+ iSchema.parseRowAppend (* buf1, oldsize, cols1. get () );
455
458
}
456
459
else {
457
- ctx-> cols1 . grow (iSchema.columnNum ());
460
+ cols1-> grow (iSchema.columnNum ());
458
461
}
459
462
}
460
- assert (ctx-> cols1 . size () == m_schema->m_colgroupSchemaSet ->m_flattenColumnNum );
463
+ assert (cols1-> size () == m_schema->m_colgroupSchemaSet ->m_flattenColumnNum );
461
464
462
465
// combine columns to ctx->cols2
463
466
size_t baseColumnId = 0 ;
464
- ctx-> cols2 . m_base = ctx-> cols1 . m_base ;
465
- ctx-> cols2 . m_cols .resize_fill (m_schema->columnNum ());
467
+ cols2-> m_base = cols1-> m_base ;
468
+ cols2-> m_cols .resize_fill (m_schema->columnNum ());
466
469
for (size_t i = 0 ; i < colgroupNum; ++i) {
467
470
const Schema& iSchema = m_schema->getColgroupSchema (i);
468
471
for (size_t j = 0 ; j < iSchema.columnNum (); ++j) {
469
472
if (iSchema.m_keepCols [j]) {
470
473
size_t parentColId = iSchema.parentColumnId (j);
471
- ctx-> cols2 . m_cols [parentColId] = ctx-> cols1 . m_cols [baseColumnId + j];
474
+ cols2-> m_cols [parentColId] = cols1-> m_cols [baseColumnId + j];
472
475
}
473
476
}
474
477
baseColumnId += iSchema.columnNum ();
475
478
}
476
479
477
480
#if !defined(NDEBUG)
478
- for (size_t i = 0 ; i < ctx-> cols2 . size (); ++i) {
479
- assert (ctx-> cols2 . m_cols [i].isValid ());
481
+ for (size_t i = 0 ; i < cols2-> size (); ++i) {
482
+ assert (cols2-> m_cols [i].isValid ());
480
483
}
481
484
#endif
482
485
483
486
// combine to val
484
- m_schema->m_rowSchema ->combineRow (ctx-> cols2 , val);
487
+ m_schema->m_rowSchema ->combineRow (* cols2, val);
485
488
}
486
489
487
490
void
@@ -610,22 +613,24 @@ ColgroupSegment::selectColumnsByPhysicId(llong physicId,
610
613
valvec<byte>* colsData, DbContext* ctx)
611
614
const {
612
615
assert (physicId >= 0 );
616
+ auto cols = ctx->cols .get ();
617
+ auto buf = ctx->bufs .get ();
613
618
colsData->erase_all ();
614
- ctx-> buf1 . erase_all ();
619
+ buf-> erase_all ();
615
620
ctx->offsets .resize_fill (m_colgroups.size (), UINT32_MAX);
616
621
auto offsets = ctx->offsets .data ();
617
622
for (size_t i = 0 ; i < colsNum; ++i) {
618
623
assert (colsId[i] < m_schema->m_rowSchema ->columnNum ());
619
624
auto cp = m_schema->m_colproject [colsId[i]];
620
625
size_t colgroupId = cp.colgroupId ;
621
- size_t oldsize = ctx-> buf1 . size ();
626
+ size_t oldsize = buf-> size ();
622
627
const Schema& schema = m_schema->getColgroupSchema (colgroupId);
623
628
if (offsets[colgroupId] == UINT32_MAX) {
624
- offsets[colgroupId] = ctx-> cols1 . size ();
625
- m_colgroups[colgroupId]->getValueAppend (physicId, &ctx-> buf1 , ctx);
626
- schema.parseRowAppend (ctx-> buf1 , oldsize, &ctx-> cols1 );
629
+ offsets[colgroupId] = cols-> size ();
630
+ m_colgroups[colgroupId]->getValueAppend (physicId, buf. get () , ctx);
631
+ schema.parseRowAppend (*buf , oldsize, cols. get () );
627
632
}
628
- fstring d = ctx-> cols1 [offsets[colgroupId] + cp.subColumnId ];
633
+ fstring d = (*cols) [offsets[colgroupId] + cp.subColumnId ];
629
634
if (i < colsNum-1 )
630
635
schema.projectToNorm (d, cp.subColumnId , colsData);
631
636
else
@@ -671,10 +676,12 @@ const {
671
676
m_colgroups[colgroupId]->getValue (physicId, colsData, ctx);
672
677
}
673
678
else {
674
- m_colgroups[colgroupId]->getValue (physicId, &ctx->buf1 , ctx);
675
- schema.parseRow (ctx->buf1 , &ctx->cols1 );
679
+ auto cols = ctx->cols .get ();
680
+ auto buf = ctx->bufs .get ();
681
+ m_colgroups[colgroupId]->getValue (physicId, buf.get (), ctx);
682
+ schema.parseRow (*buf, cols.get ());
676
683
colsData->erase_all ();
677
- colsData->append (ctx-> cols1 [cp.subColumnId ]);
684
+ colsData->append ((*cols) [cp.subColumnId ]);
678
685
}
679
686
}
680
687
@@ -1907,23 +1914,24 @@ WritableStore* WritableSegment::getWritableStore() { return this; }
1907
1914
void
1908
1915
PlainWritableSegment::getValueAppend (llong recId, valvec<byte>* val, DbContext* ctx)
1909
1916
const {
1910
- assert (&ctx->buf1 != val);
1911
- assert (&ctx->buf2 != val);
1912
1917
if (m_schema->m_updatableColgroups .empty ()) {
1913
1918
// m_wrtStore->getValueAppend(recId, val, ctx);
1914
1919
this ->getWrtStoreData (recId, val, ctx);
1915
1920
}
1916
1921
else {
1917
- ctx->buf1 .erase_all ();
1918
- ctx->cols1 .erase_all ();
1922
+ auto cols1 = ctx->cols .get ();
1923
+ auto cols2 = ctx->cols .get ();
1924
+ auto buf1 = ctx->bufs .get ();
1925
+ cols1->erase_all ();
1926
+ buf1->erase_all ();
1919
1927
// m_wrtStore->getValueAppend(recId, &ctx->buf1, ctx);
1920
- this ->getWrtStoreData (recId, &ctx-> buf1 , ctx);
1928
+ this ->getWrtStoreData (recId, buf1. get () , ctx);
1921
1929
const size_t ProtectCnt = 100 ;
1922
- SpinRwLock lock;
1930
+ SpinRwLock lock;
1923
1931
if (!m_isFreezed && m_isDel.unused () < ProtectCnt) {
1924
1932
lock.acquire (m_segMutex, false );
1925
1933
}
1926
- this ->getCombineAppend (recId, val, ctx-> buf1 , ctx-> cols1 , ctx-> cols2 );
1934
+ this ->getCombineAppend (recId, val, * buf1, * cols1, * cols2);
1927
1935
}
1928
1936
}
1929
1937
@@ -2006,7 +2014,8 @@ WritableSegment::indexSearchExactAppend(size_t mySegIdx, size_t indexId,
2006
2014
assert (!m_hasLockFreePointSearch);
2007
2015
IndexIterator* iter = ctx->getIndexIterNoLock (mySegIdx, indexId);
2008
2016
llong recId = -1 ;
2009
- int cmp = iter->seekLowerBound (key, &recId, &ctx->key2 );
2017
+ auto key2 = ctx->bufs .get ();
2018
+ int cmp = iter->seekLowerBound (key, &recId, key2.get ());
2010
2019
if (cmp == 0 ) {
2011
2020
// now IndexIterator::m_isUniqueInSchema is just for this quick check
2012
2021
// faster than m_schema->getIndexSchema(indexId).m_isUnique
@@ -2028,7 +2037,7 @@ WritableSegment::indexSearchExactAppend(size_t mySegIdx, size_t indexId,
2028
2037
size_t oldsize = recIdvec->size ();
2029
2038
do {
2030
2039
recIdvec->push_back (recId);
2031
- } while (iter->increment (&recId, &ctx-> key2 ) && key == ctx-> key2 );
2040
+ } while (iter->increment (&recId, key2. get ()) && key == * key2);
2032
2041
size_t i = oldsize, j = oldsize;
2033
2042
size_t n = recIdvec->size ();
2034
2043
llong* p = recIdvec->data ();
@@ -2110,18 +2119,20 @@ void PlainWritableSegment::selectColumnsByWhole(llong recId,
2110
2119
const {
2111
2120
assert (m_schema->m_updatableColgroups .empty ());
2112
2121
colsData->erase_all ();
2113
- // this->getValue(recId, &ctx->buf1, ctx);
2114
- this ->getWrtStoreData (recId, &ctx->buf1 , ctx);
2122
+ auto cols = ctx->cols .get ();
2123
+ auto buf = ctx->bufs .get ();
2124
+ // this->getValue(recId, buf.get(), ctx);
2125
+ this ->getWrtStoreData (recId, buf.get (), ctx);
2115
2126
const Schema& schema = *m_schema->m_rowSchema ;
2116
- schema.parseRow (ctx-> buf1 , &ctx-> cols1 );
2117
- assert (ctx-> cols1 . size () == schema.columnNum ());
2127
+ schema.parseRow (*buf, cols. get () );
2128
+ assert (cols-> size () == schema.columnNum ());
2118
2129
for (size_t i = 0 ; i < colsNum; ++i) {
2119
2130
size_t columnId = colsId[i];
2120
2131
assert (columnId < schema.columnNum ());
2121
2132
if (i < colsNum-1 )
2122
- schema.projectToNorm (ctx-> cols1 [columnId], columnId, colsData);
2133
+ schema.projectToNorm ((*cols) [columnId], columnId, colsData);
2123
2134
else
2124
- schema.projectToLast (ctx-> cols1 [columnId], columnId, colsData);
2135
+ schema.projectToLast ((*cols) [columnId], columnId, colsData);
2125
2136
}
2126
2137
}
2127
2138
@@ -2132,7 +2143,8 @@ const {
2132
2143
colsData->erase_all ();
2133
2144
const SchemaConfig& sconf = *m_schema;
2134
2145
const Schema& rowSchema = *sconf.m_rowSchema ;
2135
- ctx->cols1 .erase_all ();
2146
+ auto cols1 = ctx->cols .get ();
2147
+ cols1->erase_all ();
2136
2148
for (size_t i = 0 ; i < colsNum; ++i) {
2137
2149
size_t columnId = colsIdvec[i];
2138
2150
assert (columnId < rowSchema.columnNum ());
@@ -2153,14 +2165,15 @@ const {
2153
2165
}
2154
2166
else {
2155
2167
schema = sconf.m_wrtSchema .get ();
2156
- if (ctx->cols1 .empty ()) {
2168
+ if (cols1->empty ()) {
2169
+ auto buf1 = ctx->bufs .get ();
2157
2170
// m_wrtStore->getValue(recId, &ctx->buf1, ctx);
2158
- this ->getWrtStoreData (recId, &ctx-> buf1 , ctx);
2159
- schema->parseRow (ctx-> buf1 , &ctx-> cols1 );
2171
+ this ->getWrtStoreData (recId, buf1. get () , ctx);
2172
+ schema->parseRow (* buf1, cols1. get () );
2160
2173
}
2161
2174
size_t subColumnId = sconf.m_rowSchemaColToWrtCol [columnId];
2162
2175
assert (subColumnId < sconf.m_wrtSchema ->columnNum ());
2163
- fstring coldata = ctx-> cols1 [subColumnId];
2176
+ fstring coldata = (* cols1) [subColumnId];
2164
2177
if (i < colsNum-1 )
2165
2178
rowSchema.projectToNorm (coldata, columnId, colsData);
2166
2179
else
@@ -2188,21 +2201,23 @@ const {
2188
2201
store->getValue (recId, colsData, ctx);
2189
2202
}
2190
2203
else {
2204
+ auto cols = ctx->cols .get ();
2205
+ auto buf = ctx->bufs .get ();
2191
2206
const Schema& wrtSchema = *m_schema->m_wrtSchema ;
2192
2207
// m_wrtStore->getValue(recId, &ctx->buf1, ctx);
2193
- this ->getWrtStoreData (recId, &ctx-> buf1 , ctx);
2194
- wrtSchema.parseRow (ctx-> buf1 , &ctx-> cols1 );
2195
- assert (ctx-> cols1 . size () == wrtSchema.columnNum ());
2208
+ this ->getWrtStoreData (recId, buf. get () , ctx);
2209
+ wrtSchema.parseRow (*buf, cols. get () );
2210
+ assert (cols-> size () == wrtSchema.columnNum ());
2196
2211
colsData->erase_all ();
2197
2212
if (m_schema->m_updatableColgroups .empty ()) {
2198
2213
assert (m_schema->m_wrtSchema == m_schema->m_rowSchema );
2199
2214
assert (m_schema->m_rowSchemaColToWrtCol .empty ());
2200
- wrtSchema.projectToLast (ctx-> cols1 [columnId], columnId, colsData);
2215
+ wrtSchema.projectToLast ((*cols) [columnId], columnId, colsData);
2201
2216
}
2202
2217
else {
2203
2218
size_t wrtColumnId = m_schema->m_rowSchemaColToWrtCol [columnId];
2204
2219
assert (wrtColumnId < wrtSchema.columnNum ());
2205
- wrtSchema.projectToLast (ctx-> cols1 [wrtColumnId], columnId, colsData);
2220
+ wrtSchema.projectToLast ((*cols) [wrtColumnId], columnId, colsData);
2206
2221
}
2207
2222
}
2208
2223
}
@@ -2402,15 +2417,17 @@ llong PlainWritableSegment::append(fstring row, DbContext* ctx) {
2402
2417
return store->append (row, ctx);
2403
2418
}
2404
2419
else {
2405
- sconf.m_rowSchema ->parseRow (row, &ctx->cols1 );
2406
- sconf.m_wrtSchema ->selectParent (ctx->cols1 , &ctx->buf1 );
2407
- llong id1 = store->append (ctx->buf1 , ctx);
2420
+ auto cols = ctx->cols .get ();
2421
+ auto buf = ctx->bufs .get ();
2422
+ sconf.m_rowSchema ->parseRow (row, cols.get ());
2423
+ sconf.m_wrtSchema ->selectParent (*cols, buf.get ());
2424
+ llong id1 = store->append (*buf, ctx);
2408
2425
for (size_t colgroupId : sconf.m_updatableColgroups ) {
2409
2426
store = m_colgroups[colgroupId]->getAppendableStore ();
2410
2427
assert (nullptr != store);
2411
2428
const Schema& schema = sconf.getColgroupSchema (colgroupId);
2412
- schema.selectParent (ctx-> cols1 , &ctx-> buf1 );
2413
- llong id2 = store->append (ctx-> buf1 , ctx);
2429
+ schema.selectParent (*cols, buf. get () );
2430
+ llong id2 = store->append (*buf , ctx);
2414
2431
TERARK_RT_assert (id1 == id2, std::logic_error);
2415
2432
}
2416
2433
return id1;
@@ -2426,15 +2443,17 @@ void PlainWritableSegment::update(llong id, fstring row, DbContext* ctx) {
2426
2443
store->update (id, row, ctx);
2427
2444
}
2428
2445
else {
2429
- sconf.m_rowSchema ->parseRow (row, &ctx->cols1 );
2430
- sconf.m_wrtSchema ->selectParent (ctx->cols1 , &ctx->buf1 );
2431
- store->update (id, ctx->buf1 , ctx);
2446
+ auto cols = ctx->cols .get ();
2447
+ auto buf = ctx->bufs .get ();
2448
+ sconf.m_rowSchema ->parseRow (row, cols.get ());
2449
+ sconf.m_wrtSchema ->selectParent (*cols, buf.get ());
2450
+ store->update (id, *buf, ctx);
2432
2451
for (size_t colgroupId : sconf.m_updatableColgroups ) {
2433
2452
store = m_colgroups[colgroupId]->getUpdatableStore ();
2434
2453
assert (nullptr != store);
2435
2454
const Schema& schema = sconf.getColgroupSchema (colgroupId);
2436
- schema.selectParent (ctx-> cols1 , &ctx-> buf1 );
2437
- store->update (id, ctx-> buf1 , ctx);
2455
+ schema.selectParent (*cols, buf. get () );
2456
+ store->update (id, *buf , ctx);
2438
2457
}
2439
2458
}
2440
2459
}
0 commit comments