#include #include #include "utilities.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // CAREFUL ! position of this file is critic : see Lucien PIGNOLONI / OCC //============================================================================= /*! * constructor: */ //============================================================================= GEOMImpl_IInsertOperations::GEOMImpl_IInsertOperations(GEOM_Engine* theEngine, int theDocID) : GEOM_IOperations(theEngine, theDocID) { MESSAGE("GEOMImpl_IInsertOperations::GEOMImpl_IInsertOperations"); } //============================================================================= /*! * destructor */ //============================================================================= GEOMImpl_IInsertOperations::~GEOMImpl_IInsertOperations() { MESSAGE("GEOMImpl_IInsertOperations::~GEOMImpl_IInsertOperations"); } //============================================================================= /*! * MakeCopy */ //============================================================================= Handle(GEOM_Object) GEOMImpl_IInsertOperations::MakeCopy(Handle(GEOM_Object) theOriginal) { SetErrorCode(KO); if (theOriginal.IsNull()) return NULL; //Add a new Copy object Handle(GEOM_Object) aCopy = GetEngine()->AddObject(GetDocID(), GEOM_COPY); //Add a Copy function for creation a copy object Handle(GEOM_Function) aFunction = aCopy->AddFunction(GEOMImpl_CopyDriver::GetID(), COPY_WITH_REF); //Check if the function is set correctly if(aFunction->GetDriverGUID() != GEOMImpl_CopyDriver::GetID()) return NULL; GEOMImpl_ICopy aCI(aFunction); Handle(GEOM_Function) aRefFunction = theOriginal->GetLastFunction(); if (aRefFunction.IsNull()) return NULL; aCI.SetOriginal(aRefFunction); //Compute the Copy value try { if (!GetSolver()->ComputeFunction(aFunction)) { SetErrorCode("Copy driver failed"); return NULL; } } catch (Standard_Failure) { Handle(Standard_Failure) aFail = Standard_Failure::Caught(); SetErrorCode(aFail->GetMessageString()); return NULL; } //Make a Python command GEOM::TPythonDump(aFunction) << aCopy << " = geompy.MakeCopy(" << theOriginal << ")"; SetErrorCode(OK); return aCopy; } //============================================================================= /*! * Export */ //============================================================================= void GEOMImpl_IInsertOperations::Export (const Handle(GEOM_Object) theOriginal, const TCollection_AsciiString& theFileName, const TCollection_AsciiString& theFormatName) { SetErrorCode(KO); if (theOriginal.IsNull()) return; Handle(GEOM_Function) aRefFunction = theOriginal->GetLastFunction(); if (aRefFunction.IsNull()) return; //There is no function which creates an object to be exported //Add an Export function Handle(GEOM_Function) aFunction = theOriginal->AddFunction(GEOMImpl_ExportDriver::GetID(), EXPORT_SHAPE); if (aFunction.IsNull()) return; //Check if the function is set correctly if (aFunction->GetDriverGUID() != GEOMImpl_ExportDriver::GetID()) return; //Set parameters GEOMImpl_IImportExport aCI (aFunction); aCI.SetOriginal(aRefFunction); aCI.SetFileName(theFileName); Handle(TCollection_HAsciiString) aHLibName; if (!IsSupported(Standard_False, theFormatName, aHLibName)) { return; } TCollection_AsciiString aLibName = aHLibName->String(); aCI.SetPluginName(aLibName); //Perform the Export try { if (!GetSolver()->ComputeFunction(aFunction)) { SetErrorCode("Export driver failed"); return; } } catch (Standard_Failure) { Handle(Standard_Failure) aFail = Standard_Failure::Caught(); SetErrorCode(aFail->GetMessageString()); return; } //Make a Python command GEOM::TPythonDump(aFunction) << "geompy.Export(" << theOriginal << ", \"" << theFileName.ToCString() << "\", \"" << theFormatName.ToCString() << "\")"; SetErrorCode(OK); } //============================================================================= /*! * Import */ //============================================================================= Handle(GEOM_Object) GEOMImpl_IInsertOperations::Import (const TCollection_AsciiString& theFileName, const TCollection_AsciiString& theFormatName) { SetErrorCode(KO); if (theFileName.IsEmpty() || theFormatName.IsEmpty()) return NULL; //Add a new result object Handle(GEOM_Object) result = GetEngine()->AddObject(GetDocID(), GEOM_IMPORT); //Add an Import function Handle(GEOM_Function) aFunction = result->AddFunction(GEOMImpl_ImportDriver::GetID(), IMPORT_SHAPE); if (aFunction.IsNull()) return result; //Check if the function is set correctly if (aFunction->GetDriverGUID() != GEOMImpl_ImportDriver::GetID()) return result; //Set parameters GEOMImpl_IImportExport aCI (aFunction); aCI.SetFileName(theFileName); Handle(TCollection_HAsciiString) aHLibName; if (!IsSupported(Standard_True, theFormatName, aHLibName)) { return result; } TCollection_AsciiString aLibName = aHLibName->String(); aCI.SetPluginName(aLibName); //Perform the Import try { if (!GetSolver()->ComputeFunction(aFunction)) { SetErrorCode("Import driver failed"); return NULL; } } catch (Standard_Failure) { Handle(Standard_Failure) aFail = Standard_Failure::Caught(); SetErrorCode(aFail->GetMessageString()); return NULL; } //Make a Python command GEOM::TPythonDump(aFunction) << result << " = geompy.Import(\"" << theFileName.ToCString() << "\", \"" << theFormatName.ToCString() << "\")"; SetErrorCode(OK); return result; } //============================================================================= /*! * ImportTranslators */ //============================================================================= Standard_Boolean GEOMImpl_IInsertOperations::ImportTranslators (Handle(TColStd_HSequenceOfAsciiString)& theFormats, Handle(TColStd_HSequenceOfAsciiString)& thePatterns) { if (theFormats.IsNull()) theFormats = new TColStd_HSequenceOfAsciiString; else theFormats->Clear(); if (thePatterns.IsNull()) thePatterns = new TColStd_HSequenceOfAsciiString; else thePatterns->Clear(); if (!InitResMgr()) return Standard_False; // Read Import formats list if (myResMgr->Find("Import")) { TCollection_AsciiString aFormats (myResMgr->Value("Import")); TCollection_AsciiString aToken = aFormats.Token("| \t", 1); int i = 1; for (; !aToken.IsEmpty(); aToken = aFormats.Token("| \t", ++i)) { theFormats->Append(aToken); } } // Read Patterns for each supported format int j = 1, len = theFormats->Length(); for (; j <= len; j++) { TCollection_AsciiString aPattern; TCollection_AsciiString aKey (theFormats->Value(j)); aKey += ".Pattern"; if (myResMgr->Find(aKey.ToCString())) aPattern = myResMgr->Value(aKey.ToCString()); else { aPattern = theFormats->Value(j); aPattern += " Files ( *.* )"; } thePatterns->Append(aPattern); } return (!theFormats->IsEmpty()); } //============================================================================= /*! * ExportTranslators */ //============================================================================= Standard_Boolean GEOMImpl_IInsertOperations::ExportTranslators (Handle(TColStd_HSequenceOfAsciiString)& theFormats, Handle(TColStd_HSequenceOfAsciiString)& thePatterns) { if (theFormats.IsNull()) theFormats = new TColStd_HSequenceOfAsciiString; else theFormats->Clear(); if (thePatterns.IsNull()) thePatterns = new TColStd_HSequenceOfAsciiString; else thePatterns->Clear(); if (!InitResMgr()) return Standard_False; // Read Export formats list if (myResMgr->Find("Export")) { TCollection_AsciiString aFormats (myResMgr->Value("Export")); TCollection_AsciiString aToken = aFormats.Token("| \t", 1); int i = 1; for (; !aToken.IsEmpty(); aToken = aFormats.Token("| \t", ++i)) { theFormats->Append(aToken); } } // Read Patterns for each supported format int j = 1, len = theFormats->Length(); for (; j <= len; j++) { TCollection_AsciiString aPattern; TCollection_AsciiString aKey (theFormats->Value(j)); aKey += ".Pattern"; if (myResMgr->Find(aKey.ToCString())) aPattern = myResMgr->Value(aKey.ToCString()); else { aPattern = theFormats->Value(j); aPattern += " Files ( *.* )"; } thePatterns->Append(aPattern); } return (!theFormats->IsEmpty()); } //============================================================================= /*! * IsSupported */ //============================================================================= Standard_Boolean GEOMImpl_IInsertOperations::IsSupported (const Standard_Boolean isImport, const TCollection_AsciiString& theFormat, Handle(TCollection_HAsciiString)& theLibName) { if (!InitResMgr()) return Standard_False; // Import/Export mode TCollection_AsciiString aMode; //Standard_CString aMode; if (isImport) aMode = "Import"; else aMode = "Export"; // Read supported formats for the certain mode if (myResMgr->Find(aMode.ToCString())) { TCollection_AsciiString aFormats (myResMgr->Value(aMode.ToCString())); if (aFormats.Search(theFormat) > -1) { // Read library name for the supported format TCollection_AsciiString aKey (theFormat); aKey += "."; aKey += aMode; if (myResMgr->Find(aKey.ToCString())) { TCollection_AsciiString aLibName (myResMgr->Value(aKey.ToCString())); theLibName = new TCollection_HAsciiString (aLibName); return Standard_True; } } } return Standard_False; } //============================================================================= /*! * InitResMgr */ //============================================================================= Standard_Boolean GEOMImpl_IInsertOperations::InitResMgr() { if (myResMgr.IsNull()) { // Initialize the Resource Manager TCollection_AsciiString aResDir (getenv("GEOM_ROOT_DIR")); #ifdef WNT aResDir += "\\share\\salome\\resources"; #else aResDir += "/share/salome/resources"; #endif char * dir = getenv("GEOM_ENGINE_RESOURCES_DIR"); TCollection_AsciiString aUserResDir; if ( dir ) { aUserResDir = dir; } else { aUserResDir = getenv("HOME"); #ifdef WNT aUserResDir += "\\.salome\\resources"; #else aUserResDir += "/.salome/resources"; #endif } myResMgr = new Resource_Manager ("ImportExport", aResDir, aUserResDir, Standard_False); if (!myResMgr->Find("Import") && !myResMgr->Find("Export")) { // instead of complains in Resource_Manager INFOS("No valid file \"ImportExport\" found in " << aResDir.ToCString() << " and in " << aUserResDir.ToCString() ); } } return ( myResMgr->Find("Import") || myResMgr->Find("Export") ); }