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
/*
* A safe Rust API to libesedb
*
* Copyright (C) 2022-2023, Oliver Lenehan ~sunsetkookaburra
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
use libesedb_sys::*;
use std::io;
use std::marker::PhantomData;
use std::ptr::null_mut;
use crate::column::Column;
use crate::error::assert_or_error;
// use crate::iter::{IterEntries, LoadEntry};
use crate::record::Record;
/// Instance of a ESE database table in a currently open [`crate::EseDb`].
pub struct Table<'a> {
ptr: *mut libesedb_table_t,
_marker: PhantomData<&'a ()>,
}
impl Table<'_> {
pub(crate) fn from_name(handle: *mut libesedb_file_t, name: &str) -> io::Result<Self> {
let mut ptr = null_mut();
assert_or_error(|err| unsafe {
libesedb_file_get_table_by_utf8_name(
handle,
name.as_ptr(),
name.len() as _,
&mut ptr,
err,
) == 1
})?;
Ok(Self {
ptr,
_marker: PhantomData,
})
}
/// Gets the name of the table.
pub fn name(&self) -> io::Result<String> {
let mut size = 0;
assert_or_error(|err| unsafe {
libesedb_table_get_utf8_name_size(self.ptr, &mut size, err) == 1
})?;
let mut name = Vec::with_capacity(size as _);
assert_or_error(|err| unsafe {
libesedb_table_get_utf8_name(self.ptr, name.as_mut_ptr(), size, err) == 1
})?;
name.pop();
String::from_utf8(name).map_err(|e| io::Error::new(io::ErrorKind::Other, e))
}
/// Total number of columns in table.
pub fn count_columns(&self) -> io::Result<i32> {
let mut n = 0;
assert_or_error(|err| unsafe {
libesedb_table_get_number_of_columns(self.ptr, &mut n, 0, err) == 1
})?;
Ok(n)
}
/// Total number of records (rows) in table.
pub fn count_records(&self) -> io::Result<i32> {
let mut n = 0;
assert_or_error(|err| unsafe {
libesedb_table_get_number_of_records(self.ptr, &mut n, err) == 1
})?;
Ok(n)
}
/// Load a specific column by entry number.
/// Returned [`Column`] is bound to the lifetime of the database table.
pub fn column(&self, entry: i32) -> io::Result<Column> {
Column::load(self.ptr, entry)
}
/// Load a specific record (row) by entry number.
/// Returned [`Record`] is bound to the lifetime of the database table.
pub fn record(&self, entry: i32) -> io::Result<Record> {
Record::load(self.ptr, entry)
}
/// Create an iterator over all the columns in the table.
/// The [`IterEntries`] iterator and the returned [`Column`]s
/// are bound to the lifetime of the database table.
///
/// ```no_run
/// # use libesedb::EseDb;
/// # use std::io;
/// # fn main() -> io::Result<()> {
/// # let db = EseDb::open("Catalog1.edb")?;
/// # let table = db.table(0)?;
/// #
/// for column in table.iter_columns()? {
/// println!("{}", column?.name()?);
/// }
/// #
/// # Ok(())
/// # }
/// ```
pub fn iter_columns(&self) -> io::Result<impl Iterator<Item = io::Result<Column>>> {
Ok((0..self.count_columns()?).map(|i| Column::load(self.ptr, i)))
}
/// Create an iterator over all the records (rows) in the table.
/// The [`IterEntries`] iterator and the returned [`Record`]s
/// are bound to the lifetime of the database table.
///
/// ```no_run
/// # use libesedb::EseDb;
/// # use std::io;
/// # fn main() -> io::Result<()> {
/// # let db = EseDb::open("Catalog1.edb")?;
/// # let table = db.table(0)?;
/// #
/// for record in table.iter_records()? {
/// let record = record?;
/// for value in record.iter_values()? {
/// println!("{:?}", value?);
/// }
/// }
/// #
/// # Ok(())
/// # }
/// ```
pub fn iter_records(&self) -> io::Result<impl Iterator<Item = io::Result<Record>>> {
Ok((0..self.count_records()?).map(|i| Record::load(self.ptr, i)))
}
/// When done reading, call this to free resources the table is using in memory.
pub fn close(self) {}
pub(crate) fn load<'a>(db_handle: *mut libesedb_file_t, entry: i32) -> io::Result<Table<'a>> {
let mut ptr = null_mut();
assert_or_error(|err| unsafe {
libesedb_file_get_table(db_handle, entry, &mut ptr, err) == 1
})?;
Ok(Table::<'a> {
ptr,
_marker: PhantomData,
})
}
}
impl Drop for Table<'_> {
fn drop(&mut self) {
unsafe {
libesedb_table_free(&mut self.ptr, null_mut());
}
}
}