Open CASCADE Technology Reference Manual 8.0.0
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions
PCDM_ReadWriter Class Referenceabstract

#include <PCDM_ReadWriter.hxx>

Inheritance diagram for PCDM_ReadWriter:
Inheritance graph
[legend]

Public Member Functions

virtual TCollection_AsciiString Version () const =0
 returns PCDM_ReadWriter_1.
 
virtual void WriteReferenceCounter (const occ::handle< Storage_Data > &aData, const occ::handle< CDM_Document > &aDocument) const =0
 
virtual void WriteReferences (const occ::handle< Storage_Data > &aData, const occ::handle< CDM_Document > &aDocument, const TCollection_ExtendedString &theReferencerFileName) const =0
 
virtual void WriteExtensions (const occ::handle< Storage_Data > &aData, const occ::handle< CDM_Document > &aDocument) const =0
 
virtual void WriteVersion (const occ::handle< Storage_Data > &aData, const occ::handle< CDM_Document > &aDocument) const =0
 
virtual int ReadReferenceCounter (const TCollection_ExtendedString &theFileName, const occ::handle< Message_Messenger > &theMsgDriver) const =0
 
virtual void ReadReferences (const TCollection_ExtendedString &aFileName, NCollection_Sequence< PCDM_Reference > &theReferences, const occ::handle< Message_Messenger > &theMsgDriver) const =0
 
virtual void ReadExtensions (const TCollection_ExtendedString &aFileName, NCollection_Sequence< TCollection_ExtendedString > &theExtensions, const occ::handle< Message_Messenger > &theMsgDriver) const =0
 
virtual int ReadDocumentVersion (const TCollection_ExtendedString &aFileName, const occ::handle< Message_Messenger > &theMsgDriver) const =0
 
- Public Member Functions inherited from Standard_Transient
 Standard_Transient ()
 Empty constructor.
 
 Standard_Transient (const Standard_Transient &)
 Copy constructor – does nothing.
 
Standard_Transientoperator= (const Standard_Transient &)
 Assignment operator, needed to avoid copying reference counter.
 
virtual ~Standard_Transient ()=default
 Destructor must be virtual.
 
virtual const opencascade::handle< Standard_Type > & DynamicType () const
 Returns a type descriptor about this object.
 
bool IsInstance (const opencascade::handle< Standard_Type > &theType) const
 Returns a true value if this is an instance of Type.
 
bool IsInstance (const char *const theTypeName) const
 Returns a true value if this is an instance of TypeName.
 
bool IsKind (const opencascade::handle< Standard_Type > &theType) const
 Returns true if this is an instance of Type or an instance of any class that inherits from Type. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
 
bool IsKind (const char *const theTypeName) const
 Returns true if this is an instance of TypeName or an instance of any class that inherits from TypeName. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
 
Standard_TransientThis () const
 Returns non-const pointer to this object (like const_cast). For protection against creating handle to objects allocated in stack or call from constructor, it will raise exception Standard_ProgramError if reference counter is zero.
 
int GetRefCount () const noexcept
 Get the reference counter of this object.
 
void IncrementRefCounter () noexcept
 Increments the reference counter of this object. Uses relaxed memory ordering since incrementing only requires atomicity, not synchronization with other memory operations.
 
int DecrementRefCounter () noexcept
 Decrements the reference counter of this object; returns the decremented value. Uses release ordering for the decrement to ensure all writes to the object are visible before the count reaches zero. An acquire fence is added only when the count reaches zero, ensuring proper synchronization before deletion. This is more efficient than using acq_rel for every decrement.
 
virtual void Delete () const
 Memory deallocator for transient classes.
 

Static Public Member Functions

static void Open (const occ::handle< Storage_BaseDriver > &aDriver, const TCollection_ExtendedString &aFileName, const Storage_OpenMode anOpenMode)
 
static occ::handle< PCDM_ReadWriterReader (const TCollection_ExtendedString &aFileName)
 returns the convenient Reader for a File.
 
static occ::handle< PCDM_ReadWriterWriter ()
 
static void WriteFileFormat (const occ::handle< Storage_Data > &aData, const occ::handle< CDM_Document > &aDocument)
 
static TCollection_ExtendedString FileFormat (const TCollection_ExtendedString &aFileName)
 tries to get a format in the file. returns an empty string if the file could not be read or does not have a FileFormat information.
 
