#include <limits>
+static int aMaxNameId = std::numeric_limits<int>::max();
+
void HYDROData_Tool::WriteStringsToFile( QFile& theFile,
const QStringList& theStrings,
const QString& theSep )
aName = thePrefix;
} else {
int anId = 1;
- int aMaxId = std::numeric_limits<int>::max();
- while( anId < aMaxId )
+ while( anId < aMaxNameId )
{
aName = QString( "%1_%2" ).arg( thePrefix ).arg( QString::number( anId++ ) );
theObject->SetName( anObjName );
}
+QString HYDROData_Tool::GenerateNameForPython( const MapOfTreatedObjects& theTreatedObjects,
+ const QString& thePrefix )
+{
+ QString aName = thePrefix;
+ if ( !theTreatedObjects.contains( aName ) )
+ return aName;
+
+ int anId = 1;
+ while( anId < aMaxNameId )
+ {
+ aName = QString( "%1_%2" ).arg( thePrefix ).arg( QString::number( anId++ ) );
+
+ // check that there are no other objects with the same name
+ if ( !theTreatedObjects.contains( aName ) )
+ break;
+ }
+
+ return aName;
+}
\ No newline at end of file
/**
* \brief Generate name for new object.
- * \param theModule module
+ * \param theDoc document
* \param thePrefix name prefix
* \param theUsedNames list of already used names
* \param theIsTryToUsePurePrefix if true - the prefix will be returned if the name equal to the prefix is not busy
const QString& theNewStr,
const Handle(HYDROData_Entity)& theObject );
+
+ /**
+ * \brief Generate name for new object in python environment.
+ * \param theTreatedObjects objects which was alredy created by dump operation
+ * \param thePrefix name prefix
+ * \return generated name
+ */
+ static QString GenerateNameForPython( const MapOfTreatedObjects& theTreatedObjects,
+ const QString& thePrefix );
};
inline bool ValuesEquals( const double& theFirst, const double& theSecond )