// Created on: 1997-08-08 // 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. // Modified by rmi, Wed Jan 14 08:17:35 1998 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include IMPLEMENT_STANDARD_RTTIEXT(CDF_Application,CDM_Application) #define theMetaDataDriver CDF_Session::CurrentSession()->MetaDataDriver() //======================================================================= //function : //purpose : //======================================================================= CDF_Application::CDF_Application():myRetrievableStatus(PCDM_RS_OK) {} //======================================================================= //function : Load //purpose : //======================================================================= Handle(CDF_Application) CDF_Application::Load(const Standard_GUID& aGUID) { return Handle(CDF_Application)::DownCast(Plugin::Load(aGUID)); } //======================================================================= //function : Open //purpose : //======================================================================= void CDF_Application::Open(const Handle(CDM_Document)& aDocument) { CDF_Session::CurrentSession()->Directory()->Add(aDocument); aDocument->Open(this); Activate(aDocument,CDF_TOA_New); } //======================================================================= //function : CanClose //purpose : //======================================================================= CDM_CanCloseStatus CDF_Application::CanClose(const Handle(CDM_Document)& aDocument) { return aDocument->CanClose(); } //======================================================================= //function : Close //purpose : //======================================================================= void CDF_Application::Close(const Handle(CDM_Document)& aDocument) { CDF_Session::CurrentSession()->Directory()->Remove(aDocument); aDocument->Close(); } //======================================================================= //function : Retrieve //purpose : //======================================================================= Handle(CDM_Document) CDF_Application::Retrieve(const TCollection_ExtendedString& aFolder, const TCollection_ExtendedString& aName, const Standard_Boolean UseStorageConfiguration) { TCollection_ExtendedString nullVersion; return Retrieve(aFolder,aName,nullVersion,UseStorageConfiguration); } //======================================================================= //function : Retrieve //purpose : //======================================================================= Handle(CDM_Document) CDF_Application::Retrieve(const TCollection_ExtendedString& aFolder, const TCollection_ExtendedString& aName, const TCollection_ExtendedString& aVersion, const Standard_Boolean UseStorageConfiguration) { Handle(CDM_MetaData) theMetaData; if(aVersion.Length() == 0) theMetaData=theMetaDataDriver->MetaData(aFolder,aName); else theMetaData=theMetaDataDriver->MetaData(aFolder,aName,aVersion); CDF_TypeOfActivation theTypeOfActivation=TypeOfActivation(theMetaData); Handle(CDM_Document) theDocument=Retrieve(theMetaData,UseStorageConfiguration,Standard_False); CDF_Session::CurrentSession()->Directory()->Add(theDocument); Activate(theDocument,theTypeOfActivation); theDocument->Open(this); return theDocument; } //======================================================================= //function : CanRetrieve //purpose : //======================================================================= PCDM_ReaderStatus CDF_Application::CanRetrieve(const TCollection_ExtendedString& aFolder, const TCollection_ExtendedString& aName) { TCollection_ExtendedString aVersion; return CanRetrieve(aFolder,aName,aVersion); } //======================================================================= //function : CanRetrieve //purpose : //======================================================================= PCDM_ReaderStatus CDF_Application::CanRetrieve(const TCollection_ExtendedString& aFolder, const TCollection_ExtendedString& aName, const TCollection_ExtendedString& aVersion) { if (!theMetaDataDriver->Find(aFolder,aName,aVersion)) return PCDM_RS_UnknownDocument; else if (!theMetaDataDriver->HasReadPermission(aFolder,aName,aVersion)) return PCDM_RS_PermissionDenied; else { Handle(CDM_MetaData) theMetaData = theMetaDataDriver->MetaData(aFolder,aName,aVersion); if(theMetaData->IsRetrieved()) { return theMetaData->Document()->IsModified() ? PCDM_RS_AlreadyRetrievedAndModified : PCDM_RS_AlreadyRetrieved; } else { TCollection_ExtendedString theFileName=theMetaData->FileName(); TCollection_ExtendedString theFormat=PCDM_ReadWriter::FileFormat(theFileName); if(theFormat.Length()==0) { TCollection_ExtendedString ResourceName=UTL::Extension(theFileName); ResourceName+=".FileFormat"; if(UTL::Find(Resources(),ResourceName)) { theFormat=UTL::Value(Resources(),ResourceName); } else return PCDM_RS_UnrecognizedFileFormat; } // check actual availability of the driver try { Handle(PCDM_Reader) aReader = ReaderFromFormat(theFormat); if (aReader.IsNull()) return PCDM_RS_NoDriver; } catch (Standard_Failure const&) { // no need to report error, this was just check for availability } } } return PCDM_RS_OK; } //======================================================================= //function : Activate //purpose : //======================================================================= //void CDF_Application::Activate(const Handle(CDM_Document)& aDocument,const CDF_TypeOfActivation aTypeOfActivation) { void CDF_Application::Activate(const Handle(CDM_Document)& ,const CDF_TypeOfActivation ) { } //======================================================================= //function : DefaultFolder //purpose : //======================================================================= Standard_ExtString CDF_Application::DefaultFolder(){ if(myDefaultFolder.Length() == 0) { myDefaultFolder=CDF_Session::CurrentSession()->MetaDataDriver()->DefaultFolder(); } return myDefaultFolder.ToExtString(); } //======================================================================= //function : SetDefaultFolder //purpose : //======================================================================= Standard_Boolean CDF_Application::SetDefaultFolder(const Standard_ExtString aFolder) { Standard_Boolean found = CDF_Session::CurrentSession()->MetaDataDriver()->FindFolder(aFolder); if(found) myDefaultFolder=aFolder; return found; } //======================================================================= //function : Retrieve //purpose : //======================================================================= Handle(CDM_Document) CDF_Application::Retrieve(const Handle(CDM_MetaData)& aMetaData,const Standard_Boolean UseStorageConfiguration) { return Retrieve(aMetaData,UseStorageConfiguration,Standard_True); } //======================================================================= //function : Retrieve //purpose : //======================================================================= Handle(CDM_Document) CDF_Application::Retrieve(const Handle(CDM_MetaData)& aMetaData,const Standard_Boolean UseStorageConfiguration, const Standard_Boolean IsComponent) { Handle(CDM_Document) theDocumentToReturn; myRetrievableStatus = PCDM_RS_DriverFailure; if(IsComponent) { Standard_SStream aMsg; switch (CanRetrieve(aMetaData)) { case PCDM_RS_UnknownDocument: aMsg << "could not find the referenced document: " << aMetaData->Path() << "; not found." <<(char)0 << endl; myRetrievableStatus = PCDM_RS_UnknownDocument; throw Standard_Failure(aMsg.str().c_str()); break; case PCDM_RS_PermissionDenied: aMsg << "Could not find the referenced document: " << aMetaData->Path() << "; permission denied. " <<(char)0 << endl; myRetrievableStatus = PCDM_RS_PermissionDenied; throw Standard_Failure(aMsg.str().c_str()); break; default: break; } } Standard_Boolean AlreadyRetrieved=aMetaData->IsRetrieved(); if(AlreadyRetrieved) myRetrievableStatus = PCDM_RS_AlreadyRetrieved; Standard_Boolean Modified=AlreadyRetrieved && aMetaData->Document()->IsModified(); if(Modified) myRetrievableStatus = PCDM_RS_AlreadyRetrievedAndModified; if(!AlreadyRetrieved || Modified) { TCollection_ExtendedString aFormat; if (!Format(aMetaData->FileName(), aFormat)) { Standard_SStream aMsg; aMsg << "Could not determine format for the file " << aMetaData->FileName() << (char)0; throw Standard_NoSuchObject(aMsg.str().c_str()); } Handle(PCDM_Reader) theReader = ReaderFromFormat (aFormat); Handle(CDM_Document) theDocument; if(Modified) { theDocument=aMetaData->Document(); theDocument->RemoveAllReferences(); } else theDocument=theReader->CreateDocument(); SetReferenceCounter(theDocument,PCDM_RetrievalDriver::ReferenceCounter(aMetaData->FileName(), MessageDriver())); SetDocumentVersion(theDocument,aMetaData); theMetaDataDriver->ReferenceIterator()->LoadReferences(theDocument,aMetaData,this,UseStorageConfiguration); try { OCC_CATCH_SIGNALS theReader->Read(aMetaData->FileName(),theDocument,this); } catch (Standard_Failure const& anException) { myRetrievableStatus = theReader->GetStatus(); if(myRetrievableStatus > PCDM_RS_AlreadyRetrieved){ Standard_SStream aMsg; aMsg << anException << endl; throw Standard_Failure(aMsg.str().c_str()); } } myRetrievableStatus = theReader->GetStatus(); theDocument->SetMetaData(aMetaData); theDocumentToReturn=theDocument; } else theDocumentToReturn=aMetaData->Document(); return theDocumentToReturn; } //======================================================================= //function : DocumentVersion //purpose : //======================================================================= Standard_Integer CDF_Application::DocumentVersion(const Handle(CDM_MetaData)& theMetaData) { // const Handle(CDM_MessageDriver)& aMsgDriver = MessageDriver(); return PCDM_RetrievalDriver::DocumentVersion(theMetaData->FileName(), MessageDriver()); } //======================================================================= //function : TypeOfActivation //purpose : //======================================================================= CDF_TypeOfActivation CDF_Application::TypeOfActivation(const Handle(CDM_MetaData)& aMetaData) { if(aMetaData->IsRetrieved()) { Handle(CDM_Document) theDocument=aMetaData->Document(); if(theDocument->IsOpened()) { if(theDocument->IsModified()) return CDF_TOA_Modified; else return CDF_TOA_Unchanged; } else return CDF_TOA_New; } return CDF_TOA_New; } //======================================================================= //function : Read //purpose : //======================================================================= Handle(CDM_Document) CDF_Application::Read (Standard_IStream& theIStream) { Handle(CDM_Document) aDoc; Handle(Storage_Data) dData; TCollection_ExtendedString aFormat; try { OCC_CATCH_SIGNALS aFormat = PCDM_ReadWriter::FileFormat (theIStream, dData); } catch (Standard_Failure const& anException) { myRetrievableStatus = PCDM_RS_FormatFailure; Standard_SStream aMsg; aMsg << anException << endl; throw Standard_Failure(aMsg.str().c_str()); } if (aFormat.IsEmpty()) { myRetrievableStatus = PCDM_RS_FormatFailure; return aDoc; } // 1. use a format name to detect plugin corresponding to the format to continue reading Handle(PCDM_Reader) aReader = ReaderFromFormat (aFormat); // 2. create document with the detected reader aDoc = aReader->CreateDocument(); // 3. read the content of theIStream to aDoc try { OCC_CATCH_SIGNALS aReader->Read (theIStream, dData, aDoc, this); } catch (Standard_Failure const& anException) { myRetrievableStatus = aReader->GetStatus(); if (myRetrievableStatus > PCDM_RS_AlreadyRetrieved) { Standard_SStream aMsg; aMsg << anException << endl; throw Standard_Failure(aMsg.str().c_str()); } } myRetrievableStatus = aReader->GetStatus(); return aDoc; } //======================================================================= //function : ReaderFromFormat //purpose : //======================================================================= Handle(PCDM_Reader) CDF_Application::ReaderFromFormat(const TCollection_ExtendedString& theFormat) { // check map of readers Handle(PCDM_RetrievalDriver) aReader; if (myReaders.FindFromKey (theFormat, aReader)) return aReader; // support of legacy method of loading reader as plugin TCollection_ExtendedString aResourceName = theFormat; aResourceName += ".RetrievalPlugin"; if (!UTL::Find(Resources(), aResourceName)) { Standard_SStream aMsg; aMsg << "Could not found the item:" << aResourceName <<(char)0; myRetrievableStatus = PCDM_RS_WrongResource; throw Standard_NoSuchObject(aMsg.str().c_str()); } // Get GUID as a string. TCollection_ExtendedString strPluginId = UTL::Value(Resources(), aResourceName); // If the GUID (as a string) contains blanks, remove them. if (strPluginId.Search(' ') != -1) strPluginId.RemoveAll(' '); // Convert to GUID. Standard_GUID aPluginId = UTL::GUID(strPluginId); try { OCC_CATCH_SIGNALS aReader = Handle(PCDM_RetrievalDriver)::DownCast(Plugin::Load(aPluginId)); } catch (Standard_Failure const& anException) { myRetrievableStatus = PCDM_RS_WrongResource; throw anException; } if (!aReader.IsNull()) { aReader->SetFormat(theFormat); } else { myRetrievableStatus = PCDM_RS_WrongResource; } // record in map myReaders.Add(theFormat, aReader); return aReader; } //======================================================================= //function : WriterFromFormat //purpose : //======================================================================= Handle(PCDM_StorageDriver) CDF_Application::WriterFromFormat(const TCollection_ExtendedString& theFormat) { // check map of writers Handle(PCDM_StorageDriver) aDriver; if (myWriters.FindFromKey(theFormat, aDriver)) return aDriver; // support of legacy method of loading reader as plugin TCollection_ExtendedString aResourceName = theFormat; aResourceName += ".StoragePlugin"; if(!UTL::Find(Resources(), aResourceName)) { myWriters.Add(theFormat, aDriver); Standard_SStream aMsg; aMsg << "Could not found the resource definition:" << aResourceName <<(char)0; throw Standard_NoSuchObject(aMsg.str().c_str()); } // Get GUID as a string. TCollection_ExtendedString strPluginId = UTL::Value(Resources(), aResourceName); // If the GUID (as a string) contains blanks, remove them. if (strPluginId.Search(' ') != -1) strPluginId.RemoveAll(' '); // Convert to GUID. Standard_GUID aPluginId = UTL::GUID(strPluginId); try { OCC_CATCH_SIGNALS aDriver = Handle(PCDM_StorageDriver)::DownCast(Plugin::Load(aPluginId)); } catch (Standard_Failure const& anException) { myWriters.Add(theFormat, aDriver); myRetrievableStatus = PCDM_RS_WrongResource; throw anException; } if (aDriver.IsNull()) { myRetrievableStatus = PCDM_RS_WrongResource; } else { aDriver->SetFormat(theFormat); } // record in map myWriters.Add(theFormat, aDriver); return aDriver; } //======================================================================= //function : Format //purpose : dp //======================================================================= Standard_Boolean CDF_Application::Format(const TCollection_ExtendedString& aFileName, TCollection_ExtendedString& theFormat) { theFormat = PCDM_ReadWriter::FileFormat(aFileName); // It is good if the format is in the file. Otherwise base on the extension. if(theFormat.Length()==0) { TCollection_ExtendedString ResourceName; ResourceName=UTL::Extension(aFileName); ResourceName+=".FileFormat"; if(UTL::Find(Resources(),ResourceName)) { theFormat = UTL::Value(Resources(),ResourceName); } else return Standard_False; } return Standard_True; } //======================================================================= //function : CanRetrieve //purpose : //======================================================================= PCDM_ReaderStatus CDF_Application::CanRetrieve(const Handle(CDM_MetaData)& aMetaData) { if(aMetaData->HasVersion()) return CanRetrieve(aMetaData->Folder(),aMetaData->Name(),aMetaData->Version()); else return CanRetrieve(aMetaData->Folder(),aMetaData->Name()); }