docvortex 0.2.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- docvortex/__init__.py +21 -0
- docvortex/analyzers/__init__.py +3 -0
- docvortex/analyzers/native/__init__.py +37 -0
- docvortex/analyzers/native/_shared/__init__.py +3 -0
- docvortex/analyzers/native/_shared/hyperlink.py +16 -0
- docvortex/analyzers/native/_shared/image.py +8 -0
- docvortex/analyzers/native/_shared/markup/__init__.py +47 -0
- docvortex/analyzers/native/_shared/markup/anchors.py +30 -0
- docvortex/analyzers/native/_shared/markup/formula.py +37 -0
- docvortex/analyzers/native/_shared/markup/projector.py +57 -0
- docvortex/analyzers/native/_shared/markup/styles.py +19 -0
- docvortex/analyzers/native/_shared/mathml.py +17 -0
- docvortex/analyzers/native/_shared/names.py +7 -0
- docvortex/analyzers/native/_shared/xycut.py +414 -0
- docvortex/analyzers/native/contracts.py +44 -0
- docvortex/analyzers/native/csv.py +351 -0
- docvortex/analyzers/native/epub/__init__.py +18 -0
- docvortex/analyzers/native/epub/constants.py +45 -0
- docvortex/analyzers/native/epub/converter.py +80 -0
- docvortex/analyzers/native/epub/errors.py +20 -0
- docvortex/analyzers/native/epub/metadata.py +31 -0
- docvortex/analyzers/native/epub/package.py +649 -0
- docvortex/analyzers/native/epub/xhtml.py +306 -0
- docvortex/analyzers/native/html/__init__.py +6 -0
- docvortex/analyzers/native/html/anchors.py +271 -0
- docvortex/analyzers/native/html/constants.py +25 -0
- docvortex/analyzers/native/html/contracts.py +7 -0
- docvortex/analyzers/native/html/converter.py +117 -0
- docvortex/analyzers/native/html/document.py +389 -0
- docvortex/analyzers/native/html/errors.py +12 -0
- docvortex/analyzers/native/html/resources.py +365 -0
- docvortex/analyzers/native/html/selector.py +421 -0
- docvortex/analyzers/native/models.py +209 -0
- docvortex/analyzers/native/ofd/__init__.py +14 -0
- docvortex/analyzers/native/ofd/constants.py +59 -0
- docvortex/analyzers/native/ofd/converter.py +31 -0
- docvortex/analyzers/native/ofd/errors.py +16 -0
- docvortex/analyzers/native/ofd/geometry.py +215 -0
- docvortex/analyzers/native/ofd/images.py +124 -0
- docvortex/analyzers/native/ofd/metadata.py +53 -0
- docvortex/analyzers/native/ofd/models.py +170 -0
- docvortex/analyzers/native/ofd/package.py +346 -0
- docvortex/analyzers/native/ofd/path.py +201 -0
- docvortex/analyzers/native/ofd/reading_order.py +293 -0
- docvortex/analyzers/native/ofd/resources.py +122 -0
- docvortex/analyzers/native/ofd/scene.py +347 -0
- docvortex/analyzers/native/ofd/table.py +240 -0
- docvortex/analyzers/native/ofd/text.py +521 -0
- docvortex/analyzers/native/office/__init__.py +3 -0
- docvortex/analyzers/native/office/doc/__init__.py +3 -0
- docvortex/analyzers/native/office/doc/bookmarks.py +81 -0
- docvortex/analyzers/native/office/doc/doc_converter.py +573 -0
- docvortex/analyzers/native/office/doc/fib.py +261 -0
- docvortex/analyzers/native/office/doc/fields.py +101 -0
- docvortex/analyzers/native/office/doc/formatting.py +171 -0
- docvortex/analyzers/native/office/doc/images.py +162 -0
- docvortex/analyzers/native/office/doc/lists.py +356 -0
- docvortex/analyzers/native/office/doc/models.py +164 -0
- docvortex/analyzers/native/office/doc/parser.py +851 -0
- docvortex/analyzers/native/office/doc/pieces.py +256 -0
- docvortex/analyzers/native/office/doc/records.py +40 -0
- docvortex/analyzers/native/office/doc/sprm.py +269 -0
- docvortex/analyzers/native/office/doc/styles.py +215 -0
- docvortex/analyzers/native/office/docx/__init__.py +3 -0
- docvortex/analyzers/native/office/docx/context.py +71 -0
- docvortex/analyzers/native/office/docx/docx_converter.py +614 -0
- docvortex/analyzers/native/office/docx/equationxml.py +119 -0
- docvortex/analyzers/native/office/docx/fields.py +816 -0
- docvortex/analyzers/native/office/docx/formatting_types.py +23 -0
- docvortex/analyzers/native/office/docx/main.py +50 -0
- docvortex/analyzers/native/office/docx/numbering.py +491 -0
- docvortex/analyzers/native/office/docx/office_xml.py +57 -0
- docvortex/analyzers/native/office/docx/package_normalizer.py +248 -0
- docvortex/analyzers/native/office/docx/resources.py +526 -0
- docvortex/analyzers/native/office/docx/styles.py +693 -0
- docvortex/analyzers/native/office/docx/tables.py +515 -0
- docvortex/analyzers/native/office/equation/__init__.py +3 -0
- docvortex/analyzers/native/office/equation/image.py +470 -0
- docvortex/analyzers/native/office/equation/latex_dict.py +324 -0
- docvortex/analyzers/native/office/equation/mtef.py +885 -0
- docvortex/analyzers/native/office/equation/mtef_v5.py +941 -0
- docvortex/analyzers/native/office/equation/omml.py +561 -0
- docvortex/analyzers/native/office/equation/ooxml.py +62 -0
- docvortex/analyzers/native/office/errors.py +33 -0
- docvortex/analyzers/native/office/image.py +307 -0
- docvortex/analyzers/native/office/legacy/__init__.py +3 -0
- docvortex/analyzers/native/office/legacy/binary.py +43 -0
- docvortex/analyzers/native/office/legacy/officeart.py +362 -0
- docvortex/analyzers/native/office/legacy/ole.py +110 -0
- docvortex/analyzers/native/office/limits.py +12 -0
- docvortex/analyzers/native/office/odf/__init__.py +3 -0
- docvortex/analyzers/native/office/odf/chart.py +76 -0
- docvortex/analyzers/native/office/odf/constants.py +70 -0
- docvortex/analyzers/native/office/odf/converters.py +403 -0
- docvortex/analyzers/native/office/odf/errors.py +18 -0
- docvortex/analyzers/native/office/odf/metadata.py +91 -0
- docvortex/analyzers/native/office/odf/models.py +176 -0
- docvortex/analyzers/native/office/odf/package.py +270 -0
- docvortex/analyzers/native/office/odf/styles.py +329 -0
- docvortex/analyzers/native/office/odf/table.py +469 -0
- docvortex/analyzers/native/office/odf/text.py +1002 -0
- docvortex/analyzers/native/office/ooxml_chart.py +1016 -0
- docvortex/analyzers/native/office/opc.py +38 -0
- docvortex/analyzers/native/office/ppt/__init__.py +3 -0
- docvortex/analyzers/native/office/ppt/models.py +118 -0
- docvortex/analyzers/native/office/ppt/parser.py +1895 -0
- docvortex/analyzers/native/office/ppt/ppt_converter.py +292 -0
- docvortex/analyzers/native/office/ppt/records.py +131 -0
- docvortex/analyzers/native/office/ppt/style_text.py +247 -0
- docvortex/analyzers/native/office/pptx/__init__.py +3 -0
- docvortex/analyzers/native/office/pptx/context.py +113 -0
- docvortex/analyzers/native/office/pptx/lists.py +558 -0
- docvortex/analyzers/native/office/pptx/main.py +20 -0
- docvortex/analyzers/native/office/pptx/package_normalizer.py +321 -0
- docvortex/analyzers/native/office/pptx/pptx_converter.py +323 -0
- docvortex/analyzers/native/office/pptx/resources.py +329 -0
- docvortex/analyzers/native/office/pptx/shapes.py +393 -0
- docvortex/analyzers/native/office/pptx/text_styles.py +625 -0
- docvortex/analyzers/native/office/pptx/titles.py +178 -0
- docvortex/analyzers/native/office/rich_text.py +420 -0
- docvortex/analyzers/native/office/rtf/__init__.py +3 -0
- docvortex/analyzers/native/office/rtf/converter.py +708 -0
- docvortex/analyzers/native/office/rtf/lexer.py +213 -0
- docvortex/analyzers/native/office/rtf/math.py +339 -0
- docvortex/analyzers/native/office/rtf/models.py +185 -0
- docvortex/analyzers/native/office/rtf/parser.py +1553 -0
- docvortex/analyzers/native/office/spreadsheet/__init__.py +3 -0
- docvortex/analyzers/native/office/spreadsheet/html.py +81 -0
- docvortex/analyzers/native/office/spreadsheet/models.py +79 -0
- docvortex/analyzers/native/office/spreadsheet/projector.py +928 -0
- docvortex/analyzers/native/office/streams.py +18 -0
- docvortex/analyzers/native/office/xls/__init__.py +3 -0
- docvortex/analyzers/native/office/xls/chart.py +132 -0
- docvortex/analyzers/native/office/xls/embedded_chart.py +299 -0
- docvortex/analyzers/native/office/xls/models.py +109 -0
- docvortex/analyzers/native/office/xls/number_format.py +521 -0
- docvortex/analyzers/native/office/xls/parser.py +1145 -0
- docvortex/analyzers/native/office/xls/records.py +201 -0
- docvortex/analyzers/native/office/xls/strings.py +205 -0
- docvortex/analyzers/native/office/xls/xls_converter.py +354 -0
- docvortex/analyzers/native/office/xlsx/__init__.py +3 -0
- docvortex/analyzers/native/office/xlsx/main.py +20 -0
- docvortex/analyzers/native/office/xlsx/ooxml_ole.py +522 -0
- docvortex/analyzers/native/office/xlsx/package_normalizer.py +310 -0
- docvortex/analyzers/native/office/xlsx/xlsx_converter.py +716 -0
- docvortex/analyzers/native/pdf/__init__.py +3 -0
- docvortex/analyzers/native/pdf/auxiliary_text.py +1671 -0
- docvortex/analyzers/native/pdf/char_geometry.py +1662 -0
- docvortex/analyzers/native/pdf/code_blocks.py +535 -0
- docvortex/analyzers/native/pdf/formulas.py +1985 -0
- docvortex/analyzers/native/pdf/geometry.py +281 -0
- docvortex/analyzers/native/pdf/graphics.py +1501 -0
- docvortex/analyzers/native/pdf/index_blocks.py +268 -0
- docvortex/analyzers/native/pdf/inline/__init__.py +3 -0
- docvortex/analyzers/native/pdf/inline/common.py +112 -0
- docvortex/analyzers/native/pdf/inline/detection.py +590 -0
- docvortex/analyzers/native/pdf/inline/matching.py +1185 -0
- docvortex/analyzers/native/pdf/inline/materialize.py +457 -0
- docvortex/analyzers/native/pdf/inline/scripts.py +975 -0
- docvortex/analyzers/native/pdf/inline/types.py +385 -0
- docvortex/analyzers/native/pdf/line_layout.py +1106 -0
- docvortex/analyzers/native/pdf/line_merging.py +1223 -0
- docvortex/analyzers/native/pdf/models.py +246 -0
- docvortex/analyzers/native/pdf/native_text.py +1004 -0
- docvortex/analyzers/native/pdf/pipeline.py +1390 -0
- docvortex/analyzers/native/pdf/script_geometry.py +636 -0
- docvortex/analyzers/native/pdf/shared.py +30 -0
- docvortex/analyzers/native/pdf/spatial_text.py +383 -0
- docvortex/analyzers/native/pdf/table_annotations.py +446 -0
- docvortex/analyzers/native/pdf/table_constants.py +48 -0
- docvortex/analyzers/native/pdf/table_detection.py +227 -0
- docvortex/analyzers/native/pdf/table_filled_grid.py +218 -0
- docvortex/analyzers/native/pdf/table_geometry.py +40 -0
- docvortex/analyzers/native/pdf/table_materialization.py +444 -0
- docvortex/analyzers/native/pdf/table_recovery/__init__.py +15 -0
- docvortex/analyzers/native/pdf/table_recovery/candidate.py +356 -0
- docvortex/analyzers/native/pdf/table_recovery/contracts.py +154 -0
- docvortex/analyzers/native/pdf/table_recovery/engine.py +609 -0
- docvortex/analyzers/native/pdf/table_recovery/geometry.py +164 -0
- docvortex/analyzers/native/pdf/table_recovery/sparse_common.py +85 -0
- docvortex/analyzers/native/pdf/table_recovery/sparse_hybrid.py +804 -0
- docvortex/analyzers/native/pdf/table_recovery/sparse_multiline.py +1122 -0
- docvortex/analyzers/native/pdf/table_recovery/text.py +414 -0
- docvortex/analyzers/native/pdf/table_recovery/text_grid.py +618 -0
- docvortex/analyzers/native/pdf/table_recovery/vector.py +1931 -0
- docvortex/analyzers/native/pdf/table_rows.py +34 -0
- docvortex/analyzers/native/pdf/table_rules.py +1129 -0
- docvortex/analyzers/native/pdf/table_text_styles.py +283 -0
- docvortex/analyzers/native/pdf/tables.py +147 -0
- docvortex/analyzers/native/pdf/text_assembly/__init__.py +3 -0
- docvortex/analyzers/native/pdf/text_assembly/annotations.py +581 -0
- docvortex/analyzers/native/pdf/text_assembly/assembly.py +292 -0
- docvortex/analyzers/native/pdf/text_assembly/common.py +477 -0
- docvortex/analyzers/native/pdf/text_assembly/footnotes.py +394 -0
- docvortex/analyzers/native/pdf/text_assembly/merging.py +1274 -0
- docvortex/analyzers/native/pdf/text_assembly/rows.py +692 -0
- docvortex/analyzers/native/pdf/text_blocks.py +82 -0
- docvortex/analyzers/native/pdf/text_styles.py +55 -0
- docvortex/analyzers/native/pdf/title_analysis/__init__.py +3 -0
- docvortex/analyzers/native/pdf/title_analysis/body_profile.py +215 -0
- docvortex/analyzers/native/pdf/title_analysis/common.py +117 -0
- docvortex/analyzers/native/pdf/title_analysis/document_profile.py +164 -0
- docvortex/analyzers/native/pdf/title_analysis/lane_titles.py +758 -0
- docvortex/analyzers/native/pdf/title_analysis/page_titles.py +1024 -0
- docvortex/analyzers/native/pdf/title_analysis/prototype.py +194 -0
- docvortex/analyzers/native/pdf/title_analysis/structural.py +1081 -0
- docvortex/analyzers/native/pdf/titles.py +75 -0
- docvortex/analyzers/native/pdf/typography.py +19 -0
- docvortex/analyzers/native/pdf/visual_annotations.py +1262 -0
- docvortex/api.py +180 -0
- docvortex/assets/__init__.py +5 -0
- docvortex/assets/store.py +51 -0
- docvortex/cli.py +54 -0
- docvortex/codecs/__init__.py +3 -0
- docvortex/codecs/html/__init__.py +22 -0
- docvortex/codecs/html/contracts.py +236 -0
- docvortex/codecs/html/materializer.py +331 -0
- docvortex/codecs/html/parser.py +763 -0
- docvortex/codecs/html/resources.py +34 -0
- docvortex/codecs/json.py +17 -0
- docvortex/content/__init__.py +5 -0
- docvortex/content/inline.py +248 -0
- docvortex/content/markup/__init__.py +44 -0
- docvortex/content/markup/anchors.py +188 -0
- docvortex/content/markup/formula.py +280 -0
- docvortex/content/markup/projector.py +1237 -0
- docvortex/content/markup/styles.py +327 -0
- docvortex/content/mathml.py +167 -0
- docvortex/content/normalization.py +188 -0
- docvortex/content/spans.py +183 -0
- docvortex/content/table/__init__.py +18 -0
- docvortex/content/table/blocks.py +152 -0
- docvortex/content/table/content.py +425 -0
- docvortex/content/table/document.py +104 -0
- docvortex/content/table/html.py +399 -0
- docvortex/content/table/models.py +76 -0
- docvortex/content/table/rules.py +42 -0
- docvortex/content/table/structure.py +221 -0
- docvortex/content/tree.py +5 -0
- docvortex/document/__init__.py +3 -0
- docvortex/document/contracts.py +22 -0
- docvortex/document/detection.py +389 -0
- docvortex/document/filetypes.py +175 -0
- docvortex/document/page_range.py +167 -0
- docvortex/document/pdf/__init__.py +19 -0
- docvortex/document/pdf/classify.py +1138 -0
- docvortex/document/pdf/constants.py +132 -0
- docvortex/document/pdf/diagnostics.py +350 -0
- docvortex/document/pdf/document.py +582 -0
- docvortex/document/pdf/font_runtime.py +335 -0
- docvortex/document/pdf/geometry.py +31 -0
- docvortex/document/pdf/images.py +654 -0
- docvortex/document/pdf/native_annotations.py +367 -0
- docvortex/document/pdf/native_contracts.py +169 -0
- docvortex/document/pdf/native_coordinates.py +216 -0
- docvortex/document/pdf/native_lifecycle.py +16 -0
- docvortex/document/pdf/native_objects.py +902 -0
- docvortex/document/pdf/native_text_geometry.py +315 -0
- docvortex/document/pdf/pdfium.py +325 -0
- docvortex/document/pdf/raster.py +46 -0
- docvortex/document/pdf/text/__init__.py +62 -0
- docvortex/document/pdf/text/contracts.py +211 -0
- docvortex/document/pdf/text/extract.py +165 -0
- docvortex/document/pdf/text/geometry.py +16 -0
- docvortex/document/pdf/text/groups.py +162 -0
- docvortex/document/pdf/visual_geometry.py +201 -0
- docvortex/document/pdf/visuals.py +343 -0
- docvortex/document/source.py +92 -0
- docvortex/errors.py +21 -0
- docvortex/export/__init__.py +3 -0
- docvortex/export/bundle.py +98 -0
- docvortex/export/files.py +66 -0
- docvortex/export/middle.py +208 -0
- docvortex/foundation/__init__.py +3 -0
- docvortex/foundation/geometry.py +125 -0
- docvortex/foundation/hyperlink.py +65 -0
- docvortex/foundation/image.py +48 -0
- docvortex/foundation/image_encoding.py +30 -0
- docvortex/foundation/image_payload.py +280 -0
- docvortex/foundation/language.py +92 -0
- docvortex/foundation/platform.py +38 -0
- docvortex/foundation/text.py +153 -0
- docvortex/foundation/type_identity.py +20 -0
- docvortex/foundation/xml_names.py +20 -0
- docvortex/options.py +30 -0
- docvortex/postprocess/__init__.py +3 -0
- docvortex/postprocess/content.py +53 -0
- docvortex/postprocess/document.py +19 -0
- docvortex/postprocess/lists.py +236 -0
- docvortex/postprocess/page_blocks.py +214 -0
- docvortex/postprocess/pages.py +95 -0
- docvortex/postprocess/paragraphs.py +580 -0
- docvortex/postprocess/visual.py +715 -0
- docvortex/render/__init__.py +48 -0
- docvortex/render/_internal/__init__.py +3 -0
- docvortex/render/_internal/common/__init__.py +3 -0
- docvortex/render/_internal/common/context.py +43 -0
- docvortex/render/_internal/common/html_table.py +178 -0
- docvortex/render/_internal/common/index.py +33 -0
- docvortex/render/_internal/common/list_items.py +158 -0
- docvortex/render/_internal/common/planner.py +140 -0
- docvortex/render/_internal/docx/__init__.py +3 -0
- docvortex/render/_internal/docx/assets.py +202 -0
- docvortex/render/_internal/docx/inline.py +434 -0
- docvortex/render/_internal/docx/math.py +220 -0
- docvortex/render/_internal/docx/renderer.py +905 -0
- docvortex/render/_internal/docx/styles.py +195 -0
- docvortex/render/_internal/docx/table.py +442 -0
- docvortex/render/_internal/epub/__init__.py +5 -0
- docvortex/render/_internal/epub/assets.py +173 -0
- docvortex/render/_internal/epub/package.py +249 -0
- docvortex/render/_internal/epub/renderer.py +1156 -0
- docvortex/render/_internal/html/__init__.py +3 -0
- docvortex/render/_internal/html/inline.py +346 -0
- docvortex/render/_internal/html/renderer.py +1041 -0
- docvortex/render/_internal/html/sanitizer.py +478 -0
- docvortex/render/_internal/html/table.py +121 -0
- docvortex/render/_internal/latex/__init__.py +1 -0
- docvortex/render/_internal/latex/assets.py +85 -0
- docvortex/render/_internal/latex/inline.py +145 -0
- docvortex/render/_internal/latex/renderer.py +506 -0
- docvortex/render/_internal/latex/table.py +347 -0
- docvortex/render/_internal/markdown/__init__.py +3 -0
- docvortex/render/_internal/markdown/assets.py +78 -0
- docvortex/render/_internal/markdown/blocks.py +635 -0
- docvortex/render/_internal/markdown/escaping.py +51 -0
- docvortex/render/_internal/markdown/inline.py +260 -0
- docvortex/render/_internal/markdown/renderer.py +93 -0
- docvortex/render/_internal/markdown/table.py +281 -0
- docvortex/render/_internal/pdf/__init__.py +3 -0
- docvortex/render/_internal/pdf/assets.py +197 -0
- docvortex/render/_internal/pdf/formula.py +417 -0
- docvortex/render/_internal/pdf/inline.py +343 -0
- docvortex/render/_internal/pdf/renderer.py +734 -0
- docvortex/render/_internal/pdf/styles.py +206 -0
- docvortex/render/_internal/pdf/table.py +272 -0
- docvortex/render/_internal/structured_content/__init__.py +3 -0
- docvortex/render/_internal/structured_content/renderer.py +193 -0
- docvortex/render/api.py +199 -0
- docvortex/render/contracts.py +205 -0
- docvortex/render/docx.py +38 -0
- docvortex/render/epub.py +35 -0
- docvortex/render/fragments.py +70 -0
- docvortex/render/html.py +29 -0
- docvortex/render/latex.py +24 -0
- docvortex/render/markdown.py +50 -0
- docvortex/render/pdf.py +25 -0
- docvortex/render/structured_content.py +23 -0
- docvortex/resources/epub/docvortex.css +91 -0
- docvortex/resources/fasttext-langdetect/lid.176.ftz +0 -0
- docvortex/resources/fonts/DroidSansFallbackFull.ttf +0 -0
- docvortex/resources/fonts/NOTICE +190 -0
- docvortex/resources/fonts/manifest.json +9 -0
- docvortex/resources/html/docvortex.css +601 -0
- docvortex/resources/html/docvortex.min.css +1 -0
- docvortex/result.py +91 -0
- docvortex/schema.py +1141 -0
- docvortex/version.py +3 -0
- docvortex-0.2.1.dist-info/METADATA +193 -0
- docvortex-0.2.1.dist-info/RECORD +364 -0
- docvortex-0.2.1.dist-info/WHEEL +5 -0
- docvortex-0.2.1.dist-info/entry_points.txt +2 -0
- docvortex-0.2.1.dist-info/licenses/LICENSE.md +21 -0
- docvortex-0.2.1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
"""保持既有顺序编排正文行分组与块级组装。"""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import statistics
|
|
6
|
+
from typing import Any, Sequence
|
|
7
|
+
|
|
8
|
+
from .....schema import BBox
|
|
9
|
+
from .....foundation.text import is_hyphen_at_line_end
|
|
10
|
+
from ..geometry import _bbox_union_many, _rotate_bbox_to_upright, _transform_axis_lines
|
|
11
|
+
from ..line_layout import (
|
|
12
|
+
_estimate_lane_gap,
|
|
13
|
+
_infer_text_lanes,
|
|
14
|
+
_line_effective_height,
|
|
15
|
+
_should_connect_semantic_rows,
|
|
16
|
+
_should_connect_text_rows,
|
|
17
|
+
)
|
|
18
|
+
from ..models import _AxisLine, _LineItem
|
|
19
|
+
from ..native_text import _normalize_native_run_text
|
|
20
|
+
from .common import _PARAGRAPH_FORMULA_CONTEXT_MARKER, _merge_text_line_content
|
|
21
|
+
from .footnotes import _build_grouped_page_footnote_blocks
|
|
22
|
+
from .merging import (
|
|
23
|
+
_merge_inline_math_fragment_text_blocks,
|
|
24
|
+
_merge_list_intro_text_components,
|
|
25
|
+
_merge_overlapping_same_line_text_blocks,
|
|
26
|
+
_merge_paragraph_formula_context_blocks,
|
|
27
|
+
_merge_short_same_baseline_prefix_blocks,
|
|
28
|
+
_merge_spatial_text_components,
|
|
29
|
+
_merge_unterminated_text_components,
|
|
30
|
+
)
|
|
31
|
+
from .rows import (
|
|
32
|
+
_build_hanging_indent_group_map,
|
|
33
|
+
_centered_visual_reset_break_sources,
|
|
34
|
+
_component_starts_with_emphasized_row,
|
|
35
|
+
_explicit_text_break_sources,
|
|
36
|
+
_formula_style_text_row_break_sources,
|
|
37
|
+
_front_matter_keyword_break_sources,
|
|
38
|
+
_infer_local_text_lane_map,
|
|
39
|
+
_isolated_indented_paragraph_break_sources,
|
|
40
|
+
_leading_typography_reset_break_sources,
|
|
41
|
+
_local_tight_output_line_bboxes,
|
|
42
|
+
_starts_structural_reference_entry,
|
|
43
|
+
_structured_text_break_sources,
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def _build_text_blocks(
|
|
48
|
+
lines: list[_LineItem],
|
|
49
|
+
table_bboxes: list[BBox],
|
|
50
|
+
page_size: tuple[float, float],
|
|
51
|
+
drawing_lines: list[_AxisLine] | None = None,
|
|
52
|
+
*,
|
|
53
|
+
page_footnote_groups: Sequence[set[int]] | None = None,
|
|
54
|
+
page_index: int | None = None,
|
|
55
|
+
visual_bboxes: Sequence[BBox] | None = None,
|
|
56
|
+
) -> list[dict[str, Any]]:
|
|
57
|
+
"""先构建分组脚注,再按类型屏障、栏带和自然段边界聚合其余文本。"""
|
|
58
|
+
|
|
59
|
+
blocks, grouped_footnote_indices = _build_grouped_page_footnote_blocks(
|
|
60
|
+
lines,
|
|
61
|
+
page_footnote_groups or [],
|
|
62
|
+
page_size,
|
|
63
|
+
)
|
|
64
|
+
lines = [line for line in lines if line.source_index not in grouped_footnote_indices]
|
|
65
|
+
for angle in sorted({line.angle for line in lines}):
|
|
66
|
+
line_geometry = [(line, _rotate_bbox_to_upright(line.bbox, page_size, angle)) for line in lines if line.angle == angle]
|
|
67
|
+
if not line_geometry:
|
|
68
|
+
continue
|
|
69
|
+
line_geometry.sort(key=lambda item: (item[1][1], item[1][0], item[0].source_index))
|
|
70
|
+
effective_heights = [_line_effective_height(line, bbox) for line, bbox in line_geometry]
|
|
71
|
+
median_height = statistics.median(effective_heights) if effective_heights else 1.0
|
|
72
|
+
local_page_width = page_size[1] if angle in {90, 270} else page_size[0]
|
|
73
|
+
local_page_height = page_size[0] if angle in {90, 270} else page_size[1]
|
|
74
|
+
local_visual_bboxes = [_rotate_bbox_to_upright(bbox, page_size, angle) for bbox in (visual_bboxes or [])]
|
|
75
|
+
lanes = _infer_text_lanes(line_geometry, local_page_width, median_height)
|
|
76
|
+
local_axis_lines = _transform_axis_lines(drawing_lines or [], page_size, angle)
|
|
77
|
+
split_row_counts: dict[int, int] = {}
|
|
78
|
+
for line, _bbox in line_geometry:
|
|
79
|
+
if line.visual_row_id is not None and line.split_from_row:
|
|
80
|
+
split_row_counts[line.visual_row_id] = split_row_counts.get(line.visual_row_id, 0) + 1
|
|
81
|
+
|
|
82
|
+
for lane in lanes:
|
|
83
|
+
lane.lines.sort(key=lambda item: (item[1][1], item[1][0], item[0].source_index))
|
|
84
|
+
if not lane.lines:
|
|
85
|
+
continue
|
|
86
|
+
regular_gap, gap_mad = _estimate_lane_gap(lane)
|
|
87
|
+
local_lane_by_source = _infer_local_text_lane_map(lane)
|
|
88
|
+
structured_break_sources = _structured_text_break_sources(
|
|
89
|
+
lane,
|
|
90
|
+
regular_gap,
|
|
91
|
+
gap_mad,
|
|
92
|
+
)
|
|
93
|
+
isolated_break_sources = _isolated_indented_paragraph_break_sources(
|
|
94
|
+
lane,
|
|
95
|
+
regular_gap,
|
|
96
|
+
gap_mad,
|
|
97
|
+
)
|
|
98
|
+
structured_break_sources.update(
|
|
99
|
+
isolated_break_sources,
|
|
100
|
+
)
|
|
101
|
+
visual_reset_sources = _centered_visual_reset_break_sources(
|
|
102
|
+
lane,
|
|
103
|
+
local_visual_bboxes,
|
|
104
|
+
local_page_height,
|
|
105
|
+
)
|
|
106
|
+
typography_reset_sources = _leading_typography_reset_break_sources(
|
|
107
|
+
lane,
|
|
108
|
+
regular_gap,
|
|
109
|
+
gap_mad,
|
|
110
|
+
)
|
|
111
|
+
formula_text_break_sources = _formula_style_text_row_break_sources(
|
|
112
|
+
lane,
|
|
113
|
+
)
|
|
114
|
+
structured_break_sources.update(visual_reset_sources)
|
|
115
|
+
structured_break_sources.update(typography_reset_sources)
|
|
116
|
+
structured_break_sources.update(formula_text_break_sources)
|
|
117
|
+
protected_break_sources: set[int] = set()
|
|
118
|
+
protected_break_sources.update(visual_reset_sources)
|
|
119
|
+
protected_break_sources.update(typography_reset_sources)
|
|
120
|
+
protected_break_sources.update(formula_text_break_sources)
|
|
121
|
+
protected_break_sources.update(
|
|
122
|
+
_front_matter_keyword_break_sources(
|
|
123
|
+
lane,
|
|
124
|
+
local_page_height,
|
|
125
|
+
page_index,
|
|
126
|
+
)
|
|
127
|
+
)
|
|
128
|
+
protected_break_sources.update(
|
|
129
|
+
_explicit_text_break_sources(lane),
|
|
130
|
+
)
|
|
131
|
+
structured_break_sources.update(
|
|
132
|
+
protected_break_sources,
|
|
133
|
+
)
|
|
134
|
+
hanging_indent_groups = _build_hanging_indent_group_map(
|
|
135
|
+
lane,
|
|
136
|
+
table_bboxes,
|
|
137
|
+
local_axis_lines,
|
|
138
|
+
)
|
|
139
|
+
component: list[tuple[_LineItem, BBox]] = [lane.lines[0]]
|
|
140
|
+
components: list[list[tuple[_LineItem, BBox]]] = []
|
|
141
|
+
for previous, current in zip(lane.lines, lane.lines[1:]):
|
|
142
|
+
previous_type = previous[0].semantic_type
|
|
143
|
+
current_type = current[0].semantic_type
|
|
144
|
+
if previous_type != current_type:
|
|
145
|
+
should_connect = False
|
|
146
|
+
elif previous_type is not None:
|
|
147
|
+
should_connect = _should_connect_semantic_rows(
|
|
148
|
+
previous,
|
|
149
|
+
current,
|
|
150
|
+
lane,
|
|
151
|
+
regular_gap,
|
|
152
|
+
table_bboxes,
|
|
153
|
+
local_axis_lines,
|
|
154
|
+
)
|
|
155
|
+
else:
|
|
156
|
+
previous_group = hanging_indent_groups.get(previous[0].source_index)
|
|
157
|
+
current_group = hanging_indent_groups.get(current[0].source_index)
|
|
158
|
+
previous_local_lane = local_lane_by_source.get(previous[0].source_index)
|
|
159
|
+
current_local_lane = local_lane_by_source.get(current[0].source_index)
|
|
160
|
+
connection_lane = (
|
|
161
|
+
current_local_lane
|
|
162
|
+
if current_local_lane is not None and previous_local_lane is current_local_lane
|
|
163
|
+
else lane
|
|
164
|
+
)
|
|
165
|
+
if (
|
|
166
|
+
current[0].style_scale_repaired
|
|
167
|
+
and current[0].split_from_row
|
|
168
|
+
and current[0].visual_row_id is not None
|
|
169
|
+
and split_row_counts.get(
|
|
170
|
+
current[0].visual_row_id,
|
|
171
|
+
0,
|
|
172
|
+
)
|
|
173
|
+
>= 2
|
|
174
|
+
):
|
|
175
|
+
should_connect = False
|
|
176
|
+
elif current[0].source_index in structured_break_sources:
|
|
177
|
+
should_connect = False
|
|
178
|
+
elif _starts_structural_reference_entry(previous, current):
|
|
179
|
+
# 编号只确认已经由悬挂缩进几何形成的新条目,不能单独扩张范围。
|
|
180
|
+
should_connect = False
|
|
181
|
+
elif is_hyphen_at_line_end(previous[0].text):
|
|
182
|
+
# 断词续行优先于悬挂缩进分组,但仍复用正文连接中的距离和障碍限制。
|
|
183
|
+
should_connect = _should_connect_text_rows(
|
|
184
|
+
previous,
|
|
185
|
+
current,
|
|
186
|
+
connection_lane,
|
|
187
|
+
regular_gap,
|
|
188
|
+
gap_mad,
|
|
189
|
+
table_bboxes,
|
|
190
|
+
local_axis_lines,
|
|
191
|
+
)
|
|
192
|
+
elif previous_group is not None or current_group is not None:
|
|
193
|
+
should_connect = previous_group is not None and previous_group == current_group
|
|
194
|
+
else:
|
|
195
|
+
should_connect = _should_connect_text_rows(
|
|
196
|
+
previous,
|
|
197
|
+
current,
|
|
198
|
+
connection_lane,
|
|
199
|
+
regular_gap,
|
|
200
|
+
gap_mad,
|
|
201
|
+
table_bboxes,
|
|
202
|
+
local_axis_lines,
|
|
203
|
+
)
|
|
204
|
+
if should_connect:
|
|
205
|
+
component.append(current)
|
|
206
|
+
else:
|
|
207
|
+
components.append(component)
|
|
208
|
+
component = [current]
|
|
209
|
+
components.append(component)
|
|
210
|
+
|
|
211
|
+
for component_geometry in components:
|
|
212
|
+
component_lines = [item[0] for item in component_geometry]
|
|
213
|
+
component_local_lane = local_lane_by_source.get(component_lines[0].source_index)
|
|
214
|
+
if component_local_lane is None or not all(
|
|
215
|
+
local_lane_by_source.get(line.source_index) is component_local_lane for line in component_lines
|
|
216
|
+
):
|
|
217
|
+
component_local_lane = lane
|
|
218
|
+
if component_lines[0].semantic_type == "doc_title":
|
|
219
|
+
# 文档标题保留自然换行,避免混排标题因语言检测在中文折行处插入空格。
|
|
220
|
+
content = "\n".join(
|
|
221
|
+
normalized for line in component_lines if (normalized := _normalize_native_run_text(line.text))
|
|
222
|
+
)
|
|
223
|
+
else:
|
|
224
|
+
content = _merge_text_line_content([line.text for line in component_lines])
|
|
225
|
+
if not content:
|
|
226
|
+
continue
|
|
227
|
+
visual_row_ids = {line.visual_row_id for line in component_lines if line.visual_row_id is not None}
|
|
228
|
+
single_run_row_id = (
|
|
229
|
+
component_lines[0].visual_row_id
|
|
230
|
+
if len(component_lines) == 1
|
|
231
|
+
and component_lines[0].split_from_row
|
|
232
|
+
and component_lines[0].visual_row_id is not None
|
|
233
|
+
else None
|
|
234
|
+
)
|
|
235
|
+
local_output_line_bboxes, output_bbox_repaired = _local_tight_output_line_bboxes(
|
|
236
|
+
component_lines,
|
|
237
|
+
page_size,
|
|
238
|
+
angle,
|
|
239
|
+
)
|
|
240
|
+
blocks.append(
|
|
241
|
+
{
|
|
242
|
+
"type": component_lines[0].semantic_type or "text",
|
|
243
|
+
"bbox": _bbox_union_many([line.bbox for line in component_lines]),
|
|
244
|
+
"angle": angle,
|
|
245
|
+
"content": content,
|
|
246
|
+
"_visual_row_ids": visual_row_ids,
|
|
247
|
+
"_single_run_row_id": single_run_row_id,
|
|
248
|
+
"_local_line_bboxes": [bbox for _line, bbox in component_geometry],
|
|
249
|
+
"_local_output_line_bboxes": local_output_line_bboxes,
|
|
250
|
+
"_output_bbox_repaired": output_bbox_repaired,
|
|
251
|
+
"_line_heights": [_line_effective_height(line, bbox) for line, bbox in component_geometry],
|
|
252
|
+
"_font_signatures": {
|
|
253
|
+
line.font_signature
|
|
254
|
+
for line in component_lines
|
|
255
|
+
if line.font_signature is not None and line.font_coverage >= 0.5
|
|
256
|
+
},
|
|
257
|
+
"_inline_math_regions": [region for line in component_lines for region in line.inline_math_regions],
|
|
258
|
+
_PARAGRAPH_FORMULA_CONTEXT_MARKER: any(line.paragraph_formula_context for line in component_lines),
|
|
259
|
+
"_lane_interval": (
|
|
260
|
+
component_local_lane.left,
|
|
261
|
+
component_local_lane.right,
|
|
262
|
+
),
|
|
263
|
+
"_lane_is_span": component_local_lane.is_span,
|
|
264
|
+
"_hard_break_before": (component_lines[0].source_index in structured_break_sources),
|
|
265
|
+
"_protected_hard_break_before": (component_lines[0].source_index in protected_break_sources),
|
|
266
|
+
"_hanging_indent_group": hanging_indent_groups.get(
|
|
267
|
+
component_lines[0].source_index,
|
|
268
|
+
),
|
|
269
|
+
"_leading_emphasis_start": _component_starts_with_emphasized_row(
|
|
270
|
+
component_lines,
|
|
271
|
+
),
|
|
272
|
+
}
|
|
273
|
+
)
|
|
274
|
+
blocks = _merge_short_same_baseline_prefix_blocks(
|
|
275
|
+
blocks,
|
|
276
|
+
page_size,
|
|
277
|
+
)
|
|
278
|
+
blocks = _merge_spatial_text_components(blocks, page_size)
|
|
279
|
+
blocks = _merge_list_intro_text_components(blocks)
|
|
280
|
+
blocks = _merge_unterminated_text_components(blocks)
|
|
281
|
+
blocks = _merge_overlapping_same_line_text_blocks(blocks, page_size)
|
|
282
|
+
blocks = _merge_inline_math_fragment_text_blocks(
|
|
283
|
+
blocks,
|
|
284
|
+
page_size,
|
|
285
|
+
)
|
|
286
|
+
return _merge_paragraph_formula_context_blocks(
|
|
287
|
+
blocks,
|
|
288
|
+
page_size,
|
|
289
|
+
)
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
__all__ = ["_build_text_blocks"]
|