Skip to content

Container

Container class, ODF file management.

Classes:

Name Description
Container

Storage of the ODF document, as zip or other format.

Functions:

Name Description
normalize_path

Normalize a string path to Posix format.

pretty_indent

Return an indented _ElementTree.

printwarn

Print a message on stderr.

Attributes:

Name Type Description
NS_OFFICE
TAB
TEXT_CONTENT
XML_TAG

NS_OFFICE module-attribute

NS_OFFICE = (
    "urn:oasis:names:tc:opendocument:xmlns:office:1.0"
)

TAB module-attribute

TAB = '  '

TEXT_CONTENT module-attribute

TEXT_CONTENT = {
    "config:config-item",
    "db:data-source-setting-value",
    "db:table-filter-pattern",
    "db:table-type",
    "dc:creator",
    "dc:date",
    "dc:description",
    "dc:language",
    "dc:subject",
    "dc:title",
    "form:item",
    "form:option",
    "math:math",
    "meta:creation-date",
    "meta:date-string",
    "meta:editing-cycles",
    "meta:editing-duration",
    "meta:generator",
    "meta:initial-creator",
    "meta:keyword",
    "meta:print-date",
    "meta:printed-by",
    "meta:user-defined",
    "number:currency-symbol",
    "number:embedded-text",
    "number:text",
    "office:script",
    "presentation:date-time-decl",
    "presentation:footer-decl",
    "presentation:header-decl",
    "svg:desc",
    "svg:title",
    "table:desc",
    "table:title",
    "text:a",
    "text:author-initials",
    "text:author-name",
    "text:bibliography-mark",
    "text:bookmark-ref",
    "text:chapter",
    "text:character-count",
    "text:conditional-text",
    "text:creation-date",
    "text:creation-time",
    "text:creator",
    "text:database-display",
    "text:database-name",
    "text:database-row-number",
    "text:date",
    "text:dde-connection",
    "text:description",
    "text:editing-cycles",
    "text:editing-duration",
    "text:execute-macro",
    "text:expression",
    "text:file-name",
    "text:h",
    "text:hidden-paragraph",
    "text:hidden-text",
    "text:image-count",
    "text:index-entry-span",
    "text:index-title-template",
    "text:initial-creator",
    "text:keywords",
    "text:line-break",
    "text:linenumbering-separator",
    "text:measure",
    "text:meta",
    "text:meta-field",
    "text:modification-date",
    "text:modification-time",
    "text:note-citation",
    "text:note-continuation-notice-backward",
    "text:note-continuation-notice-forward",
    "text:note-ref",
    "text:number",
    "text:object-count",
    "text:p",
    "text:page-continuation",
    "text:page-count",
    "text:page-number",
    "text:page-variable-get",
    "text:page-variable-set",
    "text:paragraph-count",
    "text:placeholder",
    "text:print-date",
    "text:print-time",
    "text:printed-by",
    "text:reference-ref",
    "text:ruby-base",
    "text:ruby-text",
    "text:s",
    "text:script",
    "text:sender-city",
    "text:sender-company",
    "text:sender-country",
    "text:sender-email",
    "text:sender-fax",
    "text:sender-firstname",
    "text:sender-initials",
    "text:sender-lastname",
    "text:sender-phone-private",
    "text:sender-phone-work",
    "text:sender-position",
    "text:sender-postal-code",
    "text:sender-state-or-province",
    "text:sender-street",
    "text:sender-title",
    "text:sequence",
    "text:sequence-ref",
    "text:sheet-name",
    "text:soft-page-break",
    "text:span",
    "text:subject",
    "text:tab",
    "text:table-count",
    "text:table-formula",
    "text:template-name",
    "text:text-input",
    "text:time",
    "text:title",
    "text:user-defined",
    "text:user-field-get",
    "text:user-field-input",
    "text:variable-get",
    "text:variable-input",
    "text:variable-set",
    "text:word-count",
}

XML_TAG module-attribute

XML_TAG = b'<?xml version="1.0" encoding="UTF-8"?>\n'

Container

Storage of the ODF document, as zip or other format.

Methods:

Name Description
__init__

Storage of the ODF document, as zip or other format.

__repr__
del_part

Mark a part for deletion.

get_part

Get the actual content of a part of the ODF Container.

get_parts

Get the list of the parts in the Container.

open

Load the content of an ODF file.

save

Save the container to the given target, a path or a file-like

set_part

Replace or add a new part.

Attributes:

Name Type Description
clone Container

Make a copy of this container with no path.

default_manifest_rdf str
mimetype str

Return str value of mimetype of the document.

parts list[str]

Get the list of the parts in the Container.

