PdfFileLoader

Struct PdfFileLoader 

Source
pub struct PdfFileLoader<'a, T> { /* private fields */ }
Available on crate feature pdf only.
Expand description

PdfFileLoader is a utility for loading pdf files from the filesystem using glob patterns or directory paths. It provides methods to read file contents and handle errors gracefully.

§Errors

This module defines a custom error type PdfLoaderError which can represent various errors that might occur during file loading operations, such as any FileLoaderError alongside specific PDF-related errors.

§Example Usage

use rig:loaders::PdfileLoader;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Create a FileLoader using a glob pattern
    let loader = PdfFileLoader::with_glob("tests/data/*.pdf")?;

    // Load pdf file contents by page, ignoring any errors
    let contents: Vec<String> = loader
        .load_with_path()
        .ignore_errors()
        .by_page()

    for content in contents {
        println!("{}", content);
    }

    Ok(())
}

PdfFileLoader uses strict typing between the iterator methods to ensure that transitions between different implementations of the loaders and it’s methods are handled properly by the compiler.

Implementations§

Source§

impl<'a> PdfFileLoader<'a, Result<PathBuf, PdfLoaderError>>

Source

pub fn load(self) -> PdfFileLoader<'a, Result<Document, PdfLoaderError>>

Loads the contents of the pdfs within the iterator returned by PdfFileLoader::with_glob or PdfFileLoader::with_dir. Loaded PDF documents are raw PDF instances that can be further processed (by page, etc).

§Example

