X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESH_I%2FSMESH_PythonDump.hxx;h=189876f7b64d9e9eed2ae0a0ab944b3d14a5f0f6;hp=f4ea8834461768ace7701a5391f50a070d2c4d9c;hb=HEAD;hpb=8a9d91b414c3f26586dea735c22c7700898a0a1e diff --git a/src/SMESH_I/SMESH_PythonDump.hxx b/src/SMESH_I/SMESH_PythonDump.hxx index f4ea88344..803c15052 100644 --- a/src/SMESH_I/SMESH_PythonDump.hxx +++ b/src/SMESH_I/SMESH_PythonDump.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2024 CEA, EDF, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -89,7 +89,7 @@ namespace SMESH // =========================================================================================== /*! - * \brief Object used to make TPythonDump know that its held value can be a varible + * \brief Object used to make TPythonDump know that its held value can be a variable * * TPythonDump substitute TVar with names of notebook variables if any. */ @@ -99,9 +99,10 @@ namespace SMESH { std::vector< std::string > myVals; bool myIsList; - TVar(CORBA::Double value); - TVar(CORBA::Long value); - TVar(CORBA::Short value); + TVar(CORBA::Double value); + TVar(CORBA::Long value); + TVar(CORBA::LongLong value); + TVar(CORBA::Short value); TVar(const SMESH::double_array& value); // string used to temporary quote variable names in order // not to confuse variables with string arguments @@ -121,7 +122,9 @@ namespace SMESH std::ostringstream myStream; static size_t myCounter; int myVarsCounter; // counts stored TVar's + SMESH_Gen_i *mySmesh = nullptr; public: + TPythonDump(SMESH_Gen_i *smesh); TPythonDump(); virtual ~TPythonDump(); @@ -134,6 +137,9 @@ namespace SMESH TPythonDump& operator<<(int theArg); + TPythonDump& + operator<<(long long theArg); + TPythonDump& operator<<(double theArg); @@ -158,6 +164,9 @@ namespace SMESH TPythonDump& operator<<(const SMESH::long_array& theArg); + TPythonDump& + operator<<(const SMESH::smIdType_array& theArg); + TPythonDump& operator<<(const SMESH::double_array& theArg); @@ -200,9 +209,6 @@ namespace SMESH TPythonDump& operator<<(SMESH_MeshEditor_i* theArg); - TPythonDump& - operator<<(SMESH::MED_VERSION theArg); - TPythonDump& operator<<(const SMESH::AxisStruct & theAxis); @@ -230,12 +236,39 @@ namespace SMESH TPythonDump& operator<<(const SMESH::ListOfIDSources& theList); + TPythonDump& + operator<<(const SMESH::submesh_array& theList); + + TPythonDump& + operator<<(const SMESH::ListOfHypothesis& theList); + TPythonDump& operator<<(const SMESH::CoincidentFreeBorders& theCFB); TPythonDump& operator<<(const std::string& theArg); + + template + static TStream& DumpArray(const TArray& theArray, TStream & theStream) + { + if ( theArray.length() == 0 ) + { + theStream << "[]"; + } + else + { + theStream << "[ "; + for (CORBA::ULong i = 1; i <= theArray.length(); i++) { + theStream << theArray[i-1]; + if ( i < theArray.length() ) + theStream << ", "; + } + theStream << " ]"; + } + return theStream; + } + static const char* SMESHGenName() { return "smeshgen"; } static const char* MeshEditorName() { return "mesh_editor"; } static const char* NotPublishedObjectName();