0028714: Dimension of TDataStd_Real is not serialized to document
[occt.git] / src / StdLPersistent / StdLPersistent_HArray2.cxx
1 // Copyright (c) 2015 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
5 // This library is free software; you can redistribute it and/or modify it under
6 // the terms of the GNU Lesser General Public License version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14 #include <StdLPersistent_HArray2.hxx>
15
16 #include <TColStd_HArray2OfInteger.hxx>
17 #include <TColStd_HArray2OfReal.hxx>
18
19
20 //=======================================================================
21 //function : Read
22 //purpose  : Read persistent data from a file
23 //=======================================================================
24 void StdLPersistent_HArray2::base::Read (StdObjMgt_ReadData& theReadData)
25 {
26   Standard_Integer aLowerRow, aLowerCol, anUpperRow, anUpperCol;
27   theReadData >> aLowerRow >> aLowerCol >> anUpperRow >> anUpperCol;
28   createArray (aLowerRow, aLowerCol, anUpperRow, anUpperCol);
29
30   StdObjMgt_ReadData::Object anObjectData (theReadData);
31
32   Standard_Integer aSize;
33   anObjectData >> aSize;
34
35   for (Standard_Integer aRow = aLowerRow; aRow <= anUpperRow; aRow++)
36     for (Standard_Integer aCol = aLowerCol; aCol <= anUpperCol; aCol++)
37       readValue (anObjectData, aRow, aCol);
38 }
39
40 //=======================================================================
41 //function : Read
42 //purpose  : Read persistent data from a file
43 //=======================================================================
44 void StdLPersistent_HArray2::base::Write (StdObjMgt_WriteData& theWriteData) const
45 {
46   Standard_Integer aLowerRow, aLowerCol, anUpperRow, anUpperCol;
47   lowerBound(aLowerRow, aLowerCol);
48   upperBound(anUpperRow, anUpperCol);
49   theWriteData << aLowerRow << aLowerCol << anUpperRow << anUpperCol;
50
51   StdObjMgt_WriteData::Object anObjectData(theWriteData);
52
53   Standard_Integer aSize = (anUpperRow - aLowerRow + 1) * (anUpperCol - aLowerCol + 1);
54   anObjectData << aSize;
55
56   for (Standard_Integer aRow = aLowerRow; aRow <= anUpperRow; aRow++)
57     for (Standard_Integer aCol = aLowerCol; aCol <= anUpperCol; aCol++)
58       writeValue(anObjectData, aRow, aCol);
59 }