path Path | None
Source code in odfdo/container.py
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
class Container:
    """Storage of the ODF document, as zip or other format."""

    def __init__(self, path: Path | str | io.BytesIO | None = None) -> None:
        """Storage of the ODF document, as zip or other format.

        Args:
            path: The path to the ODF file, a file-like object, or None.
        """
        self.__parts: dict[str, bytes | None] = {}
        self.__parts_ts: dict[str, int] = {}
        self.__path_like: Path | str | io.BytesIO | None = None
        self.__packaging: str = ZIP
        self.path: Path | None = None  # or Path
        if path:
            self.open(path)

    def __repr__(self) -> str:
        return f"<{self.__class__.__name__} type={self.mimetype} path={self.path}>"

    def open(self, path_or_file: Path | str | io.BytesIO) -> None:
        """Load the content of an ODF file.

        Args:
            path_or_file: Path to the document, or an opened file.
        """
        self.__path_like = path_or_file
        if isinstance(path_or_file, (str, Path)):
            self.path = Path(path_or_file).expanduser()
            if not self.path.exists():
                raise FileNotFoundError(str(self.path))
            self.__path_like = self.path
        if (self.path or isinstance(self.__path_like, io.BytesIO)) and is_zipfile(
            self.__path_like
        ):
            self.__packaging = ZIP
            return self._read_zip()
        if self.path:
            is_folder = False
            with contextlib.suppress(OSError):
                is_folder = self.path.is_dir()
            if is_folder:
                self.__packaging = FOLDER
                return self._read_folder()
            # Check if it's a flat XML file
            with contextlib.suppress(OSError, ValueError):
                content = self.path.read_bytes()
                if self._is_flat_xml(content):
                    self.__packaging = XML
                    return self._read_xml(content)
        # Check if it's a BytesIO with flat XML
        if isinstance(self.__path_like, io.BytesIO):
            content = self.__path_like.getvalue()
            if self._is_flat_xml(content):
                self.__packaging = XML
                return self._read_xml(content)
        msg = f"Document format not managed by odfdo: {type(path_or_file)}."
        raise TypeError(msg)

    @staticmethod
    def _is_flat_xml(content: bytes) -> bool:
        """Check if content is a Flat ODF XML file.

        Args:
            content: The file content to check.

        Returns:
            True if the content appears to be a Flat ODF XML file.
        """
        # Must start with XML declaration or be parseable XML
        if not content.strip():
            return False
        if not content.lstrip().startswith(b"<?xml"):
            return False
        # Quick check for office:document element
        if b"office:document" not in content:
            return False
        try:
            root = fromstring(content)
        except (
            XMLSyntaxError,
            ValueError,
            TypeError,
        ):
            return False
        if root.tag != _ns_tag("document"):
            return False
        # Check for office:mimetype attribute
        mimetype = root.get(_ns_tag("mimetype"))
        if mimetype in ODF_MIMETYPES:
            return True
        # And accept if it has office:body child
        return root.find(_ns_tag("body")) is not None

    def _read_zip(self) -> None:
        if isinstance(self.__path_like, io.BytesIO):
            self.__path_like.seek(0)
        with ZipFile(self.__path_like) as zf:  # type: ignore
            mimetype = bytes_to_str(zf.read("mimetype"))
            if mimetype not in ODF_MIMETYPES:
                raise ValueError(f"Document of unknown type {mimetype}")
            self.__parts["mimetype"] = str_to_bytes(mimetype)
        if self.path is None:
            if isinstance(self.__path_like, io.BytesIO):
                self.__path_like.seek(0)
            # read the full file at once and forget file
            with ZipFile(self.__path_like) as zf:  # type: ignore
                for name in zf.namelist():
                    upath = normalize_path(name)
                    self.__parts[upath] = zf.read(name)
            self.__path_like = None

    def _read_folder(self) -> None:
        try:
            mimetype, timestamp = self._get_folder_part("mimetype")
        except OSError:
            msg = "Corrupted or not an OpenDocument folder (missing mimetype)"
            printwarn(msg)
            mimetype = b""
            timestamp = int(time.time())
        if bytes_to_str(mimetype) not in ODF_MIMETYPES:
            # Try to detect from content.xml if available
            detected = self._detect_mimetype_from_folder()
            if detected:
                msg = f"Document of unknown type {mimetype!r}, detected as {detected}."
                printwarn(msg)
                mimetype = str_to_bytes(detected)
            else:
                msg = f"Document of unknown type {mimetype!r}, try with ODF Text."
                printwarn(msg)
                mimetype = str_to_bytes(ODF_EXTENSIONS["odt"])
            self.__parts["mimetype"] = mimetype
            self.__parts_ts["mimetype"] = timestamp

    @staticmethod
    def _detect_image_mime_type(data: bytes) -> str:
        """Detect image mime type from file content."""
        if data.startswith(b"\xff\xd8\xff"):
            return "image/jpeg"
        if data.startswith(b"\x89PNG\r\n\x1a\n"):
            return "image/png"
        if data.startswith(b"GIF87a") or data.startswith(b"GIF89a"):
            return "image/gif"
        if data.startswith(b"<?xml") or b"<svg" in data[:100]:
            return "image/svg+xml"
        if data.startswith(b"BM"):
            return "image/bmp"
        if data.startswith(b"RIFF") and data[8:12] == b"WEBP":
            return "image/webp"
        return "application/octet-stream"

    @staticmethod
    def _image_mime_type_to_ext(mime_type: str) -> str:
        """Convert mime type to file extension."""
        mapping = {
            "image/jpeg": "jpg",
            "image/png": "png",
            "image/gif": "gif",
            "image/svg+xml": "svg",
            "image/bmp": "bmp",
            "image/webp": "webp",
            "image/tiff": "tiff",
        }
        return mapping.get(mime_type, "bin")

    @staticmethod
    def _suffix_to_mime_type(
        suffix: str,
        default: str = "application/octet-stream",
    ) -> str:
        """Convert file extension to mime type."""
        mapping = {
            ".xml": "text/xml",
            ".jpg": "image/jpeg",
            ".jpeg": "image/jpeg",
            ".png": "image/png",
            ".gif": "image/gif",
            ".svg": "image/svg+xml",
        }
        return mapping.get(suffix.lower(), default)

    def _read_xml(self, content: bytes) -> None:
        """Read a Flat ODF XML file and extract parts.

        Args:
            content: The XML content as bytes.
        """
        root = fromstring(content)
        mimetype, original_nsmap = self._extract_mimetype_and_namespaces(root)
        self.__parts["mimetype"] = str_to_bytes(mimetype)

        content_root, styles_root = self._create_document_roots(original_nsmap)
        master_style_refs = self._collect_master_style_refs(root)
        image_parts = self._distribute_elements(
            root, content_root, styles_root, master_style_refs
        )

        # Process embedded content
        xlink_ns = "{http://www.w3.org/1999/xlink}"
        image_counter = self._process_embedded_images(
            content_root, styles_root, image_parts, xlink_ns
        )
        image_counter = self._process_fill_images(
            content_root, styles_root, image_parts, image_counter, xlink_ns
        )
        self._process_embedded_objects(content_root, xlink_ns)
        self._process_form_images(content_root, image_parts)

        # Store image parts
        for path, data in image_parts.items():
            if path not in self.__parts:
                self.__parts[path] = data

        self._serialize_documents(content_root, styles_root)
        self._create_manifest()

    def _detect_mimetype_from_content(self, root: _Element) -> str:
        """Detect mimetype from body content when attribute is missing.

        Args:
            root: The root element of the parsed XML.

        Returns:
            The detected mimetype string.
        """
        body = root.find(_ns_tag("body"))
        if body is not None:
            if body.find(_ns_tag("spreadsheet")) is not None:
                return ODF_EXTENSIONS["ods"]
            if body.find(_ns_tag("presentation")) is not None:
                return ODF_EXTENSIONS["odp"]
            if body.find(_ns_tag("drawing")) is not None:
                return ODF_EXTENSIONS["odg"]
            if body.find(_ns_tag("chart")) is not None:
                return ODF_EXTENSIONS["odc"]
            if body.find(_ns_tag("image")) is not None:
                return ODF_EXTENSIONS["odi"]
            if body.find(_ns_tag("formula")) is not None:
                return ODF_EXTENSIONS["odf"]
        return ODF_EXTENSIONS["odt"]

    def _detect_mimetype_from_folder(self) -> str | None:
        """Detect mimetype by examining content.xml in folder.

        Returns:
            The detected mimetype string or None if detection fails.
        """
        try:
            if self.path is None:
                return None
            content_path = self.path / "content.xml"
            if not content_path.exists():
                return None
            root = fromstring(content_path.read_bytes())
            return self._detect_mimetype_from_content(root)
        except Exception:
            return None

    def _extract_mimetype_and_namespaces(
        self, root: _Element
    ) -> tuple[str, dict[str, str]]:
        """Extract mimetype and namespaces from the root element.

        Args:
            root: The root element of the parsed XML.

        Returns:
            Tuple of (mimetype, original_nsmap).
        """
        mimetype = root.get(_ns_tag("mimetype"))
        if mimetype is None:
            mimetype = self._detect_mimetype_from_content(root)
        # Filter out None keys (default namespace) and manifest namespace
        original_nsmap = {
            prefix: uri
            for prefix, uri in root.nsmap.items()
            if prefix is not None
            and uri != "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0"
        }
        return mimetype, original_nsmap

    def _create_document_roots(
        self, original_nsmap: dict[str, str]
    ) -> tuple[Element, Element]:
        """Create content and styles document roots.

        Args:
            original_nsmap: The original namespace map.

        Returns:
            Tuple of (content_root, styles_root).
        """
        content_root = Element(_ns_tag("document-content"), nsmap=original_nsmap)
        content_root.set(_ns_tag("version"), OFFICE_VERSION)

        styles_root = Element(_ns_tag("document-styles"), nsmap=original_nsmap)
        styles_root.set(_ns_tag("version"), OFFICE_VERSION)

        return content_root, styles_root

    def _collect_master_style_refs(self, root: _Element) -> set[str]:
        """Collect style names referenced from master-styles.

        These styles (like header/footer paragraph styles) need to stay in styles.xml.

        Args:
            root: The root element of the parsed XML.

        Returns:
            Set of style names referenced from master-styles.
        """
        ns_style = "{urn:oasis:names:tc:opendocument:xmlns:style:1.0}"
        ns_text = "{urn:oasis:names:tc:opendocument:xmlns:text:1.0}"
        ns_draw = "{urn:oasis:names:tc:opendocument:xmlns:drawing:1.0}"
        ns_presentation = "{urn:oasis:names:tc:opendocument:xmlns:presentation:1.0}"
        master_style_refs: set[str] = set()

        for child in root:
            if child.tag == _ns_tag("master-styles"):
                for elem in child.iter():
                    style_ref = elem.get(f"{ns_text}style-name")
                    if style_ref:
                        master_style_refs.add(style_ref)
                    style_name = elem.get(f"{ns_style}name")
                    if style_name:
                        master_style_refs.add(style_name)
                    draw_style = elem.get(f"{ns_draw}style-name")
                    if draw_style:
                        master_style_refs.add(draw_style)
                    pres_style = elem.get(f"{ns_presentation}style-name")
                    if pres_style:
                        master_style_refs.add(pres_style)

        return master_style_refs

    def _distribute_elements(
        self,
        root: _Element,
        content_root: Element,
        styles_root: Element,
        master_style_refs: set[str],
    ) -> dict[str, bytes]:
        """Distribute child elements to content or styles roots.

        Args:
            root: The root element of the parsed XML.
            content_root: The content document root.
            styles_root: The styles document root.
            master_style_refs: Set of style names referenced from master-styles.

        Returns:
            Dictionary of image parts.
        """
        ns_style = "{urn:oasis:names:tc:opendocument:xmlns:style:1.0}"
        image_parts: dict[str, bytes] = {}

        for child in root:
            tag = child.tag
            if tag == _ns_tag("meta"):
                self._process_meta_element(child)
            elif tag == _ns_tag("document-meta"):
                self._process_document_meta_element(child)
            elif tag == _ns_tag("settings"):
                self._process_settings_element(child)
            elif tag == _ns_tag("automatic-styles"):
                self._process_automatic_styles(
                    child, content_root, styles_root, master_style_refs, ns_style
                )
            elif tag in {
                _ns_tag("styles"),
                _ns_tag("master-styles"),
                _ns_tag("font-face-decls"),
            }:
                self._merge_or_append_to_styles(child, styles_root)
            else:
                content_root.append(child)

        return image_parts

    def _process_meta_element(self, meta: _Element) -> None:
        """Process meta element and store as meta.xml."""
        meta_root = Element(
            _ns_tag("document-meta"),
            nsmap={
                "office": NS_OFFICE,
                "meta": "urn:oasis:names:tc:opendocument:xmlns:meta:1.0",
                "dc": "http://purl.org/dc/elements/1.1/",
            },
        )
        meta_root.set(_ns_tag("version"), OFFICE_VERSION)
        meta_root.append(meta)
        meta_xml = XML_TAG + tostring(
            meta_root, encoding="UTF-8", xml_declaration=False
        )
        self.__parts[ODF_META] = meta_xml

    def _process_document_meta_element(self, doc_meta: _Element) -> None:
        """Process document-meta element (already wrapped) and store as meta.xml."""
        meta_xml = XML_TAG + tostring(doc_meta, encoding="UTF-8", xml_declaration=False)
        self.__parts[ODF_META] = meta_xml

    def _process_settings_element(self, settings: _Element) -> None:
        """Process settings element and store as settings.xml."""
        settings_xml = XML_TAG + (
            b"<office:document-settings xmlns:office="
            b'"urn:oasis:names:tc:opendocument:xmlns:office:1.0" '
            b'xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0">'
        )
        for settings_child in settings:
            settings_xml += tostring(
                settings_child, encoding="UTF-8", xml_declaration=False
            )
        settings_xml += b"</office:document-settings>"
        self.__parts[ODF_SETTINGS] = settings_xml

    def _process_automatic_styles(
        self,
        auto_styles: _Element,
        content_root: Element,
        styles_root: Element,
        master_style_refs: set[str],
        ns_style: str,
    ) -> None:
        """Distribute automatic-styles to content or styles roots.

        - Styles referenced from master-styles go to styles.xml
        - Page layouts go to styles.xml
        - Everything else goes to content.xml
        """
        content_auto = content_root.find(_ns_tag("automatic-styles"))
        if content_auto is None:
            content_auto = Element(_ns_tag("automatic-styles"))
            content_root.insert(0, content_auto)

        styles_auto = styles_root.find(_ns_tag("automatic-styles"))
        if styles_auto is None:
            styles_auto = Element(_ns_tag("automatic-styles"))
            styles_root.append(styles_auto)

        for grandchild in auto_styles:
            tag_name = grandchild.tag.split("}")[-1]
            style_name = grandchild.get(f"{ns_style}name")
            is_page_layout = tag_name == "page-layout"
            is_master_style = style_name is not None and style_name in master_style_refs

            if is_page_layout or is_master_style:
                styles_auto.append(grandchild)
            else:
                content_auto.append(grandchild)

    def _merge_or_append_to_styles(self, child: _Element, styles_root: Element) -> None:
        """Merge child into styles root or append if not exists."""
        tag = child.tag
        existing = styles_root.find(tag)
        if existing is not None:
            for grandchild in child:
                existing.append(grandchild)
        else:
            styles_root.append(child)

    def _process_embedded_images(
        self,
        content_root: Element,
        styles_root: Element,
        image_parts: dict[str, bytes],
        xlink_ns: str,
    ) -> int:
        """Process draw:image elements with office:binary-data.

        Returns:
            The updated image counter.
        """
        ns_draw = "{urn:oasis:names:tc:opendocument:xmlns:drawing:1.0}"
        xpath_expr = xpath_compile("descendant::draw:image[office:binary-data]")
        image_counter = 0

        for root_elem in (content_root, styles_root):
            for img_elem in xpath_expr(root_elem):
                binary_data_elem = img_elem.find(_ns_tag("binary-data"))
                if binary_data_elem is not None and binary_data_elem.text:
                    try:
                        image_data = base64.standard_b64decode(
                            binary_data_elem.text.strip()
                        )
                        mime_type = img_elem.get(f"{ns_draw}mime-type")
                        if mime_type is None or mime_type == "None":
                            mime_type = self._detect_image_mime_type(image_data)
                        ext = self._image_mime_type_to_ext(mime_type)

                        image_counter += 1
                        image_path = f"Pictures/image{image_counter}.{ext}"
                        image_parts[image_path] = image_data

                        img_elem.remove(binary_data_elem)
                        img_elem.set(f"{xlink_ns}href", image_path)
                        img_elem.set(f"{xlink_ns}type", "simple")
                        img_elem.set(f"{xlink_ns}show", "embed")
                        img_elem.set(f"{xlink_ns}actuate", "onLoad")
                    except Exception as e:
                        printwarn(f"Failed to decode embedded image: {e}")

        return image_counter

    def _process_fill_images(
        self,
        content_root: Element,
        styles_root: Element,
        image_parts: dict[str, bytes],
        image_counter: int,
        xlink_ns: str,
    ) -> int:
        """Process draw:fill-image elements with office:binary-data.

        Returns:
            The updated image counter.
        """
        xpath_fill_expr = xpath_compile(
            "descendant::draw:fill-image[office:binary-data]"
        )

        for root_elem in (content_root, styles_root):
            for fill_img_elem in xpath_fill_expr(root_elem):
                binary_data_elem = fill_img_elem.find(_ns_tag("binary-data"))
                if binary_data_elem is None or not binary_data_elem.text:
                    continue
                try:
                    image_data = base64.standard_b64decode(
                        binary_data_elem.text.strip()
                    )
                    mime_type = self._detect_image_mime_type(image_data)
                    ext = self._image_mime_type_to_ext(mime_type)

                    image_counter += 1
                    image_path = f"Pictures/image{image_counter}.{ext}"
                    image_parts[image_path] = image_data

                    fill_img_elem.remove(binary_data_elem)
                    fill_img_elem.set(f"{xlink_ns}href", image_path)
                    fill_img_elem.set(f"{xlink_ns}type", "simple")
                except Exception as e:
                    printwarn(f"Failed to decode embedded fill image: {e}")

        return image_counter

    def _process_embedded_objects(self, content_root: Element, xlink_ns: str) -> None:
        """Process draw:object elements with embedded content."""
        object_counter = 0
        xpath_obj_expr = xpath_compile("descendant::draw:object[office:document]")

        for obj_elem in xpath_obj_expr(content_root):
            try:
                object_counter += 1
                obj_path = f"Object {object_counter}"

                doc_wrapper = obj_elem.find(_ns_tag("document"))
                # Can not happen: XPath already filters for objects with document
                if doc_wrapper is None:  # pragma: no cover
                    continue

                # Create object content.xml from body
                body_elem = doc_wrapper.find(_ns_tag("body"))
                if body_elem is not None:
                    content_root_elem = Element(
                        _ns_tag("document-content"),
                        nsmap={"office": NS_OFFICE},
                    )
                    content_root_elem.set(_ns_tag("version"), OFFICE_VERSION)
                    for child in list(body_elem):
                        content_root_elem.append(child)

                    obj_content_xml = XML_TAG + tostring(
                        content_root_elem, encoding="UTF-8", xml_declaration=False
                    )
                    self.__parts[f"{obj_path}/content.xml"] = obj_content_xml

                # Extract styles
                auto_styles = doc_wrapper.find(_ns_tag("automatic-styles"))
                if auto_styles is not None:
                    styles_root_elem = Element(
                        _ns_tag("document-styles"),
                        nsmap={
                            "office": NS_OFFICE,
                            "style": "urn:oasis:names:tc:opendocument:xmlns:style:1.0",
                        },
                    )
                    styles_root_elem.set(_ns_tag("version"), OFFICE_VERSION)
                    styles_root_elem.append(auto_styles)

                    obj_styles_xml = XML_TAG + tostring(
                        styles_root_elem, encoding="UTF-8", xml_declaration=False
                    )
                    self.__parts[f"{obj_path}/styles.xml"] = obj_styles_xml

                # Extract meta
                meta_elem = doc_wrapper.find(_ns_tag("meta"))
                if meta_elem is not None:
                    meta_root_elem = Element(
                        _ns_tag("document-meta"),
                        nsmap={
                            "office": NS_OFFICE,
                            "meta": "urn:oasis:names:tc:opendocument:xmlns:meta:1.0",
                        },
                    )
                    meta_root_elem.set(_ns_tag("version"), OFFICE_VERSION)
                    for child in list(meta_elem):
                        meta_root_elem.append(child)

                    obj_meta_xml = XML_TAG + tostring(
                        meta_root_elem, encoding="UTF-8", xml_declaration=False
                    )
                    self.__parts[f"{obj_path}/meta.xml"] = obj_meta_xml

                # Replace the embedded object with a reference
                for child in list(obj_elem):
                    obj_elem.remove(child)
                obj_elem.set(f"{xlink_ns}href", f"./{obj_path}")
                obj_elem.set(f"{xlink_ns}type", "simple")
                obj_elem.set(f"{xlink_ns}show", "embed")
                obj_elem.set(f"{xlink_ns}actuate", "onLoad")

            except Exception as e:
                printwarn(f"Failed to extract embedded object: {e}")

    def _process_form_images(
        self, content_root: Element, image_parts: dict[str, bytes]
    ) -> None:
        """Process form elements with embedded image data."""
        ns_form = "{urn:oasis:names:tc:opendocument:xmlns:form:1.0}"
        xpath_form_img = xpath_compile("descendant::form:*[office:binary-data]")
        image_counter = 0

        for form_elem in xpath_form_img(content_root):
            binary_data_elem = form_elem.find(_ns_tag("binary-data"))
            if binary_data_elem is None or not binary_data_elem.text:
                continue
            try:
                image_data = base64.standard_b64decode(binary_data_elem.text.strip())
                mime_type = self._detect_image_mime_type(image_data)
                ext = self._image_mime_type_to_ext(mime_type)

                image_counter += 1
                image_path = f"Pictures/image{image_counter}.{ext}"
                image_parts[image_path] = image_data

                form_elem.remove(binary_data_elem)
                form_elem.set(f"{ns_form}image-data", image_path)
            except Exception as e:
                printwarn(f"Failed to decode embedded form image: {e}")

    def _serialize_documents(self, content_root: Element, styles_root: Element) -> None:
        """Serialize content.xml and styles.xml."""
        if len(content_root) > 0:
            content_xml = XML_TAG + tostring(
                content_root, encoding="UTF-8", xml_declaration=False
            )
            self.__parts[ODF_CONTENT] = content_xml

        if len(styles_root) > 0:
            styles_xml = XML_TAG + tostring(
                styles_root, encoding="UTF-8", xml_declaration=False
            )
            self.__parts[ODF_STYLES] = styles_xml

    def _create_manifest(self) -> None:
        """Create the META-INF/manifest.xml from current parts."""
        manifest_parts = [
            XML_TAG,
            b'<manifest:manifest xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0">\n',
        ]

        # Add mimetype entry
        mimetype = (
            self.__parts.get("mimetype") or b"application/vnd.oasis.opendocument.text"
        )

        manifest_parts.append(
            f'<manifest:file-entry manifest:media-type="{mimetype.decode()}" manifest:full-path="/"/>\n'.encode()
        )

        # Add entries for each part
        for path, data in self.__parts.items():
            if data is None or path == "mimetype":
                continue
            # Determine media type based on path
            media_type = self._suffix_to_mime_type(Path(path).suffix)
            manifest_parts.append(
                f'<manifest:file-entry manifest:media-type="{media_type}" manifest:full-path="{path}"/>\n'.encode()
            )

        manifest_parts.append(b"</manifest:manifest>")
        self.__parts[ODF_MANIFEST] = b"".join(manifest_parts)

    def _parse_folder(self, folder: str) -> list[str]:
        parts = []
        if self.path is None:
            raise ValueError("Document path is not defined")
        root = self.path / folder
        for path in root.iterdir():
            if path.name.startswith("."):  # no hidden files
                continue
            relative_path = path.relative_to(self.path)
            if path.is_file():
                parts.append(relative_path.as_posix())
            if path.is_dir():
                sub_parts = self._parse_folder(str(relative_path))
                if sub_parts:
                    parts.extend(sub_parts)
                else:
                    # store leaf directories
                    parts.append(relative_path.as_posix() + "/")
        return parts

    def _get_folder_parts(self) -> list[str]:
        """Get the list of members in the ODF folder."""
        return self._parse_folder("")

    def _get_folder_part(self, name: str) -> tuple[bytes, int]:
        """Get bytes of a part from the ODF folder, with timestamp."""
        if self.path is None:
            raise ValueError("Document path is not defined")
        path = self.path / name
        timestamp = int(path.stat().st_mtime)
        if path.is_dir():
            return (b"", timestamp)
        return (path.read_bytes(), timestamp)

    def _get_folder_part_timestamp(self, name: str) -> int:
        if self.path is None:
            raise ValueError("Document path is not defined")
        path = self.path / name
        try:
            timestamp = int(path.stat().st_mtime)
        except OSError:
            timestamp = -1
        return timestamp

    def _get_zip_part(self, name: str) -> bytes | None:
        """Get bytes of a part from the Zip ODF file.

        No cache.
        """
        if self.path is None:
            raise ValueError("Document path is not defined")
        try:
            with ZipFile(self.path) as zf:
                upath = normalize_path(name)
                self.__parts[upath] = zf.read(name)
                return self.__parts[upath]
        except BadZipfile:
            return None

    def _get_all_zip_part(self) -> None:
        """Read all parts.

        No cache.
        """
        if self.path is None:
            raise ValueError("Document path is not defined")
        try:
            with ZipFile(self.path) as zf:
                for name in zf.namelist():
                    upath = normalize_path(name)
                    self.__parts[upath] = zf.read(name)
        except BadZipfile:
            pass

    def _save_zip(self, target: str | Path | io.BytesIO) -> None:
        """Save a Zip ODF from the available parts."""
        parts = self.__parts
        with ZipFile(target, "w", compression=ZIP_DEFLATED) as filezip:
            # Parts to save, except manifest at the end
            part_names = list(parts.keys())
            try:
                part_names.remove(ODF_MANIFEST)
            except ValueError:
                printwarn(f"Missing '{ODF_MANIFEST}'")
            # "Pretty-save" parts in some order
            # mimetype requires to be first and uncompressed
            mimetype = parts.get("mimetype")
            if mimetype is None:
                raise ValueError("Mimetype is not defined")
            try:
                filezip.writestr("mimetype", mimetype, ZIP_STORED)
                part_names.remove("mimetype")
            except (
                ValueError,
                KeyError,
            ):
                printwarn("Missing 'mimetype'")
            # XML parts
            for path in ODF_CONTENT, ODF_META, ODF_SETTINGS, ODF_STYLES:
                if path not in parts:
                    printwarn(f"Missing '{path}'")
                    continue
                part = parts[path]
                if part is None:
                    continue
                filezip.writestr(path, part)
                part_names.remove(path)
            # Everything else
            for path in part_names:
                data = parts[path]
                if data is None:
                    # Deleted
                    continue
                filezip.writestr(path, data)
            with contextlib.suppress(KeyError):
                part = parts[ODF_MANIFEST]
                if part is not None:
                    filezip.writestr(ODF_MANIFEST, part)

    def _save_folder(self, folder: Path | str) -> None:
        """Save a folder ODF from the available parts."""

        def dump(part_path: str, content: bytes) -> None:
            if part_path.endswith("/"):  # folder
                is_folder = True
                pure_path = PurePath(folder, part_path[:-1])
            else:
                is_folder = False
                pure_path = PurePath(folder, part_path)
            path = Path(pure_path)
            if is_folder:
                path.mkdir(parents=True, exist_ok=True)
            else:
                path.parent.mkdir(parents=True, exist_ok=True)
                path.write_bytes(content)
                path.chmod(0o666)

        for part_path, data in self.__parts.items():
            if data is None:
                # Deleted
                continue
            dump(part_path, data)

    def _encoded_image(self, elem: _Element) -> _Element | None:
        mime_type = elem.get(
            "{urn:oasis:names:tc:opendocument:xmlns:drawing:1.0}mime-type"
        )
        path = elem.get("{http://www.w3.org/1999/xlink}href")
        if not path:
            return None
        path = path.lstrip("./")
        content = self.__parts[path]
        if not content:
            return None
        text = base64.standard_b64encode(content).decode()
        # Only include mime-type attribute if it's a valid value
        if mime_type and mime_type != "None":
            ebytes = (
                f'<draw:image draw:mime-type="{mime_type}">'
                f"<office:binary-data>{text}\n</office:binary-data></draw:image>"
            ).encode()
        else:
            ebytes = (
                f"<draw:image>"
                f"<office:binary-data>{text}\n</office:binary-data></draw:image>"
            ).encode()
        root = fromstring(NAMESPACES_XML % ebytes)
        return root[0]

    def _embed_form_image_data(self, elem: _Element, image_path: str) -> None:
        """Embed image data for form elements with form:image-data attribute.

        Form elements (like image buttons) reference images via form:image-data
        attribute. We need to embed the image as base64 and replace the
        attribute reference with the embedded data.
        """
        # Strip leading "./" from path
        path = image_path.lstrip("./")
        content = self.__parts.get(path)
        if not content:
            return

        # Encode the image as base64
        text = base64.standard_b64encode(content).decode()

        # Create the office:binary-data element
        binary_data_elem = Element(_ns_tag("binary-data"))
        binary_data_elem.text = text + "\n"

        # Append the binary-data element to the form element
        elem.append(binary_data_elem)

    def _encoded_fill_image(self, elem: _Element) -> _Element | None:
        """Encode a draw:fill-image element with binary data.

        draw:fill-image elements reference images via xlink:href and are used
        for background images in presentations.
        """
        path = elem.get("{http://www.w3.org/1999/xlink}href")
        if not path:
            return None
        # Strip leading "./" from path (e.g., "./Pictures/image.jpg")
        path = path.lstrip("./")
        content = self.__parts[path]
        if not content:
            return None
        # mime_type = self._suffix_to_mime_type(Path(path).suffix, "image/jpeg")
        name = elem.get("{urn:oasis:names:tc:opendocument:xmlns:drawing:1.0}name")
        display_name = elem.get(
            "{urn:oasis:names:tc:opendocument:xmlns:drawing:1.0}display-name"
        )
        text = base64.standard_b64encode(content).decode()
        # Build the element with preserved attributes
        attrs = []
        if name:
            attrs.append(f'draw:name="{name}"')
        if display_name:
            attrs.append(f'draw:display-name="{display_name}"')
        attr_str = " ".join(attrs)
        if attr_str:
            attr_str = " " + attr_str
        ebytes = (
            f"<draw:fill-image{attr_str}>"
            f"<office:binary-data>{text}\n</office:binary-data></draw:fill-image>"
        ).encode()
        root = fromstring(NAMESPACES_XML % ebytes)
        return root[0]

    def _encoded_object(self, elem: _Element) -> _Element | None:
        """Encode a draw:object element by embedding the object content.

        draw:object elements reference embedded ODF objects (like charts)
        via xlink:href. In flat format, we need to embed the object content
        directly as an office:document structure.
        """
        path = elem.get("{http://www.w3.org/1999/xlink}href")
        if not path:
            return None
        # Strip leading "./" from path (e.g., "./Object 1")
        path = path.lstrip("./")

        # Check if we have parts for this object (Object 1/content.xml, etc.)
        content_path = f"{path}/content.xml"
        styles_path = f"{path}/styles.xml"
        meta_path = f"{path}/meta.xml"

        # If we don't have the object parts, return None to keep original reference
        if content_path not in self.__parts:
            return None

        # Parse the content.xml
        try:
            content_doc = fromstring(self.__parts[content_path])
        except Exception:
            return None

        # Create a new office:document element with the same namespace map
        # This preserves all namespace declarations from the original
        obj_doc = Element(_ns_tag("document"), nsmap=content_doc.nsmap)

        # Add required office:document attributes
        obj_doc.set(_ns_tag("mimetype"), "application/vnd.oasis.opendocument.chart")
        obj_doc.set(_ns_tag("version"), OFFICE_VERSION)

        # Force all namespace declarations by adding dummy attributes
        # lxml optimizes away namespace declarations if they're already in scope
        # We add them with a unique suffix to prevent optimization
        for prefix, uri in content_doc.nsmap.items():
            if prefix and prefix != "office":
                # Use a special attribute that won't conflict with real ones
                dummy_attr = f"{{{uri}}}__{prefix}__decl"
                obj_doc.set(dummy_attr, "")

        # Add meta if available
        if self.__parts.get(meta_path):
            try:
                meta_root = fromstring(self.__parts[meta_path])
                for child in meta_root:
                    obj_doc.append(child)
            except Exception as e:
                printwarn(f"Error in meta {e}")

        # Add empty styles (objects often don't have separate styles)
        styles_elem = Element(_ns_tag("styles"))
        obj_doc.append(styles_elem)

        # Add automatic-styles from styles.xml if available
        if self.__parts.get(styles_path):
            try:
                styles_root = fromstring(self.__parts[styles_path])
                auto_styles = styles_root.find(_ns_tag("automatic-styles"))
                if auto_styles is not None:
                    obj_doc.append(auto_styles)
            except Exception as e:
                printwarn(f"Error in styles path {e}")

        # Extract automatic-styles from content and add to obj_doc
        content_auto_styles = content_doc.find(_ns_tag("automatic-styles"))
        if content_auto_styles is not None:
            obj_doc.append(content_auto_styles)

        # Add body with content from content.xml
        body_elem = Element(_ns_tag("body"))
        content_body = content_doc.find(_ns_tag("body"))
        if content_body is not None:
            for child in content_body:
                body_elem.append(child)
        else:
            # If no office:body, add all children except automatic-styles
            for child in content_doc:
                if child.tag != _ns_tag("automatic-styles"):
                    body_elem.append(child)
        obj_doc.append(body_elem)

        # Create the draw:object element with the embedded content
        # To preserve namespace declarations, we need to serialize and re-parse
        # because lxml optimizes them away when appending to parent
        new_obj = Element("{urn:oasis:names:tc:opendocument:xmlns:drawing:1.0}object")

        # Serialize the embedded document to a string
        obj_doc_str = tostring(obj_doc, encoding="unicode", pretty_print=False)

        # Parse it back and append to new_obj
        # This preserves the namespace declarations from the original serialization
        obj_doc_parsed = fromstring(obj_doc_str.encode("utf-8"))
        new_obj.append(obj_doc_parsed)

        return new_obj

    def _xml_content(self, pretty: bool = True) -> bytes:
        mimetype_b = self.__parts["mimetype"]
        if mimetype_b is None:
            # use some default
            mimetype = "application/vnd.oasis.opendocument.text"
        else:
            mimetype = mimetype_b.decode("utf8")
        doc_xml = (
            OFFICE_PREFIX.decode("utf8")
            + f'office:version="{OFFICE_VERSION}"\n'
            + f'office:mimetype="{mimetype}">'
            + "</office:document>"
        )
        root = fromstring(doc_xml.encode("utf8"))
        for path in ODF_META, ODF_SETTINGS, ODF_STYLES, ODF_CONTENT:
            if path not in self.__parts:
                printwarn(f"Missing '{path}'")
                continue
            part = self.__parts[path]
            if part is None:
                continue
            if isinstance(part, bytes):
                xpart = fromstring(part)
            else:
                xpart = part
            if path in {ODF_CONTENT, ODF_STYLES}:
                # Process draw:image elements (both content and styles)
                xpath = xpath_compile("descendant::draw:image")
                images = xpath(xpart)
                if images:
                    for elem in images:
                        encoded = self._encoded_image(elem)
                        if encoded is not None:
                            elem.getparent().replace(elem, encoded)
                # Process draw:fill-image elements (used for background images in presentations)
                xpath_fill = xpath_compile("descendant::draw:fill-image")
                fill_images = xpath_fill(xpart)
                if fill_images:
                    for elem in fill_images:
                        encoded = self._encoded_fill_image(elem)
                        if encoded is not None:
                            elem.getparent().replace(elem, encoded)
                # Process draw:object elements (embedded objects like charts)
                if path == ODF_CONTENT:
                    xpath_obj = xpath_compile("descendant::draw:object")
                    objects = xpath_obj(xpart)
                    if objects:
                        for elem in objects:
                            encoded = self._encoded_object(elem)
                            if encoded is not None:
                                elem.getparent().replace(elem, encoded)
                    # Process form elements with form:image-data attribute
                    # (used for form control images like buttons with images)
                    ns_form = "{urn:oasis:names:tc:opendocument:xmlns:form:1.0}"
                    xpath_form = xpath_compile("descendant::form:*[@form:image-data]")
                    form_elems = xpath_form(xpart)
                    if form_elems:
                        for elem in form_elems:
                            image_path = elem.get(f"{ns_form}image-data")
                            if image_path:
                                self._embed_form_image_data(elem, image_path)
            for child in xpart:
                root.append(child)
        if pretty:
            bytes_tree: bytes = tostring(
                pretty_indent(root),
                encoding="unicode",
            ).encode("utf8")
            return XML_TAG + bytes_tree
        else:
            return tostring(  # type: ignore[no-any-return]
                root,
                encoding="UTF-8",
                xml_declaration=True,
            )

    def _save_xml(
        self,
        target: Path | str | io.BytesIO,
        pretty: bool = True,
    ) -> None:
        """Save a XML flat ODF format from the available parts."""
        if isinstance(target, (Path, str)):
            target_path = Path(target)
            # Preserve Flat ODF extension is exists, default to .xml
            if target_path.suffix.lower() not in ODF_FLAT_EXTENSIONS:
                target_path = target_path.with_suffix(".xml")
            target_path.write_bytes(self._xml_content(pretty))
        else:
            target.write(self._xml_content(pretty))

    # Public API

    def get_parts(self) -> list[str]:
        """Get the list of the parts in the Container.

        Returns:
            The list of path of the parts in the Container.
        """
        if not self.path:
            # maybe a file like zip archive or xml
            return list(self.__parts.keys())
        if self.__packaging == ZIP:
            parts = []
            with ZipFile(self.path) as zf:
                for name in zf.namelist():
                    upath = normalize_path(name)
                    parts.append(upath)
            return parts
        elif self.__packaging == FOLDER:
            return self._get_folder_parts()
        elif self.__packaging == XML:
            # For flat XML, parts are stored in memory
            return list(self.__parts.keys())
        else:
            raise ValueError("Unable to provide parts of the document")

    @property
    def parts(self) -> list[str]:
        """Get the list of the parts in the Container.

        Returns:
            The list of path of the parts in the Container.
        """
        return self.get_parts()

    def get_part(self, path: str) -> str | bytes | None:
        """Get the actual content of a part of the ODF Container.

        Args:
            path: path of the required part.

        Returns:
            The actual content of the part.
        """
        path = str(path)
        if path in self.__parts:
            part = self.__parts[path]
            if part is None:
                raise ValueError(f'Part "{path}" is deleted')
            if self.__packaging == FOLDER:
                cache_ts = self.__parts_ts.get(path, -1)
                current_ts = self._get_folder_part_timestamp(path)
                if current_ts != cache_ts:
                    part, timestamp = self._get_folder_part(path)
                    self.__parts[path] = part
                    self.__parts_ts[path] = timestamp
            return part
        if self.__packaging == ZIP:
            return self._get_zip_part(path)
        if self.__packaging == FOLDER:
            part, timestamp = self._get_folder_part(path)
            self.__parts[path] = part
            self.__parts_ts[path] = timestamp
            return part
        return None

    @property
    def default_manifest_rdf(self) -> str:
        return (
            '<?xml version="1.0" encoding="utf-8"?>\n'
            '<rdf:RDF xmlns:rdf="http://www.w3.org/'
            '1999/02/22-rdf-syntax-ns#">\n'
            '  <rdf:Description rdf:about="styles.xml">\n'
            '    <rdf:type rdf:resource="http://docs.oasis-open.org/'
            f'ns/office/{OFFICE_VERSION}/meta/odf#StylesFile"/>\n'
            "  </rdf:Description>\n"
            '  <rdf:Description rdf:about="">\n'
            '    <ns0:hasPart xmlns:ns0="http://docs.oasis-open.org/ns/'
            f'office/{OFFICE_VERSION}/meta/pkg#" rdf:resource="styles.xml"/>\n'
            "  </rdf:Description>\n"
            '  <rdf:Description rdf:about="content.xml">\n'
            '    <rdf:type rdf:resource="http://docs.oasis-open.org/'
            f'ns/office/{OFFICE_VERSION}/meta/odf#ContentFile"/>\n'
            "  </rdf:Description>\n"
            '  <rdf:Description rdf:about="">\n'
            '    <ns0:hasPart xmlns:ns0="http://docs.oasis-open.org/ns/office'
            f'/{OFFICE_VERSION}/meta/pkg#" rdf:resource="content.xml"/>\n'
            "  </rdf:Description>\n"
            '  <rdf:Description rdf:about="">\n'
            '    <rdf:type rdf:resource="http://docs.oasis-open.org/ns/office'
            f'/{OFFICE_VERSION}/meta/pkg#Document"/>\n'
            "  </rdf:Description>\n"
            "</rdf:RDF>\n"
        )

    @property
    def mimetype(self) -> str:
        """Return str value of mimetype of the document."""
        with contextlib.suppress(Exception):
            b_mimetype = self.get_part("mimetype")
            if isinstance(b_mimetype, bytes):
                return bytes_to_str(b_mimetype)
        return ""

    @mimetype.setter
    def mimetype(self, mimetype: str | bytes) -> None:
        """Set mimetype value of the document."""
        if isinstance(mimetype, str):
            self.__parts["mimetype"] = str_to_bytes(mimetype)
        elif isinstance(mimetype, bytes):
            self.__parts["mimetype"] = mimetype
        else:
            raise TypeError(f'Wrong mimetype "{mimetype!r}"')

    def set_part(self, path: str, data: bytes) -> None:
        """Replace or add a new part.

        Args:
            path: The relative path in the Container.
            data: Content of the part.
        """
        self.__parts[path] = data

    def del_part(self, path: str) -> None:
        """Mark a part for deletion.

        Args:
            path: The relative path in the Container.
        """
        self.__parts[path] = None

    @property
    def clone(self) -> Container:
        """Make a copy of this container with no path."""
        if self.path and self.__packaging == ZIP:
            self._get_all_zip_part()
        clone = deepcopy(self)
        clone.path = None
        return clone

    def _backup_or_unlink(self, backup: bool, target: str | Path) -> None:
        if backup:
            self._do_backup(target)
        else:
            self._do_unlink(target)

    @staticmethod
    def _do_backup(target: str | Path) -> None:
        path = Path(target)
        if not path.exists():
            return
        back_file = path.parent / (path.stem + ".backup" + path.suffix)
        if back_file.is_dir():
            try:
                shutil.rmtree(back_file)
            except OSError as e:
                printwarn(str(e))
        try:
            shutil.move(target, back_file)
        except OSError as e:
            printwarn(str(e))

    @staticmethod
    def _do_unlink(target: str | Path) -> None:
        path = Path(target)
        if path.exists():
            try:
                shutil.rmtree(path)
            except OSError as e:
                printwarn(str(e))

    def _clean_save_packaging(self, packaging: str | None) -> str:
        if not packaging:
            packaging = self.__packaging if self.__packaging else ZIP
        packaging = packaging.strip().lower()
        if packaging not in PACKAGING:
            msg = f'Packaging of type "{packaging}" is not supported'
            raise ValueError(msg)
        return packaging

    def _clean_save_target(
        self,
        target: str | Path | io.BytesIO | None,
    ) -> str | io.BytesIO:
        if target is None:
            target = self.path
        if isinstance(target, Path):
            target = str(target)
        if isinstance(target, str):
            while target.endswith(os.sep):
                target = target[:-1]
            while target.endswith(".folder"):
                target = target.split(".folder", 1)[0]
        return target  # type: ignore

    def _save_as_zip(
        self,
        target: str | Path | io.BytesIO,
        backup: bool,
    ) -> None:
        if isinstance(target, (str, Path)) and backup:
            self._do_backup(target)
        self._save_zip(target)

    def _save_as_folder(self, target: str | Path, backup: bool) -> None:
        if not isinstance(target, (str, Path)):
            raise TypeError(
                f"Saving in folder format requires a folder name, not '{target!r}'"
            )
        if not str(target).endswith(".folder"):
            target = str(target) + ".folder"
        self._backup_or_unlink(backup, target)
        self._save_folder(target)

    def _save_as_xml(
        self,
        target: str | Path | io.BytesIO,
        backup: bool,
        pretty: bool = True,
    ) -> None:
        if not isinstance(target, (str, Path, io.BytesIO)):
            raise TypeError(
                f"Saving in XML format requires a path name, not '{target!r}'"
            )
        if isinstance(target, (str, Path)):
            target_path = Path(target)
            suffix = target_path.suffix.lower()
            if suffix not in ODF_FLAT_EXTENSIONS and suffix != ".xml":
                flat_ext = ODF_MIMETYPE_TO_FLAT_EXTENSION.get(self.mimetype, ".xml")
                target_path = target_path.with_suffix(flat_ext)
            if backup:
                self._do_backup(target_path)
            self._save_xml(target_path, pretty)
        else:
            self._save_xml(target, pretty)

    def save(
        self,
        target: str | Path | io.BytesIO | None,
        packaging: str | None = None,
        backup: bool = False,
        pretty: bool = False,
    ) -> None:
        """Save the container to the given target, a path or a file-like
        object.

        Package the output document in the same format than current document,
        unless "packaging" is different.

        Args:
            target: The path, file-like object, or Path object where the
                document will be saved.
            packaging: The packaging format to use. Can be 'zip', 'xml', or
                'folder'. If None, the current packaging is used.
            backup: If True, a backup of the original file is created.
            pretty: If True, the XML output will be pretty-printed.
        """
        parts = self.__parts
        packaging = self._clean_save_packaging(packaging)
        # Load parts else they will be considered deleted
        for path in self.parts:
            if path not in parts:
                self.get_part(path)
        target = self._clean_save_target(target)
        if packaging == FOLDER:
            if isinstance(target, io.BytesIO):
                msg = "Impossible to save on io.BytesIO with 'folder' packaging"
                raise TypeError(msg)
            self._save_as_folder(target, backup)
        elif packaging == XML:
            self._save_as_xml(target, backup, pretty)
        else:
            # default:
            self._save_as_zip(target, backup)

