quack-rs 0.12.0

Production-grade Rust SDK for building DuckDB loadable extensions
Documentation
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
// SPDX-License-Identifier: MIT
// Copyright 2026 Tom F. <https://github.com/tomtom215/>
// My way of giving something small back to the open source community
// and encouraging more Rust development!

//! Callback info wrappers for copy function callbacks.
//!
//! Each copy function phase (bind, global init, sink, finalize) receives an
//! opaque info handle from `DuckDB`. These wrappers provide safe, ergonomic
//! access to the underlying C API functions.

use std::ffi::{CStr, CString};
use std::os::raw::c_void;

use libduckdb_sys::{
    duckdb_copy_function_bind_get_client_context, duckdb_copy_function_bind_get_column_count,
    duckdb_copy_function_bind_get_column_type, duckdb_copy_function_bind_get_extra_info,
    duckdb_copy_function_bind_info, duckdb_copy_function_bind_set_bind_data,
    duckdb_copy_function_bind_set_error, duckdb_copy_function_finalize_get_bind_data,
    duckdb_copy_function_finalize_get_client_context, duckdb_copy_function_finalize_get_extra_info,
    duckdb_copy_function_finalize_get_global_state, duckdb_copy_function_finalize_info,
    duckdb_copy_function_finalize_set_error, duckdb_copy_function_global_init_get_bind_data,
    duckdb_copy_function_global_init_get_client_context,
    duckdb_copy_function_global_init_get_extra_info,
    duckdb_copy_function_global_init_get_file_path, duckdb_copy_function_global_init_info,
    duckdb_copy_function_global_init_set_error, duckdb_copy_function_global_init_set_global_state,
    duckdb_copy_function_sink_get_bind_data, duckdb_copy_function_sink_get_client_context,
    duckdb_copy_function_sink_get_extra_info, duckdb_copy_function_sink_get_global_state,
    duckdb_copy_function_sink_info, duckdb_copy_function_sink_set_error, duckdb_delete_callback_t,
};

use crate::types::LogicalType;

/// Converts a `&str` to `CString` without panicking.
#[mutants::skip] // private FFI helper — tested in replacement_scan::tests
fn str_to_cstring(s: &str) -> CString {
    CString::new(s).unwrap_or_else(|_| {
        let pos = s.bytes().position(|b| b == 0).unwrap_or(s.len());
        CString::new(&s.as_bytes()[..pos]).unwrap_or_default()
    })
}

// ── CopyBindInfo ─────────────────────────────────────────────────────────────

/// Wrapper around the `duckdb_copy_function_bind_info` handle provided to a
/// copy function bind callback.
pub struct CopyBindInfo {
    info: duckdb_copy_function_bind_info,
}

impl CopyBindInfo {
    /// Wraps a raw `duckdb_copy_function_bind_info` handle.
    ///
    /// # Safety
    ///
    /// `info` must be a valid handle passed by `DuckDB` to a copy function bind
    /// callback.
    #[inline]
    #[must_use]
    pub const unsafe fn new(info: duckdb_copy_function_bind_info) -> Self {
        Self { info }
    }

    /// Returns the number of columns in the output.
    #[mutants::skip]
    #[must_use]
    pub fn column_count(&self) -> u64 {
        // SAFETY: self.info is valid per constructor contract.
        unsafe { duckdb_copy_function_bind_get_column_count(self.info) }
    }

    /// Returns the logical type of the column at `index`.
    ///
    /// # Safety
    ///
    /// `index` must be less than [`column_count`][Self::column_count].
    #[must_use]
    pub unsafe fn column_type(&self, index: u64) -> LogicalType {
        // SAFETY: self.info is valid; caller guarantees index is in range.
        let raw = unsafe { duckdb_copy_function_bind_get_column_type(self.info, index) };
        // SAFETY: DuckDB returns a valid logical type handle.
        unsafe { LogicalType::from_raw(raw) }
    }

    /// Retrieves the extra-info pointer previously set on the copy function.
    ///
    /// # Safety
    ///
    /// The returned pointer is only valid as long as the copy function is
    /// registered and `DuckDB` has not yet called the destructor.
    #[must_use]
    pub unsafe fn get_extra_info(&self) -> *mut c_void {
        // SAFETY: self.info is valid per constructor contract.
        unsafe { duckdb_copy_function_bind_get_extra_info(self.info) }
    }

