mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-03-03 02:45:37 +05:00
PPGP issue. Fix dump of not published SMESH_IDSource's. As a result
DumpStudy command fails.
This commit is contained in:
parent
77f09a6ae5
commit
23d265a7a7
@ -179,6 +179,11 @@ namespace {
|
|||||||
|
|
||||||
void CheckObjectPresence( const Handle(_pyCommand)& cmd, set<_pyID> & presentObjects)
|
void CheckObjectPresence( const Handle(_pyCommand)& cmd, set<_pyID> & presentObjects)
|
||||||
{
|
{
|
||||||
|
if ( cmd->GetString().Location( TPythonDump::NotPublishedObjectName(), 1, cmd->Length() ))
|
||||||
|
{
|
||||||
|
cmd->Comment();
|
||||||
|
return;
|
||||||
|
}
|
||||||
for ( int iArg = cmd->GetNbArgs(); iArg; --iArg )
|
for ( int iArg = cmd->GetNbArgs(); iArg; --iArg )
|
||||||
{
|
{
|
||||||
const _pyID& arg = cmd->GetArg( iArg );
|
const _pyID& arg = cmd->GetArg( iArg );
|
||||||
|
@ -43,15 +43,11 @@ static int MYDEBUG = 0;
|
|||||||
static int MYDEBUG = 0;
|
static int MYDEBUG = 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static TCollection_AsciiString NotPublishedObjectName()
|
|
||||||
{
|
|
||||||
return "__NOT__Published__Object__";
|
|
||||||
}
|
|
||||||
|
|
||||||
namespace SMESH
|
namespace SMESH
|
||||||
{
|
{
|
||||||
|
|
||||||
size_t TPythonDump::myCounter = 0;
|
size_t TPythonDump::myCounter = 0;
|
||||||
|
const char theNotPublishedObjectName[] = "__NOT__Published__Object__";
|
||||||
|
|
||||||
TVar::TVar(CORBA::Double value):myVals(1) { myVals[0] = SMESH_Comment(value); }
|
TVar::TVar(CORBA::Double value):myVals(1) { myVals[0] = SMESH_Comment(value); }
|
||||||
TVar::TVar(CORBA::Long value):myVals(1) { myVals[0] = SMESH_Comment(value); }
|
TVar::TVar(CORBA::Long value):myVals(1) { myVals[0] = SMESH_Comment(value); }
|
||||||
@ -279,7 +275,7 @@ namespace SMESH
|
|||||||
myStream << entry.in();
|
myStream << entry.in();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
myStream << NotPublishedObjectName();
|
myStream << theNotPublishedObjectName;
|
||||||
}
|
}
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
@ -298,7 +294,7 @@ namespace SMESH
|
|||||||
if ( aSMESHGen->CanPublishInStudy( theArg )) // not published SMESH object
|
if ( aSMESHGen->CanPublishInStudy( theArg )) // not published SMESH object
|
||||||
myStream << "smeshObj_" << size_t(theArg);
|
myStream << "smeshObj_" << size_t(theArg);
|
||||||
else
|
else
|
||||||
myStream << NotPublishedObjectName();
|
myStream << theNotPublishedObjectName;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
myStream << "None";
|
myStream << "None";
|
||||||
@ -343,7 +339,7 @@ namespace SMESH
|
|||||||
SMESH::ElementType type = types->length() ? types[0] : SMESH::ALL;
|
SMESH::ElementType type = types->length() ? types[0] : SMESH::ALL;
|
||||||
return *this << mesh << ".GetIDSource(" << anElementsId << ", " << type << ")";
|
return *this << mesh << ".GetIDSource(" << anElementsId << ", " << type << ")";
|
||||||
}
|
}
|
||||||
return *this;
|
return *this << theNotPublishedObjectName;
|
||||||
}
|
}
|
||||||
|
|
||||||
TPythonDump&
|
TPythonDump&
|
||||||
@ -505,6 +501,10 @@ namespace SMESH
|
|||||||
DumpArray( theList, *this );
|
DumpArray( theList, *this );
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
const char* TPythonDump::NotPublishedObjectName()
|
||||||
|
{
|
||||||
|
return theNotPublishedObjectName;
|
||||||
|
}
|
||||||
|
|
||||||
TCollection_AsciiString myLongStringStart( "TPythonDump::LongStringStart" );
|
TCollection_AsciiString myLongStringStart( "TPythonDump::LongStringStart" );
|
||||||
TCollection_AsciiString myLongStringEnd ( "TPythonDump::LongStringEnd" );
|
TCollection_AsciiString myLongStringEnd ( "TPythonDump::LongStringEnd" );
|
||||||
@ -679,7 +679,7 @@ Engines::TMPFile* SMESH_Gen_i::DumpPython (CORBA::Object_ptr theStudy,
|
|||||||
CORBA::Octet* anOctetBuf = (CORBA::Octet*)aBuffer;
|
CORBA::Octet* anOctetBuf = (CORBA::Octet*)aBuffer;
|
||||||
Engines::TMPFile_var aStreamFile = new Engines::TMPFile(aLen+1, aLen+1, anOctetBuf, 1);
|
Engines::TMPFile_var aStreamFile = new Engines::TMPFile(aLen+1, aLen+1, anOctetBuf, 1);
|
||||||
|
|
||||||
bool hasNotPublishedObjects = aScript.Location( NotPublishedObjectName(), 1, aLen);
|
bool hasNotPublishedObjects = aScript.Location( SMESH::theNotPublishedObjectName, 1, aLen);
|
||||||
isValidScript = isValidScript && !hasNotPublishedObjects;
|
isValidScript = isValidScript && !hasNotPublishedObjects;
|
||||||
|
|
||||||
return aStreamFile._retn();
|
return aStreamFile._retn();
|
||||||
|
@ -213,6 +213,7 @@ namespace SMESH
|
|||||||
|
|
||||||
static const char* SMESHGenName() { return "smeshgen"; }
|
static const char* SMESHGenName() { return "smeshgen"; }
|
||||||
static const char* MeshEditorName() { return "mesh_editor"; }
|
static const char* MeshEditorName() { return "mesh_editor"; }
|
||||||
|
static const char* NotPublishedObjectName();
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief Return marker of long string literal beginning
|
* \brief Return marker of long string literal beginning
|
||||||
|
Loading…
Reference in New Issue
Block a user