mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-06 10:36:12 +03:00
Class CDF_Session is removed. Integrated previously but not described: 0029195: OCAF - ensure thread safety for different documents. Static local variables are eliminated in PCDM package. Global documents metadata look-up table and directory of opened documents are removed. Look-up table is maintained now as field in instances of the CDM_Application class. Methods providing iteration by components are removed from class CDF_Store; signature of methods returned Standard_ExtString is changed to return Handle(TCollection_HExtendedString). Support of different "Presentations" of documents is eliminated.
153 lines
5.0 KiB
C++
153 lines
5.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_Application.hxx>
|
|
#include <CDM_Document.hxx>
|
|
#include <CDM_MetaData.hxx>
|
|
#include <CDM_Reference.hxx>
|
|
#include <Resource_Manager.hxx>
|
|
#include <Standard_Dump.hxx>
|
|
#include <Standard_Type.hxx>
|
|
#include <TCollection_ExtendedString.hxx>
|
|
#include <Message.hxx>
|
|
#include <Message_Messenger.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(CDM_Application,Standard_Transient)
|
|
|
|
//=======================================================================
|
|
//function : Constructor
|
|
//purpose :
|
|
//=======================================================================
|
|
CDM_Application::CDM_Application()
|
|
{
|
|
myMessenger = new Message_Messenger;
|
|
}
|
|
//=======================================================================
|
|
//function : SetDocumentVersion
|
|
//purpose :
|
|
//=======================================================================
|
|
void CDM_Application::SetDocumentVersion
|
|
(const Handle(CDM_Document)& aDocument,
|
|
const Handle(CDM_MetaData)& aMetaData) const
|
|
{
|
|
aDocument->SetModifications(aMetaData->DocumentVersion(this));
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetReferenceCounter
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void CDM_Application::SetReferenceCounter
|
|
(const Handle(CDM_Document)& aDocument,
|
|
const Standard_Integer aReferenceCounter)
|
|
{
|
|
aDocument->SetReferenceCounter(aReferenceCounter);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : MessageDriver
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(Message_Messenger) CDM_Application::MessageDriver()
|
|
{
|
|
return myMessenger;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Write
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void CDM_Application::Write(const Standard_ExtString aString)
|
|
{
|
|
MessageDriver()->Send(aString);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : BeginOfUpdate
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void CDM_Application::BeginOfUpdate (const Handle(CDM_Document)& /*aDocument*/)
|
|
{
|
|
TCollection_ExtendedString updating("Updating: ");
|
|
updating += "Document";
|
|
Write(updating.ToExtString());
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : EndOfUpdate
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void CDM_Application::EndOfUpdate
|
|
(const Handle(CDM_Document)& /*aDocument*/,
|
|
const Standard_Boolean theStatus,
|
|
const TCollection_ExtendedString& /*ErrorString*/)
|
|
{
|
|
TCollection_ExtendedString message;
|
|
if (theStatus)
|
|
message="Updated: ";
|
|
else
|
|
message="Error during updating: ";
|
|
|
|
message+="Document";
|
|
Write(message.ToExtString());
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Name
|
|
//purpose : returns the application name
|
|
//=======================================================================
|
|
|
|
TCollection_ExtendedString CDM_Application::Name() const
|
|
{
|
|
// Default: empty
|
|
return TCollection_ExtendedString();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Version
|
|
//purpose : returns the application version
|
|
//=======================================================================
|
|
|
|
TCollection_AsciiString CDM_Application::Version() const
|
|
{
|
|
// Default: empty
|
|
return TCollection_AsciiString();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : MetaDataLookUpTable
|
|
//purpose : returns the MetaData LookUpTable
|
|
//=======================================================================
|
|
CDM_MetaDataLookUpTable& CDM_Application::MetaDataLookUpTable()
|
|
{
|
|
return myMetaDataLookUpTable;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : DumpJson
|
|
//purpose :
|
|
//=======================================================================
|
|
void CDM_Application::DumpJson (Standard_OStream& theOStream, Standard_Integer /*theDepth*/) const
|
|
{
|
|
OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream)
|
|
}
|