__packaging instance-attribute

__packaging: str = ZIP

__parts instance-attribute

__parts: dict[str, bytes | None] = {}

__parts_ts instance-attribute

__parts_ts: dict[str, int] = {}

__path_like instance-attribute

__path_like: Path | str | BytesIO | None = None

clone property

clone: Container

Make a copy of this container with no path.

default_manifest_rdf property

default_manifest_rdf: str

mimetype property writable

mimetype: str

Return str value of mimetype of the document.

parts property

parts: list[str]

Get the list of the parts in the Container.

Returns:

Type Description
list[str]

The list of path of the parts in the Container.

path instance-attribute

path: Path | None = None

__init__

__init__(path: Path | str | BytesIO | None = None) -> None

Storage of the ODF document, as zip or other format.

Parameters:

Name Type Description Default
path Path | str | BytesIO | None

The path to the ODF file, a file-like object, or None.

None
Source code in odfdo/container.py
289
290
291
292
293
294
295
296
297
298
299
300
301
def __init__(self, path: Path | str | io.BytesIO | None = None) -> None:
    """Storage of the ODF document, as zip or other format.

    Args:
        path: The path to the ODF file, a file-like object, or None.
    """
    self.__parts: dict[str, bytes | None] = {}
    self.__parts_ts: dict[str, int] = {}
    self.__path_like: Path | str | io.BytesIO | None = None
    self.__packaging: str = ZIP
    self.path: Path | None = None  # or Path
    if path:
        self.open(path)