    /// Sets the bind data pointer and its destructor.
    ///
    /// # Safety
    ///
    /// `data` must remain valid until `DuckDB` calls `destroy`, or for the
    /// lifetime of the query if `destroy` is `None`.
    pub unsafe fn set_bind_data(&self, data: *mut c_void, destroy: duckdb_delete_callback_t) {
        // SAFETY: self.info is valid; data validity is the caller's responsibility.
        unsafe {
            duckdb_copy_function_bind_set_bind_data(self.info, data, destroy);
        }
    }

    /// Reports a fatal error, causing `DuckDB` to abort the current query.
    ///
    /// If `message` contains an interior null byte it is truncated at that point.
    #[mutants::skip]
    pub fn set_error(&self, message: &str) {
        let c_msg = str_to_cstring(message);
        // SAFETY: self.info is valid per constructor contract.
        unsafe {
            duckdb_copy_function_bind_set_error(self.info, c_msg.as_ptr());
        }
    }

    /// Returns the client context for this callback.
    ///
    /// The returned [`ClientContext`][crate::client_context::ClientContext] provides
    /// access to the connection's catalog, configuration, and connection ID.
    ///
    /// # Safety
    ///
    /// The inner handle must be valid (requires `DuckDB` runtime).
    pub unsafe fn get_client_context(&self) -> crate::client_context::ClientContext {
        let ctx = unsafe { duckdb_copy_function_bind_get_client_context(self.info) };
        unsafe { crate::client_context::ClientContext::from_raw(ctx) }
    }

    /// Returns the underlying raw handle.
    #[mutants::skip]
    #[inline]
    #[must_use]
    pub const fn as_raw(&self) -> duckdb_copy_function_bind_info {
        self.info
    }
}

// ── CopyGlobalInitInfo ───────────────────────────────────────────────────────

/// Wrapper around the `duckdb_copy_function_global_init_info` handle provided
/// to a copy function global init callback.
pub struct CopyGlobalInitInfo {
    info: duckdb_copy_function_global_init_info,
}

impl CopyGlobalInitInfo {
    /// Wraps a raw `duckdb_copy_function_global_init_info` handle.
    ///
    /// # Safety
    ///
    /// `info` must be a valid handle passed by `DuckDB` to a copy function
    /// global init callback.
    #[inline]
    #[must_use]
    pub const unsafe fn new(info: duckdb_copy_function_global_init_info) -> Self {
        Self { info }
    }

    /// Retrieves the bind data pointer set during the bind phase.
    ///
    /// # Safety
    ///
    /// The returned pointer must be cast back to the original type.
    #[must_use]
    pub unsafe fn get_bind_data(&self) -> *mut c_void {
        // SAFETY: self.info is valid per constructor contract.
        unsafe { duckdb_copy_function_global_init_get_bind_data(self.info) }
    }

    /// Retrieves the extra-info pointer previously set on the copy function.
    ///
    /// # Safety
    ///
    /// The returned pointer is only valid as long as the copy function is
    /// registered and `DuckDB` has not yet called the destructor.
    #[must_use]
    pub unsafe fn get_extra_info(&self) -> *mut c_void {
        // SAFETY: self.info is valid per constructor contract.
        unsafe { duckdb_copy_function_global_init_get_extra_info(self.info) }
    }

    /// Returns the file path for the copy operation.
    ///
    /// # Safety
    ///
    /// `self.info` must be a valid handle from an active callback invocation.
    #[must_use]
    pub unsafe fn get_file_path(&self) -> String {
        // SAFETY: self.info is valid per constructor contract.
        let c_str = unsafe { duckdb_copy_function_global_init_get_file_path(self.info) };
        let result = if c_str.is_null() {
            String::new()
        } else {
            // SAFETY: c_str is a valid null-terminated string from DuckDB.
            unsafe { CStr::from_ptr(c_str) }
                .to_str()
                .unwrap_or("")
                .to_owned()
        };
        // SAFETY: c_str was allocated by DuckDB and must be freed.
        if !c_str.is_null() {
            unsafe {
                libduckdb_sys::duckdb_free(c_str as *mut c_void);
            }
        }
        result
    }

