Spaces:
Runtime error
Runtime error
File size: 7,370 Bytes
bf20cb7 | 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 | #include "wayy_db/string_column.hpp"
#include <bit>
#include <cstring>
#include <filesystem>
#include <fstream>
#include <stdexcept>
namespace fs = std::filesystem;
namespace wayy_db {
StringColumn::StringColumn(std::string name) : name_(std::move(name)) {
offsets_.push_back(0); // Initial offset
}
std::string_view StringColumn::get(size_t row) const {
if (row >= size()) {
throw InvalidOperation("StringColumn row out of range");
}
if (has_validity_ && !is_valid(row)) {
return {}; // Null row returns empty view
}
int64_t start = offsets_[row];
int64_t end = offsets_[row + 1];
return std::string_view(reinterpret_cast<const char*>(data_.data() + start),
static_cast<size_t>(end - start));
}
void StringColumn::append(std::string_view val) {
int64_t offset = offsets_.back();
data_.insert(data_.end(), val.begin(), val.end());
offsets_.push_back(offset + static_cast<int64_t>(val.size()));
if (has_validity_) {
size_t row = size() - 1;
size_t needed_bytes = (size() + 7) / 8;
if (validity_.size() < needed_bytes) {
validity_.push_back(0);
}
set_valid(row, true);
}
}
void StringColumn::append_null() {
offsets_.push_back(offsets_.back()); // Zero-length entry
ensure_validity();
set_valid(size() - 1, false);
}
void StringColumn::set(size_t row, std::string_view val) {
if (row >= size()) {
throw InvalidOperation("StringColumn row out of range in set");
}
int64_t old_start = offsets_[row];
int64_t old_end = offsets_[row + 1];
int64_t old_len = old_end - old_start;
int64_t new_len = static_cast<int64_t>(val.size());
if (new_len <= old_len) {
// Fits in-place: overwrite and zero-pad remainder
std::memcpy(data_.data() + old_start, val.data(), val.size());
if (new_len < old_len) {
std::memset(data_.data() + old_start + new_len, 0,
static_cast<size_t>(old_len - new_len));
}
// Update offsets: shift this entry's end
offsets_[row + 1] = old_start + new_len;
// NOTE: This changes the offset for subsequent rows if they shared
// contiguous data. For OLTP use (row-level updates), this is fine
// because compact() will fix fragmentation.
} else {
// Doesn't fit: append to end of data buffer, old slot becomes waste
int64_t new_start = static_cast<int64_t>(data_.size());
data_.insert(data_.end(), val.begin(), val.end());
offsets_[row] = new_start;
offsets_[row + 1] = new_start + new_len;
}
if (has_validity_) {
set_valid(row, true);
}
}
// --- Validity bitmap ---
void StringColumn::ensure_validity() {
if (has_validity_) return;
size_t n = size();
size_t num_bytes = (n + 7) / 8;
validity_.assign(num_bytes, 0xFF);
if (n % 8 != 0) {
uint8_t mask = static_cast<uint8_t>((1u << (n % 8)) - 1);
validity_.back() = mask;
}
has_validity_ = true;
}
bool StringColumn::is_valid(size_t row) const {
if (!has_validity_) return true;
if (row >= size()) return false;
return (validity_[row / 8] >> (row % 8)) & 1;
}
void StringColumn::set_valid(size_t row, bool valid) {
if (!has_validity_) ensure_validity();
if (row >= size()) return;
if (valid) {
validity_[row / 8] |= (1u << (row % 8));
} else {
validity_[row / 8] &= ~(1u << (row % 8));
}
}
size_t StringColumn::count_valid() const {
if (!has_validity_) return size();
size_t count = 0;
for (auto byte : validity_) {
count += std::popcount(byte);
}
return count;
}
// --- Persistence ---
// Files: <dir>/<col_name>.offsets, <col_name>.data, <col_name>.validity
void StringColumn::save(const std::string& dir_path, const std::string& col_name) const {
fs::create_directories(dir_path);
// Write offsets
{
std::string path = dir_path + "/" + col_name + ".offsets";
std::ofstream f(path, std::ios::binary);
if (!f) throw WayyException("Failed to create offsets file: " + path);
uint64_t count = offsets_.size();
f.write(reinterpret_cast<const char*>(&count), sizeof(count));
f.write(reinterpret_cast<const char*>(offsets_.data()),
static_cast<std::streamsize>(offsets_.size() * sizeof(int64_t)));
}
// Write data
{
std::string path = dir_path + "/" + col_name + ".data";
std::ofstream f(path, std::ios::binary);
if (!f) throw WayyException("Failed to create data file: " + path);
uint64_t sz = data_.size();
f.write(reinterpret_cast<const char*>(&sz), sizeof(sz));
f.write(reinterpret_cast<const char*>(data_.data()),
static_cast<std::streamsize>(data_.size()));
}
// Write validity if present
if (has_validity_) {
std::string path = dir_path + "/" + col_name + ".validity";
std::ofstream f(path, std::ios::binary);
if (!f) throw WayyException("Failed to create validity file: " + path);
uint64_t sz = validity_.size();
f.write(reinterpret_cast<const char*>(&sz), sizeof(sz));
f.write(reinterpret_cast<const char*>(validity_.data()),
static_cast<std::streamsize>(validity_.size()));
}
}
StringColumn StringColumn::load(const std::string& dir_path, const std::string& col_name) {
StringColumn sc(col_name);
sc.offsets_.clear();
// Read offsets
{
std::string path = dir_path + "/" + col_name + ".offsets";
std::ifstream f(path, std::ios::binary);
if (!f) throw WayyException("Failed to open offsets file: " + path);
uint64_t count = 0;
f.read(reinterpret_cast<char*>(&count), sizeof(count));
sc.offsets_.resize(count);
f.read(reinterpret_cast<char*>(sc.offsets_.data()),
static_cast<std::streamsize>(count * sizeof(int64_t)));
}
// Read data
{
std::string path = dir_path + "/" + col_name + ".data";
std::ifstream f(path, std::ios::binary);
if (!f) throw WayyException("Failed to open data file: " + path);
uint64_t sz = 0;
f.read(reinterpret_cast<char*>(&sz), sizeof(sz));
sc.data_.resize(sz);
f.read(reinterpret_cast<char*>(sc.data_.data()),
static_cast<std::streamsize>(sz));
}
// Read validity if present
{
std::string path = dir_path + "/" + col_name + ".validity";
if (fs::exists(path)) {
std::ifstream f(path, std::ios::binary);
if (f) {
uint64_t sz = 0;
f.read(reinterpret_cast<char*>(&sz), sizeof(sz));
sc.validity_.resize(sz);
f.read(reinterpret_cast<char*>(sc.validity_.data()),
static_cast<std::streamsize>(sz));
sc.has_validity_ = true;
}
}
}
return sc;
}
std::vector<std::string> StringColumn::to_vector() const {
std::vector<std::string> result;
result.reserve(size());
for (size_t i = 0; i < size(); ++i) {
if (is_valid(i)) {
result.emplace_back(get(i));
} else {
result.emplace_back();
}
}
return result;
}
} // namespace wayy_db
|