Salome HOME
Merge branch 'V7_dev'
[plugins/ghs3dprlplugin.git] / src / tepal2med / ghs3dprl_mesh_wrap.h
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // ---
21 // File   : ghs3dprl_mesh_wrap.h
22 // Author : Christian VAN WAMBEKE (CEA) (from Hexotic plugin Lioka RAZAFINDRAZAKA)
23 // ---
24 //
25 #ifndef GHS3DPRL_MESH_WRAP_H
26 #define GHS3DPRL_MESH_WRAP_H
27
28 #include <string>
29 #include <map>
30 #include <QHash>
31 #include <QRegExp>
32
33 #include <libxml/tree.h>
34 #include <libxml/parser.h>
35 #include <libxml/xpath.h>
36 #include <libxml/xpathInternals.h>
37
38 //Med File V 2.2 attributes
39 //#undef MED_H
40 //#undef MED_PROTO_H
41
42 #include <med.h>
43 //#include <med_proto.h>
44
45 class CVWtab
46 //contains size=size of vector and the vector (med_int or med_float)
47 {
48
49 public:
50    static long memoryuse;
51    static long memorymax;
52    long size,type;
53    med_int *tmint;   //integer med
54    med_float *tmflo; //float med
55    QString filename;
56
57    CVWtab(long nb, med_int *pmint);
58    CVWtab(long nb, med_float *pmflo);
59    ~CVWtab();
60    bool CVWtab_deallocate();
61    bool is_equal(CVWtab *tab2);
62 };
63
64 typedef std::map<QString,  int> fend;
65 typedef std::map<QString, fend> fagr;
66 class familles{
67    private:
68    void newfam(QString nom);
69    void newgro(QString nom);
70    public:
71    int no;
72    fagr fam;
73    fagr gro;
74    void write();
75    xmlNodePtr xml_groups();
76    void add(QString nomfam, QString nomgro);
77    void addgro();
78    bool get_number_of_new_family(int sign,med_int *num,QString *tmp);
79    med_int find_family_on_groups(med_int fam1, med_int fam2);
80    fend fuse_goups(med_int fam1, med_int fam2);
81 };
82
83 class ghs3dprl_mesh_wrap
84 {
85 public:
86    QString medname,casename,path,pathini,filemed,format,format_tetra;
87    bool for_tetrahpc; //to know what files to read: .noboite or .mesh
88    QRegExp deletegroups; //regular expression 
89    long
90       nbtetrastotal,
91       nofile,nbfiles,nbfilestot,
92       nbelem_limit_swap,
93       verbose;
94    med_err err;
95    med_idt fid,fidjoint;
96    med_int idom;
97
98    //master.xml
99    std::string filemaster,domainname;
100    char distfilename[MED_COMMENT_SIZE];
101    xmlDocPtr master_doc;
102    xmlNodePtr root_node,node,node2,
103               joints_node,info_node,files_node,mesh_node;
104
105    QHash<QString,CVWtab*> mestab;
106    familles families;
107
108    //from skin.med
109    char nommaa[MED_NAME_SIZE+1];
110    char maillage_description[MED_COMMENT_SIZE+1];
111    char nomcoo[3*MED_SNAME_SIZE+1];
112    char unicoo[3*MED_SNAME_SIZE+1];
113    med_int *famnodesskin;    //from skin.med...
114    med_int *famseg2skin;     //...valid on global index/numerotation
115    med_int *famtria3skin;
116
117    //to final files .med with tetrahedra
118    char nomfinal[MED_NAME_SIZE+1];
119    med_int *famnodes,nbnodes,famnewnodes,famallnodes;  //to final files .med with tetrahedra
120    med_int *famseg2,nbseg2,famnewseg2,famallseg2;
121    med_int *famtria3,nbtria3,famnewtria3,famalltria3;
122    med_int *famtetra4,nbtetra4,famnewtetra4,famalltetra4;
123
124    //low level
125    bool list_keys_mesh_wrap(); //list keys
126    bool list_onekey_mesh_wrap(const QString &key);
127    long remove_key_mesh_wrap(const QRegExp &rxp);
128    long nb_key_mesh_wrap(const QRegExp &rxp);
129    long remove_all_keys_mesh_wrap();
130    bool insert_key(const QString &key,CVWtab *tab);
131    CVWtab* restore_key(const QString &key);
132
133    //family level
134    bool set_one_more_family(med_int *fami, med_int *more, med_int nb);
135    med_int create_families(med_idt fid, int sign);
136    med_int create_family_zero(med_idt fid, QString nameMesh);
137    void add_family(med_int num,QString newgro);
138    void cout_families_and_groups();
139    bool idom_nodes();
140    bool idom_edges();
141    bool idom_faces();
142    bool idom_joints();
143    bool idom_tetras();
144
145    //test level
146    bool test_msg_wrap();
147    bool test_vertices_wrap();
148
149    //hight level
150    long SwapOutOfMemory_key_mesh_wrap(const QRegExp &rxp,long ifgreaterthan=0);
151    bool ReadFileMSGnew(const QString FileName);
152    bool TestExistingFileMESHnew(const QString FileName);
153    bool ReadFileGLO(const QString FileName);
154    bool ReadFileFACES(const QString FileName);
155    bool ReadFileMESH(const QString FileName);
156    bool ReadFileNOBOITE(const QString FileName);
157    bool ReadFileNOBOITEB(const QString FileName);
158    bool ReadFilePOINTS(const QString FileName);
159    bool Find_VerticesDomainToVerticesSkin();
160    bool Write_masterxmlMEDfile();
161    bool Write_MEDfiles_v0(bool deletekeys=false); 
162    bool Write_MEDfiles_v1(bool deletekeys=false); 
163    bool Write_MEDfiles_v2(bool deletekeys=false);
164 };
165
166 #endif