__repr__

__repr__() -> str
Source code in odfdo/container.py
303
304
def __repr__(self) -> str:
    return f"<{self.__class__.__name__} type={self.mimetype} path={self.path}>"
_backup_or_unlink(backup: bool, target: str | Path) -> None
Source code in odfdo/container.py
1538
1539
1540
1541
1542
def _backup_or_unlink(self, backup: bool, target: str | Path) -> None:
    if backup:
        self._do_backup(target)
    else:
        self._do_unlink(target)

_clean_save_packaging

_clean_save_packaging(packaging: str | None) -> str
Source code in odfdo/container.py
1569
1570
1571
1572
1573
1574
1575
1576
def _clean_save_packaging(self, packaging: str | None) -> str:
    if not packaging:
        packaging = self.__packaging if self.__packaging else ZIP
    packaging = packaging.strip().lower()
    if packaging not in PACKAGING:
        msg = f'Packaging of type "{packaging}" is not supported'
        raise ValueError(msg)
    return packaging

_clean_save_target

_clean_save_target(
    target: str | Path | BytesIO | None,
) -> str | io.BytesIO
Source code in odfdo/container.py
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
def _clean_save_target(
    self,
    target: str | Path | io.BytesIO | None,
) -> str | io.BytesIO:
    if target is None:
        target = self.path
    if isinstance(target, Path):
        target = str(target)
    if isinstance(target, str):
        while target.endswith(os.sep):
            target = target[:-1]
        while target.endswith(".folder"):
            target = target.split(".folder", 1)[0]
    return target  # type: ignore

_collect_master_style_refs

_collect_master_style_refs(root: _Element) -> set[str]

Collect style names referenced from master-styles.

These styles (like header/footer paragraph styles) need to stay in styles.xml.

Parameters:

Name Type Description Default
root _Element

The root element of the parsed XML.

required

Returns:

Type Description
set[str]

Set of style names referenced from master-styles.

Source code in odfdo/container.py
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
def _collect_master_style_refs(self, root: _Element) -> set[str]:
    """Collect style names referenced from master-styles.

    These styles (like header/footer paragraph styles) need to stay in styles.xml.

    Args:
        root: The root element of the parsed XML.

    Returns:
        Set of style names referenced from master-styles.
    """
    ns_style = "{urn:oasis:names:tc:opendocument:xmlns:style:1.0}"
    ns_text = "{urn:oasis:names:tc:opendocument:xmlns:text:1.0}"
    ns_draw = "{urn:oasis:names:tc:opendocument:xmlns:drawing:1.0}"
    ns_presentation = "{urn:oasis:names:tc:opendocument:xmlns:presentation:1.0}"
    master_style_refs: set[str] = set()

    for child in root:
        if child.tag == _ns_tag("master-styles"):
            for elem in child.iter():
                style_ref = elem.get(f"{ns_text}style-name")
                if style_ref:
                    master_style_refs.add(style_ref)
                style_name = elem.get(f"{ns_style}name")
                if style_name:
                    master_style_refs.add(style_name)
                draw_style = elem.get(f"{ns_draw}style-name")
                if draw_style:
                    master_style_refs.add(draw_style)
                pres_style = elem.get(f"{ns_presentation}style-name")
                if pres_style:
                    master_style_refs.add(pres_style)

    return master_style_refs

