1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-21 10:13:43 +03:00
occt/src/CDM/CDM_Reference.cxx
mkrylova d533dafb56 0031035: Coding - uninitialized class fields reported by Visual Studio Code Analysis
Added initialization of fields that had not initialization
Added default constructors to classes without constructors
2020-07-23 16:08:20 +03:00

145 lines
5.1 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.
#include <CDM_Application.hxx>
#include <CDM_Document.hxx>
#include <CDM_MetaData.hxx>
#include <CDM_Reference.hxx>
#include <Standard_Dump.hxx>
#include <Standard_Type.hxx>
IMPLEMENT_STANDARD_RTTIEXT(CDM_Reference,Standard_Transient)
CDM_Reference::CDM_Reference(const Handle(CDM_Document)& aFromDocument, const Handle(CDM_Document)& aToDocument, const Standard_Integer aReferenceIdentifier, const Standard_Integer aToDocumentVersion):
myToDocument(aToDocument),
myFromDocument(aFromDocument.operator->()),
myReferenceIdentifier(aReferenceIdentifier),
myDocumentVersion(aToDocumentVersion),
myUseStorageConfiguration(Standard_False)
{}
CDM_Reference::CDM_Reference(const Handle(CDM_Document)& aFromDocument, const Handle(CDM_MetaData)& aToDocument, const Standard_Integer aReferenceIdentifier, const Handle(CDM_Application)& anApplication, const Standard_Integer aToDocumentVersion, const Standard_Boolean UseStorageConfiguration):
myFromDocument(aFromDocument.operator->()),
myReferenceIdentifier(aReferenceIdentifier),
myApplication(anApplication),
myMetaData(aToDocument),
myDocumentVersion(aToDocumentVersion),
myUseStorageConfiguration(UseStorageConfiguration)
{}
Handle(CDM_Document) CDM_Reference::FromDocument() {
return myFromDocument;
}
Handle(CDM_Document) CDM_Reference::ToDocument() {
if(myToDocument.IsNull()) {
myToDocument=myApplication->Retrieve(myMetaData,myUseStorageConfiguration);
myApplication.Nullify();
}
return myToDocument;
}
Standard_Integer CDM_Reference::ReferenceIdentifier() {
return myReferenceIdentifier;
}
void CDM_Reference::Update(const Handle(CDM_MetaData)& aMetaData) {
if(myToDocument.IsNull()) {
if(myMetaData == aMetaData) {
myToDocument=myMetaData->Document();
myToDocument->AddFromReference(this);
myApplication.Nullify();
}
}
}
Standard_Boolean CDM_Reference::IsUpToDate() const {
Standard_Integer theActualDocumentVersion;
if(myToDocument.IsNull())
theActualDocumentVersion=myMetaData->DocumentVersion(myApplication);
else
theActualDocumentVersion=myToDocument->Modifications();
return myDocumentVersion==theActualDocumentVersion;
}
void CDM_Reference::SetIsUpToDate() {
Standard_Integer theActualDocumentVersion;
if(myToDocument.IsNull())
theActualDocumentVersion=myMetaData->DocumentVersion(myApplication);
else
theActualDocumentVersion=myToDocument->Modifications();
if(theActualDocumentVersion != -1) myDocumentVersion=theActualDocumentVersion;
}
void CDM_Reference::UnsetToDocument(const Handle(CDM_MetaData)& aMetaData, const Handle(CDM_Application)& anApplication) {
myToDocument.Nullify();
myApplication=anApplication;
myMetaData=aMetaData;
}
Standard_Integer CDM_Reference::DocumentVersion() const {
return myDocumentVersion;
}
Standard_Boolean CDM_Reference::IsOpened() const {
if(myToDocument.IsNull()) return Standard_False;
return myToDocument->IsOpened();
}
Standard_Boolean CDM_Reference::IsReadOnly() const {
if(myToDocument.IsNull()) return myMetaData->IsReadOnly();
return myToDocument->IsReadOnly();
}
Handle(CDM_Document) CDM_Reference::Document() const {
return myToDocument;
}
Handle(CDM_MetaData) CDM_Reference::MetaData() const {
return myMetaData;
}
Handle(CDM_Application) CDM_Reference::Application() const {
return myApplication;
}
Standard_Boolean CDM_Reference::UseStorageConfiguration() const {
return myUseStorageConfiguration;
}
Standard_Boolean CDM_Reference::IsInSession() const {
return !myToDocument.IsNull();
}
Standard_Boolean CDM_Reference::IsStored() const {
return !myMetaData.IsNull();
}
//=======================================================================
//function : DumpJson
//purpose :
//=======================================================================
void CDM_Reference::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
{
OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream)
OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myToDocument.get())
OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myFromDocument)
OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myReferenceIdentifier)
OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myApplication.get())
OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myMetaData.get())
OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myDocumentVersion)
OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myUseStorageConfiguration)
}