pub struct FileLoader<'a, T> { /* private fields */ }
Expand description
FileLoader is a utility for loading 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 FileLoaderError which can represent various errors that might occur during file loading operations, such as invalid glob patterns, IO errors, and glob errors.
§Example Usage
use rig:loaders::FileLoader;
fn main() -> Result<(), Box<dyn std::error::Error>> {
// Create a FileLoader using a glob pattern
let loader = FileLoader::with_glob("path/to/files/*.txt")?;
// Read file contents, ignoring any errors
let contents: Vec<String> = loader
.read()
.ignore_errors()
for content in contents {
println!("{}", content);
}
Ok(())
}
FileLoader 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> FileLoader<'a, PathBuf>
impl<'a> FileLoader<'a, PathBuf>
pub fn read(self) -> FileLoader<'a, Result<String, FileLoaderError>>
pub fn read_with_path( self, ) -> FileLoader<'a, Result<(PathBuf, String), FileLoaderError>>
Source§impl<'a> FileLoader<'a, Result<PathBuf, FileLoaderError>>
impl<'a> FileLoader<'a, Result<PathBuf, FileLoaderError>>
Sourcepub fn read(self) -> FileLoader<'a, Result<String, FileLoaderError>>
pub fn read(self) -> FileLoader<'a, Result<String, FileLoaderError>>
Reads the contents of the files within the iterator returned by FileLoader::with_glob or FileLoader::with_dir.
§Example
Read files in directory “files/*.txt” and print the content for each file
let content = FileLoader::with_glob(...)?.read();
for result in content {
match result {
Ok(content) => println!("{}", content),
Err(e) => eprintln!("Error reading file: {}", e),
}
}
Sourcepub fn read_with_path(
self,
) -> FileLoader<'a, Result<(PathBuf, String), FileLoaderError>>
pub fn read_with_path( self, ) -> FileLoader<'a, Result<(PathBuf, String), FileLoaderError>>
Reads the contents of the files within the iterator returned by FileLoader::with_glob or FileLoader::with_dir and returns the path along with the content.
§Example
Read files in directory “files/*.txt” and print the content for corresponding path for each file.
let content = FileLoader::with_glob("files/*.txt")?.read();
for (path, result) in content {
match result {
Ok((path, content)) => println!("{:?} {}", path, content),
Err(e) => eprintln!("Error reading file: {}", e),
}
}
Source§impl<'a, T> FileLoader<'a, Result<T, FileLoaderError>>where
T: 'a,
impl<'a, T> FileLoader<'a, Result<T, FileLoaderError>>where
T: 'a,
Sourcepub fn ignore_errors(self) -> FileLoader<'a, T>
pub fn ignore_errors(self) -> FileLoader<'a, T>
Ignores errors in the iterator, returning only successful results. This can be used on any FileLoader state of iterator whose items are results.
§Example
Read files in directory “files/*.txt” and ignore errors from unreadable files.
let content = FileLoader::with_glob("files/*.txt")?.read().ignore_errors();
for result in content {
println!("{}", content)
}
Source§impl FileLoader<'_, Result<PathBuf, FileLoaderError>>
impl FileLoader<'_, Result<PathBuf, FileLoaderError>>
Sourcepub fn with_glob(
pattern: &str,
) -> Result<FileLoader<'_, Result<PathBuf, FileLoaderError>>, FileLoaderError>
pub fn with_glob( pattern: &str, ) -> Result<FileLoader<'_, Result<PathBuf, FileLoaderError>>, FileLoaderError>
Creates a new FileLoader using a glob pattern to match files.
§Example
Create a FileLoader for all .txt
files that match the glob “files/*.txt”.
let loader = FileLoader::with_glob("files/*.txt")?;
Sourcepub fn with_dir(
directory: &str,
) -> Result<FileLoader<'_, Result<PathBuf, FileLoaderError>>, FileLoaderError>
pub fn with_dir( directory: &str, ) -> Result<FileLoader<'_, Result<PathBuf, FileLoaderError>>, FileLoaderError>
Creates a new FileLoader on all files within a directory.
§Example
Create a FileLoader for all files that are in the directory “files” (ignores subdirectories).
let loader = FileLoader::with_dir("files")?;
Source§impl<'a> FileLoader<'a, Vec<u8>>
impl<'a> FileLoader<'a, Vec<u8>>
Sourcepub fn from_bytes(bytes: Vec<u8>) -> FileLoader<'a, Vec<u8>>
pub fn from_bytes(bytes: Vec<u8>) -> FileLoader<'a, Vec<u8>>
Ingest a as a byte array.
Sourcepub fn from_bytes_multi(bytes_vec: Vec<Vec<u8>>) -> FileLoader<'a, Vec<u8>>
pub fn from_bytes_multi(bytes_vec: Vec<Vec<u8>>) -> FileLoader<'a, Vec<u8>>
Ingest multiple byte arrays.
Sourcepub fn read(self) -> FileLoader<'a, Result<String, FileLoaderError>>
pub fn read(self) -> FileLoader<'a, Result<String, FileLoaderError>>
Use this once you’ve created the loader to load the document in.
Sourcepub fn read_with_path(
self,
) -> FileLoader<'a, Result<(PathBuf, String), FileLoaderError>>
pub fn read_with_path( self, ) -> FileLoader<'a, Result<(PathBuf, String), FileLoaderError>>
Use this once you’ve created the reader to load the document in (and get the path).
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for FileLoader<'a, T>
impl<'a, T> !RefUnwindSafe for FileLoader<'a, T>
impl<'a, T> !Send for FileLoader<'a, T>
impl<'a, T> !Sync for FileLoader<'a, T>
impl<'a, T> Unpin for FileLoader<'a, T>
impl<'a, T> !UnwindSafe for FileLoader<'a, T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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