_create_document_roots

_create_document_roots(
    original_nsmap: dict[str, str],
) -> tuple[Element, Element]

Create content and styles document roots.

Parameters:

Name Type Description Default
original_nsmap dict[str, str]

The original namespace map.

required

Returns:

Type Description
tuple[Element, Element]

Tuple of (content_root, styles_root).

Source code in odfdo/container.py
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
def _create_document_roots(
    self, original_nsmap: dict[str, str]
) -> tuple[Element, Element]:
    """Create content and styles document roots.

    Args:
        original_nsmap: The original namespace map.

    Returns:
        Tuple of (content_root, styles_root).
    """
    content_root = Element(_ns_tag("document-content"), nsmap=original_nsmap)
    content_root.set(_ns_tag("version"), OFFICE_VERSION)

    styles_root = Element(_ns_tag("document-styles"), nsmap=original_nsmap)
    styles_root.set(_ns_tag("version"), OFFICE_VERSION)

    return content_root, styles_root

_create_manifest

_create_manifest() -> None

Create the META-INF/manifest.xml from current parts.

Source code in odfdo/container.py
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
def _create_manifest(self) -> None:
    """Create the META-INF/manifest.xml from current parts."""
    manifest_parts = [
        XML_TAG,
        b'<manifest:manifest xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0">\n',
    ]

    # Add mimetype entry
    mimetype = (
        self.__parts.get("mimetype") or b"application/vnd.oasis.opendocument.text"
    )

    manifest_parts.append(
        f'<manifest:file-entry manifest:media-type="{mimetype.decode()}" manifest:full-path="/"/>\n'.encode()
    )

    # Add entries for each part
    for path, data in self.__parts.items():
        if data is None or path == "mimetype":
            continue
        # Determine media type based on path
        media_type = self._suffix_to_mime_type(Path(path).suffix)
        manifest_parts.append(
            f'<manifest:file-entry manifest:media-type="{media_type}" manifest:full-path="{path}"/>\n'.encode()
        )

    manifest_parts.append(b"</manifest:manifest>")
    self.__parts[ODF_MANIFEST] = b"".join(manifest_parts)

_detect_image_mime_type staticmethod

_detect_image_mime_type(data: bytes) -> str

Detect image mime type from file content.

Source code in odfdo/container.py
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
@staticmethod
def _detect_image_mime_type(data: bytes) -> str:
    """Detect image mime type from file content."""
    if data.startswith(b"\xff\xd8\xff"):
        return "image/jpeg"
    if data.startswith(b"\x89PNG\r\n\x1a\n"):
        return "image/png"
    if data.startswith(b"GIF87a") or data.startswith(b"GIF89a"):
        return "image/gif"
    if data.startswith(b"<?xml") or b"<svg" in data[:100]:
        return "image/svg+xml"
    if data.startswith(b"BM"):
        return "image/bmp"
    if data.startswith(b"RIFF") and data[8:12] == b"WEBP":
        return "image/webp"
    return "application/octet-stream"

_detect_mimetype_from_content

_detect_mimetype_from_content(root: _Element) -> str

Detect mimetype from body content when attribute is missing.

Parameters:

Name Type Description Default
root _Element

The root element of the parsed XML.

required

Returns:

Type Description
str

The detected mimetype string.

Source code in odfdo/container.py
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
def _detect_mimetype_from_content(self, root: _Element) -> str:
    """Detect mimetype from body content when attribute is missing.

    Args:
        root: The root element of the parsed XML.

    Returns:
        The detected mimetype string.
    """
    body = root.find(_ns_tag("body"))
    if body is not None:
        if body.find(_ns_tag("spreadsheet")) is not None:
            return ODF_EXTENSIONS["ods"]
        if body.find(_ns_tag("presentation")) is not None:
            return ODF_EXTENSIONS["odp"]
        if body.find(_ns_tag("drawing")) is not None:
            return ODF_EXTENSIONS["odg"]
        if body.find(_ns_tag("chart")) is not None:
            return ODF_EXTENSIONS["odc"]
        if body.find(_ns_tag("image")) is not None:
            return ODF_EXTENSIONS["odi"]
        if body.find(_ns_tag("formula")) is not None:
            return ODF_EXTENSIONS["odf"]
    return ODF_EXTENSIONS["odt"]

_detect_mimetype_from_folder

_detect_mimetype_from_folder() -> str | None

Detect mimetype by examining content.xml in folder.

Returns:

Type Description
str | None

The detected mimetype string or None if detection fails.

Source code in odfdo/container.py
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
def _detect_mimetype_from_folder(self) -> str | None:
    """Detect mimetype by examining content.xml in folder.

    Returns:
        The detected mimetype string or None if detection fails.
    """
    try:
        if self.path is None:
            return None
        content_path = self.path / "content.xml"
        if not content_path.exists():
            return None
        root = fromstring(content_path.read_bytes())
        return self._detect_mimetype_from_content(root)
    except Exception:
        return None

_distribute_elements

_distribute_elements(
    root: _Element,
    content_root: Element,
    styles_root: Element,
    master_style_refs: set[str],
) -> dict[str, bytes]

Distribute child elements to content or styles roots.

Parameters:

Name Type Description Default
root _Element

The root element of the parsed XML.

required
content_root Element

The content document root.

required
styles_root Element

The styles document root.

required
master_style_refs set[str]

Set of style names referenced from master-styles.

required

Returns:

Type Description
dict[str, bytes]

Dictionary of image parts.

Source code in odfdo/container.py
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
def _distribute_elements(
    self,
    root: _Element,
    content_root: Element,
    styles_root: Element,
    master_style_refs: set[str],
) -> dict[str, bytes]:
    """Distribute child elements to content or styles roots.

    Args:
        root: The root element of the parsed XML.
        content_root: The content document root.
        styles_root: The styles document root.
        master_style_refs: Set of style names referenced from master-styles.

    Returns:
        Dictionary of image parts.
    """
    ns_style = "{urn:oasis:names:tc:opendocument:xmlns:style:1.0}"
    image_parts: dict[str, bytes] = {}

    for child in root:
        tag = child.tag
        if tag == _ns_tag("meta"):
            self._process_meta_element(child)
        elif tag == _ns_tag("document-meta"):
            self._process_document_meta_element(child)
        elif tag == _ns_tag("settings"):
            self._process_settings_element(child)
        elif tag == _ns_tag("automatic-styles"):
            self._process_automatic_styles(
                child, content_root, styles_root, master_style_refs, ns_style
            )
        elif tag in {
            _ns_tag("styles"),
            _ns_tag("master-styles"),
            _ns_tag("font-face-decls"),
        }:
            self._merge_or_append_to_styles(child, styles_root)
        else:
            content_root.append(child)

    return image_parts

_do_backup staticmethod

_do_backup(target: str | Path) -> None
Source code in odfdo/container.py
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
@staticmethod
def _do_backup(target: str | Path) -> None:
    path = Path(target)
    if not path.exists():
        return
    back_file = path.parent / (path.stem + ".backup" + path.suffix)
    if back_file.is_dir():
        try:
            shutil.rmtree(back_file)
        except OSError as e:
            printwarn(str(e))
    try:
        shutil.move(target, back_file)
    except OSError as e:
        printwarn(str(e))
_do_unlink(target: str | Path) -> None
Source code in odfdo/container.py
1560
1561
1562
1563
1564
1565
1566
1567
@staticmethod
def _do_unlink(target: str | Path) -> None:
    path = Path(target)
    if path.exists():
        try:
            shutil.rmtree(path)
        except OSError as e:
            printwarn(str(e))

_embed_form_image_data

_embed_form_image_data(
    elem: _Element, image_path: str
) -> None

Embed image data for form elements with form:image-data attribute.

Form elements (like image buttons) reference images via form:image-data attribute. We need to embed the image as base64 and replace the attribute reference with the embedded data.

Source code in odfdo/container.py
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
def _embed_form_image_data(self, elem: _Element, image_path: str) -> None:
    """Embed image data for form elements with form:image-data attribute.

    Form elements (like image buttons) reference images via form:image-data
    attribute. We need to embed the image as base64 and replace the
    attribute reference with the embedded data.
    """
    # Strip leading "./" from path
    path = image_path.lstrip("./")
    content = self.__parts.get(path)
    if not content:
        return

    # Encode the image as base64
    text = base64.standard_b64encode(content).decode()

    # Create the office:binary-data element
    binary_data_elem = Element(_ns_tag("binary-data"))
    binary_data_elem.text = text + "\n"

    # Append the binary-data element to the form element
    elem.append(binary_data_elem)

_encoded_fill_image

_encoded_fill_image(elem: _Element) -> _Element | None

Encode a draw:fill-image element with binary data.

draw:fill-image elements reference images via xlink:href and are used for background images in presentations.

Source code in odfdo/container.py
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
def _encoded_fill_image(self, elem: _Element) -> _Element | None:
    """Encode a draw:fill-image element with binary data.

    draw:fill-image elements reference images via xlink:href and are used
    for background images in presentations.
    """
    path = elem.get("{http://www.w3.org/1999/xlink}href")
    if not path:
        return None
    # Strip leading "./" from path (e.g., "./Pictures/image.jpg")
    path = path.lstrip("./")
    content = self.__parts[path]
    if not content:
        return None
    # mime_type = self._suffix_to_mime_type(Path(path).suffix, "image/jpeg")
    name = elem.get("{urn:oasis:names:tc:opendocument:xmlns:drawing:1.0}name")
    display_name = elem.get(
        "{urn:oasis:names:tc:opendocument:xmlns:drawing:1.0}display-name"
    )
    text = base64.standard_b64encode(content).decode()
    # Build the element with preserved attributes
    attrs = []
    if name:
        attrs.append(f'draw:name="{name}"')
    if display_name:
        attrs.append(f'draw:display-name="{display_name}"')
    attr_str = " ".join(attrs)
    if attr_str:
        attr_str = " " + attr_str
    ebytes = (
        f"<draw:fill-image{attr_str}>"
        f"<office:binary-data>{text}\n</office:binary-data></draw:fill-image>"
    ).encode()
    root = fromstring(NAMESPACES_XML % ebytes)
    return root[0]

_encoded_image

_encoded_image(elem: _Element) -> _Element | None
Source code in odfdo/container.py
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
def _encoded_image(self, elem: _Element) -> _Element | None:
    mime_type = elem.get(
        "{urn:oasis:names:tc:opendocument:xmlns:drawing:1.0}mime-type"
    )
    path = elem.get("{http://www.w3.org/1999/xlink}href")
    if not path:
        return None
    path = path.lstrip("./")
    content = self.__parts[path]
    if not content:
        return None
    text = base64.standard_b64encode(content).decode()
    # Only include mime-type attribute if it's a valid value
    if mime_type and mime_type != "None":
        ebytes = (
            f'<draw:image draw:mime-type="{mime_type}">'
            f"<office:binary-data>{text}\n</office:binary-data></draw:image>"
        ).encode()
    else:
        ebytes = (
            f"<draw:image>"
            f"<office:binary-data>{text}\n</office:binary-data></draw:image>"
        ).encode()
    root = fromstring(NAMESPACES_XML % ebytes)
    return root[0]

_encoded_object

_encoded_object(elem: _Element) -> _Element | None

Encode a draw:object element by embedding the object content.

draw:object elements reference embedded ODF objects (like charts) via xlink:href. In flat format, we need to embed the object content directly as an office:document structure.

Source code in odfdo/container.py
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
def _encoded_object(self, elem: _Element) -> _Element | None:
    """Encode a draw:object element by embedding the object content.

    draw:object elements reference embedded ODF objects (like charts)
    via xlink:href. In flat format, we need to embed the object content
    directly as an office:document structure.
    """
    path = elem.get("{http://www.w3.org/1999/xlink}href")
    if not path:
        return None
    # Strip leading "./" from path (e.g., "./Object 1")
    path = path.lstrip("./")

    # Check if we have parts for this object (Object 1/content.xml, etc.)
    content_path = f"{path}/content.xml"
    styles_path = f"{path}/styles.xml"
    meta_path = f"{path}/meta.xml"

    # If we don't have the object parts, return None to keep original reference
    if content_path not in self.__parts:
        return None

    # Parse the content.xml
    try:
        content_doc = fromstring(self.__parts[content_path])
    except Exception:
        return None

    # Create a new office:document element with the same namespace map
    # This preserves all namespace declarations from the original
    obj_doc = Element(_ns_tag("document"), nsmap=content_doc.nsmap)

    # Add required office:document attributes
    obj_doc.set(_ns_tag("mimetype"), "application/vnd.oasis.opendocument.chart")
    obj_doc.set(_ns_tag("version"), OFFICE_VERSION)

    # Force all namespace declarations by adding dummy attributes
    # lxml optimizes away namespace declarations if they're already in scope
    # We add them with a unique suffix to prevent optimization
    for prefix, uri in content_doc.nsmap.items():
        if prefix and prefix != "office":
            # Use a special attribute that won't conflict with real ones
            dummy_attr = f"{{{uri}}}__{prefix}__decl"
            obj_doc.set(dummy_attr, "")

    # Add meta if available
    if self.__parts.get(meta_path):
        try:
            meta_root = fromstring(self.__parts[meta_path])
            for child in meta_root:
                obj_doc.append(child)
        except Exception as e:
            printwarn(f"Error in meta {e}")

    # Add empty styles (objects often don't have separate styles)
    styles_elem = Element(_ns_tag("styles"))
    obj_doc.append(styles_elem)

    # Add automatic-styles from styles.xml if available
    if self.__parts.get(styles_path):
        try:
            styles_root = fromstring(self.__parts[styles_path])
            auto_styles = styles_root.find(_ns_tag("automatic-styles"))
            if auto_styles is not None:
                obj_doc.append(auto_styles)
        except Exception as e:
            printwarn(f"Error in styles path {e}")

    # Extract automatic-styles from content and add to obj_doc
    content_auto_styles = content_doc.find(_ns_tag("automatic-styles"))
    if content_auto_styles is not None:
        obj_doc.append(content_auto_styles)

    # Add body with content from content.xml
    body_elem = Element(_ns_tag("body"))
    content_body = content_doc.find(_ns_tag("body"))
    if content_body is not None:
        for child in content_body:
            body_elem.append(child)
    else:
        # If no office:body, add all children except automatic-styles
        for child in content_doc:
            if child.tag != _ns_tag("automatic-styles"):
                body_elem.append(child)
    obj_doc.append(body_elem)

    # Create the draw:object element with the embedded content
    # To preserve namespace declarations, we need to serialize and re-parse
    # because lxml optimizes them away when appending to parent
    new_obj = Element("{urn:oasis:names:tc:opendocument:xmlns:drawing:1.0}object")

    # Serialize the embedded document to a string
    obj_doc_str = tostring(obj_doc, encoding="unicode", pretty_print=False)

    # Parse it back and append to new_obj
    # This preserves the namespace declarations from the original serialization
    obj_doc_parsed = fromstring(obj_doc_str.encode("utf-8"))
    new_obj.append(obj_doc_parsed)

    return new_obj

