mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-21 10:13:43 +03:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
117 lines
4.0 KiB
C++
117 lines
4.0 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_Reference.ixx>
|
|
|
|
|
|
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)
|
|
{}
|
|
|
|
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();
|
|
}
|