mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Implementation of new format for quick reading and writing parts of the documents (sub-set of labels and sub-set of attributes). It consists in writing shapes and all their contents right in the TNaming_NamedShape attribute placement and skipping the shape section. New format 12 for Binary file types is assigned to this version. Added PCDM_ReaderFilter class that could be used in Open methods of TDocStd_Application. If it is defined, it allows to read: - into already opened document in append mode AppendMode_Protect (do not overwrite existing attributes) or AppendMode_Overwrite - only specified sub-trees of the document using AddPath (const TCollection_AsciiString& theEntryToRead) - only specified attributes using AddRead (const TCollection_AsciiString& theRead) where theRead could be "TDataStd_Name", for example - to skip specified attributes read using AddSkipped (const TCollection_AsciiString& theSkipped) where theSkipped could be "TDF_Reference", for example The current limitations: - only in Bin format - if shapes have in the document shared topology, loaded in "append" mode in different "load" operations, they will have no shared topology anymore Modifications: BinLDrivers and BinDrivers packages - modifications related to the quick part tree format flag usage, skipping shape section writing and adding labels sizes into the document to be able to pass labels during the reading quickly. BinObjMgt_Persistent and BinObjMgt_Position - to add possibility to write directly into the stream some data just after the attribute. Before this record a data-size is recorded. BinMXCAFDoc package modifications to write BinMXCAFDoc_LocationDriver location in the same way as shapes write location data right after the attribute (empty) data in this new format. BinTools package: creation of ShapeReader and ShapeWriter classes with same root class ShapeSetBase with ShapeSet class. These classes allows to write/read shapes directly to the stream. If some object is already in the stream, write a reference - relative position of the duplicated object. The old format of documents is still supported by Bin_ToolsShapeSet class. PCDM_ReaderFilter - Allows the user to create a reading filter. It contains algorithm to browse labels tree quickly, without usage of referencing by entry-strings. TDocStd, CDF and some other packages are changed for supporting reading filters API and options. Tests, documentation and upgrade information are also added for both issues: 31839 and 31918 related to this commit.
117 lines
3.8 KiB
C++
117 lines
3.8 KiB
C++
// Created on: 1997-10-22
|
|
// Created by: Jean-Louis Frenkel
|
|
// Copyright (c) 1997-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#ifndef _CDM_Application_HeaderFile
|
|
#define _CDM_Application_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <Standard_Transient.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
#include <Standard_ExtString.hxx>
|
|
#include <TCollection_AsciiString.hxx>
|
|
#include <TCollection_ExtendedString.hxx>
|
|
#include <CDM_MetaDataLookUpTable.hxx>
|
|
#include <Message_ProgressRange.hxx>
|
|
|
|
class CDM_Reference;
|
|
class CDM_MetaData;
|
|
class CDM_Document;
|
|
class Resource_Manager;
|
|
class Message_Messenger;
|
|
class PCDM_ReaderFilter;
|
|
|
|
class CDM_Application;
|
|
DEFINE_STANDARD_HANDLE(CDM_Application, Standard_Transient)
|
|
|
|
|
|
class CDM_Application : public Standard_Transient
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
//! The manager returned by this virtual method will be
|
|
//! used to search for Format.Retrieval resource items.
|
|
Standard_EXPORT virtual Handle(Resource_Manager) Resources() = 0;
|
|
|
|
//! Returns default messenger;
|
|
Standard_EXPORT virtual Handle(Message_Messenger) MessageDriver();
|
|
|
|
//! this method is called before the update of a document.
|
|
//! By default, writes in MessageDriver().
|
|
Standard_EXPORT virtual void BeginOfUpdate (const Handle(CDM_Document)& aDocument);
|
|
|
|
//! this method is called affter the update of a document.
|
|
//! By default, writes in MessageDriver().
|
|
Standard_EXPORT virtual void EndOfUpdate (const Handle(CDM_Document)& aDocument, const Standard_Boolean theStatus, const TCollection_ExtendedString& ErrorString);
|
|
|
|
//! writes the string in the application MessagerDriver.
|
|
Standard_EXPORT void Write (const Standard_ExtString aString);
|
|
|
|
//! Returns the application name.
|
|
Standard_EXPORT virtual TCollection_ExtendedString Name() const;
|
|
|
|
//! Returns the application version.
|
|
Standard_EXPORT virtual TCollection_AsciiString Version() const;
|
|
|
|
//! Returns MetaData LookUpTable
|
|
Standard_EXPORT virtual CDM_MetaDataLookUpTable& MetaDataLookUpTable();
|
|
|
|
//! Dumps the content of me into the stream
|
|
Standard_EXPORT void DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth = -1) const;
|
|
|
|
friend class CDM_Reference;
|
|
friend class CDM_MetaData;
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT(CDM_Application,Standard_Transient)
|
|
|
|
protected:
|
|
|
|
Standard_EXPORT CDM_Application();
|
|
|
|
Standard_EXPORT void SetDocumentVersion (const Handle(CDM_Document)& aDocument, const Handle(CDM_MetaData)& aMetaData) const;
|
|
|
|
Standard_EXPORT void SetReferenceCounter (const Handle(CDM_Document)& aDocument, const Standard_Integer aReferenceCounter);
|
|
|
|
private:
|
|
|
|
|
|
Standard_EXPORT virtual Handle(CDM_Document) Retrieve
|
|
(const Handle(CDM_MetaData)& aMetaData,
|
|
const Standard_Boolean UseStorageConfiguration,
|
|
const Handle(PCDM_ReaderFilter)& theFilter = Handle(PCDM_ReaderFilter)(),
|
|
const Message_ProgressRange& theRange = Message_ProgressRange()) = 0;
|
|
|
|
//! returns -1 if the metadata has no modification counter.
|
|
Standard_EXPORT virtual Standard_Integer DocumentVersion (const Handle(CDM_MetaData)& aMetaData) = 0;
|
|
|
|
Handle(Message_Messenger) myMessenger;
|
|
CDM_MetaDataLookUpTable myMetaDataLookUpTable;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _CDM_Application_HeaderFile
|