_extract_mimetype_and_namespaces

_extract_mimetype_and_namespaces(
    root: _Element,
) -> tuple[str, dict[str, str]]

Extract mimetype and namespaces from the root element.

Parameters:

Name Type Description Default
root _Element

The root element of the parsed XML.

required

Returns:

Type Description
tuple[str, dict[str, str]]

Tuple of (mimetype, original_nsmap).

Source code in odfdo/container.py
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
def _extract_mimetype_and_namespaces(
    self, root: _Element
) -> tuple[str, dict[str, str]]:
    """Extract mimetype and namespaces from the root element.

    Args:
        root: The root element of the parsed XML.

    Returns:
        Tuple of (mimetype, original_nsmap).
    """
    mimetype = root.get(_ns_tag("mimetype"))
    if mimetype is None:
        mimetype = self._detect_mimetype_from_content(root)
    # Filter out None keys (default namespace) and manifest namespace
    original_nsmap = {
        prefix: uri
        for prefix, uri in root.nsmap.items()
        if prefix is not None
        and uri != "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0"
    }
    return mimetype, original_nsmap

_get_all_zip_part

_get_all_zip_part() -> None

Read all parts.

No cache.

Source code in odfdo/container.py
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
def _get_all_zip_part(self) -> None:
    """Read all parts.

    No cache.
    """
    if self.path is None:
        raise ValueError("Document path is not defined")
    try:
        with ZipFile(self.path) as zf:
            for name in zf.namelist():
                upath = normalize_path(name)
                self.__parts[upath] = zf.read(name)
    except BadZipfile:
        pass

_get_folder_part

_get_folder_part(name: str) -> tuple[bytes, int]

Get bytes of a part from the ODF folder, with timestamp.

Source code in odfdo/container.py
1002
1003
1004
1005
1006
1007
1008
1009
1010
def _get_folder_part(self, name: str) -> tuple[bytes, int]:
    """Get bytes of a part from the ODF folder, with timestamp."""
    if self.path is None:
        raise ValueError("Document path is not defined")
    path = self.path / name
    timestamp = int(path.stat().st_mtime)
    if path.is_dir():
        return (b"", timestamp)
    return (path.read_bytes(), timestamp)

_get_folder_part_timestamp

_get_folder_part_timestamp(name: str) -> int
Source code in odfdo/container.py
1012
1013
1014
1015
1016
1017
1018
1019
1020
def _get_folder_part_timestamp(self, name: str) -> int:
    if self.path is None:
        raise ValueError("Document path is not defined")
    path = self.path / name
    try:
        timestamp = int(path.stat().st_mtime)
    except OSError:
        timestamp = -1
    return timestamp

_get_folder_parts

_get_folder_parts() -> list[str]

Get the list of members in the ODF folder.

Source code in odfdo/container.py
 998
 999
1000
def _get_folder_parts(self) -> list[str]:
    """Get the list of members in the ODF folder."""
    return self._parse_folder("")

_get_zip_part

_get_zip_part(name: str) -> bytes | None

Get bytes of a part from the Zip ODF file.

No cache.

Source code in odfdo/container.py
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
def _get_zip_part(self, name: str) -> bytes | None:
    """Get bytes of a part from the Zip ODF file.

    No cache.
    """
    if self.path is None:
        raise ValueError("Document path is not defined")
    try:
        with ZipFile(self.path) as zf:
            upath = normalize_path(name)
            self.__parts[upath] = zf.read(name)
            return self.__parts[upath]
    except BadZipfile:
        return None

_image_mime_type_to_ext staticmethod

_image_mime_type_to_ext(mime_type: str) -> str

Convert mime type to file extension.

Source code in odfdo/container.py
437
438
439
440
441
442
443
444
445
446
447
448
449
@staticmethod
def _image_mime_type_to_ext(mime_type: str) -> str:
    """Convert mime type to file extension."""
    mapping = {
        "image/jpeg": "jpg",
        "image/png": "png",
        "image/gif": "gif",
        "image/svg+xml": "svg",
        "image/bmp": "bmp",
        "image/webp": "webp",
        "image/tiff": "tiff",
    }
    return mapping.get(mime_type, "bin")

_is_flat_xml staticmethod

_is_flat_xml(content: bytes) -> bool

Check if content is a Flat ODF XML file.

Parameters:

Name Type Description Default
content bytes

The file content to check.

required

Returns:

Type Description
bool

True if the content appears to be a Flat ODF XML file.

Source code in odfdo/container.py
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
@staticmethod
def _is_flat_xml(content: bytes) -> bool:
    """Check if content is a Flat ODF XML file.

    Args:
        content: The file content to check.

    Returns:
        True if the content appears to be a Flat ODF XML file.
    """
    # Must start with XML declaration or be parseable XML
    if not content.strip():
        return False
    if not content.lstrip().startswith(b"<?xml"):
        return False
    # Quick check for office:document element
    if b"office:document" not in content:
        return False
    try:
        root = fromstring(content)
    except (
        XMLSyntaxError,
        ValueError,
        TypeError,
    ):
        return False
    if root.tag != _ns_tag("document"):
        return False
    # Check for office:mimetype attribute
    mimetype = root.get(_ns_tag("mimetype"))
    if mimetype in ODF_MIMETYPES:
        return True
    # And accept if it has office:body child
    return root.find(_ns_tag("body")) is not None

_merge_or_append_to_styles

_merge_or_append_to_styles(
    child: _Element, styles_root: Element
) -> None

Merge child into styles root or append if not exists.

Source code in odfdo/container.py
736
737
738
739
740
741
742
743
744
def _merge_or_append_to_styles(self, child: _Element, styles_root: Element) -> None:
    """Merge child into styles root or append if not exists."""
    tag = child.tag
    existing = styles_root.find(tag)
    if existing is not None:
        for grandchild in child:
            existing.append(grandchild)
    else:
        styles_root.append(child)

_parse_folder

_parse_folder(folder: str) -> list[str]
Source code in odfdo/container.py
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
def _parse_folder(self, folder: str) -> list[str]:
    parts = []
    if self.path is None:
        raise ValueError("Document path is not defined")
    root = self.path / folder
    for path in root.iterdir():
        if path.name.startswith("."):  # no hidden files
            continue
        relative_path = path.relative_to(self.path)
        if path.is_file():
            parts.append(relative_path.as_posix())
        if path.is_dir():
            sub_parts = self._parse_folder(str(relative_path))
            if sub_parts:
                parts.extend(sub_parts)
            else:
                # store leaf directories
                parts.append(relative_path.as_posix() + "/")
    return parts

_process_automatic_styles

_process_automatic_styles(
    auto_styles: _Element,
    content_root: Element,
    styles_root: Element,
    master_style_refs: set[str],
    ns_style: str,
) -> None

Distribute automatic-styles to content or styles roots.

  • Styles referenced from master-styles go to styles.xml
  • Page layouts go to styles.xml
  • Everything else goes to content.xml
Source code in odfdo/container.py
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
def _process_automatic_styles(
    self,
    auto_styles: _Element,
    content_root: Element,
    styles_root: Element,
    master_style_refs: set[str],
    ns_style: str,
) -> None:
    """Distribute automatic-styles to content or styles roots.

    - Styles referenced from master-styles go to styles.xml
    - Page layouts go to styles.xml
    - Everything else goes to content.xml
    """
    content_auto = content_root.find(_ns_tag("automatic-styles"))
    if content_auto is None:
        content_auto = Element(_ns_tag("automatic-styles"))
        content_root.insert(0, content_auto)

    styles_auto = styles_root.find(_ns_tag("automatic-styles"))
    if styles_auto is None:
        styles_auto = Element(_ns_tag("automatic-styles"))
        styles_root.append(styles_auto)

    for grandchild in auto_styles:
        tag_name = grandchild.tag.split("}")[-1]
        style_name = grandchild.get(f"{ns_style}name")
        is_page_layout = tag_name == "page-layout"
        is_master_style = style_name is not None and style_name in master_style_refs

        if is_page_layout or is_master_style:
            styles_auto.append(grandchild)
        else:
            content_auto.append(grandchild)

_process_document_meta_element

_process_document_meta_element(doc_meta: _Element) -> None

Process document-meta element (already wrapped) and store as meta.xml.

Source code in odfdo/container.py
682
683
684
685
def _process_document_meta_element(self, doc_meta: _Element) -> None:
    """Process document-meta element (already wrapped) and store as meta.xml."""
    meta_xml = XML_TAG + tostring(doc_meta, encoding="UTF-8", xml_declaration=False)
    self.__parts[ODF_META] = meta_xml

_process_embedded_images

_process_embedded_images(
    content_root: Element,
    styles_root: Element,
    image_parts: dict[str, bytes],
    xlink_ns: str,
) -> int

Process draw:image elements with office:binary-data.

Returns:

Type Description
int

The updated image counter.

Source code in odfdo/container.py
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
def _process_embedded_images(
    self,
    content_root: Element,
    styles_root: Element,
    image_parts: dict[str, bytes],
    xlink_ns: str,
) -> int:
    """Process draw:image elements with office:binary-data.

    Returns:
        The updated image counter.
    """
    ns_draw = "{urn:oasis:names:tc:opendocument:xmlns:drawing:1.0}"
    xpath_expr = xpath_compile("descendant::draw:image[office:binary-data]")
    image_counter = 0

    for root_elem in (content_root, styles_root):
        for img_elem in xpath_expr(root_elem):
            binary_data_elem = img_elem.find(_ns_tag("binary-data"))
            if binary_data_elem is not None and binary_data_elem.text:
                try:
                    image_data = base64.standard_b64decode(
                        binary_data_elem.text.strip()
                    )
                    mime_type = img_elem.get(f"{ns_draw}mime-type")
                    if mime_type is None or mime_type == "None":
                        mime_type = self._detect_image_mime_type(image_data)
                    ext = self._image_mime_type_to_ext(mime_type)

                    image_counter += 1
                    image_path = f"Pictures/image{image_counter}.{ext}"
                    image_parts[image_path] = image_data

                    img_elem.remove(binary_data_elem)
                    img_elem.set(f"{xlink_ns}href", image_path)
                    img_elem.set(f"{xlink_ns}type", "simple")
                    img_elem.set(f"{xlink_ns}show", "embed")
                    img_elem.set(f"{xlink_ns}actuate", "onLoad")
                except Exception as e:
                    printwarn(f"Failed to decode embedded image: {e}")

    return image_counter

_process_embedded_objects

_process_embedded_objects(
    content_root: Element, xlink_ns: str
) -> None

Process draw:object elements with embedded content.

Source code in odfdo/container.py
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
def _process_embedded_objects(self, content_root: Element, xlink_ns: str) -> None:
    """Process draw:object elements with embedded content."""
    object_counter = 0
    xpath_obj_expr = xpath_compile("descendant::draw:object[office:document]")

    for obj_elem in xpath_obj_expr(content_root):
        try:
            object_counter += 1
            obj_path = f"Object {object_counter}"

            doc_wrapper = obj_elem.find(_ns_tag("document"))
            # Can not happen: XPath already filters for objects with document
            if doc_wrapper is None:  # pragma: no cover
                continue

            # Create object content.xml from body
            body_elem = doc_wrapper.find(_ns_tag("body"))
            if body_elem is not None:
                content_root_elem = Element(
                    _ns_tag("document-content"),
                    nsmap={"office": NS_OFFICE},
                )
                content_root_elem.set(_ns_tag("version"), OFFICE_VERSION)
                for child in list(body_elem):
                    content_root_elem.append(child)

                obj_content_xml = XML_TAG + tostring(
                    content_root_elem, encoding="UTF-8", xml_declaration=False
                )
                self.__parts[f"{obj_path}/content.xml"] = obj_content_xml

            # Extract styles
            auto_styles = doc_wrapper.find(_ns_tag("automatic-styles"))
            if auto_styles is not None:
                styles_root_elem = Element(
                    _ns_tag("document-styles"),
                    nsmap={
                        "office": NS_OFFICE,
                        "style": "urn:oasis:names:tc:opendocument:xmlns:style:1.0",
                    },
                )
                styles_root_elem.set(_ns_tag("version"), OFFICE_VERSION)
                styles_root_elem.append(auto_styles)

                obj_styles_xml = XML_TAG + tostring(
                    styles_root_elem, encoding="UTF-8", xml_declaration=False
                )
                self.__parts[f"{obj_path}/styles.xml"] = obj_styles_xml

            # Extract meta
            meta_elem = doc_wrapper.find(_ns_tag("meta"))
            if meta_elem is not None:
                meta_root_elem = Element(
                    _ns_tag("document-meta"),
                    nsmap={
                        "office": NS_OFFICE,
                        "meta": "urn:oasis:names:tc:opendocument:xmlns:meta:1.0",
                    },
                )
                meta_root_elem.set(_ns_tag("version"), OFFICE_VERSION)
                for child in list(meta_elem):
                    meta_root_elem.append(child)

                obj_meta_xml = XML_TAG + tostring(
                    meta_root_elem, encoding="UTF-8", xml_declaration=False
                )
                self.__parts[f"{obj_path}/meta.xml"] = obj_meta_xml

            # Replace the embedded object with a reference
            for child in list(obj_elem):
                obj_elem.remove(child)
            obj_elem.set(f"{xlink_ns}href", f"./{obj_path}")
            obj_elem.set(f"{xlink_ns}type", "simple")
            obj_elem.set(f"{xlink_ns}show", "embed")
            obj_elem.set(f"{xlink_ns}actuate", "onLoad")

        except Exception as e:
            printwarn(f"Failed to extract embedded object: {e}")

