0bbd0045ee3508541ebef2e3787af105db17716a
[occt.git] / src / BinLDrivers / BinLDrivers_DocumentRetrievalDriver.hxx
1 // Created on: 2002-10-31
2 // Created by: Michael SAZONOV
3 // Copyright (c) 2002-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 #ifndef _BinLDrivers_DocumentRetrievalDriver_HeaderFile
17 #define _BinLDrivers_DocumentRetrievalDriver_HeaderFile
18
19 #include <Standard.hxx>
20 #include <Standard_Type.hxx>
21
22 #include <BinObjMgt_Persistent.hxx>
23 #include <BinObjMgt_RRelocationTable.hxx>
24 #include <TColStd_MapOfInteger.hxx>
25 #include <BinLDrivers_VectorOfDocumentSection.hxx>
26 #include <PCDM_RetrievalDriver.hxx>
27 #include <Standard_Integer.hxx>
28 #include <Standard_IStream.hxx>
29 #include <Storage_Position.hxx>
30 #include <Standard_Boolean.hxx>
31 #include <Storage_Data.hxx>
32
33 class BinMDF_ADriverTable;
34 class Message_Messenger;
35 class TCollection_ExtendedString;
36 class PCDM_Document;
37 class CDM_Document;
38 class CDM_Application;
39 class TDF_Label;
40 class TCollection_AsciiString;
41 class Storage_HeaderData;
42 class BinLDrivers_DocumentSection;
43
44
45 class BinLDrivers_DocumentRetrievalDriver;
46 DEFINE_STANDARD_HANDLE(BinLDrivers_DocumentRetrievalDriver, PCDM_RetrievalDriver)
47
48
49 class BinLDrivers_DocumentRetrievalDriver : public PCDM_RetrievalDriver
50 {
51
52 public:
53
54   
55   //! Constructor
56   Standard_EXPORT BinLDrivers_DocumentRetrievalDriver();
57   
58   //! pure virtual method definition
59   Standard_EXPORT virtual Handle(CDM_Document) CreateDocument() Standard_OVERRIDE;
60   
61   //! retrieves the content of the file into a new Document.
62   Standard_EXPORT virtual void Read (const TCollection_ExtendedString& theFileName, const Handle(CDM_Document)& theNewDocument, const Handle(CDM_Application)& theApplication) Standard_OVERRIDE;
63
64   Standard_EXPORT virtual void Read (Standard_IStream&               theIStream,
65                                      const Handle(Storage_Data)&     theStorageData,
66                                      const Handle(CDM_Document)&     theDoc,
67                                      const Handle(CDM_Application)&  theApplication) Standard_OVERRIDE;
68   
69   Standard_EXPORT virtual Handle(BinMDF_ADriverTable) AttributeDrivers (const Handle(Message_Messenger)& theMsgDriver);
70
71
72
73
74   DEFINE_STANDARD_RTTIEXT(BinLDrivers_DocumentRetrievalDriver,PCDM_RetrievalDriver)
75
76 protected:
77
78   
79   //! Read the tree from the stream <theIS> to <theLabel>
80   Standard_EXPORT virtual Standard_Integer ReadSubTree (Standard_IStream& theIS, const TDF_Label& theData);
81   
82   
83   //! define the procedure of reading a section to file.
84   Standard_EXPORT virtual void ReadSection (BinLDrivers_DocumentSection& theSection, const Handle(CDM_Document)& theDoc, Standard_IStream& theIS);
85   
86   //! define the procedure of reading a shapes section to file.
87   Standard_EXPORT virtual void ReadShapeSection (BinLDrivers_DocumentSection& theSection, Standard_IStream& theIS, const Standard_Boolean isMess = Standard_False);
88   
89   //! checks the shapes section can be correctly retreived.
90   Standard_EXPORT virtual void CheckShapeSection (const Storage_Position& thePos, Standard_IStream& theIS);
91
92   //! clears the reading-cash data in drivers if any.
93   Standard_EXPORT virtual void Clear();
94   
95   //! Check a file version(in which file was written) with a current version.
96   //! Redefining this method is a chance for application to read files
97   //! written by newer applications.
98   //! The default implementation: if the version of the file is greater than the
99   //! current or lesser than 2, then return false, else true
100   Standard_EXPORT virtual Standard_Boolean CheckDocumentVersion (const Standard_Integer theFileVersion, const Standard_Integer theCurVersion);
101
102   Handle(BinMDF_ADriverTable) myDrivers;
103   BinObjMgt_RRelocationTable myRelocTable;
104   Handle(Message_Messenger) myMsgDriver;
105
106 private:
107
108
109   BinObjMgt_Persistent myPAtt;
110   TColStd_MapOfInteger myMapUnsupported;
111   BinLDrivers_VectorOfDocumentSection mySections;
112
113
114 };
115
116
117
118
119
120
121
122 #endif // _BinLDrivers_DocumentRetrievalDriver_HeaderFile