Branch data Line data Source code
1 : : #include "storage/ColumnStore.hpp" 2 : : 3 : : #include "backend/StackMachine.hpp" 4 : : #include <mutable/catalog/Catalog.hpp> 5 : : #include <numeric> 6 : : 7 : : 8 : : using namespace m; 9 : : 10 : : 11 [ + - + - : 568 : ColumnStore::ColumnStore(const Table &table) + - ] 12 : 284 : : Store(table) 13 : 284 : { 14 : 284 : uint64_t max_attr_size = 0; 15 : : 16 : : /* Allocate memory for the attributes columns and the null bitmap column. */ 17 [ + - + - : 284 : data_ = allocator_.allocate(ALLOCATION_SIZE * (table.num_attrs() + 1)); + - ] 18 : : 19 : : /* Compute the capacity depending on the column with the largest attribute size. */ 20 [ + - + - : 899 : for (auto attr = table.begin_all(); attr != table.end_all(); ++attr) { + - + + + - ] 21 [ + - + - ]: 615 : auto size = attr->type->size(); 22 : 899 : row_size_ += size; 23 [ + - ]: 615 : max_attr_size = std::max(max_attr_size, size); 24 : 899 : } 25 [ + - ]: 284 : uint32_t num_attrs = table.num_attrs(); 26 : 284 : row_size_ += num_attrs; 27 : 284 : uint64_t null_bitmap_size = /* pad_null_bitmap= */ 1 ? ((num_attrs + 7) / 8) * 8 : num_attrs; 28 [ + - ]: 284 : max_attr_size = std::max(max_attr_size, null_bitmap_size); 29 : : 30 : 284 : capacity_ = (ALLOCATION_SIZE * 8) / max_attr_size; 31 : 284 : } 32 : : 33 : 564 : ColumnStore::~ColumnStore() { } 34 : : 35 : : M_LCOV_EXCL_START 36 : : void ColumnStore::dump(std::ostream &out) const 37 : : { 38 : : out << "ColumnStore for table \"" << table().name() << "\": " << num_rows_ << '/' << capacity_ 39 : : << " rows, " << row_size_ << " bits per row" << std::endl; 40 : : } 41 : : M_LCOV_EXCL_STOP 42 : : 43 : : __attribute__((constructor(202))) 44 : 1 : static void register_store() 45 : : { 46 : 1 : Catalog &C = Catalog::Get(); 47 [ + - ]: 1 : C.register_store<ColumnStore>(C.pool("ColumnStore"), "stores attributes in column-major order"); 48 : 1 : }