X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FExchangePlugin%2FExchangePlugin_ExportFeature.cpp;h=5a75630be79aaca93bf0819ada9ed4adc8c021bc;hb=b5893b0a30fac08134c24de4565cb513a43affa6;hp=e2bbfa0e5147dacd3e0f9f55fc6ed7d288b0556e;hpb=45b03d86c0d3014a3cc4dd428e214a5cc8d0e7e1;p=modules%2Fshaper.git diff --git a/src/ExchangePlugin/ExchangePlugin_ExportFeature.cpp b/src/ExchangePlugin/ExchangePlugin_ExportFeature.cpp index e2bbfa0e5..5a75630be 100644 --- a/src/ExchangePlugin/ExchangePlugin_ExportFeature.cpp +++ b/src/ExchangePlugin/ExchangePlugin_ExportFeature.cpp @@ -43,6 +43,7 @@ #include #include #include +#include #include @@ -175,6 +176,27 @@ void ExchangePlugin_ExportFeature::exportFile(const std::string& theFileName, } } +/// Returns XAO string by the value from the table +static std::string valToString(const ModelAPI_AttributeTables::Value& theVal, + const ModelAPI_AttributeTables::ValueType& theType) { + std::ostringstream aStr; // the resulting string value + switch(theType) { + case ModelAPI_AttributeTables::BOOLEAN: + aStr<<(theVal.myBool ? "true" : "false"); + break; + case ModelAPI_AttributeTables::INTEGER: + aStr<selectionType(); - std::string aDimensionString = + std::string aDimensionString = ExchangePlugin_Tools::selectionType2xaoDimension(aSelectionType); XAO::Dimension aGroupDimension = XAO::XaoUtils::stringToDimension(aDimensionString); @@ -263,7 +285,7 @@ void ExchangePlugin_ExportFeature::exportXAO(const std::string& theFileName) // conversion of dimension std::string aSelectionType = aSelectionList->selectionType(); - std::string aDimensionString = + std::string aDimensionString = ExchangePlugin_Tools::selectionType2xaoDimension(aSelectionType); XAO::Dimension aFieldDimension = XAO::XaoUtils::stringToDimension(aDimensionString); bool isWholePart = aSelectionType == "part"; @@ -289,6 +311,7 @@ void ExchangePlugin_ExportFeature::exportXAO(const std::string& theFileName) aStep->setStamp(aStampIndex); int aNumElements = isWholePart ? aXaoField->countElements() : aTables->rows(); int aNumComps = aTables->columns(); + std::set aFilledIDs; // to fill the rest by defaults // omit default values first row for(int aRow = isWholePart ? 0 : 1; aRow < aNumElements; aRow++) { for(int aCol = 0; aCol < aNumComps; aCol++) { @@ -300,37 +323,33 @@ void ExchangePlugin_ExportFeature::exportXAO(const std::string& theFileName) // complex conversion of reference id to element index int aReferenceID = aSelection->Id(); std::string aReferenceString = XAO::XaoUtils::intToString(aReferenceID); - int anElementID = + anElementID = aXao.getGeometry()->getElementIndexByReference(aFieldDimension, aReferenceString); } ModelAPI_AttributeTables::Value aVal = aTables->value( isWholePart ? 0 : aRow, aCol, aStepIndex); - std::ostringstream aStr; // string value - switch(aTables->type()) { - case ModelAPI_AttributeTables::BOOLEAN: - aStr<<(aVal.myBool ? "True" : "False"); - break; - case ModelAPI_AttributeTables::INTEGER: - aStr<type()); aStep->setStringValue(isWholePart ? aRow : anElementID, aCol, aStrVal); + aFilledIDs.insert(anElementID); + } + } + if (!isWholePart) { // fill the rest values by default ones + XAO::GeometricElementList::iterator allElem = aXao.getGeometry()->begin(aFieldDimension); + for(; allElem != aXao.getGeometry()->end(aFieldDimension); allElem++) { + if (aFilledIDs.find(allElem->first) != aFilledIDs.end()) + continue; + for(int aCol = 0; aCol < aNumComps; aCol++) { + ModelAPI_AttributeTables::Value aVal = aTables->value(0, aCol, aStepIndex); // default + std::string aStrVal = valToString(aVal, aTables->type()); + aStep->setStringValue(allElem->first, aCol, aStrVal); + } } } } } - // exporting - XAOExport(theFileName, &aXao, anError); if (!anError.empty()) {