Salome HOME
Get relevant changes from V7_dev branch (copyright update, adm files etc)
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingNatureOfField.cxx
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 // Author : Anthony Geay (CEA/DEN)
20
21 #include "MEDCouplingNatureOfField.hxx"
22
23 #include <algorithm>
24 #include <sstream>
25
26 namespace MEDCoupling
27 {
28   const char *MEDCouplingNatureOfField::REPR_OF_NATUREOFFIELD[NB_OF_POSSIBILITIES]=
29   { "NoNature",
30     "IntensiveMaximum",
31     "ExtensiveMaximum",
32     "ExtensiveConservation",
33     "IntensiveConservation"};
34
35   const int MEDCouplingNatureOfField::POS_OF_NATUREOFFIELD[NB_OF_POSSIBILITIES]={17,26,32,35,37};
36
37   const char *MEDCouplingNatureOfField::GetRepr(NatureOfField nat)
38   {
39     const int *pos=std::find(POS_OF_NATUREOFFIELD,POS_OF_NATUREOFFIELD+NB_OF_POSSIBILITIES,(int)nat);
40     if(pos==POS_OF_NATUREOFFIELD+NB_OF_POSSIBILITIES)
41       {
42         std::ostringstream oss; oss << "MEDCouplingNatureOfField::getRepr : Unrecognized nature of field ! ";
43         oss << GetAllPossibilitiesStr() << " !";
44         throw INTERP_KERNEL::Exception(oss.str().c_str());
45       }
46     std::size_t pos2=std::distance(POS_OF_NATUREOFFIELD,pos);
47     return REPR_OF_NATUREOFFIELD[pos2];
48   }
49
50   std::string MEDCouplingNatureOfField::GetReprNoThrow(NatureOfField nat)
51   {
52     const int *pos=std::find(POS_OF_NATUREOFFIELD,POS_OF_NATUREOFFIELD+NB_OF_POSSIBILITIES,(int)nat);
53     if(pos==POS_OF_NATUREOFFIELD+NB_OF_POSSIBILITIES)
54       return std::string("Unrecognized nature of field !");
55     std::size_t pos2=std::distance(POS_OF_NATUREOFFIELD,pos);
56     return std::string(REPR_OF_NATUREOFFIELD[pos2]);
57   }
58
59   std::string MEDCouplingNatureOfField::GetAllPossibilitiesStr()
60   {
61     std::ostringstream oss; oss << "Possibilities are : ";
62     for(int i=0;i<NB_OF_POSSIBILITIES;i++)
63       {
64         oss << REPR_OF_NATUREOFFIELD[i] << "(value=" << POS_OF_NATUREOFFIELD[i] << ")";
65         if(i!=NB_OF_POSSIBILITIES-1)
66           oss << ", ";
67       }
68     return oss.str();
69   }
70 }