Spaces:
Sleeping
Sleeping
File size: 8,421 Bytes
abcd0c2 c5638b0 abcd0c2 c5638b0 abcd0c2 c5638b0 abcd0c2 c5638b0 abcd0c2 c5638b0 697be7d c5638b0 697be7d c5638b0 abcd0c2 c5638b0 abcd0c2 c5638b0 abcd0c2 c5638b0 abcd0c2 c5638b0 abcd0c2 c5638b0 abcd0c2 c5638b0 abcd0c2 c5638b0 abcd0c2 c5638b0 abcd0c2 c5638b0 abcd0c2 c5638b0 abcd0c2 c5638b0 abcd0c2 c5638b0 abcd0c2 c5638b0 | 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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 | """
Document converter for the MarkItDown API.
Wraps Microsoft MarkItDown and RapidOCR to provide a unified conversion
interface that accepts file paths, raw byte streams, and public URLs.
Supported extensions are declared in SUPPORTED_EXTENSIONS and imported by
the API layer for format listing and validation.
Public classes
--------------
ConversionResult
Immutable dataclass holding the converted Markdown and file statistics.
ConversionError
Immutable dataclass holding error details when conversion fails.
DocumentConverter
Main converter class. All convert_* methods return either a
ConversionResult or a ConversionError — they do not raise.
"""
from __future__ import annotations
import hashlib
import io
import mimetypes
import time
from contextlib import contextmanager
from dataclasses import dataclass, field
from pathlib import Path
from typing import Iterator, Optional
from urllib.parse import urlparse
from markitdown import MarkItDown
from logger import get_logger
from .ocr_engine import ocr_image, ocr_pdf
logger = get_logger(__name__)
IMAGE_EXTENSIONS: frozenset[str] = frozenset({
".jpg", ".jpeg", ".png", ".gif", ".bmp", ".webp", ".tiff",
})
IMAGE_MIME_PREFIXES: tuple[str, ...] = ("image/",)
SUPPORTED_EXTENSIONS: frozenset[str] = frozenset({
".pdf", ".docx", ".doc", ".pptx", ".ppt",
".xlsx", ".xls", ".csv", ".json", ".xml",
".html", ".htm", ".txt", ".md", ".rst",
".jpg", ".jpeg", ".png", ".gif", ".bmp", ".webp", ".tiff",
".mp3", ".wav", ".ogg", ".flac",
".zip", ".epub",
})
def _is_image(ext: str, mime: str) -> bool:
"""Return True when the input should be routed through RapidOCR."""
return ext.lower() in IMAGE_EXTENSIONS or mime.startswith(IMAGE_MIME_PREFIXES)
# ---------------------------------------------------------------------------
# Result and error types
# ---------------------------------------------------------------------------
@dataclass(frozen=True)
class ConversionResult:
"""Successful conversion output."""
source: str
markdown: str
char_count: int
word_count: int
line_count: int
duration_ms: float
file_size_bytes: int
mime_type: str
content_hash: str
metadata: dict = field(default_factory=dict)
@property
def token_estimate(self) -> int:
"""Rough LLM token estimate based on word count (4/3 words per token)."""
return max(1, self.word_count * 4 // 3)
@dataclass(frozen=True)
class ConversionError:
"""Conversion failure details."""
source: str
error_type: str
message: str
duration_ms: float
# ---------------------------------------------------------------------------
# Converter
# ---------------------------------------------------------------------------
class DocumentConverter:
"""Converts documents from various formats to Markdown.
All public methods return either a ConversionResult or a ConversionError
and never raise exceptions to callers.
"""
def __init__(self, enable_plugins: bool = False) -> None:
self._engine = MarkItDown(enable_plugins=enable_plugins)
# ------------------------------------------------------------------
# Public conversion methods
# ------------------------------------------------------------------
def convert_file(self, path: str | Path) -> ConversionResult | ConversionError:
"""Convert a local file identified by *path*."""
path = Path(path).resolve()
if not path.exists():
return self._error(str(path), "FileNotFoundError",
f"File does not exist: {path}", 0.0)
file_size = path.stat().st_size
mime_type = mimetypes.guess_type(str(path))[0] or "application/octet-stream"
ext = path.suffix
with self._timed() as elapsed:
try:
markdown = self._convert_to_markdown(ext, mime_type, str(path))
except Exception as exc:
logger.error("convert_file | exception | file=%s | error=%s",
path, exc, exc_info=True)
return self._error(str(path), type(exc).__name__, str(exc), elapsed())
return self._build_result(str(path), markdown, file_size, mime_type, elapsed())
def convert_url(self, url: str) -> ConversionResult | ConversionError:
"""Fetch and convert a public HTTP/HTTPS URL."""
parsed = urlparse(url)
if parsed.scheme not in {"http", "https"}:
return self._error(url, "ValueError",
f"Unsupported URL scheme: {parsed.scheme!r}", 0.0)
ext = Path(parsed.path).suffix.lower()
is_image = ext in IMAGE_EXTENSIONS
mime_type = mimetypes.guess_type(url)[0] or ("image/jpeg" if is_image else "text/html")
with self._timed() as elapsed:
try:
markdown = self._convert_to_markdown(ext, mime_type, url)
except Exception as exc:
logger.error("convert_url | exception | url=%s | error=%s",
url, exc, exc_info=True)
return self._error(url, type(exc).__name__, str(exc), elapsed())
return self._build_result(url, markdown, 0, mime_type, elapsed())
def convert_stream(self, data: bytes, filename: str) -> ConversionResult | ConversionError:
"""Convert raw bytes identified by *filename* (used for upload payloads)."""
mime_type = mimetypes.guess_type(filename)[0] or "application/octet-stream"
ext = Path(filename).suffix.lower()
with self._timed() as elapsed:
try:
markdown = self._convert_to_markdown(ext, mime_type, data)
except Exception as exc:
logger.error("convert_stream | exception | filename=%s | error=%s",
filename, exc, exc_info=True)
return self._error(filename, type(exc).__name__, str(exc), elapsed())
return self._build_result(filename, markdown, len(data), mime_type, elapsed())
# ------------------------------------------------------------------
# Internal helpers
# ------------------------------------------------------------------
def _convert_to_markdown(self, ext: str, mime_type: str, source) -> str:
"""Dispatch to the right backend (OCR or MarkItDown) and return text.
For PDFs, if MarkItDown yields nothing, fall back to OCR.
`source` is a path/URL for image inputs, or raw bytes for streams.
"""
if _is_image(ext, mime_type):
return ocr_image(source)
if isinstance(source, bytes):
markdown = self._engine.convert_stream(
io.BytesIO(source), file_extension=ext
).text_content
else:
markdown = self._engine.convert(source).text_content
if not markdown.strip() and ext.lower() == ".pdf":
source_label = f"<{len(source)} bytes>" if isinstance(source, (bytes, bytearray)) else source
logger.info("convert | PDF text empty, falling back to OCR | source=%s", source_label)
markdown = ocr_pdf(source)
return markdown
@staticmethod
def _build_result(
source: str,
markdown: str,
file_size: int,
mime_type: str,
elapsed: float,
) -> ConversionResult:
return ConversionResult(
source=source,
markdown=markdown,
char_count=len(markdown),
word_count=len(markdown.split()),
line_count=len(markdown.splitlines()),
duration_ms=elapsed,
file_size_bytes=file_size,
mime_type=mime_type,
content_hash=hashlib.sha256(markdown.encode()).hexdigest(),
)
@staticmethod
def _error(source: str, error_type: str, message: str, duration_ms: float) -> ConversionError:
return ConversionError(
source=source,
error_type=error_type,
message=message,
duration_ms=duration_ms,
)
@staticmethod
@contextmanager
def _timed() -> Iterator:
"""Context manager that yields a callable returning elapsed ms at any point."""
start = time.perf_counter()
def elapsed() -> float:
return (time.perf_counter() - start) * 1000.0
yield elapsed
|