0026961: Recover possibility to read files in old persistence format
[occt.git] / src / StdObjMgt / StdObjMgt_ReadData.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 <StdObjMgt_ReadData.hxx>
15 #include <StdObjMgt_Persistent.hxx>
16
17
18 StdObjMgt_ReadData::StdObjMgt_ReadData
19   (Storage_BaseDriver& theDriver, const Standard_Integer theNumberOfObjects)
20     : myDriver (&theDriver)
21     , myPersistentObjects (1, theNumberOfObjects) {}
22
23 void StdObjMgt_ReadData::ReadPersistentObject (const Standard_Integer theRef)
24 {
25   Handle(StdObjMgt_Persistent) aPersistent = myPersistentObjects (theRef);
26   if (aPersistent)
27   {
28     Standard_Integer aRef, aType;
29     myDriver->ReadPersistentObjectHeader (aRef, aType);
30     myDriver->BeginReadPersistentObjectData();
31     aPersistent->Read (*this);
32     myDriver->EndReadPersistentObjectData();
33   }
34 }
35
36 Handle(StdObjMgt_Persistent) StdObjMgt_ReadData::ReadReference()
37 {
38   Standard_Integer aRef;
39   myDriver->GetReference (aRef);
40   return aRef ? PersistentObject (aRef) : NULL;
41 }