    /// Sets the global state pointer and its destructor.
    ///
    /// # Safety
    ///
    /// `state` must remain valid until `DuckDB` calls `destroy`, or for the
    /// lifetime of the query if `destroy` is `None`.
    pub unsafe fn set_global_state(&self, state: *mut c_void, destroy: duckdb_delete_callback_t) {
        // SAFETY: self.info is valid; state validity is the caller's responsibility.
        unsafe {
            duckdb_copy_function_global_init_set_global_state(self.info, state, destroy);
        }
    }

    /// Reports a fatal error, causing `DuckDB` to abort the current query.
    ///
    /// If `message` contains an interior null byte it is truncated at that point.
    #[mutants::skip]
    pub fn set_error(&self, message: &str) {
        let c_msg = str_to_cstring(message);
        // SAFETY: self.info is valid per constructor contract.
        unsafe {
            duckdb_copy_function_global_init_set_error(self.info, c_msg.as_ptr());
        }
    }

    /// Returns the client context for this callback.
    ///
    /// # Safety
    ///
    /// The inner handle must be valid (requires `DuckDB` runtime).
    pub unsafe fn get_client_context(&self) -> crate::client_context::ClientContext {
        let ctx = unsafe { duckdb_copy_function_global_init_get_client_context(self.info) };
        unsafe { crate::client_context::ClientContext::from_raw(ctx) }
    }

    /// Returns the underlying raw handle.
    #[mutants::skip]
    #[inline]
    #[must_use]
    pub const fn as_raw(&self) -> duckdb_copy_function_global_init_info {
        self.info
    }
}

// ── CopySinkInfo ─────────────────────────────────────────────────────────────

/// Wrapper around the `duckdb_copy_function_sink_info` handle provided to a
/// copy function sink callback.
pub struct CopySinkInfo {
    info: duckdb_copy_function_sink_info,
}

impl CopySinkInfo {
    /// Wraps a raw `duckdb_copy_function_sink_info` handle.
    ///
    /// # Safety
    ///
    /// `info` must be a valid handle passed by `DuckDB` to a copy function
    /// sink callback.
    #[inline]
    #[must_use]
    pub const unsafe fn new(info: duckdb_copy_function_sink_info) -> Self {
        Self { info }
    }

    /// Retrieves the bind data pointer set during the bind phase.
    ///
    /// # Safety
    ///
    /// The returned pointer must be cast back to the original type.
    #[must_use]
    pub unsafe fn get_bind_data(&self) -> *mut c_void {
        // SAFETY: self.info is valid per constructor contract.
        unsafe { duckdb_copy_function_sink_get_bind_data(self.info) }
    }

    /// Retrieves the extra-info pointer previously set on the copy function.
    ///
    /// # Safety
    ///
    /// The returned pointer is only valid as long as the copy function is
    /// registered and `DuckDB` has not yet called the destructor.
    #[must_use]
    pub unsafe fn get_extra_info(&self) -> *mut c_void {
        // SAFETY: self.info is valid per constructor contract.
        unsafe { duckdb_copy_function_sink_get_extra_info(self.info) }
    }

    /// Retrieves the global state pointer set during the global init phase.
    ///
    /// # Safety
    ///
    /// The returned pointer must be cast back to the original type.
    #[must_use]
    pub unsafe fn get_global_state(&self) -> *mut c_void {
        // SAFETY: self.info is valid per constructor contract.
        unsafe { duckdb_copy_function_sink_get_global_state(self.info) }
    }

    /// Reports a fatal error, causing `DuckDB` to abort the current query.
    ///
    /// If `message` contains an interior null byte it is truncated at that point.
    #[mutants::skip]
    pub fn set_error(&self, message: &str) {
        let c_msg = str_to_cstring(message);
        // SAFETY: self.info is valid per constructor contract.
        unsafe {
            duckdb_copy_function_sink_set_error(self.info, c_msg.as_ptr());
        }
    }