_process_fill_images

_process_fill_images(
    content_root: Element,
    styles_root: Element,
    image_parts: dict[str, bytes],
    image_counter: int,
    xlink_ns: str,
) -> int

Process draw:fill-image elements with office:binary-data.

Returns:

Type Description
int

The updated image counter.

Source code in odfdo/container.py
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
def _process_fill_images(
    self,
    content_root: Element,
    styles_root: Element,
    image_parts: dict[str, bytes],
    image_counter: int,
    xlink_ns: str,
) -> int:
    """Process draw:fill-image elements with office:binary-data.

    Returns:
        The updated image counter.
    """
    xpath_fill_expr = xpath_compile(
        "descendant::draw:fill-image[office:binary-data]"
    )

    for root_elem in (content_root, styles_root):
        for fill_img_elem in xpath_fill_expr(root_elem):
            binary_data_elem = fill_img_elem.find(_ns_tag("binary-data"))
            if binary_data_elem is None or not binary_data_elem.text:
                continue
            try:
                image_data = base64.standard_b64decode(
                    binary_data_elem.text.strip()
                )
                mime_type = self._detect_image_mime_type(image_data)
                ext = self._image_mime_type_to_ext(mime_type)

                image_counter += 1
                image_path = f"Pictures/image{image_counter}.{ext}"
                image_parts[image_path] = image_data

                fill_img_elem.remove(binary_data_elem)
                fill_img_elem.set(f"{xlink_ns}href", image_path)
                fill_img_elem.set(f"{xlink_ns}type", "simple")
            except Exception as e:
                printwarn(f"Failed to decode embedded fill image: {e}")

    return image_counter

_process_form_images

_process_form_images(
    content_root: Element, image_parts: dict[str, bytes]
) -> None

Process form elements with embedded image data.

Source code in odfdo/container.py
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
def _process_form_images(
    self, content_root: Element, image_parts: dict[str, bytes]
) -> None:
    """Process form elements with embedded image data."""
    ns_form = "{urn:oasis:names:tc:opendocument:xmlns:form:1.0}"
    xpath_form_img = xpath_compile("descendant::form:*[office:binary-data]")
    image_counter = 0

    for form_elem in xpath_form_img(content_root):
        binary_data_elem = form_elem.find(_ns_tag("binary-data"))
        if binary_data_elem is None or not binary_data_elem.text:
            continue
        try:
            image_data = base64.standard_b64decode(binary_data_elem.text.strip())
            mime_type = self._detect_image_mime_type(image_data)
            ext = self._image_mime_type_to_ext(mime_type)

            image_counter += 1
            image_path = f"Pictures/image{image_counter}.{ext}"
            image_parts[image_path] = image_data

            form_elem.remove(binary_data_elem)
            form_elem.set(f"{ns_form}image-data", image_path)
        except Exception as e:
            printwarn(f"Failed to decode embedded form image: {e}")

_process_meta_element

_process_meta_element(meta: _Element) -> None

Process meta element and store as meta.xml.

Source code in odfdo/container.py
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
def _process_meta_element(self, meta: _Element) -> None:
    """Process meta element and store as meta.xml."""
    meta_root = Element(
        _ns_tag("document-meta"),
        nsmap={
            "office": NS_OFFICE,
            "meta": "urn:oasis:names:tc:opendocument:xmlns:meta:1.0",
            "dc": "http://purl.org/dc/elements/1.1/",
        },
    )
    meta_root.set(_ns_tag("version"), OFFICE_VERSION)
    meta_root.append(meta)
    meta_xml = XML_TAG + tostring(
        meta_root, encoding="UTF-8", xml_declaration=False
    )
    self.__parts[ODF_META] = meta_xml

_process_settings_element

_process_settings_element(settings: _Element) -> None

Process settings element and store as settings.xml.

Source code in odfdo/container.py
687
688
689
690
691
692
693
694
695
696
697
698
699
def _process_settings_element(self, settings: _Element) -> None:
    """Process settings element and store as settings.xml."""
    settings_xml = XML_TAG + (
        b"<office:document-settings xmlns:office="
        b'"urn:oasis:names:tc:opendocument:xmlns:office:1.0" '
        b'xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0">'
    )
    for settings_child in settings:
        settings_xml += tostring(
            settings_child, encoding="UTF-8", xml_declaration=False
        )
    settings_xml += b"</office:document-settings>"
    self.__parts[ODF_SETTINGS] = settings_xml

_read_folder

_read_folder() -> None
Source code in odfdo/container.py
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
def _read_folder(self) -> None:
    try:
        mimetype, timestamp = self._get_folder_part("mimetype")
    except OSError:
        msg = "Corrupted or not an OpenDocument folder (missing mimetype)"
        printwarn(msg)
        mimetype = b""
        timestamp = int(time.time())
    if bytes_to_str(mimetype) not in ODF_MIMETYPES:
        # Try to detect from content.xml if available
        detected = self._detect_mimetype_from_folder()
        if detected:
            msg = f"Document of unknown type {mimetype!r}, detected as {detected}."
            printwarn(msg)
            mimetype = str_to_bytes(detected)
        else:
            msg = f"Document of unknown type {mimetype!r}, try with ODF Text."
            printwarn(msg)
            mimetype = str_to_bytes(ODF_EXTENSIONS["odt"])
        self.__parts["mimetype"] = mimetype
        self.__parts_ts["mimetype"] = timestamp

_read_xml

_read_xml(content: bytes) -> None

Read a Flat ODF XML file and extract parts.

Parameters:

Name Type Description Default
content bytes

The XML content as bytes.

required
Source code in odfdo/container.py
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
def _read_xml(self, content: bytes) -> None:
    """Read a Flat ODF XML file and extract parts.

    Args:
        content: The XML content as bytes.
    """
    root = fromstring(content)
    mimetype, original_nsmap = self._extract_mimetype_and_namespaces(root)
    self.__parts["mimetype"] = str_to_bytes(mimetype)

    content_root, styles_root = self._create_document_roots(original_nsmap)
    master_style_refs = self._collect_master_style_refs(root)
    image_parts = self._distribute_elements(
        root, content_root, styles_root, master_style_refs
    )

    # Process embedded content
    xlink_ns = "{http://www.w3.org/1999/xlink}"
    image_counter = self._process_embedded_images(
        content_root, styles_root, image_parts, xlink_ns
    )
    image_counter = self._process_fill_images(
        content_root, styles_root, image_parts, image_counter, xlink_ns
    )
    self._process_embedded_objects(content_root, xlink_ns)
    self._process_form_images(content_root, image_parts)

    # Store image parts
    for path, data in image_parts.items():
        if path not in self.__parts:
            self.__parts[path] = data

    self._serialize_documents(content_root, styles_root)
    self._create_manifest()

_read_zip

_read_zip() -> None
Source code in odfdo/container.py
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
def _read_zip(self) -> None:
    if isinstance(self.__path_like, io.BytesIO):
        self.__path_like.seek(0)
    with ZipFile(self.__path_like) as zf:  # type: ignore
        mimetype = bytes_to_str(zf.read("mimetype"))
        if mimetype not in ODF_MIMETYPES:
            raise ValueError(f"Document of unknown type {mimetype}")
        self.__parts["mimetype"] = str_to_bytes(mimetype)
    if self.path is None:
        if isinstance(self.__path_like, io.BytesIO):
            self.__path_like.seek(0)
        # read the full file at once and forget file
        with ZipFile(self.__path_like) as zf:  # type: ignore
            for name in zf.namelist():
                upath = normalize_path(name)
                self.__parts[upath] = zf.read(name)
        self.__path_like = None

_save_as_folder

_save_as_folder(target: str | Path, backup: bool) -> None
Source code in odfdo/container.py
1602
1603
1604
1605
1606
1607
1608
1609
1610
def _save_as_folder(self, target: str | Path, backup: bool) -> None:
    if not isinstance(target, (str, Path)):
        raise TypeError(
            f"Saving in folder format requires a folder name, not '{target!r}'"
        )
    if not str(target).endswith(".folder"):
        target = str(target) + ".folder"
    self._backup_or_unlink(backup, target)
    self._save_folder(target)

_save_as_xml

_save_as_xml(
    target: str | Path | BytesIO,
    backup: bool,
    pretty: bool = True,
) -> None
Source code in odfdo/container.py
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
def _save_as_xml(
    self,
    target: str | Path | io.BytesIO,
    backup: bool,
    pretty: bool = True,
) -> None:
    if not isinstance(target, (str, Path, io.BytesIO)):
        raise TypeError(
            f"Saving in XML format requires a path name, not '{target!r}'"
        )
    if isinstance(target, (str, Path)):
        target_path = Path(target)
        suffix = target_path.suffix.lower()
        if suffix not in ODF_FLAT_EXTENSIONS and suffix != ".xml":
            flat_ext = ODF_MIMETYPE_TO_FLAT_EXTENSION.get(self.mimetype, ".xml")
            target_path = target_path.with_suffix(flat_ext)
        if backup:
            self._do_backup(target_path)
        self._save_xml(target_path, pretty)
    else:
        self._save_xml(target, pretty)

_save_as_zip

_save_as_zip(
    target: str | Path | BytesIO, backup: bool
) -> None
Source code in odfdo/container.py
1593
1594
1595
1596
1597
1598
1599
1600
def _save_as_zip(
    self,
    target: str | Path | io.BytesIO,
    backup: bool,
) -> None:
    if isinstance(target, (str, Path)) and backup:
        self._do_backup(target)
    self._save_zip(target)

_save_folder

_save_folder(folder: Path | str) -> None

Save a folder ODF from the available parts.

Source code in odfdo/container.py
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
def _save_folder(self, folder: Path | str) -> None:
    """Save a folder ODF from the available parts."""

    def dump(part_path: str, content: bytes) -> None:
        if part_path.endswith("/"):  # folder
            is_folder = True
            pure_path = PurePath(folder, part_path[:-1])
        else:
            is_folder = False
            pure_path = PurePath(folder, part_path)
        path = Path(pure_path)
        if is_folder:
            path.mkdir(parents=True, exist_ok=True)
        else:
            path.parent.mkdir(parents=True, exist_ok=True)
            path.write_bytes(content)
            path.chmod(0o666)

    for part_path, data in self.__parts.items():
        if data is None:
            # Deleted
            continue
        dump(part_path, data)

_save_xml

_save_xml(
    target: Path | str | BytesIO, pretty: bool = True
) -> None

Save a XML flat ODF format from the available parts.

Source code in odfdo/container.py
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
def _save_xml(
    self,
    target: Path | str | io.BytesIO,
    pretty: bool = True,
) -> None:
    """Save a XML flat ODF format from the available parts."""
    if isinstance(target, (Path, str)):
        target_path = Path(target)
        # Preserve Flat ODF extension is exists, default to .xml
        if target_path.suffix.lower() not in ODF_FLAT_EXTENSIONS:
            target_path = target_path.with_suffix(".xml")
        target_path.write_bytes(self._xml_content(pretty))
    else:
        target.write(self._xml_content(pretty))

_save_zip

_save_zip(target: str | Path | BytesIO) -> None

Save a Zip ODF from the available parts.

Source code in odfdo/container.py
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
def _save_zip(self, target: str | Path | io.BytesIO) -> None:
    """Save a Zip ODF from the available parts."""
    parts = self.__parts
    with ZipFile(target, "w", compression=ZIP_DEFLATED) as filezip:
        # Parts to save, except manifest at the end
        part_names = list(parts.keys())
        try:
            part_names.remove(ODF_MANIFEST)
        except ValueError:
            printwarn(f"Missing '{ODF_MANIFEST}'")
        # "Pretty-save" parts in some order
        # mimetype requires to be first and uncompressed
        mimetype = parts.get("mimetype")
        if mimetype is None:
            raise ValueError("Mimetype is not defined")
        try:
            filezip.writestr("mimetype", mimetype, ZIP_STORED)
            part_names.remove("mimetype")
        except (
            ValueError,
            KeyError,
        ):
            printwarn("Missing 'mimetype'")
        # XML parts
        for path in ODF_CONTENT, ODF_META, ODF_SETTINGS, ODF_STYLES:
            if path not in parts:
                printwarn(f"Missing '{path}'")
                continue
            part = parts[path]
            if part is None:
                continue
            filezip.writestr(path, part)
            part_names.remove(path)
        # Everything else
        for path in part_names:
            data = parts[path]
            if data is None:
                # Deleted
                continue
            filezip.writestr(path, data)
        with contextlib.suppress(KeyError):
            part = parts[ODF_MANIFEST]
            if part is not None:
                filezip.writestr(ODF_MANIFEST, part)

_serialize_documents

