Salome HOME
Merge branch 'BR_LAND_COVER_MAP' of ssh://git.salome-platform.org/modules/hydro into...
[modules/hydro.git] / src / HYDROData / HYDROData_LandCoverMap.h
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.
6 //
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.
11 //
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
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #ifndef HYDROData_LANDCOVER_MAP_HeaderFile
20 #define HYDROData_LANDCOVER_MAP_HeaderFile
21
22 #include <HYDROData_Entity.h>
23 #include <TDataStd_ExtStringArray.hxx>
24 #include <NCollection_IndexedDataMap.hxx>
25 #include <QString>
26 #include <TopoDS_Face.hxx>
27
28 typedef NCollection_IndexedDataMap<TopoDS_Face, QString> HYDROData_MapOfFaceToStricklerType;
29
30 DEFINE_STANDARD_HANDLE( HYDROData_LandCoverMap, HYDROData_Entity )
31
32 class TopoDS_Shape;
33 class TopoDS_Wire;
34 class TopoDS_Iterator;
35 class TopTools_ListOfShape;
36 class Handle( HYDROData_PolylineXY );
37 class Handle( HYDROData_Object );
38 class gp_Pnt2d;
39
40 class HYDROData_LandCoverMap : public HYDROData_Entity
41 {
42 protected:
43   friend class HYDROData_Iterator;
44
45   enum DataTag
46   {
47     DataTag_First = HYDROData_Entity::DataTag_First + 100, ///< first tag, to reserve
48     DataTag_Shape,                                         ///< the shape presentation of the land cover map
49     DataTag_Types,
50   };
51
52 public:
53   class Iterator
54   {
55   public:
56     Iterator( const HYDROData_LandCoverMap& );
57     HYDRODATA_EXPORT Iterator( const Handle( HYDROData_LandCoverMap )& );
58     HYDRODATA_EXPORT ~Iterator();
59
60     void Init( const HYDROData_LandCoverMap& );
61     HYDRODATA_EXPORT bool More() const;
62     HYDRODATA_EXPORT void Next();
63     
64     int Index() const;
65     HYDRODATA_EXPORT TopoDS_Face Face() const;
66     HYDRODATA_EXPORT QString StricklerType() const;
67     void SetStricklerType( const QString& );
68
69   private:
70     TopoDS_Iterator* myIterator;
71     int              myIndex;
72     Handle(TDataStd_ExtStringArray) myArray;
73   };
74
75   enum DBFStatus
76   {
77     DBFStatus_OK,
78     DBFStatus_DIFF_SIZE_ERROR,
79     DBFStatus_OPEN_FILE_ERROR,
80     DBFStatus_NO_SUCH_FIELD_ERROR,
81     DBFStatus_NO_DBFVALUES_CORRESPONDENCE_WARNING
82   };
83
84   HYDRODATA_EXPORT HYDROData_LandCoverMap();
85   HYDRODATA_EXPORT virtual ~HYDROData_LandCoverMap();
86
87   HYDRODATA_EXPORT virtual const ObjectKind GetKind() const;
88
89   HYDRODATA_EXPORT DBFStatus ImportDBF( const QString& theDBFFileName, 
90                                         const QString& theFieldName, 
91                                         const QStringList& DBFValues,
92                                         const QStringList& StricklerTypes,
93                                         const QList<int>& theIndices );
94  
95   HYDRODATA_EXPORT void ExportDBF( const QString& theDBFFileName,
96                                    const QString& theFieldName, 
97                                    const QStringList& theDBFValues,
98                                    const QStringList& theStricklerTypes ) const;
99
100   HYDRODATA_EXPORT bool ExportTelemac( const QString& theFileName, double theDeflection ) const;
101
102   HYDRODATA_EXPORT bool Add( const Handle( HYDROData_Object )&, const QString& theType );
103   HYDRODATA_EXPORT bool Add( const Handle( HYDROData_PolylineXY )&, const QString& theType );
104
105   HYDRODATA_EXPORT bool Remove( const TopoDS_Face& );
106   HYDRODATA_EXPORT bool Remove( const TopTools_ListOfShape& );
107
108   HYDRODATA_EXPORT bool Split( const Handle( HYDROData_PolylineXY )& );
109   HYDRODATA_EXPORT bool Split( const TopoDS_Shape& );
110   HYDRODATA_EXPORT bool Merge( const TopTools_ListOfShape&, const QString& theType );
111
112   HYDRODATA_EXPORT bool ChangeType( const TopTools_ListOfShape&, const QString& theType );
113
114   HYDRODATA_EXPORT TopoDS_Face FindByPoint( const gp_Pnt2d&, QString& theType ) const;
115
116   HYDRODATA_EXPORT TopoDS_Shape GetShape() const;
117
118   HYDRODATA_EXPORT QString StricklerType( const TopoDS_Face& ) const;
119
120   HYDRODATA_EXPORT virtual QStringList DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const;
121
122   HYDRODATA_EXPORT int GetLCCount() const;
123   HYDRODATA_EXPORT bool IsEmpty() const;
124
125   HYDRODATA_EXPORT void StoreLandCovers( const HYDROData_MapOfFaceToStricklerType& );
126
127   HYDRODATA_EXPORT TopoDS_Shape RemoveInternal(const TopoDS_Shape& InSh);
128
129 protected:
130   void SetShape( const TopoDS_Shape& );
131
132   bool Add( const TopoDS_Wire&, const QString& );
133   bool LocalPartition( const TopoDS_Shape&, const QString& theNewType );
134   static TopoDS_Shape MergeFaces(const TopTools_ListOfShape& theFaces,
135                       bool IsToUnify, double theTolerance = 1E-5 );
136
137 public:
138   DEFINE_STANDARD_RTTI( HYDROData_LandCoverMap );
139
140 private:
141   friend class Iterator;
142   friend class test_HYDROData_LandCoverMap;
143 };
144
145 #endif