1 // Copyright (C) 2014-2015 EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 // Lesser General Public License for more details.
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #include "HYDROGUI_ImportPolylineOp.h"
21 #include "HYDROGUI_DataModel.h"
22 #include "HYDROGUI_Module.h"
23 #include "HYDROGUI_UpdateFlags.h"
24 #include "HYDROGUI_Tool2.h"
25 #include <HYDROData_PolylineXY.h>
26 #include <HYDROData_Polyline3D.h>
27 #include <HYDROGUI_DataObject.h>
28 #include <HYDROData_Bathymetry.h>
29 #include <HYDROData_Iterator.h>
30 #include <HYDROData_ShapeFile.h>
32 #include <HYDROData_Profile.h>
34 #include <SUIT_Desktop.h>
35 #include <SUIT_FileDlg.h>
36 #include <LightApp_Application.h>
38 #include <QApplication>
41 #include <SUIT_MessageBox.h>
44 HYDROGUI_ImportPolylineOp::HYDROGUI_ImportPolylineOp( HYDROGUI_Module* theModule )
45 : HYDROGUI_Operation( theModule )
47 setName( tr( "IMPORT_POLYLINE" ) );
50 HYDROGUI_ImportPolylineOp::~HYDROGUI_ImportPolylineOp()
54 void HYDROGUI_ImportPolylineOp::startOperation()
56 HYDROGUI_Operation::startOperation();
58 myFileDlg = new SUIT_FileDlg( module()->getApp()->desktop(), true );
59 myFileDlg->setWindowTitle( getName() );
60 myFileDlg->setFileMode( SUIT_FileDlg::ExistingFiles );
61 myFileDlg->setNameFilter( tr("POLYLINE_FILTER") );
63 connect( myFileDlg, SIGNAL( accepted() ), this, SLOT( onApply() ) );
64 connect( myFileDlg, SIGNAL( rejected() ), this, SLOT( onCancel() ) );
69 NCollection_Sequence<Handle(HYDROData_Entity)> HYDROGUI_ImportPolylineOp::ImportPolyOp(
70 const QStringList& aFileNames, Handle(HYDROData_Document) theDocument,
71 HYDROGUI_Module* module, HYDROData_ShapeFile::ImportShapeType theShapeTypesToImport)
73 NCollection_Sequence<Handle(HYDROData_Entity)> importedEntities;
74 foreach (QString aFileName, aFileNames)
76 if ( aFileName.isEmpty() )
79 QString anExt = aFileName.split('.', QString::SkipEmptyParts).back();
83 HYDROData_ShapeFile anImporter;
84 NCollection_Sequence<Handle(HYDROData_Entity)> theEntities;
85 int aShapeTypeOfFile = -1;
86 int aStat = anImporter.ImportPolylines(theDocument, aFileName, theEntities,
87 aShapeTypeOfFile, theShapeTypesToImport );
88 if (aStat == 1 || aStat == 2)
92 aDBFFileName = aFileName.simplified().replace( aFileName.simplified().size() - 4, 4, ".dbf");
93 bool DBF_Stat = anImporter.DBF_OpenDBF(aDBFFileName);
96 QStringList aFieldList = anImporter.DBF_GetFieldList();
97 int nbRecords = anImporter.DBF_GetNbRecords();
98 assert (theEntities.Length() == nbRecords);
99 if (theEntities.Length() == nbRecords)
101 int indNameAttrFound = -1;
103 bool bUseNameAttrFound = false;
104 for (QStringList::iterator it = aFieldList.begin(); it != aFieldList.end(); it++, k++)
105 if (QString::compare(*it, "name", Qt::CaseInsensitive) == 0)
107 indNameAttrFound = k;
111 if (indNameAttrFound != -1)
112 bUseNameAttrFound = SUIT_MessageBox::question( module->getApp()->desktop(),
113 tr( "IMPORT_POLYLINE" ),
114 tr( "IMPORT_POLYLINE_USE_NAME_ATTR" ),
115 QMessageBox::Yes | QMessageBox::No,
116 SUIT_MessageBox::Yes) == SUIT_MessageBox::Yes;
118 std::vector<std::vector<HYDROData_ShapeFile::DBF_AttrValue>> anAttrVV;
119 for (int i = 0; i < aFieldList.size(); i++)
121 std::vector<HYDROData_ShapeFile::DBF_AttrValue> anAttrV;
122 anAttrVV.push_back(anAttrV);
123 anImporter.DBF_GetAttributeList(i, anAttrVV[i] );
127 for (int i = 1; i <= theEntities.Length(); i++)
129 Handle(HYDROData_PolylineXY) aPolylineXY = Handle(HYDROData_PolylineXY)::DownCast( theEntities(i) );
130 QStringList aDBFinfo;
131 aDBFinfo << aFieldList; //first, the table header
132 for (int j = 0; j < aFieldList.size(); j++)
135 const HYDROData_ShapeFile::DBF_AttrValue& attrV = anAttrVV[j][i-1];
136 if (attrV.myFieldType == HYDROData_ShapeFile::DBF_FieldType_String)
137 aDBFinfo << attrV.myStrVal;
138 else if (attrV.myFieldType == HYDROData_ShapeFile::DBF_FieldType_Integer)
139 aDBFinfo << QString::number(attrV.myIntVal);
140 else if (attrV.myFieldType == HYDROData_ShapeFile::DBF_FieldType_Double)
141 aDBFinfo << QString::number(attrV.myDoubleVal);
145 assert (aDBFinfo.size() / 2 == aFieldList.size());
146 aPolylineXY->SetDBFInfo(aDBFinfo);
147 if (bUseNameAttrFound)
149 QString nameOfPoly = aDBFinfo[aDBFinfo.size() / 2 + indNameAttrFound];
150 if (!nameOfPoly.isEmpty())
151 aPolylineXY->SetName(nameOfPoly);
154 aPolylineXY->SetName("null_name_" + QString::number(indNULL));
163 UpdateView(module, theEntities);
166 UpdateView(module, theEntities);
167 if (theShapeTypesToImport == HYDROData_ShapeFile::ImportShapeType_All) //if other flag = > no need to show this messagebox
168 SUIT_MessageBox::information(module->getApp()->desktop(),
169 tr( "IMPORT_POLYLINE" ), tr ("POLYGON_IMPORTED_AS_POLYLINE"));
174 if (theShapeTypesToImport == HYDROData_ShapeFile::ImportShapeType::ImportShapeType_Polygon)
175 aMess += tr ("POLYLINE_IMPORT_FAILED_AS_POLYGON") + ";\n";
177 aMess += tr ("POLYLINE_IMPORT_FAILED_AS_POLYLINE") + ";\n";
180 aMess += tr ("CANT_OPEN_SHP");
181 else if (aStat == -2)
182 aMess += tr ("CANT_OPEN_SHX");
184 aMess += tr ("SHAPE_TYPE_IS") + anImporter.GetShapeTypeName(aShapeTypeOfFile);
185 SUIT_MessageBox::warning( module->getApp()->desktop(), tr( "IMPORT_POLYLINE" ), aMess);
187 importedEntities.Append(theEntities);
190 return importedEntities;
193 void HYDROGUI_ImportPolylineOp::onApply()
201 QStringList aFileNames = myFileDlg->selectedFiles();
203 QApplication::setOverrideCursor( Qt::WaitCursor );
206 ImportPolyOp(aFileNames, doc(), module(), HYDROData_ShapeFile::ImportShapeType_All);
208 if (!aFileNames.empty())
210 commitDocOperation();
212 module()->update( UF_Model | UF_VTKViewer | UF_VTK_Forced | UF_VTK_Init | UF_OCCViewer );
217 QApplication::restoreOverrideCursor();
220 void HYDROGUI_ImportPolylineOp::UpdateView( HYDROGUI_Module* module, NCollection_Sequence<Handle(HYDROData_Entity)>& anEntities)
222 size_t anActiveViewId = HYDROGUI_Tool::GetActiveGraphicsViewId( module );
223 if ( anActiveViewId == 0 )
224 anActiveViewId = HYDROGUI_Tool::GetActiveOCCViewId( module );
226 for (int i = 1; i <= anEntities.Size() ; i++)
228 anEntities(i)->Update();
229 module->setObjectVisible( anActiveViewId, anEntities(i), true );
230 module->setIsToUpdate( anEntities(i) );