-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathvector.cpp
More file actions
126 lines (107 loc) · 4.76 KB
/
vector.cpp
File metadata and controls
126 lines (107 loc) · 4.76 KB
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
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors
#include "include/duckdb_vx/vector.h"
#include "duckdb_vx/duckdb_diagnostics.h"
DUCKDB_INCLUDES_BEGIN
#include "duckdb/common/vector.hpp"
#include "duckdb/common/types/value.hpp"
#include "duckdb/common/types/vector.hpp"
DUCKDB_INCLUDES_END
#include "duckdb_vx.h"
#include "duckdb_vx/vector_buffer.hpp"
using namespace duckdb;
extern "C" void duckdb_vx_vector_slice_to_dictionary(duckdb_vector ffi_vector,
duckdb_selection_vector ffi_sel_vec,
idx_t selection_vector_length) {
auto vector = reinterpret_cast<Vector *>(ffi_vector);
auto sel_vec = reinterpret_cast<SelectionVector *>(ffi_sel_vec);
vector->Slice(*sel_vec, selection_vector_length);
}
extern "C" void duckdb_vx_vector_dictionary(duckdb_vector ffi_vector,
duckdb_vector ffi_dict,
idx_t dictionary_size,
duckdb_selection_vector ffi_sel_vec,
idx_t count) {
auto vector = reinterpret_cast<Vector *>(ffi_vector);
auto dict = reinterpret_cast<Vector *>(ffi_dict);
auto sel_vec = reinterpret_cast<SelectionVector *>(ffi_sel_vec);
vector->Dictionary(*dict, dictionary_size, *sel_vec, count);
}
extern "C" void duckdb_vx_set_dictionary_vector_length(duckdb_vector dict, unsigned int len) {
auto ddict = reinterpret_cast<duckdb::Vector *>(dict);
ddict->GetBuffer()->Cast<DictionaryBuffer>().SetDictionarySize(len);
}
extern "C" void
duckdb_vx_sequence_vector(duckdb_vector c_vector, int64_t start, int64_t step, idx_t capacity) {
auto vector = reinterpret_cast<Vector *>(c_vector);
vector->Sequence(start, step, capacity);
}
namespace vortex {
// This is a complete hack to access the data buffer and pointer of a vector.
class DataVector : public Vector {
public:
inline void SetDataBuffer(buffer_ptr<VectorBuffer> new_buffer) {
buffer = std::move(new_buffer);
};
inline void SetDataPtr(data_ptr_t ptr) {
data = ptr;
};
};
} // namespace vortex
extern "C" void duckdb_vx_string_vector_add_vector_data_buffer(duckdb_vector ffi_vector,
duckdb_vx_vector_buffer buffer) {
auto vector = reinterpret_cast<Vector *>(ffi_vector);
auto data = reinterpret_cast<shared_ptr<vortex::ExternalVectorBuffer> *>(buffer);
StringVector::AddBuffer(*vector, *data);
}
extern "C" void duckdb_vx_vector_set_vector_data_buffer(duckdb_vector ffi_vector,
duckdb_vx_vector_buffer buffer) {
auto vector = reinterpret_cast<Vector *>(ffi_vector);
auto dvector = reinterpret_cast<vortex::DataVector *>(vector);
auto data = reinterpret_cast<shared_ptr<vortex::ExternalVectorBuffer> *>(buffer);
dvector->SetDataBuffer(*data);
}
extern "C" void duckdb_vx_vector_set_data_ptr(duckdb_vector ffi_vector, void *ptr) {
auto vector = reinterpret_cast<Vector *>(ffi_vector);
auto dvector = reinterpret_cast<vortex::DataVector *>(vector);
dvector->SetDataPtr((data_ptr_t)ptr);
}
extern "C" duckdb_value duckdb_vx_vector_get_value(duckdb_vector ffi_vector, idx_t index) {
auto vector = reinterpret_cast<Vector *>(ffi_vector);
auto value = duckdb::make_uniq<Value>(vector->GetValue(index));
return reinterpret_cast<duckdb_value>(value.release());
}
void duckdb_vector_flatten(duckdb_vector vector, unsigned long len) {
auto dvector = reinterpret_cast<Vector *>(vector);
dvector->Flatten(len);
}
const char *duckdb_vector_to_string(duckdb_vector vector, unsigned long len, duckdb_vx_error *err) {
try {
auto dvector = reinterpret_cast<Vector *>(vector);
auto str = dvector->ToString(len);
auto result = static_cast<char *>(duckdb_malloc(str.size() + 1));
memcpy(result, str.c_str(), str.size() + 1);
*err = nullptr;
return result;
} catch (std::runtime_error &e) {
auto s = e.what();
*err = duckdb_vx_error_create(s, strlen(s));
return nullptr;
}
}
void duckdb_vx_vector_set_all_valid(duckdb_vector ffi_vector) {
using enum VectorType;
Vector &vector = *reinterpret_cast<Vector *>(ffi_vector);
const VectorType type = vector.GetVectorType();
D_ASSERT(type != DICTIONARY_VECTOR && type != SEQUENCE_VECTOR);
switch (type) {
case CONSTANT_VECTOR:
return ConstantVector::Validity(vector).Reset();
case FLAT_VECTOR:
return FlatVector::Validity(vector).Reset();
case FSST_VECTOR:
return FSSTVector::Validity(vector).Reset();
default:
__builtin_unreachable();
}
}