_serialize_documents(
    content_root: Element, styles_root: Element
) -> None

Serialize content.xml and styles.xml.

Source code in odfdo/container.py
935
936
937
938
939
940
941
942
943
944
945
946
947
def _serialize_documents(self, content_root: Element, styles_root: Element) -> None:
    """Serialize content.xml and styles.xml."""
    if len(content_root) > 0:
        content_xml = XML_TAG + tostring(
            content_root, encoding="UTF-8", xml_declaration=False
        )
        self.__parts[ODF_CONTENT] = content_xml

    if len(styles_root) > 0:
        styles_xml = XML_TAG + tostring(
            styles_root, encoding="UTF-8", xml_declaration=False
        )
        self.__parts[ODF_STYLES] = styles_xml

_suffix_to_mime_type staticmethod

_suffix_to_mime_type(
    suffix: str, default: str = "application/octet-stream"
) -> str

Convert file extension to mime type.

Source code in odfdo/container.py
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
@staticmethod
def _suffix_to_mime_type(
    suffix: str,
    default: str = "application/octet-stream",
) -> str:
    """Convert file extension to mime type."""
    mapping = {
        ".xml": "text/xml",
        ".jpg": "image/jpeg",
        ".jpeg": "image/jpeg",
        ".png": "image/png",
        ".gif": "image/gif",
        ".svg": "image/svg+xml",
    }
    return mapping.get(suffix.lower(), default)

_xml_content

_xml_content(pretty: bool = True) -> bytes
Source code in odfdo/container.py
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
def _xml_content(self, pretty: bool = True) -> bytes:
    mimetype_b = self.__parts["mimetype"]
    if mimetype_b is None:
        # use some default
        mimetype = "application/vnd.oasis.opendocument.text"
    else:
        mimetype = mimetype_b.decode("utf8")
    doc_xml = (
        OFFICE_PREFIX.decode("utf8")
        + f'office:version="{OFFICE_VERSION}"\n'
        + f'office:mimetype="{mimetype}">'
        + "</office:document>"
    )
    root = fromstring(doc_xml.encode("utf8"))
    for path in ODF_META, ODF_SETTINGS, ODF_STYLES, ODF_CONTENT:
        if path not in self.__parts:
            printwarn(f"Missing '{path}'")
            continue
        part = self.__parts[path]
        if part is None:
            continue
        if isinstance(part, bytes):
            xpart = fromstring(part)
        else:
            xpart = part
        if path in {ODF_CONTENT, ODF_STYLES}:
            # Process draw:image elements (both content and styles)
            xpath = xpath_compile("descendant::draw:image")
            images = xpath(xpart)
            if images:
                for elem in images:
                    encoded = self._encoded_image(elem)
                    if encoded is not None:
                        elem.getparent().replace(elem, encoded)
            # Process draw:fill-image elements (used for background images in presentations)
            xpath_fill = xpath_compile("descendant::draw:fill-image")
            fill_images = xpath_fill(xpart)
            if fill_images:
                for elem in fill_images:
                    encoded = self._encoded_fill_image(elem)
                    if encoded is not None:
                        elem.getparent().replace(elem, encoded)
            # Process draw:object elements (embedded objects like charts)
            if path == ODF_CONTENT:
                xpath_obj = xpath_compile("descendant::draw:object")
                objects = xpath_obj(xpart)
                if objects:
                    for elem in objects:
                        encoded = self._encoded_object(elem)
                        if encoded is not None:
                            elem.getparent().replace(elem, encoded)
                # Process form elements with form:image-data attribute
                # (used for form control images like buttons with images)
                ns_form = "{urn:oasis:names:tc:opendocument:xmlns:form:1.0}"
                xpath_form = xpath_compile("descendant::form:*[@form:image-data]")
                form_elems = xpath_form(xpart)
                if form_elems:
                    for elem in form_elems:
                        image_path = elem.get(f"{ns_form}image-data")
                        if image_path:
                            self._embed_form_image_data(elem, image_path)
        for child in xpart:
            root.append(child)
    if pretty:
        bytes_tree: bytes = tostring(
            pretty_indent(root),
            encoding="unicode",
        ).encode("utf8")
        return XML_TAG + bytes_tree
    else:
        return tostring(  # type: ignore[no-any-return]
            root,
            encoding="UTF-8",
            xml_declaration=True,
        )

del_part

del_part(path: str) -> None

Mark a part for deletion.

Parameters:

Name Type Description Default
path str

The relative path in the Container.

required
Source code in odfdo/container.py
1521
1522
1523
1524
1525
1526
1527
def del_part(self, path: str) -> None:
    """Mark a part for deletion.

    Args:
        path: The relative path in the Container.
    """
    self.__parts[path] = None

get_part

get_part(path: str) -> str | bytes | None

Get the actual content of a part of the ODF Container.

Parameters:

Name Type Description Default
path str

path of the required part.

required

Returns:

Type Description
str | bytes | None

The actual content of the part.

Source code in odfdo/container.py
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
def get_part(self, path: str) -> str | bytes | None:
    """Get the actual content of a part of the ODF Container.

    Args:
        path: path of the required part.

    Returns:
        The actual content of the part.
    """
    path = str(path)
    if path in self.__parts:
        part = self.__parts[path]
        if part is None:
            raise ValueError(f'Part "{path}" is deleted')
        if self.__packaging == FOLDER:
            cache_ts = self.__parts_ts.get(path, -1)
            current_ts = self._get_folder_part_timestamp(path)
            if current_ts != cache_ts:
                part, timestamp = self._get_folder_part(path)
                self.__parts[path] = part
                self.__parts_ts[path] = timestamp
        return part
    if self.__packaging == ZIP:
        return self._get_zip_part(path)
    if self.__packaging == FOLDER:
        part, timestamp = self._get_folder_part(path)
        self.__parts[path] = part
        self.__parts_ts[path] = timestamp
        return part
    return None

get_parts

get_parts() -> list[str]

Get the list of the parts in the Container.

Returns:

Type Description
list[str]

The list of path of the parts in the Container.

Source code in odfdo/container.py
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
def get_parts(self) -> list[str]:
    """Get the list of the parts in the Container.

    Returns:
        The list of path of the parts in the Container.
    """
    if not self.path:
        # maybe a file like zip archive or xml
        return list(self.__parts.keys())
    if self.__packaging == ZIP:
        parts = []
        with ZipFile(self.path) as zf:
            for name in zf.namelist():
                upath = normalize_path(name)
                parts.append(upath)
        return parts
    elif self.__packaging == FOLDER:
        return self._get_folder_parts()
    elif self.__packaging == XML:
        # For flat XML, parts are stored in memory
        return list(self.__parts.keys())
    else:
        raise ValueError("Unable to provide parts of the document")

open

open(path_or_file: Path | str | BytesIO) -> None

Load the content of an ODF file.

Parameters:

Name Type Description Default
path_or_file Path | str | BytesIO

Path to the document, or an opened file.

required
Source code in odfdo/container.py
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
def open(self, path_or_file: Path | str | io.BytesIO) -> None:
    """Load the content of an ODF file.

    Args:
        path_or_file: Path to the document, or an opened file.
    """
    self.__path_like = path_or_file
    if isinstance(path_or_file, (str, Path)):
        self.path = Path(path_or_file).expanduser()
        if not self.path.exists():
            raise FileNotFoundError(str(self.path))
        self.__path_like = self.path
    if (self.path or isinstance(self.__path_like, io.BytesIO)) and is_zipfile(
        self.__path_like
    ):
        self.__packaging = ZIP
        return self._read_zip()
    if self.path:
        is_folder = False
        with contextlib.suppress(OSError):
            is_folder = self.path.is_dir()
        if is_folder:
            self.__packaging = FOLDER
            return self._read_folder()
        # Check if it's a flat XML file
        with contextlib.suppress(OSError, ValueError):
            content = self.path.read_bytes()
            if self._is_flat_xml(content):
                self.__packaging = XML
                return self._read_xml(content)
    # Check if it's a BytesIO with flat XML
    if isinstance(self.__path_like, io.BytesIO):
        content = self.__path_like.getvalue()
        if self._is_flat_xml(content):
            self.__packaging = XML
            return self._read_xml(content)
    msg = f"Document format not managed by odfdo: {type(path_or_file)}."
    raise TypeError(msg)

save

save(
    target: str | Path | BytesIO | None,
    packaging: str | None = None,
    backup: bool = False,
    pretty: bool = False,
) -> None

Save the container to the given target, a path or a file-like object.

Package the output document in the same format than current document, unless “packaging” is different.

Parameters:

Name Type Description Default
target str | Path | BytesIO | None

The path, file-like object, or Path object where the document will be saved.

required
packaging str | None

The packaging format to use. Can be ‘zip’, ‘xml’, or ‘folder’. If None, the current packaging is used.

None
backup bool

If True, a backup of the original file is created.

False
pretty bool

If True, the XML output will be pretty-printed.

False
Source code in odfdo/container.py
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
def save(
    self,
    target: str | Path | io.BytesIO | None,
    packaging: str | None = None,
    backup: bool = False,
    pretty: bool = False,
) -> None:
    """Save the container to the given target, a path or a file-like
    object.

    Package the output document in the same format than current document,
    unless "packaging" is different.

    Args:
        target: The path, file-like object, or Path object where the
            document will be saved.
        packaging: The packaging format to use. Can be 'zip', 'xml', or
            'folder'. If None, the current packaging is used.
        backup: If True, a backup of the original file is created.
        pretty: If True, the XML output will be pretty-printed.
    """
    parts = self.__parts
    packaging = self._clean_save_packaging(packaging)
    # Load parts else they will be considered deleted
    for path in self.parts:
        if path not in parts:
            self.get_part(path)
    target = self._clean_save_target(target)
    if packaging == FOLDER:
        if isinstance(target, io.BytesIO):
            msg = "Impossible to save on io.BytesIO with 'folder' packaging"
            raise TypeError(msg)
        self._save_as_folder(target, backup)
    elif packaging == XML:
        self._save_as_xml(target, backup, pretty)
    else:
        # default:
        self._save_as_zip(target, backup)

set_part

set_part(path: str, data: bytes) -> None

Replace or add a new part.

Parameters:

Name Type Description Default
path str

The relative path in the Container.

required
data bytes

Content of the part.

required
Source code in odfdo/container.py
1512
1513
1514
1515
1516
1517
1518
1519
def set_part(self, path: str, data: bytes) -> None:
    """Replace or add a new part.

    Args:
        path: The relative path in the Container.
        data: Content of the part.
    """
    self.__parts[path] = data

_ns_tag cached

_ns_tag(tag: str) -> str

Return the tag prefixed by NS_OFFICE.

Source code in odfdo/container.py
213
214
215
216
@cache
def _ns_tag(tag: str) -> str:
    """Return the tag prefixed by NS_OFFICE."""
    return f"{{{NS_OFFICE}}}{tag}"

normalize_path

normalize_path(path: str) -> str

Normalize a string path to Posix format.

Parameters:

Name Type Description Default
path str

The path to normalize.

required

Returns:

Name Type Description
str str

Posix representation of the path.

Source code in odfdo/container.py
273
274
275
276
277
278
279
280
281
282
283
def normalize_path(path: str) -> str:
    """Normalize a string path to Posix format.

    Args:
        path: The path to normalize.

    Returns:
        str: Posix representation of the path."""
    if path.endswith("/"):  # folder
        return PurePath(path[:-1]).as_posix() + "/"
    return PurePath(path).as_posix()

pretty_indent

pretty_indent(
    elem: _ElementTree | _Element,
    level: int = 0,
    ending_level: int = 0,
    textual_parent: bool = False,
) -> _ElementTree | _Element

Return an indented _ElementTree.

Parameters:

Name Type Description Default
elem _ElementTree | _Element

the source Element.

required
level int

current indentation level.

0
ending_level int

previous indentation level.

0
textual_parent bool

True if the parent element contains text.

False
Source code in odfdo/container.py
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
def pretty_indent(
    elem: _ElementTree | _Element,
    level: int = 0,
    ending_level: int = 0,
    textual_parent: bool = False,
) -> _ElementTree | _Element:
    """Return an indented _ElementTree.

    Args:
        elem: the source Element.
        level: current indentation level.
        ending_level: previous indentation level.
        textual_parent: True if the parent element contains text.

    """
    nb_child = len(elem)
    follow_level = level + 1
    tag = f"{elem.prefix}:{elem.tag.rpartition('}')[2]}"
    if tag in TEXT_CONTENT:
        is_textual = True
        if not textual_parent:
            elem.tail = "\n" + ending_level * TAB
    elif tag == "office:binary-data":
        is_textual = True
        elem.text = (
            textwrap.fill(
                elem.text,
                initial_indent=(ending_level + 11) * TAB,
                subsequent_indent=(follow_level * TAB)[:-1],
                width=79,
            ).lstrip()
            + "\n"
            + (follow_level - 1) * TAB
        )
        if not elem.tail:
            elem.tail = "\n" + ending_level * TAB
    else:
        is_textual = False
        if not textual_parent:
            elem.tail = "\n" + ending_level * TAB
            if nb_child > 0:
                elem.text = "\n" + follow_level * TAB
        else:
            if nb_child > 0:
                elem.text = (elem.text or "") + "\n" + follow_level * TAB
            if not elem.tail:
                elem.tail = "\n" + ending_level * TAB
    if nb_child > 0:
        for sub_elem in elem[:-1]:
            pretty_indent(sub_elem, follow_level, follow_level, is_textual)
        pretty_indent(elem[-1], follow_level, level, is_textual)
    return elem

printwarn

printwarn(message: str) -> None

Print a message on stderr.

Parameters:

Name Type Description Default
message str

the text to print.

required
Source code in odfdo/container.py
204
205
206
207
208
209
210
def printwarn(message: str) -> None:
    """Print a message on stderr.

    Args:
        message: the text to print.
    """
    print(f"Warning: {message}", file=sys.stderr)