]> SALOME platform Git repositories - modules/gui.git/blob - src/PVViewer/PVViewer_Core.cxx
Salome HOME
fix Paraview with MPI on Scibian: for MPI init, argv[argc] must be null
[modules/gui.git] / src / PVViewer / PVViewer_Core.cxx
1 // Copyright (C) 2014-2019  CEA/DEN, EDF R&D, OPEN CASCADE
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 "PVViewer_Core.h"
23 #include "PVViewer_OutputWindow.h"
24 #include "PVViewer_GUIElements.h"
25 #include "PVViewer_Behaviors.h"
26 #include "PVViewer_Core.h"
27
28 #include <QApplication>
29 #include <QStringList>
30 #include <QDir>
31 #include <QMainWindow>
32 #include <QStandardPaths>
33
34 #include <string>
35
36 #include <pqOptions.h>
37 #include <pqSettings.h>
38 #include <pqPVApplicationCore.h>
39 #include <pqTabbedMultiViewWidget.h>
40 #include <pqParaViewMenuBuilders.h>
41 #include <pqActiveObjects.h>
42 #include <pqPipelineBrowserWidget.h>
43 #include <pqServerDisconnectReaction.h>
44
45
46 //---------- Static init -----------------
47 pqPVApplicationCore* PVViewer_Core::MyCoreApp = 0;
48 bool PVViewer_Core::ConfigLoaded = false;
49 PVViewer_Behaviors * PVViewer_Core::ParaviewBehaviors = NULL;
50
51 pqPVApplicationCore * PVViewer_Core::GetPVApplication()
52 {
53   return MyCoreApp;
54 }
55
56 /*!
57   \brief Static method, performs initialization of ParaView session.
58   \param fullSetup whether to instanciate all behaviors or just the minimal ones.
59   \return \c true if ParaView has been initialized successfully, otherwise false
60 */
61 bool PVViewer_Core::ParaviewInitApp(QMainWindow * aDesktop)
62 {
63   if ( ! MyCoreApp) {
64       // Obtain command-line arguments
65       int argc = 0;
66       char** argv = 0;
67       QString aOptions = getenv("PARAVIEW_OPTIONS");
68       QStringList aOptList = aOptions.split(":", QString::SkipEmptyParts);
69       argv = new char*[aOptList.size() + 4]; // add one, MPI requires argv[argc] = 0!
70       for (int i =0; i< aOptList.size() + 4; i++)
71           argv[i] = 0;
72       QStringList args = QApplication::arguments();
73       argv[0] = (args.size() > 0)? strdup(args[0].toLatin1().constData()) : strdup("paravis");
74       argc++;
75
76       foreach (QString aStr, aOptList) {
77         argv[argc] = strdup( aStr.toLatin1().constData() );
78         argc++;
79       }
80       argv[argc++] = strdup("--multi-servers");
81       // Make salome sharing the same server configuration than external one with "salome shell paraview"
82       QStringList li(QStandardPaths::standardLocations(QStandardPaths::ConfigLocation));
83       foreach(QString pathConfig,li)
84         {
85           QFileInfo fi(QDir(pathConfig),QString("ParaView"));
86           if(fi.exists() && fi.isDir())
87             {
88               QFileInfo fi2(fi.canonicalFilePath(),"servers.pvsc");
89               if(fi2.exists() && fi2.isFile())
90                 {
91                   QString addEntry(QString("--servers-file=%1").arg(fi2.canonicalFilePath()));
92                   std::string addEntry2(addEntry.toStdString());
93                   argv[argc++] = strdup(addEntry2.c_str());
94                   break;
95                 }
96             }
97         }
98       //
99       MyCoreApp = new pqPVApplicationCore (argc, argv);
100       if (MyCoreApp->getOptions()->GetHelpSelected() ||
101           MyCoreApp->getOptions()->GetUnknownArgument() ||
102           MyCoreApp->getOptions()->GetErrorMessage() ||
103           MyCoreApp->getOptions()->GetTellVersion()) {
104           return false;
105       }
106
107       // Direct VTK log messages to our SALOME window - TODO: review this
108       PVViewer_OutputWindow * w = PVViewer_OutputWindow::New();
109       vtkOutputWindow::SetInstance(w);
110
111       new pqTabbedMultiViewWidget(); // registers a "MULTIVIEW_WIDGET" on creation
112
113       for (int i = 0; i < argc; i++)
114         free(argv[i]);
115       delete[] argv;
116   }
117    // Initialization of ParaView GUI widgets will be done when these widgets are
118    // really needed.
119    // PVViewer_GUIElements* inst = PVViewer_GUIElements::GetInstance(aDesktop);
120    // inst->getPropertiesPanel();
121    return true;
122 }
123
124 void PVViewer_Core::ParaviewInitBehaviors(bool fullSetup, QMainWindow* aDesktop)
125 {
126   if (!ParaviewBehaviors)
127       ParaviewBehaviors = new PVViewer_Behaviors(aDesktop);
128
129   if(fullSetup)
130     ParaviewBehaviors->instanciateAllBehaviors(aDesktop);
131   else
132     ParaviewBehaviors->instanciateMinimalBehaviors(aDesktop);
133 }
134
135 void PVViewer_Core::ParaviewLoadConfigurations(const QString & configPath, bool force)
136 {
137   if (!ConfigLoaded || force)
138     {
139       if (!configPath.isNull()) {
140           MyCoreApp->loadConfiguration(configPath + QDir::separator() + "ParaViewFilters.xml");
141           MyCoreApp->loadConfiguration(configPath + QDir::separator() + "ParaViewSources.xml");
142       }
143       ConfigLoaded = true;
144     }
145 }
146
147 void PVViewer_Core::ParaviewCleanup()
148 {
149   // Disconnect from server
150   pqServer* server = pqActiveObjects::instance().activeServer();
151   if (server && server->isRemote())
152     {
153       pqServerDisconnectReaction::disconnectFromServer();
154     }
155
156   pqApplicationCore::instance()->settings()->sync();
157
158   pqPVApplicationCore * app = GetPVApplication();
159   // Schedule destruction of PVApplication singleton:
160   if (app)
161     app->deleteLater();
162 }
163