Files
doris/be/src/runtime/tuple_row.h
Zhao Chun a2b299e3b9 Reduce UT binary size (#314)
* Reduce UT binary size

Almost every module depend on ExecEnv, and ExecEnv contains all
singleton, which make UT binary contains all object files.

This patch seperate ExecEnv's initial and destory to anthor file to
avoid other file's dependence. And status.cc include debug_util.h which
depend tuple.h tuple_row.h, and I move get_stack_trace() to
stack_util.cpp to reduce status.cc's dependence.

I add USE_RTTI=1 to build rocksdb to avoid linking librocksdb.a

Issue: #292

* Update
2018-11-15 16:17:23 +08:00

126 lines
4.6 KiB
C++

// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#ifndef DORIS_BE_RUNTIME_TUPLE_ROW_H
#define DORIS_BE_RUNTIME_TUPLE_ROW_H
#include "runtime/descriptors.h"
#include "runtime/mem_pool.h"
#include "runtime/tuple.h"
namespace doris {
// A TupleRow encapsulates a contiguous sequence of Tuple pointers which
// together make up a row.
class TupleRow {
public:
Tuple* get_tuple(int tuple_idx) {
return _tuples[tuple_idx];
}
void set_tuple(int tuple_idx, Tuple* tuple) {
_tuples[tuple_idx] = tuple;
}
static TupleRow* create(const std::vector<TupleDescriptor*>& descs, MemPool* pool) {
int size = descs.size() * sizeof(Tuple*);
return reinterpret_cast<TupleRow*>(pool->allocate(size));
}
// Create a deep copy of this TupleRow. deep_copy will allocate from the pool.
TupleRow* deep_copy(const std::vector<TupleDescriptor*>& descs, MemPool* pool) {
int size = descs.size() * sizeof(Tuple*);
TupleRow* result = reinterpret_cast<TupleRow*>(pool->allocate(size));
deep_copy(result, descs, pool, false);
return result;
}
// Create a deep copy of this TupleRow into 'dst'. deep_copy will allocate from
// the MemPool and copy the tuple pointers, the tuples and the string data in the
// tuples.
// If reuse_tuple_mem is true, it is assumed the dst TupleRow has already allocated
// tuple memory and that memory will be reused. Otherwise, new tuples will be allocated
// and stored in 'dst'.
void deep_copy(TupleRow* dst, const std::vector<TupleDescriptor*>& descs, MemPool* pool,
bool reuse_tuple_mem) {
for (int i = 0; i < descs.size(); ++i) {
if (this->get_tuple(i) != NULL) {
if (reuse_tuple_mem && dst->get_tuple(i) != NULL) {
this->get_tuple(i)->deep_copy(dst->get_tuple(i), *descs[i], pool);
} else {
dst->set_tuple(i, this->get_tuple(i)->deep_copy(*descs[i], pool));
}
} else {
// TODO: this is wasteful. If we have 'reuse_tuple_mem', we should be able
// to save the tuple buffer and reuse it (i.e. freelist).
dst->set_tuple(i, NULL);
}
}
}
TupleRow* dcopy_with_new(const std::vector<TupleDescriptor*>& descs,
MemPool* pool, int64_t* bytes) {
int size = descs.size() * sizeof(Tuple*);
TupleRow* result = reinterpret_cast<TupleRow*>(pool->allocate(size));
*bytes = dcopy_with_new(result, descs, pool, false);
return result;
}
int64_t dcopy_with_new(
TupleRow* dst, const std::vector<TupleDescriptor*>& descs,
MemPool* pool, bool reuse_tuple_mem) {
int64_t bytes = 0;
for (int i = 0; i < descs.size(); ++i) {
Tuple* old_tuple = dst->get_tuple(i);
if (_tuples[i] != NULL) {
if (reuse_tuple_mem && old_tuple != NULL) {
bytes += _tuples[i]->dcopy_with_new(dst->get_tuple(i), *descs[i]);
} else {
int64_t new_bytes = 0;
dst->set_tuple(i, _tuples[i]->dcopy_with_new(*descs[i], pool, &new_bytes));
bytes += new_bytes;
}
} else {
dst->set_tuple(i, NULL);
}
}
return bytes;
}
int64_t release_tuples(const std::vector<TupleDescriptor*>& descs) {
int64_t bytes = 0;
for (int i = 0; i < descs.size(); ++i) {
if (_tuples[i] != nullptr) {
bytes += _tuples[i]->release_string(*descs[i]);
}
}
return bytes;
}
// TODO: make a macro for doing this
// For C++/IR interop, we need to be able to look up types by name.
static const char* _s_llvm_class_name;
std::string to_string(const RowDescriptor& d);
private:
Tuple* _tuples[1];
};
}
#endif