mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Implementation of new format for quick reading and writing parts of the documents (sub-set of labels and sub-set of attributes). It consists in writing shapes and all their contents right in the TNaming_NamedShape attribute placement and skipping the shape section. New format 12 for Binary file types is assigned to this version. Added PCDM_ReaderFilter class that could be used in Open methods of TDocStd_Application. If it is defined, it allows to read: - into already opened document in append mode AppendMode_Protect (do not overwrite existing attributes) or AppendMode_Overwrite - only specified sub-trees of the document using AddPath (const TCollection_AsciiString& theEntryToRead) - only specified attributes using AddRead (const TCollection_AsciiString& theRead) where theRead could be "TDataStd_Name", for example - to skip specified attributes read using AddSkipped (const TCollection_AsciiString& theSkipped) where theSkipped could be "TDF_Reference", for example The current limitations: - only in Bin format - if shapes have in the document shared topology, loaded in "append" mode in different "load" operations, they will have no shared topology anymore Modifications: BinLDrivers and BinDrivers packages - modifications related to the quick part tree format flag usage, skipping shape section writing and adding labels sizes into the document to be able to pass labels during the reading quickly. BinObjMgt_Persistent and BinObjMgt_Position - to add possibility to write directly into the stream some data just after the attribute. Before this record a data-size is recorded. BinMXCAFDoc package modifications to write BinMXCAFDoc_LocationDriver location in the same way as shapes write location data right after the attribute (empty) data in this new format. BinTools package: creation of ShapeReader and ShapeWriter classes with same root class ShapeSetBase with ShapeSet class. These classes allows to write/read shapes directly to the stream. If some object is already in the stream, write a reference - relative position of the duplicated object. The old format of documents is still supported by Bin_ToolsShapeSet class. PCDM_ReaderFilter - Allows the user to create a reading filter. It contains algorithm to browse labels tree quickly, without usage of referencing by entry-strings. TDocStd, CDF and some other packages are changed for supporting reading filters API and options. Tests, documentation and upgrade information are also added for both issues: 31839 and 31918 related to this commit.
56 lines
1.4 KiB
Plaintext
56 lines
1.4 KiB
Plaintext
puts "==========="
|
|
puts "0031839: Application Framework - Add ability to partially load OCAF document"
|
|
puts "==========="
|
|
|
|
# This test checks partial opening of the document shapes, append and overwrite modes
|
|
# for them checking that after overwrite the shapes keep shared topology.
|
|
|
|
NewDocument D0 BinOcaf
|
|
UndoLimit D0 10
|
|
|
|
NewCommand D0
|
|
|
|
box b 1 2 3
|
|
explode b F
|
|
|
|
SetShape D0 0:1 b
|
|
for {set i 1} {$i <= 6} {incr i} {
|
|
set lab [Label D0 0:1:${i}]
|
|
SetShape D0 ${lab} b_${i}
|
|
}
|
|
|
|
CommitCommand D0
|
|
|
|
set docname ${imagedir}/doc_${casename}.cbf
|
|
SaveAs D0 ${docname}
|
|
Close D0
|
|
|
|
# open document with shapes skipped
|
|
Open ${docname} D1 -skipTNaming_NamedShape
|
|
if {![catch {GetShape D1 0:1 b1}]} {
|
|
puts "Error: found box at the label 0:1, but it should not be there"
|
|
}
|
|
if {![catch {GetShape D1 0:1:1 f0}]} {
|
|
puts "Error: found face at the label 0:1:1, but it should not be there"
|
|
}
|
|
|
|
# append one face
|
|
Open ${docname} D1 -append -read0:1:1
|
|
|
|
if {[catch {GetShape D1 0:1:1 f1}]} {
|
|
puts "Error: Can not find face at the label 0:1:1"
|
|
}
|
|
if {![catch {GetShape D1 0:1:2 f2}]} {
|
|
puts "Error: found face at the label 0:1:2, but it should not be there"
|
|
}
|
|
|
|
# append others, rewrite the first face
|
|
Open ${docname} D1 -overwrite
|
|
GetShape D1 0:1 box
|
|
GetShape D1 0:1:1 f11
|
|
|
|
set same [CheckSame box f11 F]
|
|
if {$same == ""} {
|
|
puts "Error: shapes loaded in append mode do not share subshapes (so, face at 0:1:1 was not replaced)"
|
|
}
|