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
use crate::duckly::{
duckdb_create_table_function, duckdb_delete_callback_t, duckdb_destroy_table_function,
duckdb_table_function, duckdb_table_function_add_parameter, duckdb_table_function_init_t,
duckdb_table_function_set_bind, duckdb_table_function_set_extra_info,
duckdb_table_function_set_function, duckdb_table_function_set_init,
duckdb_table_function_set_local_init, duckdb_table_function_set_name,
duckdb_table_function_supports_projection_pushdown,
};
use crate::logical_type::LogicalType;
use std::ffi::{c_void, CString};
#[derive(Debug)]
pub struct TableFunction {
pub(crate) ptr: duckdb_table_function,
}
impl Drop for TableFunction {
fn drop(&mut self) {
unsafe {
duckdb_destroy_table_function(&mut self.ptr);
}
}
}
impl TableFunction {
pub fn supports_pushdown(&self, supports: bool) -> &Self {
unsafe {
duckdb_table_function_supports_projection_pushdown(self.ptr, supports);
}
self
}
pub fn add_parameter(&self, logical_type: &LogicalType) -> &Self {
unsafe {
duckdb_table_function_add_parameter(self.ptr, logical_type.typ);
}
self
}
pub fn set_function(
&self,
func: Option<unsafe extern "C" fn(*mut c_void, *mut c_void)>,
) -> &Self {
unsafe {
duckdb_table_function_set_function(self.ptr, func);
}
self
}
pub fn set_init(&self, init_func: Option<unsafe extern "C" fn(*mut c_void)>) -> &Self {
unsafe {
duckdb_table_function_set_init(self.ptr, init_func);
}
self
}
pub fn set_bind(&self, bind_func: Option<unsafe extern "C" fn(*mut c_void)>) -> &Self {
unsafe {
duckdb_table_function_set_bind(self.ptr, bind_func);
}
self
}
pub fn new() -> Self {
Self {
ptr: unsafe { duckdb_create_table_function() },
}
}
pub fn set_name(&self, name: &str) -> &TableFunction {
unsafe {
let string = CString::from_vec_unchecked(name.as_bytes().into());
duckdb_table_function_set_name(self.ptr, string.as_ptr());
}
self
}
pub unsafe fn set_extra_info(
&self,
extra_info: *mut c_void,
destroy: duckdb_delete_callback_t,
) {
unsafe { duckdb_table_function_set_extra_info(self.ptr, extra_info, destroy) };
}
pub fn set_local_init(&self, init: duckdb_table_function_init_t) {
unsafe { duckdb_table_function_set_local_init(self.ptr, init) };
}
}
impl Default for TableFunction {
fn default() -> Self {
Self::new()
}
}