0029352: Adding support of GBK and Big5 code pages
[occt.git] / src / BinLDrivers / BinLDrivers_DocumentRetrievalDriver.hxx
CommitLineData
42cf5bc1 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>
4ff92abe 31#include <Storage_Data.hxx>
32
42cf5bc1 33class BinMDF_ADriverTable;
34class CDM_MessageDriver;
35class TCollection_ExtendedString;
36class PCDM_Document;
37class CDM_Document;
38class CDM_Application;
39class TDF_Label;
40class TCollection_AsciiString;
41class Storage_HeaderData;
42class BinLDrivers_DocumentSection;
43
44
45class BinLDrivers_DocumentRetrievalDriver;
46DEFINE_STANDARD_HANDLE(BinLDrivers_DocumentRetrievalDriver, PCDM_RetrievalDriver)
47
48
49class BinLDrivers_DocumentRetrievalDriver : public PCDM_RetrievalDriver
50{
51
52public:
53
54
55 //! Constructor
56 Standard_EXPORT BinLDrivers_DocumentRetrievalDriver();
57
42cf5bc1 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;
4ff92abe 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;
42cf5bc1 68
69 Standard_EXPORT virtual Handle(BinMDF_ADriverTable) AttributeDrivers (const Handle(CDM_MessageDriver)& theMsgDriver);
70
71
72
73
92efcf78 74 DEFINE_STANDARD_RTTIEXT(BinLDrivers_DocumentRetrievalDriver,PCDM_RetrievalDriver)
42cf5bc1 75
76protected:
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
42cf5bc1 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
bf954475 86 //! define the procedure of reading a shapes section to file.
42cf5bc1 87 Standard_EXPORT virtual void ReadShapeSection (BinLDrivers_DocumentSection& theSection, Standard_IStream& theIS, const Standard_Boolean isMess = Standard_False);
88
bf954475 89 //! checks the shapes section can be correctly retreived.
42cf5bc1 90 Standard_EXPORT virtual void CheckShapeSection (const Storage_Position& thePos, Standard_IStream& theIS);
bf954475 91
92 //! clears the reading-cash data in drivers if any.
93 Standard_EXPORT virtual void Clear();
94
95 //! provides the version of document to all drivers
42cf5bc1 96 Standard_EXPORT virtual void PropagateDocumentVersion (const Standard_Integer theVersion);
97
98 //! Check a file version(in which file was written) with a current version.
99 //! Redefining this method is a chance for application to read files
100 //! written by newer applications.
101 //! The default implementation: if the version of the file is greater than the
102 //! current or lesser than 2, then return false, else true
103 Standard_EXPORT virtual Standard_Boolean CheckDocumentVersion (const Standard_Integer theFileVersion, const Standard_Integer theCurVersion);
104
105 //! write theMessage to the MessageDriver of the
106 //! Application
107 Standard_EXPORT void WriteMessage (const TCollection_ExtendedString& theMessage);
108
109 Handle(BinMDF_ADriverTable) myDrivers;
110 BinObjMgt_RRelocationTable myRelocTable;
111
112
113private:
114
115
116 BinObjMgt_Persistent myPAtt;
117 Handle(CDM_MessageDriver) myMsgDriver;
118 TColStd_MapOfInteger myMapUnsupported;
119 BinLDrivers_VectorOfDocumentSection mySections;
120
121
122};
123
124
125
126
127
128
129
130#endif // _BinLDrivers_DocumentRetrievalDriver_HeaderFile