static TCollection_ExtendedString FileFormat (Standard_IStream &theIStream, occ::handle< Storage_Data > &theData)
 tries to get a format from the stream. returns an empty string if the file could not be read or does not have a FileFormat information.
 
- Static Public Member Functions inherited from Standard_Transient
static constexpr const charget_type_name ()
 Returns a type descriptor about this object.
 
static const opencascade::handle< Standard_Type > & get_type_descriptor ()
 Returns type descriptor of Standard_Transient class.
 

Additional Inherited Members

- Public Types inherited from Standard_Transient
typedef void base_type
 Returns a type descriptor about this object.
 

Member Function Documentation

◆ FileFormat() [1/2]

static TCollection_ExtendedString PCDM_ReadWriter::FileFormat ( const TCollection_ExtendedString & aFileName)
static

tries to get a format in the file. returns an empty string if the file could not be read or does not have a FileFormat information.

◆ FileFormat() [2/2]

static TCollection_ExtendedString PCDM_ReadWriter::FileFormat ( Standard_IStream & theIStream,
occ::handle< Storage_Data > & theData )
static

tries to get a format from the stream. returns an empty string if the file could not be read or does not have a FileFormat information.

◆ Open()

static void PCDM_ReadWriter::Open ( const occ::handle< Storage_BaseDriver > & aDriver,
const TCollection_ExtendedString & aFileName,
const Storage_OpenMode anOpenMode )
static

◆ ReadDocumentVersion()

virtual int PCDM_ReadWriter::ReadDocumentVersion ( const TCollection_ExtendedString & aFileName,
const occ::handle< Message_Messenger > & theMsgDriver ) const
pure virtual

Implemented in PCDM_ReadWriter_1.

◆ Reader()

static occ::handle< PCDM_ReadWriter > PCDM_ReadWriter::Reader ( const TCollection_ExtendedString & aFileName)
static

returns the convenient Reader for a File.

◆ ReadExtensions()

virtual void PCDM_ReadWriter::ReadExtensions ( const TCollection_ExtendedString & aFileName,
NCollection_Sequence< TCollection_ExtendedString > & theExtensions,
const occ::handle< Message_Messenger > & theMsgDriver ) const
pure virtual

Implemented in PCDM_ReadWriter_1.

◆ ReadReferenceCounter()

virtual int PCDM_ReadWriter::ReadReferenceCounter ( const TCollection_ExtendedString & theFileName,
const occ::handle< Message_Messenger > & theMsgDriver ) const
pure virtual

Implemented in PCDM_ReadWriter_1.

◆ ReadReferences()

virtual void PCDM_ReadWriter::ReadReferences ( const TCollection_ExtendedString & aFileName,
NCollection_Sequence< PCDM_Reference > & theReferences,
const occ::handle< Message_Messenger > & theMsgDriver ) const
pure virtual

Implemented in PCDM_ReadWriter_1.

◆ Version()

virtual TCollection_AsciiString PCDM_ReadWriter::Version ( ) const
pure virtual

returns PCDM_ReadWriter_1.

Implemented in PCDM_ReadWriter_1.

◆ WriteExtensions()

virtual void PCDM_ReadWriter::WriteExtensions ( const occ::handle< Storage_Data > & aData,
const occ::handle< CDM_Document > & aDocument ) const
pure virtual

Implemented in PCDM_ReadWriter_1.

◆ WriteFileFormat()

static void PCDM_ReadWriter::WriteFileFormat ( const occ::handle< Storage_Data > & aData,
const occ::handle< CDM_Document > & aDocument )
static

◆ Writer()

static occ::handle< PCDM_ReadWriter > PCDM_ReadWriter::Writer ( )
static

◆ WriteReferenceCounter()

virtual void PCDM_ReadWriter::WriteReferenceCounter ( const occ::handle< Storage_Data > & aData,
const occ::handle< CDM_Document > & aDocument ) const
pure virtual

Implemented in PCDM_ReadWriter_1.

◆ WriteReferences()

virtual void PCDM_ReadWriter::WriteReferences ( const occ::handle< Storage_Data > & aData,
const occ::handle< CDM_Document > & aDocument,
const TCollection_ExtendedString & theReferencerFileName ) const
pure virtual

Implemented in PCDM_ReadWriter_1.

◆ WriteVersion()

virtual void PCDM_ReadWriter::WriteVersion ( const occ::handle< Storage_Data > & aData,
const occ::handle< CDM_Document > & aDocument ) const
pure virtual

Implemented in PCDM_ReadWriter_1.


The documentation for this class was generated from the following file: