odbc_api/buffers/
text_column.rs

1use crate::{
2    DataType, Error,
3    buffers::Resize,
4    columnar_bulk_inserter::BoundInputSlice,
5    error::TooLargeBufferSize,
6    handles::{
7        ASSUMED_MAX_LENGTH_OF_VARCHAR, ASSUMED_MAX_LENGTH_OF_W_VARCHAR, CData, CDataMut,
8        HasDataType, Statement, StatementRef,
9    },
10};
11
12use super::{ColumnBuffer, Indicator};
13
14use log::debug;
15use odbc_sys::{CDataType, NULL_DATA};
16use std::{cmp::min, ffi::c_void, mem::size_of, num::NonZeroUsize, panic};
17use widestring::U16Str;
18
19/// A column buffer for character data. The actual encoding used may depend on your system locale.
20pub type CharColumn = TextColumn<u8>;
21
22/// This buffer uses wide characters which implies UTF-16 encoding. UTF-8 encoding is preferable for
23/// most applications, but contrary to its sibling [`crate::buffers::CharColumn`] this buffer type's
24/// implied encoding does not depend on the system locale.
25pub type WCharColumn = TextColumn<u16>;
26
27/// A buffer intended to be bound to a column of a cursor. Elements of the buffer will contain a
28/// variable amount of characters up to a maximum string length. Since most SQL types have a string
29/// representation this buffer can be bound to a column of almost any type, ODBC driver and driver
30/// manager should take care of the conversion. Since elements of this type have variable length, an
31/// indicator buffer needs to be bound, whether the column is nullable or not.
32///
33/// Character type `C` is intended to be either `u8` or `u16`.
34#[derive(Debug)]
35pub struct TextColumn<C> {
36    /// Maximum text length without terminating zero.
37    max_str_len: usize,
38    /// All the characters of all the elements in the buffer. The first character of the n-th
39    /// element is at index `n * (max_str_len + 1)`.
40    values: Vec<C>,
41    /// Elements in this buffer are either `NULL_DATA` or hold the length of the element in value
42    /// with the same index. Please note that this value may be larger than `max_str_len` if the
43    /// text has been truncated.
44    indicators: Vec<isize>,
45}
46
47impl<C> TextColumn<C> {
48    /// This will allocate a value and indicator buffer for `batch_size` elements. Each value may
49    /// have a maximum length of `max_str_len`. This implies that `max_str_len` is increased by
50    /// one in order to make space for the null terminating zero at the end of strings. Uses a
51    /// fallible allocation for creating the buffer. In applications often the `max_str_len` size
52    /// of the buffer, might be directly inspired by the maximum size of the type, as reported, by
53    /// ODBC. Which might get exceedingly large for types like VARCHAR(MAX)
54    pub fn try_new(batch_size: usize, max_str_len: usize) -> Result<Self, TooLargeBufferSize>
55    where
56        C: Default + Copy,
57    {
58        // Element size is +1 to account for terminating zero
59        let element_size = max_str_len + 1;
60        let len = element_size * batch_size;
61        let mut values = Vec::new();
62        values
63            .try_reserve_exact(len)
64            .map_err(|_| TooLargeBufferSize {
65                num_elements: batch_size,
66                // We want the element size in bytes
67                element_size: element_size * size_of::<C>(),
68            })?;
69        values.resize(len, C::default());
70        Ok(TextColumn {
71            max_str_len,
72            values,
73            indicators: vec![0; batch_size],
74        })
75    }
76
77    /// This will allocate a value and indicator buffer for `batch_size` elements. Each value may
78    /// have a maximum length of `max_str_len`. This implies that `max_str_len` is increased by
79    /// one in order to make space for the null terminating zero at the end of strings. All
80    /// indicators are set to [`crate::sys::NULL_DATA`] by default.
81    pub fn new(batch_size: usize, max_str_len: usize) -> Self
82    where
83        C: Default + Copy,
84    {
85        // Element size is +1 to account for terminating zero
86        let element_size = max_str_len + 1;
87        let len = element_size * batch_size;
88        let mut values = Vec::new();
89        values.reserve_exact(len);
90        values.resize(len, C::default());
91        TextColumn {
92            max_str_len,
93            values,
94            indicators: vec![NULL_DATA; batch_size],
95        }
96    }
97
98    /// Bytes of string at the specified position. Includes interior nuls, but excludes the
99    /// terminating nul.
100    ///
101    /// The column buffer does not know how many elements were in the last row group, and therefore
102    /// can not guarantee the accessed element to be valid and in a defined state. It also can not
103    /// panic on accessing an undefined element. It will panic however if `row_index` is larger or
104    /// equal to the maximum number of elements in the buffer.
105    pub fn value_at(&self, row_index: usize) -> Option<&[C]> {
106        self.content_length_at(row_index).map(|length| {
107            let offset = row_index * (self.max_str_len + 1);
108            &self.values[offset..offset + length]
109        })
110    }
111
112    /// Maximum length of elements
113    pub fn max_len(&self) -> usize {
114        self.max_str_len
115    }
116
117    /// Indicator value at the specified position. Useful to detect truncation of data.
118    ///
119    /// The column buffer does not know how many elements were in the last row group, and therefore
120    /// can not guarantee the accessed element to be valid and in a defined state. It also can not
121    /// panic on accessing an undefined element. It will panic however if `row_index` is larger or
122    /// equal to the maximum number of elements in the buffer.
123    pub fn indicator_at(&self, row_index: usize) -> Indicator {
124        Indicator::from_isize(self.indicators[row_index])
125    }
126
127    /// Length of value at the specified position. This is different from an indicator as it refers
128    /// to the length of the value in the buffer, not to the length of the value in the datasource.
129    /// The two things are different for truncated values.
130    pub fn content_length_at(&self, row_index: usize) -> Option<usize> {
131        match self.indicator_at(row_index) {
132            Indicator::Null => None,
133            // Seen no total in the wild then binding shorter buffer to fixed sized CHAR in MSSQL.
134            Indicator::NoTotal => Some(self.max_str_len),
135            Indicator::Length(length_in_bytes) => {
136                let length_in_chars = length_in_bytes / size_of::<C>();
137                let length = min(self.max_str_len, length_in_chars);
138                Some(length)
139            }
140        }
141    }
142
143    /// Finds an indiactor larger than the maximum element size in the range [0, num_rows).
144    ///
145    /// After fetching data we may want to know if any value has been truncated due to the buffer
146    /// not being able to hold elements of that size. This method checks the indicator buffer
147    /// element wise.
148    pub fn has_truncated_values(&self, num_rows: usize) -> Option<Indicator> {
149        let max_bin_length = self.max_str_len * size_of::<C>();
150        self.indicators
151            .iter()
152            .copied()
153            .take(num_rows)
154            .find_map(|indicator| {
155                let indicator = Indicator::from_isize(indicator);
156                indicator.is_truncated(max_bin_length).then_some(indicator)
157            })
158    }
159
160    /// Changes the maximum string length the buffer can hold. This operation is useful if you find
161    /// an unexpected large input string during insertion.
162    ///
163    /// This is however costly, as not only does the new buffer have to be allocated, but all values
164    /// have to copied from the old to the new buffer.
165    ///
166    /// This method could also be used to reduce the maximum string length, which would truncate
167    /// strings in the process.
168    ///
169    /// This method does not adjust indicator buffers as these might hold values larger than the
170    /// maximum string length.
171    ///
172    /// # Parameters
173    ///
174    /// * `new_max_str_len`: New maximum string length without terminating zero.
175    /// * `num_rows`: Number of valid rows currently stored in this buffer.
176    pub fn resize_max_str(&mut self, new_max_str_len: usize, num_rows: usize)
177    where
178        C: Default + Copy,
179    {
180        debug!(
181            "Rebinding text column buffer with {} elements. Maximum string length {} => {}",
182            num_rows, self.max_str_len, new_max_str_len
183        );
184
185        let batch_size = self.indicators.len();
186        // Allocate a new buffer large enough to hold a batch of strings with maximum length.
187        let mut new_values = vec![C::default(); (new_max_str_len + 1) * batch_size];
188        // Copy values from old to new buffer.
189        let max_copy_length = min(self.max_str_len, new_max_str_len);
190        for ((&indicator, old_value), new_value) in self
191            .indicators
192            .iter()
193            .zip(self.values.chunks_exact_mut(self.max_str_len + 1))
194            .zip(new_values.chunks_exact_mut(new_max_str_len + 1))
195            .take(num_rows)
196        {
197            match Indicator::from_isize(indicator) {
198                Indicator::Null => (),
199                Indicator::NoTotal => {
200                    // There is no good choice here in case we are expanding the buffer. Since
201                    // NO_TOTAL indicates that we use the entire buffer, but in truth it would now
202                    // be padded with 0. I currently cannot think of any use case there it would
203                    // matter.
204                    new_value[..max_copy_length].clone_from_slice(&old_value[..max_copy_length]);
205                }
206                Indicator::Length(num_bytes_len) => {
207                    let num_bytes_to_copy = min(num_bytes_len / size_of::<C>(), max_copy_length);
208                    new_value[..num_bytes_to_copy].copy_from_slice(&old_value[..num_bytes_to_copy]);
209                }
210            }
211        }
212        self.values = new_values;
213        self.max_str_len = new_max_str_len;
214    }
215
216    /// Sets the value of the buffer at index at Null or the specified binary Text. This method will
217    /// panic on out of bounds index, or if input holds a text which is larger than the maximum
218    /// allowed element length. `input` must be specified without the terminating zero.
219    pub fn set_value(&mut self, index: usize, input: Option<&[C]>)
220    where
221        C: Default + Copy,
222    {
223        if let Some(input) = input {
224            self.set_mut(index, input.len()).copy_from_slice(input);
225        } else {
226            self.indicators[index] = NULL_DATA;
227        }
228    }
229
230    /// Can be used to set a value at a specific row index without performing a memcopy on an input
231    /// slice and instead provides direct access to the underlying buffer.
232    ///
233    /// In situations there the memcopy can not be avoided anyway [`Self::set_value`] is likely to
234    /// be more convenient. This method is very useful if you want to `write!` a string value to the
235    /// buffer and the binary (**!**) length of the formatted string is known upfront.
236    ///
237    /// # Example: Write timestamp to text column.
238    ///
239    /// ```
240    /// use odbc_api::buffers::TextColumn;
241    /// use std::io::Write;
242    ///
243    /// /// Writes times formatted as hh::mm::ss.fff
244    /// fn write_time(
245    ///     col: &mut TextColumn<u8>,
246    ///     index: usize,
247    ///     hours: u8,
248    ///     minutes: u8,
249    ///     seconds: u8,
250    ///     milliseconds: u16)
251    /// {
252    ///     write!(
253    ///         col.set_mut(index, 12),
254    ///         "{:02}:{:02}:{:02}.{:03}",
255    ///         hours, minutes, seconds, milliseconds
256    ///     ).unwrap();
257    /// }
258    /// ```
259    pub fn set_mut(&mut self, index: usize, length: usize) -> &mut [C]
260    where
261        C: Default,
262    {
263        if length > self.max_str_len {
264            panic!(
265                "Tried to insert a value into a text buffer which is larger than the maximum \
266                allowed string length for the buffer."
267            );
268        }
269        self.indicators[index] = (length * size_of::<C>()).try_into().unwrap();
270        let start = (self.max_str_len + 1) * index;
271        let end = start + length;
272        // Let's insert a terminating zero at the end to be on the safe side, in case the ODBC
273        // driver would not care about the value in the index buffer and only look for the
274        // terminating zero.
275        self.values[end] = C::default();
276        &mut self.values[start..end]
277    }
278
279    /// Fills the column with NULL, between From and To
280    pub fn fill_null(&mut self, from: usize, to: usize) {
281        for index in from..to {
282            self.indicators[index] = NULL_DATA;
283        }
284    }
285
286    /// Provides access to the raw underlying value buffer. Normal applications should have little
287    /// reason to call this method. Yet it may be useful for writing bindings which copy directly
288    /// from the ODBC in memory representation into other kinds of buffers.
289    ///
290    /// The buffer contains the bytes for every non null valid element, padded to the maximum string
291    /// length. The content of the padding bytes is undefined. Usually ODBC drivers write a
292    /// terminating zero at the end of each string. For the actual value length call
293    /// [`Self::content_length_at`]. Any element starts at index * ([`Self::max_len`] + 1).
294    pub fn raw_value_buffer(&self, num_valid_rows: usize) -> &[C] {
295        &self.values[..(self.max_str_len + 1) * num_valid_rows]
296    }
297
298    /// The maximum number of rows the TextColumn can hold.
299    pub fn row_capacity(&self) -> usize {
300        self.values.len()
301    }
302}
303
304impl WCharColumn {
305    /// The string slice at the specified position as `U16Str`. Includes interior nuls, but excludes
306    /// the terminating nul.
307    ///
308    /// # Safety
309    ///
310    /// The column buffer does not know how many elements were in the last row group, and therefore
311    /// can not guarantee the accessed element to be valid and in a defined state. It also can not
312    /// panic on accessing an undefined element. It will panic however if `row_index` is larger or
313    /// equal to the maximum number of elements in the buffer.
314    pub unsafe fn ustr_at(&self, row_index: usize) -> Option<&U16Str> {
315        self.value_at(row_index).map(U16Str::from_slice)
316    }
317}
318
319unsafe impl<C: 'static> ColumnBuffer for TextColumn<C>
320where
321    TextColumn<C>: CDataMut + HasDataType,
322{
323    type View<'a> = TextColumnView<'a, C>;
324
325    fn view(&self, valid_rows: usize) -> TextColumnView<'_, C> {
326        TextColumnView {
327            num_rows: valid_rows,
328            col: self,
329        }
330    }
331
332    /// Maximum number of text strings this column may hold.
333    fn capacity(&self) -> usize {
334        self.indicators.len()
335    }
336
337    fn has_truncated_values(&self, num_rows: usize) -> Option<Indicator> {
338        let max_bin_length = self.max_str_len * size_of::<C>();
339        self.indicators
340            .iter()
341            .copied()
342            .take(num_rows)
343            .find_map(|indicator| {
344                let indicator = Indicator::from_isize(indicator);
345                indicator.is_truncated(max_bin_length).then_some(indicator)
346            })
347    }
348}
349
350/// Allows read-only access to the valid part of a text column.
351///
352/// You may ask, why is this type required, should we not just be able to use `&TextColumn`? The
353/// problem with `TextColumn` is, that it is a buffer, but it has no idea how many of its members
354/// are actually valid, and have been returned with the last row group of the result set. That
355/// number is maintained on the level of the entire column buffer. So a text column knows the number
356/// of valid rows, in addition to holding a reference to the buffer, in order to guarantee, that
357/// every element accessed through it, is valid.
358#[derive(Debug, Clone, Copy)]
359pub struct TextColumnView<'c, C> {
360    num_rows: usize,
361    col: &'c TextColumn<C>,
362}
363
364impl<'c, C> TextColumnView<'c, C> {
365    /// The number of valid elements in the text column.
366    pub fn len(&self) -> usize {
367        self.num_rows
368    }
369
370    /// True if, and only if there are no valid rows in the column buffer.
371    pub fn is_empty(&self) -> bool {
372        self.num_rows == 0
373    }
374
375    /// Slice of text at the specified row index without terminating zero. `None` if the value is
376    /// `NULL`. This method will panic if the index is larger than the number of valid rows in the
377    /// view as returned by [`Self::len`].
378    pub fn get(&self, index: usize) -> Option<&'c [C]> {
379        self.col.value_at(index)
380    }
381
382    /// Iterator over the valid elements of the text buffer
383    pub fn iter(&self) -> TextColumnIt<'c, C> {
384        TextColumnIt {
385            pos: 0,
386            num_rows: self.num_rows,
387            col: self.col,
388        }
389    }
390
391    /// Length of value at the specified position. This is different from an indicator as it refers
392    /// to the length of the value in the buffer, not to the length of the value in the datasource.
393    /// The two things are different for truncated values.
394    pub fn content_length_at(&self, row_index: usize) -> Option<usize> {
395        if row_index >= self.num_rows {
396            panic!("Row index points beyond the range of valid values.")
397        }
398        self.col.content_length_at(row_index)
399    }
400
401    /// Provides access to the raw underlying value buffer. Normal applications should have little
402    /// reason to call this method. Yet it may be useful for writing bindings which copy directly
403    /// from the ODBC in memory representation into other kinds of buffers.
404    ///
405    /// The buffer contains the bytes for every non null valid element, padded to the maximum string
406    /// length. The content of the padding bytes is undefined. Usually ODBC drivers write a
407    /// terminating zero at the end of each string. For the actual value length call
408    /// [`Self::content_length_at`]. Any element starts at index * ([`Self::max_len`] + 1).
409    pub fn raw_value_buffer(&self) -> &'c [C] {
410        self.col.raw_value_buffer(self.num_rows)
411    }
412
413    pub fn max_len(&self) -> usize {
414        self.col.max_len()
415    }
416
417    /// `Some` if any value is truncated.
418    ///
419    /// After fetching data we may want to know if any value has been truncated due to the buffer
420    /// not being able to hold elements of that size. This method checks the indicator buffer
421    /// element wise.
422    pub fn has_truncated_values(&self) -> Option<Indicator> {
423        self.col.has_truncated_values(self.num_rows)
424    }
425}
426
427unsafe impl<'a, C: 'static> BoundInputSlice<'a> for TextColumn<C> {
428    type SliceMut = TextColumnSliceMut<'a, C>;
429
430    unsafe fn as_view_mut(
431        &'a mut self,
432        parameter_index: u16,
433        stmt: StatementRef<'a>,
434    ) -> Self::SliceMut {
435        TextColumnSliceMut {
436            column: self,
437            stmt,
438            parameter_index,
439        }
440    }
441}
442
443/// A view to a mutable array parameter text buffer, which allows for filling the buffer with
444/// values.
445pub struct TextColumnSliceMut<'a, C> {
446    column: &'a mut TextColumn<C>,
447    // Needed to rebind the column in case of resize
448    stmt: StatementRef<'a>,
449    // Also needed to rebind the column in case of resize
450    parameter_index: u16,
451}
452
453impl<C> TextColumnSliceMut<'_, C>
454where
455    C: Default + Copy + Send,
456{
457    /// Sets the value of the buffer at index at Null or the specified binary Text. This method will
458    /// panic on out of bounds index, or if input holds a text which is larger than the maximum
459    /// allowed element length. `element` must be specified without the terminating zero.
460    pub fn set_cell(&mut self, row_index: usize, element: Option<&[C]>) {
461        self.column.set_value(row_index, element)
462    }
463
464    /// Ensures that the buffer is large enough to hold elements of `element_length`. Does nothing
465    /// if the buffer is already large enough. Otherwise it will reallocate and rebind the buffer.
466    /// The first `num_rows_to_copy` will be copied from the old value buffer to the new
467    /// one. This makes this an extremely expensive operation.
468    pub fn ensure_max_element_length(
469        &mut self,
470        element_length: usize,
471        num_rows_to_copy: usize,
472    ) -> Result<(), Error>
473    where
474        TextColumn<C>: HasDataType + CData,
475    {
476        // Column buffer is not large enough to hold the element. We must allocate a larger buffer
477        // in order to hold it. This invalidates the pointers previously bound to the statement. So
478        // we rebind them.
479        if element_length > self.column.max_len() {
480            let new_max_str_len = element_length;
481            self.column
482                .resize_max_str(new_max_str_len, num_rows_to_copy);
483            unsafe {
484                self.stmt
485                    .bind_input_parameter(self.parameter_index, self.column)
486                    .into_result(&self.stmt)?
487            }
488        }
489        Ok(())
490    }
491
492    /// Can be used to set a value at a specific row index without performing a memcopy on an input
493    /// slice and instead provides direct access to the underlying buffer.
494    ///
495    /// In situations there the memcopy can not be avoided anyway [`Self::set_cell`] is likely to
496    /// be more convenient. This method is very useful if you want to `write!` a string value to the
497    /// buffer and the binary (**!**) length of the formatted string is known upfront.
498    ///
499    /// # Example: Write timestamp to text column.
500    ///
501    /// ```
502    /// use odbc_api::buffers::TextColumnSliceMut;
503    /// use std::io::Write;
504    ///
505    /// /// Writes times formatted as hh::mm::ss.fff
506    /// fn write_time(
507    ///     col: &mut TextColumnSliceMut<u8>,
508    ///     index: usize,
509    ///     hours: u8,
510    ///     minutes: u8,
511    ///     seconds: u8,
512    ///     milliseconds: u16)
513    /// {
514    ///     write!(
515    ///         col.set_mut(index, 12),
516    ///         "{:02}:{:02}:{:02}.{:03}",
517    ///         hours, minutes, seconds, milliseconds
518    ///     ).unwrap();
519    /// }
520    /// ```
521    pub fn set_mut(&mut self, index: usize, length: usize) -> &mut [C] {
522        self.column.set_mut(index, length)
523    }
524}
525
526/// Iterator over a text column. See [`TextColumnView::iter`]
527#[derive(Debug)]
528pub struct TextColumnIt<'c, C> {
529    pos: usize,
530    num_rows: usize,
531    col: &'c TextColumn<C>,
532}
533
534impl<'c, C> TextColumnIt<'c, C> {
535    fn next_impl(&mut self) -> Option<Option<&'c [C]>> {
536        if self.pos == self.num_rows {
537            None
538        } else {
539            let ret = Some(self.col.value_at(self.pos));
540            self.pos += 1;
541            ret
542        }
543    }
544}
545
546impl<'c> Iterator for TextColumnIt<'c, u8> {
547    type Item = Option<&'c [u8]>;
548
549    fn next(&mut self) -> Option<Self::Item> {
550        self.next_impl()
551    }
552
553    fn size_hint(&self) -> (usize, Option<usize>) {
554        let len = self.num_rows - self.pos;
555        (len, Some(len))
556    }
557}
558
559impl ExactSizeIterator for TextColumnIt<'_, u8> {}
560
561impl<'c> Iterator for TextColumnIt<'c, u16> {
562    type Item = Option<&'c U16Str>;
563
564    fn next(&mut self) -> Option<Self::Item> {
565        self.next_impl().map(|opt| opt.map(U16Str::from_slice))
566    }
567
568    fn size_hint(&self) -> (usize, Option<usize>) {
569        let len = self.num_rows - self.pos;
570        (len, Some(len))
571    }
572}
573
574impl ExactSizeIterator for TextColumnIt<'_, u16> {}
575
576unsafe impl CData for CharColumn {
577    fn cdata_type(&self) -> CDataType {
578        CDataType::Char
579    }
580
581    fn indicator_ptr(&self) -> *const isize {
582        self.indicators.as_ptr()
583    }
584
585    fn value_ptr(&self) -> *const c_void {
586        self.values.as_ptr() as *const c_void
587    }
588
589    fn buffer_length(&self) -> isize {
590        (self.max_str_len + 1).try_into().unwrap()
591    }
592}
593
594unsafe impl CDataMut for CharColumn {
595    fn mut_indicator_ptr(&mut self) -> *mut isize {
596        self.indicators.as_mut_ptr()
597    }
598
599    fn mut_value_ptr(&mut self) -> *mut c_void {
600        self.values.as_mut_ptr() as *mut c_void
601    }
602}
603
604impl HasDataType for CharColumn {
605    fn data_type(&self) -> DataType {
606        if self.max_str_len <= ASSUMED_MAX_LENGTH_OF_VARCHAR {
607            DataType::Varchar {
608                length: NonZeroUsize::new(self.max_str_len),
609            }
610        } else {
611            DataType::LongVarchar {
612                length: NonZeroUsize::new(self.max_str_len),
613            }
614        }
615    }
616}
617
618unsafe impl CData for WCharColumn {
619    fn cdata_type(&self) -> CDataType {
620        CDataType::WChar
621    }
622
623    fn indicator_ptr(&self) -> *const isize {
624        self.indicators.as_ptr()
625    }
626
627    fn value_ptr(&self) -> *const c_void {
628        self.values.as_ptr() as *const c_void
629    }
630
631    fn buffer_length(&self) -> isize {
632        ((self.max_str_len + 1) * 2).try_into().unwrap()
633    }
634}
635
636unsafe impl CDataMut for WCharColumn {
637    fn mut_indicator_ptr(&mut self) -> *mut isize {
638        self.indicators.as_mut_ptr()
639    }
640
641    fn mut_value_ptr(&mut self) -> *mut c_void {
642        self.values.as_mut_ptr() as *mut c_void
643    }
644}
645
646impl HasDataType for WCharColumn {
647    fn data_type(&self) -> DataType {
648        if self.max_str_len <= ASSUMED_MAX_LENGTH_OF_W_VARCHAR {
649            DataType::WVarchar {
650                length: NonZeroUsize::new(self.max_str_len),
651            }
652        } else {
653            DataType::WLongVarchar {
654                length: NonZeroUsize::new(self.max_str_len),
655            }
656        }
657    }
658}
659
660impl<C> Resize for TextColumn<C>
661where
662    C: Clone + Default,
663{
664    fn resize(&mut self, new_capacity: usize) {
665        self.values
666            .resize((self.max_str_len + 1) * new_capacity, C::default());
667        self.indicators.resize(new_capacity, NULL_DATA);
668    }
669}
670
671#[cfg(test)]
672mod test {
673    use crate::buffers::{Resize, TextColumn};
674
675    #[test]
676    fn resize_text_column_buffer() {
677        // Given a text column buffer with two elements
678        let mut col = TextColumn::<u8>::new(2, 10);
679        col.set_value(0, Some(b"Hello"));
680        col.set_value(1, Some(b"World"));
681
682        // When we resize it to hold 3 elements
683        col.resize(3);
684
685        // Then the first two elements are still there, and the third is None
686        assert_eq!(col.value_at(0), Some(b"Hello".as_ref()));
687        assert_eq!(col.value_at(1), Some(b"World".as_ref()));
688        assert_eq!(col.value_at(2), None);
689    }
690}