Load pdfs in directory “tests/data/*.pdf” and return the loaded documents

let content = PdfFileLoader::with_glob("tests/data/*.pdf")?.load().into_iter();
for result in content {
    match result {
        Ok((path, doc)) => println!("{:?} {}", path, doc),
        Err(e) => eprintln!("Error reading pdf: {}", e),
    }
}
Source

pub fn load_with_path( self, ) -> PdfFileLoader<'a, Result<(PathBuf, Document), PdfLoaderError>>

Loads the contents of the pdfs within the iterator returned by PdfFileLoader::with_glob or PdfFileLoader::with_dir. Loaded PDF documents are raw PDF instances with their path that can be further processed.

§Example

Load pdfs in directory “tests/data/*.pdf” and return the loaded documents

let content = PdfFileLoader::with_glob("tests/data/*.pdf")?.load_with_path().into_iter();
for result in content {
    match result {
        Ok((path, doc)) => println!("{:?} {}", path, doc),
        Err(e) => eprintln!("Error reading pdf: {}", e),
    }
}
Source§

impl<'a> PdfFileLoader<'a, Result<PathBuf, PdfLoaderError>>

Source

pub fn read(self) -> PdfFileLoader<'a, Result<String, PdfLoaderError>>

Directly reads the contents of the pdfs within the iterator returned by PdfFileLoader::with_glob or PdfFileLoader::with_dir.

§Example

Read pdfs in directory “tests/data/*.pdf” and return the contents of the documents.

let content = PdfFileLoader::with_glob("tests/data/*.pdf")?.read_with_path().into_iter();
for result in content {
    match result {
        Ok((path, content)) => println!("{}", content),
        Err(e) => eprintln!("Error reading pdf: {}", e),
    }
}
Source

pub fn read_with_path( self, ) -> PdfFileLoader<'a, Result<(PathBuf, String), PdfLoaderError>>

Directly reads the contents of the pdfs within the iterator returned by PdfFileLoader::with_glob or PdfFileLoader::with_dir and returns the path along with the content.

§Example

Read pdfs in directory “tests/data/*.pdf” and return the content and paths of the documents.

let content = PdfFileLoader::with_glob("tests/data/*.pdf")?.read_with_path().into_iter();
for result in content {
    match result {
        Ok((path, content)) => println!("{:?} {}", path, content),
        Err(e) => eprintln!("Error reading pdf: {}", e),
    }
}
Source§

impl<'a> PdfFileLoader<'a, Document>

Source

pub fn by_page(self) -> PdfFileLoader<'a, Result<String, PdfLoaderError>>

Chunks the pages of a loaded document by page, flattened as a single vector.

§Example

Load pdfs in directory “tests/data/*.pdf” and chunk all document into it’s pages.

let content = PdfFileLoader::with_glob("tests/data/*.pdf")?.load().by_page().into_iter();
for result in content {
    match result {
        Ok(page) => println!("{}", page),
        Err(e) => eprintln!("Error reading pdf: {}", e),
    }
}
Source§

impl<'a> PdfFileLoader<'a, (PathBuf, Document)>

Source

pub fn by_page( self, ) -> PdfFileLoader<'a, (PathBuf, Vec<(usize, Result<String, PdfLoaderError>)>)>

Chunks the pages of a loaded document by page, processed as a vector of documents by path which each document container an inner vector of pages by page number.

§Example

Read pdfs in directory “tests/data/*.pdf” and chunk all documents by path by it’s pages.

let content = PdfFileLoader::with_glob("tests/data/*.pdf")?
    .load_with_path()
    .by_page()
    .into_iter();

for result in content {
    match result {
        Ok(documents) => {
            for doc in documents {
                match doc {
                    Ok((pageno, content)) => println!("Page {}: {}", pageno, content),
                    Err(e) => eprintln!("Error reading page: {}", e),
               }
            }
        },
        Err(e) => eprintln!("Error reading pdf: {}", e),
    }
}
Source§

impl<'a> PdfFileLoader<'a, (PathBuf, Vec<(usize, Result<String, PdfLoaderError>)>)>

Source

pub fn ignore_errors(self) -> PdfFileLoader<'a, (PathBuf, Vec<(usize, String)>)>

Ignores errors in the iterator, returning only successful results. This can be used on any PdfFileLoader state of iterator whose items are results.

§Example

Read files in directory “tests/data/*.pdf” and ignore errors from unreadable files.

let content = FileLoader::with_glob("tests/data/*.pdf")?.read().ignore_errors().into_iter();
for result in content {
    println!("{}", content)
}
Source§

impl<'a, T> PdfFileLoader<'a, Result<T, PdfLoaderError>>
where T: 'a,

Source

pub fn ignore_errors(self) -> PdfFileLoader<'a, T>

Ignores errors in the iterator, returning only successful results. This can be used on any PdfFileLoader state of iterator whose items are results.

§Example

Read files in directory “tests/data/*.pdf” and ignore errors from unreadable files.

let content = FileLoader::with_glob("tests/data/*.pdf")?.read().ignore_errors().into_iter();
for result in content {
    println!("{}", content)
}
Source§

impl PdfFileLoader<'_, Result<PathBuf, FileLoaderError>>

Source

pub fn with_glob( pattern: &str, ) -> Result<PdfFileLoader<'_, Result<PathBuf, PdfLoaderError>>, PdfLoaderError>

Creates a new PdfFileLoader using a glob pattern to match files.

§Example

Create a PdfFileLoader for all .pdf files that match the glob “tests/data/*.pdf”.

let loader = FileLoader::with_glob("tests/data/*.txt")?;
Source

pub fn with_dir( directory: &str, ) -> Result<PdfFileLoader<'_, Result<PathBuf, PdfLoaderError>>, PdfLoaderError>

Creates a new PdfFileLoader on all files within a directory.

§Example

Create a PdfFileLoader for all files that are in the directory “files”.

let loader = PdfFileLoader::with_dir("files")?;
Source§

impl<'a> PdfFileLoader<'a, Vec<u8>>

Source

pub fn from_bytes(bytes: Vec<u8>) -> PdfFileLoader<'a, Vec<u8>>

Ingest a PDF as a byte array.

Source

pub fn from_bytes_multi(bytes_vec: Vec<Vec<u8>>) -> PdfFileLoader<'a, Vec<u8>>

Ingest multiple byte arrays.

Source

pub fn load(self) -> PdfFileLoader<'a, Result<Document, PdfLoaderError>>

Use this once you’ve created the loader to load the document in.

Source

pub fn load_with_path( self, ) -> PdfFileLoader<'a, Result<(PathBuf, Document), PdfLoaderError>>

Use this once you’ve created the loader to load the document in (and get the path).

Trait Implementations§

Source§

impl<'a, T> IntoIterator for PdfFileLoader<'a, T>

Source§

type Item = T

The type of the elements being iterated over.
Source§

type IntoIter = IntoIter<'a, T>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<'a, T> Freeze for PdfFileLoader<'a, T>

§

impl<'a, T> !RefUnwindSafe for PdfFileLoader<'a, T>

§

impl<'a, T> !Send for PdfFileLoader<'a, T>

§

impl<'a, T> !Sync for PdfFileLoader<'a, T>

§

impl<'a, T> Unpin for PdfFileLoader<'a, T>

§

impl<'a, T> !UnwindSafe for PdfFileLoader<'a, T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,