Salome HOME
Copyrights update 2015.
[modules/paravis.git] / src / PVGUI / PVGUI_DataModel.cxx
1 // Copyright (C) 2010-2015  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 : Adrien Bruneton (CEA)
20 //
21
22 #include "PVGUI_DataModel.h"
23 #include "PVGUI_Module.h"
24
25 #include <iostream>
26 #include <QFile>
27 #include <QTextStream>
28
29 PVGUI_DataModel::PVGUI_DataModel( PVGUI_Module* theModule ):
30   LightApp_DataModel(theModule)
31 {}
32
33 PVGUI_DataModel::~PVGUI_DataModel()
34 {}
35
36 bool PVGUI_DataModel::dumpPython( const QString& path, CAM_Study* std,
37             bool multiFile, QStringList& listOfFiles)
38 {
39   QString tmpFile("/tmp/kikou.py");
40   listOfFiles.push_back(tmpFile);
41   QFile file(tmpFile);
42   if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
43     return false;
44
45   //MESSAGE("[PARAVIS] dumpPython()")
46   PVGUI_Module * mod = (PVGUI_Module *) getModule();
47   QString trace(mod->getTraceString());
48
49   if (multiFile)
50     {
51       QStringList abuffer;
52       abuffer.push_back(QString("def RebuildData( theStudy ):"));
53       QStringList lst(trace.split("\n"));
54       foreach(QString elem, lst)
55         {
56           QString s = "  " + elem;
57           abuffer.push_back(s);
58         }
59       abuffer.push_back(QString("  pass"));
60       trace = abuffer.join("\n");
61     }
62   QTextStream out(&file);
63   out << trace.toStdString().c_str() << "\n";
64   out.flush();
65   file.close();
66
67   std::cout << "@@@@@ wrote :\n" <<trace.toStdString().c_str()<< "\n";
68   return true;
69 }
70