Salome HOME
Merge remote-tracking branch 'origin/Toolbars_Management'
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_Tools.cpp
1 // Copyright (C) 2014-2017  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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "GeomAlgoAPI_Tools.h"
22 #include "GeomAlgoAPI_MakeShape.h"
23
24 #include <clocale>
25
26 #include <TCollection_AsciiString.hxx>
27 #include <OSD_Path.hxx>
28
29 using namespace GeomAlgoAPI_Tools;
30
31 Localizer::Localizer()
32 {
33   myCurLocale = std::setlocale(LC_NUMERIC, 0);
34   std::setlocale(LC_NUMERIC, "C");
35 }
36
37 Localizer::~Localizer()
38 {
39   std::setlocale(LC_NUMERIC, myCurLocale.c_str());
40 }
41
42
43 std::string File_Tools::extension(const std::string& theFileName)
44 {
45   // retrieve the file and plugin library names
46   TCollection_AsciiString aFileName(theFileName.c_str());
47   OSD_Path aPath(aFileName);
48   TCollection_AsciiString anExtension = aPath.Extension();
49   // TCollection_AsciiString are numbered from 1
50   anExtension = anExtension.SubString(2, anExtension.Length());
51   anExtension.UpperCase();
52   return anExtension.ToCString();
53 }
54
55 std::string File_Tools::name(const std::string& theFileName)
56 {
57   // retrieve the file and plugin library names
58   TCollection_AsciiString aFileName(theFileName.c_str());
59   OSD_Path aPath(aFileName);
60   return aPath.Name().ToCString();
61 }
62
63 bool AlgoError::isAlgorithmFailed(const GeomMakeShapePtr& theAlgorithm,
64                                   const std::string& theFeature,
65                                   std::string& theError)
66 {
67   theError.clear();
68   if (!theAlgorithm->isDone()) {
69     theError = "Error: " + (theFeature.empty() ? "The" : theFeature) + " algorithm failed.";
70     std::string anAlgoError = theAlgorithm->getError();
71     if (!anAlgoError.empty())
72       theError += " " + anAlgoError;
73     return true;
74   }
75   if (!theAlgorithm->shape() || theAlgorithm->shape()->isNull()) {
76     theError = "Error: Resulting shape";
77     if (!theFeature.empty())
78       theError += "of " + theFeature;
79     theError += " is Null.";
80     return true;
81   }
82   if (!theAlgorithm->isValid()) {
83     theError = "Error: Resulting shape";
84     if (!theFeature.empty())
85       theError += "of " + theFeature;
86     theError += " is not valid.";
87     return true;
88   }
89   return false;
90 }