0031965: Visualization - AIS_InteractiveContext::HilightWithColor() ignores passed...
[occt.git] / src / BinLDrivers / BinLDrivers_DocumentStorageDriver.hxx
CommitLineData
42cf5bc1 1// Created on: 2002-10-29
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_DocumentStorageDriver_HeaderFile
17#define _BinLDrivers_DocumentStorageDriver_HeaderFile
18
19#include <Standard.hxx>
20#include <Standard_Type.hxx>
21
22#include <BinObjMgt_Persistent.hxx>
23#include <BinObjMgt_SRelocationTable.hxx>
24#include <TDF_LabelList.hxx>
25#include <TColStd_MapOfTransient.hxx>
26#include <TColStd_IndexedMapOfTransient.hxx>
27#include <BinLDrivers_VectorOfDocumentSection.hxx>
28#include <PCDM_StorageDriver.hxx>
29#include <Standard_OStream.hxx>
30#include <Standard_Boolean.hxx>
31#include <Standard_Type.hxx>
32class BinMDF_ADriverTable;
83ae3591 33class Message_Messenger;
42cf5bc1 34class TCollection_ExtendedString;
35class CDM_Document;
36class TDF_Label;
37class TCollection_AsciiString;
38class BinLDrivers_DocumentSection;
39
40
41class BinLDrivers_DocumentStorageDriver;
42DEFINE_STANDARD_HANDLE(BinLDrivers_DocumentStorageDriver, PCDM_StorageDriver)
43
21c7c457 44//! persistent implementation of storage a document in a binary file
42cf5bc1 45class BinLDrivers_DocumentStorageDriver : public PCDM_StorageDriver
46{
47
48public:
49
50
51 //! Constructor
52 Standard_EXPORT BinLDrivers_DocumentStorageDriver();
6fe96f84 53
42cf5bc1 54 //! Write <theDocument> to the binary file <theFileName>
6d8f9f4a 55 Standard_EXPORT virtual void Write (const Handle(CDM_Document)& theDocument,
56 const TCollection_ExtendedString& theFileName,
7e785937 57 const Message_ProgressRange& theRange = Message_ProgressRange()) Standard_OVERRIDE;
4ff92abe 58
59 //! Write <theDocument> to theOStream
6d8f9f4a 60 Standard_EXPORT virtual void Write (const Handle(CDM_Document)& theDocument,
61 Standard_OStream& theOStream,
7e785937 62 const Message_ProgressRange& theRange = Message_ProgressRange()) Standard_OVERRIDE;
42cf5bc1 63
83ae3591 64 Standard_EXPORT virtual Handle(BinMDF_ADriverTable) AttributeDrivers (const Handle(Message_Messenger)& theMsgDriver);
42cf5bc1 65
66 //! Create a section that should be written after the OCAF data
67 Standard_EXPORT void AddSection (const TCollection_AsciiString& theName, const Standard_Boolean isPostRead = Standard_True);
68
69
70
71
92efcf78 72 DEFINE_STANDARD_RTTIEXT(BinLDrivers_DocumentStorageDriver,PCDM_StorageDriver)
42cf5bc1 73
74protected:
75
76
77 //! Write the tree under <theLabel> to the stream <theOS>
6d8f9f4a 78 Standard_EXPORT void WriteSubTree (const TDF_Label& theData,
79 Standard_OStream& theOS,
7e785937 80 const Message_ProgressRange& theRange = Message_ProgressRange());
42cf5bc1 81
82 //! define the procedure of writing a section to file.
6d8f9f4a 83 Standard_EXPORT virtual void WriteSection (const TCollection_AsciiString& theName,
84 const Handle(CDM_Document)& theDoc,
85 Standard_OStream& theOS);
42cf5bc1 86
87 //! defines the procedure of writing a shape section to file
6d8f9f4a 88 Standard_EXPORT virtual void WriteShapeSection (BinLDrivers_DocumentSection& theDocSection,
89 Standard_OStream& theOS,
7e785937 90 const Message_ProgressRange& theRange = Message_ProgressRange());
42cf5bc1 91
92 Handle(BinMDF_ADriverTable) myDrivers;
93 BinObjMgt_SRelocationTable myRelocTable;
83ae3591 94 Handle(Message_Messenger) myMsgDriver;
42cf5bc1 95
96private:
97
42cf5bc1 98 Standard_EXPORT void FirstPass (const TDF_Label& theRoot);
99
100 //! Returns true if <L> and its sub-labels do not contain
101 //! attributes to store
102 Standard_EXPORT Standard_Boolean FirstPassSubTree (const TDF_Label& L, TDF_LabelList& ListOfEmptyL);
103
104 //! Write info secton using FSD_BinaryFile driver
4ff92abe 105 Standard_EXPORT void WriteInfoSection (const Handle(CDM_Document)& theDocument, Standard_OStream& theOStream);
42cf5bc1 106
107 Standard_EXPORT void UnsupportedAttrMsg (const Handle(Standard_Type)& theType);
108
109 BinObjMgt_Persistent myPAtt;
42cf5bc1 110 TDF_LabelList myEmptyLabels;
111 TColStd_MapOfTransient myMapUnsupported;
112 TColStd_IndexedMapOfTransient myTypesMap;
113 BinLDrivers_VectorOfDocumentSection mySections;
4ff92abe 114 TCollection_ExtendedString myFileName;
42cf5bc1 115
42cf5bc1 116};
117
42cf5bc1 118#endif // _BinLDrivers_DocumentStorageDriver_HeaderFile