    /// Returns the client context for this callback.
    ///
    /// # Safety
    ///
    /// The inner handle must be valid (requires `DuckDB` runtime).
    pub unsafe fn get_client_context(&self) -> crate::client_context::ClientContext {
        let ctx = unsafe { duckdb_copy_function_sink_get_client_context(self.info) };
        unsafe { crate::client_context::ClientContext::from_raw(ctx) }
    }

    /// Returns the underlying raw handle.
    #[mutants::skip]
    #[inline]
    #[must_use]
    pub const fn as_raw(&self) -> duckdb_copy_function_sink_info {
        self.info
    }
}

// ── CopyFinalizeInfo ─────────────────────────────────────────────────────────

/// Wrapper around the `duckdb_copy_function_finalize_info` handle provided to
/// a copy function finalize callback.
pub struct CopyFinalizeInfo {
    info: duckdb_copy_function_finalize_info,
}

impl CopyFinalizeInfo {
    /// Wraps a raw `duckdb_copy_function_finalize_info` handle.
    ///
    /// # Safety
    ///
    /// `info` must be a valid handle passed by `DuckDB` to a copy function
    /// finalize callback.
    #[inline]
    #[must_use]
    pub const unsafe fn new(info: duckdb_copy_function_finalize_info) -> Self {
        Self { info }
    }

    /// Retrieves the bind data pointer set during the bind phase.
    ///
    /// # Safety
    ///
    /// The returned pointer must be cast back to the original type.
    #[must_use]
    pub unsafe fn get_bind_data(&self) -> *mut c_void {
        // SAFETY: self.info is valid per constructor contract.
        unsafe { duckdb_copy_function_finalize_get_bind_data(self.info) }
    }

    /// Retrieves the extra-info pointer previously set on the copy function.
    ///
    /// # Safety
    ///
    /// The returned pointer is only valid as long as the copy function is
    /// registered and `DuckDB` has not yet called the destructor.
    #[must_use]
    pub unsafe fn get_extra_info(&self) -> *mut c_void {
        // SAFETY: self.info is valid per constructor contract.
        unsafe { duckdb_copy_function_finalize_get_extra_info(self.info) }
    }

    /// Retrieves the global state pointer set during the global init phase.
    ///
    /// # Safety
    ///
    /// The returned pointer must be cast back to the original type.
    #[must_use]
    pub unsafe fn get_global_state(&self) -> *mut c_void {
        // SAFETY: self.info is valid per constructor contract.
        unsafe { duckdb_copy_function_finalize_get_global_state(self.info) }
    }

    /// Reports a fatal error, causing `DuckDB` to abort the current query.
    ///
    /// If `message` contains an interior null byte it is truncated at that point.
    #[mutants::skip]
    pub fn set_error(&self, message: &str) {
        let c_msg = str_to_cstring(message);
        // SAFETY: self.info is valid per constructor contract.
        unsafe {
            duckdb_copy_function_finalize_set_error(self.info, c_msg.as_ptr());
        }
    }

    /// Returns the client context for this callback.
    ///
    /// # Safety
    ///
    /// The inner handle must be valid (requires `DuckDB` runtime).
    pub unsafe fn get_client_context(&self) -> crate::client_context::ClientContext {
        let ctx = unsafe { duckdb_copy_function_finalize_get_client_context(self.info) };
        unsafe { crate::client_context::ClientContext::from_raw(ctx) }
    }

    /// Returns the underlying raw handle.
    #[mutants::skip]
    #[inline]
    #[must_use]
    pub const fn as_raw(&self) -> duckdb_copy_function_finalize_info {
        self.info
    }
}

// ── Tests ────────────────────────────────────────────────────────────────────

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn copy_bind_info_wraps_null() {
        let _info = unsafe { CopyBindInfo::new(std::ptr::null_mut()) };
    }

    #[test]
    fn copy_global_init_info_wraps_null() {
        let _info = unsafe { CopyGlobalInitInfo::new(std::ptr::null_mut()) };
    }

    #[test]
    fn copy_sink_info_wraps_null() {
        let _info = unsafe { CopySinkInfo::new(std::ptr::null_mut()) };
    }

    #[test]
    fn copy_finalize_info_wraps_null() {
        let _info = unsafe { CopyFinalizeInfo::new(std::ptr::null_mut()) };
    }
}