use crate::Result;
use crate::core::config::ExtractionConfig;
use crate::plugins::{DocumentExtractor, Plugin};
use crate::types::{ExtractionResult, Metadata};
use ahash::AHashMap;
use async_trait::async_trait;
use std::borrow::Cow;
#[cfg(feature = "tokio-runtime")]
use std::path::Path;
pub struct StructuredExtractor;
impl Default for StructuredExtractor {
fn default() -> Self {
Self::new()
}
}
impl StructuredExtractor {
pub fn new() -> Self {
Self
}
}
impl Plugin for StructuredExtractor {
fn name(&self) -> &str {
"structured-extractor"
}
fn version(&self) -> String {
env!("CARGO_PKG_VERSION").to_string()
}
fn initialize(&self) -> Result<()> {
Ok(())
}
fn shutdown(&self) -> Result<()> {
Ok(())
}
}
#[async_trait]
impl DocumentExtractor for StructuredExtractor {
#[cfg_attr(feature = "otel", tracing::instrument(
skip(self, content, _config),
fields(
extractor.name = self.name(),
content.size_bytes = content.len(),
)
))]
async fn extract_bytes(
&self,
content: &[u8],
mime_type: &str,
_config: &ExtractionConfig,
) -> Result<ExtractionResult> {
let structured_result = match mime_type {
"application/json" | "text/json" | "application/csl+json" => {
crate::extraction::structured::parse_json(content, None)?
}
"application/yaml" | "application/x-yaml" | "text/yaml" | "text/x-yaml" => {
crate::extraction::structured::parse_yaml(content)?
}
"application/toml" | "text/toml" => crate::extraction::structured::parse_toml(content)?,
_ => return Err(crate::KreuzbergError::UnsupportedFormat(mime_type.to_string())),
};
let mut additional = AHashMap::new();
additional.insert(
Cow::Borrowed("field_count"),
serde_json::json!(structured_result.text_fields.len()),
);
additional.insert(
Cow::Borrowed("data_format"),
serde_json::json!(structured_result.format),
);
for (key, value) in structured_result.metadata {
additional.insert(Cow::Owned(key), serde_json::json!(value));
}
Ok(ExtractionResult {
content: structured_result.content,
mime_type: mime_type.to_string().into(),
metadata: Metadata {
additional,
..Default::default()
},
pages: None,
tables: vec![],
detected_languages: None,
chunks: None,
images: None,
elements: None,
djot_content: None,
ocr_elements: None,
document: None,
#[cfg(any(feature = "keywords-yake", feature = "keywords-rake"))]
extracted_keywords: None,
quality_score: None,
processing_warnings: Vec::new(),
annotations: None,
})
}
#[cfg(feature = "tokio-runtime")]
#[cfg_attr(feature = "otel", tracing::instrument(
skip(self, path, config),
fields(
extractor.name = self.name(),
)
))]
async fn extract_file(&self, path: &Path, mime_type: &str, config: &ExtractionConfig) -> Result<ExtractionResult> {
let bytes = tokio::fs::read(path).await?;
self.extract_bytes(&bytes, mime_type, config).await
}
fn supported_mime_types(&self) -> &[&str] {
&[
"application/json",
"text/json",
"application/csl+json",
"application/yaml",
"application/x-yaml",
"text/yaml",
"text/x-yaml",
"application/toml",
"text/toml",
]
}
fn priority(&self) -> i32 {
50
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_structured_extractor_plugin_interface() {
let extractor = StructuredExtractor::new();
assert_eq!(extractor.name(), "structured-extractor");
assert!(extractor.initialize().is_ok());
assert!(extractor.shutdown().is_ok());
}
#[test]
fn test_structured_extractor_supported_mime_types() {
let extractor = StructuredExtractor::new();
let mime_types = extractor.supported_mime_types();
assert_eq!(mime_types.len(), 9);
assert!(mime_types.contains(&"application/json"));
assert!(mime_types.contains(&"application/x-yaml"));
assert!(mime_types.contains(&"application/toml"));
assert!(mime_types.contains(&"application/csl+json"));
}
}