1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/caf/bug31918_2
mpv d5c71e2057 0031918: Application Framework - New binary format for fast reading part of OCAF document
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.
2021-07-09 19:13:59 +03:00

124 lines
3.2 KiB
Plaintext

puts "==========="
puts "0031918: Application Framework - New binary format for fast reading part of OCAF document"
puts "==========="
pload XDE
NewDocument D0 BinOcaf
# creates part-shape by the given sizes
proc store_part {nx ny dx dy dz entry} {
global D0
box b1 0 0 0 [expr $nx + .5] [expr $ny + .5] 1
box b2 0.5 0.5 0 [expr $nx - .5] [expr $nx - .5] 0.4
cut base b1 b2
set command "compound"
for {set x 0} {$x < $nx} {incr x} {
for {set y 0} {$y < $ny} {incr y} {
pcylinder c${x}_$y 0.25 1.01
ttranslate c${x}_$y [expr $x+.75] [expr $y+.75] 0.39
set command "$command c${x}_$y"
}
}
eval "$command cc"
bop base cc
bopfuse part
ttranslate part $dx $dy $dz
Label D0 $entry
SetShape D0 $entry part
}
store_part 16 16 0 0 0 0:1:1
for {set n 1} {$n < 5} {incr n} {
store_part 4 4 $n $n $n 0:2:$n
store_part 4 4 [expr 16-4-$n] $n $n 0:2:[expr $n+4]
store_part 4 4 $n [expr 16-4-$n] $n 0:2:[expr $n+8]
store_part 4 4 [expr 16-4-$n] [expr 16-4-$n] $n 0:2:[expr $n+12]
}
store_part 6 6 5 5 5 0:3:1
store_part 4 4 6 6 6 0:3:2
GetShape D0 0:3:2 top2
set docname ${imagedir}/doc_${casename}.cbf
set save_time [lindex [time {
SaveAs D0 ${docname}
}] 0]
puts "Save time $save_time mcs"
Close D0
set whole_time [lindex [time {
Open ${docname} D1
Close D1
} 20] 0]
puts "Whole document open time $whole_time mcs"
set half_time1 [lindex [time {
Open ${docname} D2 -read0:1 -read0:3
Close D2
} 20] 0]
puts "First half of document open time $half_time1 mcs"
set half_time2 [lindex [time {
Open ${docname} D3 -read0:2
Close D3
} 20] 0]
puts "Second half of document open time $half_time2 mcs"
# Check that open of two halfs of the document separately is not too much slower than open of the whole
if { [expr ($half_time1 + $half_time2) * 0.9] > $whole_time } {
puts "Error : loading of half of the document content is too slow relatively to the whole document load"
}
Open ${docname} D4 -read0:3:2
GetShape D4 0:3:2 opened_top2
checkshape opened_top2
# check shapes are the same before open and after
if {[string first [whatis top2] [whatis opened_top2]] != 7} {
puts "Error : saved and opened shapes are different"
}
Open ${docname} D4 -append -read0:1 -read0:2
GetShape D4 0:1:1 s
checkshape s
for {set n 1} {$n < 16} {incr n} {
GetShape D4 0:2:$n s
checkshape s
}
Close D4
set no_shapes_time [lindex [time {
Open ${docname} D5 -skipTNaming_NamedShape
Close D5
} 20] 0]
puts "Document without shapes open time $no_shapes_time mcs"
# Check that open of the document without shapes is much faster than open of the whole
if { [expr $no_shapes_time * 20] > $whole_time } {
puts "Error : loading of the document without shapes is too slow relatively to the whole document load"
}
# check shapes storage with triangulations
set length_wo_tirangulation [string length [dump s]]
vinit
vdisplay top2 -displaymode 1
NewDocument D6 BinOcaf
UndoLimit D6 10
SetShape D6 0:1 top2
StoreTriangulation 1
SaveAs D6 ${docname}
Close D6
Open ${docname} D7
GetShape D7 0:1 top3
Close D7
checkshape top3
set length_with_tirangulation [string length [dump top3]]
if { [expr $length_with_tirangulation / 7] < $length_wo_tirangulation } {
puts "Error : looks like shape stored with triangulation loaded without trianulation"
}