Salome HOME
Merge remote-tracking branch 'remotes/origin/master' into DumpWithGeom
[modules/shaper.git] / src / ExchangePlugin / ExchangePlugin_Dump.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 <ExchangePlugin_Dump.h>
22
23 #include <ModelAPI_AttributeBoolean.h>
24 #include <ModelAPI_AttributeString.h>
25 #include <ModelAPI_Document.h>
26 #include <ModelAPI_Session.h>
27 #include <ModelAPI_ResultPart.h>
28
29 #include <ModelHighAPI_Dumper.h>
30
31 #include <Config_ModuleReader.h>
32
33
34 ExchangePlugin_Dump::ExchangePlugin_Dump()
35 {
36 }
37
38 ExchangePlugin_Dump::~ExchangePlugin_Dump()
39 {
40 }
41
42 void ExchangePlugin_Dump::initAttributes()
43 {
44   data()->addAttribute(FILE_PATH_ID(), ModelAPI_AttributeString::typeId());
45   data()->addAttribute(FILE_FORMAT_ID(), ModelAPI_AttributeString::typeId());
46
47   data()->addAttribute(GEOMETRIC_DUMP_ID(), ModelAPI_AttributeBoolean::typeId());
48   boolean(GEOMETRIC_DUMP_ID())->setValue(false);
49 }
50
51 void ExchangePlugin_Dump::execute()
52 {
53   AttributeStringPtr aFilePathAttr =
54       this->string(ExchangePlugin_Dump::FILE_PATH_ID());
55   std::string aFilePath = aFilePathAttr->value();
56   if (aFilePath.empty())
57     return;
58
59   dump(aFilePath);
60 }
61
62 void ExchangePlugin_Dump::dump(const std::string& theFileName)
63 {
64   // load DumpAssistant from Python side
65   Config_ModuleReader::loadScript("salome.shaper.model.dump");
66
67   ModelHighAPI_Dumper* aDumper = ModelHighAPI_Dumper::getInstance();
68   aDumper->clear();
69   aDumper->setSelectionByGeometry(boolean(GEOMETRIC_DUMP_ID())->value());
70
71   DocumentPtr aDoc = ModelAPI_Session::get()->moduleDocument();
72
73   int aFeaturesNb = aDoc->size(ModelAPI_Feature::group());
74   if(aFeaturesNb > 1) {
75     FeaturePtr aLastFeature =
76         ModelAPI_Feature::feature(aDoc->object(ModelAPI_Feature::group(), aFeaturesNb - 1));
77     if(aDoc->currentFeature(true) != aLastFeature) {
78         setError("Dump cannot be done. Please move the history line to the end before dumping.");
79         return;
80     }
81   }
82
83   DocumentPtr anActiveDoc = ModelAPI_Session::get()->activeDocument();
84   aFeaturesNb = anActiveDoc->size(ModelAPI_Feature::group());
85   if(aFeaturesNb > 1) {
86     FeaturePtr aLastFeature =
87         ModelAPI_Feature::feature(anActiveDoc->object(ModelAPI_Feature::group(), aFeaturesNb - 1));
88     if(anActiveDoc->currentFeature(true) != aLastFeature) {
89         setError("Dump cannot be done. Please move the history line to the end before dumping.");
90         return;
91     }
92   }
93
94   std::list<FeaturePtr> aFeatures = aDoc->allFeatures();
95   for(std::list<FeaturePtr>::const_iterator aFeatIt = aFeatures.begin();
96       aFeatIt != aFeatures.end();
97       ++aFeatIt) {
98     ResultPartPtr aResultPart =
99       std::dynamic_pointer_cast<ModelAPI_ResultPart>((*aFeatIt)->firstResult());
100     if(aResultPart.get()) {
101       if(!aResultPart->isActivated()) {
102         setError("Error: Not all parts are loaded. Can not dump.");
103         return;
104       }
105     }
106   }
107
108   if (!aDumper || !aDumper->process(aDoc, theFileName))
109     setError("An error occured while dumping to " + theFileName);
110 }