]> SALOME platform Git repositories - modules/superv.git/blob - src/SUPERVGUI/SUPERVGUI.cxx
Salome HOME
BugID IPAL11979, comment the code that causes the error
[modules/superv.git] / src / SUPERVGUI / SUPERVGUI.cxx
1 //  SUPERV SUPERVGUI : GUI for Supervisor component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
21 //
22 //
23 //
24 //  File   : SUPERVGUI.cxx
25 //  Author : Francis KLOSS
26 //  Module : SUPERV
27
28 #include "SUPERVGUI.h"
29 #include "SUPERVGUI_DataModel.h"
30 #include "SUPERVGUI_Selection.h"
31
32 #include "CAM_Application.h"
33 #include "OB_Browser.h"
34 #include "OB_ListItem.h"
35 #include "SalomeApp_Application.h"
36 #include "SalomeApp_ImportOperation.h"
37 #include "LightApp_SelectionMgr.h"
38 #include "SalomeApp_Study.h"
39 #include "SUIT_Desktop.h"
40 #include "SUIT_FileDlg.h"
41 #include "SUIT_MessageBox.h"
42 #include "SUIT_Operation.h"
43 #include "SUIT_ResourceMgr.h"
44 #include "SUIT_Session.h"
45 #include "SUIT_Study.h"
46
47 #include "SUPERVGraph_ViewManager.h"
48 #include "SUPERVGraph_ViewFrame.h"
49
50 #include "SALOME_ListIO.hxx"
51 #include "SALOME_ListIteratorOfListIO.hxx"
52 #include "SALOME_InteractiveObject.hxx"
53 #include "Utils_ORB_INIT.hxx"
54
55 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
56
57 #include <qinputdialog.h>
58 #include <qmenubar.h>
59
60 #include "SALOMEDSClient.hxx"
61 #include <boost/shared_ptr.hpp>
62 using namespace boost;
63
64 int SUPERVGUI::factory = 0;
65
66 extern "C" {
67   Standard_EXPORT CAM_Module* createModule() {
68     return new SUPERVGUI();
69   }
70 }
71
72
73 SUPERVGUI::SUPERVGUI()
74      : SalomeApp_Module( "SUPERV" ),
75        study(0),
76        browser(0),
77        myFirstActivation(true),
78        myAllGraphsClosed(false),
79        myInitialViewFrame(0),
80        myIVFBackgroundColor(QColor())
81   //info(0)
82 {
83     Trace("SUPERVGUI::SUPERVGUI")
84     if (factory==0) {
85         factory = 1;
86         MESSAGE("SUPERVGUI Info : factory build");
87     } else {
88         MESSAGE("SUPERVGUI Error : another call to factory constructor");
89     };
90 }
91
92 SUPERVGUI::~SUPERVGUI() {
93     Trace("SUPERVGUI::~SUPERVGUI")
94     if (factory==1) {
95         factory = 0;
96         //if (!engine->_is_nil()) CORBA::release(engine);
97         //info->close();
98         if (browser) {
99           if (browser->isVisible())
100             browser->close();
101           delete browser;
102         }
103         MESSAGE("SUPERVGUI Info : factory destroy");
104     } else {
105         MESSAGE("SUPERVGUI Error : another call to factory destructor");
106     };
107 }
108
109 SUPERVGUI* SUPERVGUI::Supervision() {
110   CAM_Application* anApp = dynamic_cast<CAM_Application*>( SUIT_Session::session()->activeApplication() );
111   if ( anApp ) {
112     SUPERVGUI* aSupervModule = dynamic_cast<SUPERVGUI*>( anApp->activeModule() );
113     return aSupervModule;
114   }
115   return NULL;
116 }
117
118 void SUPERVGUI::createSupervAction (const int id, const QString& po_id, const QString& icon_id,
119                                     const int key, const bool toggle)
120 {
121   QIconSet icon;
122   QWidget* parent = application()->desktop();
123   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
124   QPixmap pix;
125   if (!icon_id.isEmpty())
126     pix = resMgr->loadPixmap("SUPERV", tr(icon_id));
127   //else
128   //  pix = resMgr->loadPixmap("SUPERV", tr(QString("ICO_") + po_id));
129
130   if (!pix.isNull())
131     icon = QIconSet(pix);
132
133   QString tooltip    = tr(QString("TOP_") + po_id),
134           menu       = tr(QString("MEN_") + po_id),
135           status_bar = tr(QString("STB_") + po_id);
136
137   createAction(id, tooltip, icon, menu, status_bar, key, parent, toggle, this, SLOT(OnGUIEvent()));
138 }
139
140 void SUPERVGUI::initialize( CAM_Application* app )
141 {
142   SalomeApp_Module::initialize( app );
143
144   SALOME_NamingService* namingService = (( SalomeApp_Application* )application())->namingService();
145   loadEngine(namingService);
146
147   browser = new SUPERVGUI_Service(namingService);
148   //info    = new SUPERVGUI_Information();
149   cursor  = application()->desktop()->cursor();
150
151   fillInterfaceNameMap();
152
153   // ----- create actions --------------
154   createSupervAction( 301, "IMPORT"        , "ICO_IMPORT" );
155   createSupervAction( 302, "EXPORT"        , "ICO_EXPORT" );
156
157   createSupervAction( 303, "NEW"           , "ICO_NEW" );
158   createSupervAction( 304, "MODIFY"        , "ICO_MODIFY" );
159
160   createSupervAction( 305, "RELOAD"        , "ICO_RELOAD" );
161   createSupervAction( 306, "RUN"           , "ICO_RUN" );
162   createSupervAction( 307, "KILL"          , "ICO_KILL" );
163   createSupervAction( 308, "SUSPEND/RESUME", "ICO_SUSPEND/RESUME" );
164   createSupervAction( 309, "ADDNODE"       , "ICO_ADDNODE" );
165   createSupervAction( 310, "STEPBYSTEP"    , "ICO_STEPBYSTEP" );
166
167   createSupervAction( 311, "POP_RENAME" );
168   createSupervAction( 312, "POP_DISPLAY" );
169   createSupervAction( 313, "POP_DELETE" );
170
171   // ----- create menu -----------------
172   int fileId = createMenu( tr( "MEN_FILE" ), -1, -1 );
173   createMenu( 301, fileId, 10 );
174   createMenu( 302, fileId, 10 );
175   createMenu( separator(), fileId, 10 );
176
177   int editId = createMenu( tr( "MEN_EDIT" ), -1, -1 );
178   createMenu( separator(), fileId, 7 );
179   createMenu( 303, editId, -1 );
180   createMenu( 304, editId, -1 );
181
182   int supervId = createMenu( tr( "MEN_SUPERV" ), -1, -1, 10/*, 300*/ );
183   createMenu( 305, supervId, -1 );
184   createMenu( 309, supervId, -1 );
185   createMenu( separator(), fileId, 3 );
186   createMenu( 306, supervId, -1 );
187   createMenu( 310, supervId, -1 );
188   createMenu( 307, supervId, -1 );
189   createMenu( 308, supervId, -1 );
190
191   // ----- create toolbars -------------
192   int supervisorId = createTool( tr( "TOOL_SUPERVISOR" ) );
193   createTool( 301, supervisorId );
194   createTool( 302, supervisorId );
195   createTool( 303, supervisorId );
196   createTool( 304, supervisorId );
197   createTool( 305, supervisorId );
198   createTool( 309, supervisorId );
199
200   int executionId = createTool( tr( "TOOL_EXECUTION" ) );
201   createTool( 306, executionId );
202   createTool( 310, executionId );
203   createTool( 307, executionId );
204   createTool( 308, executionId );
205
206   // ----- create popup for object browser items -------------
207   QtxPopupMgr* mgr = popupMgr();
208   mgr->insert( action(  311 ), -1, -1 ); // rename dataflow
209   mgr->setRule( action( 311 ), "$type in {'Dataflow'} and selcount=1", true );
210   mgr->insert( action(  312 ), -1, -1 ); // display dataflow
211   mgr->setRule( action( 312 ), "$type in {'Dataflow'} and selcount=1", true );
212   mgr->insert( separator(), -1, -1 ); // -----------
213   mgr->insert( action(  313 ), -1, -1 ); // delete object
214   mgr->setRule( action( 313 ), "client='ObjectBrowser' and $type in {'Dataflow' 'SupervisorObject'} and selcount>0", true );
215 }
216
217 bool SUPERVGUI::activateModule( SUIT_Study* theStudy )
218 {
219   if ( CORBA::is_nil( engine ) )
220     return false;
221
222   if ( !SalomeApp_Module::activateModule( theStudy ) )
223     return false;
224
225
226
227   //---------------------------------------
228   setMenuShown( true );
229   setToolShown( true );
230
231   study = application()->activeStudy();
232
233   connect( application()->desktop(), SIGNAL( windowActivated( SUIT_ViewWindow* ) ),
234            this, SLOT( setMain( SUIT_ViewWindow* ) ) );
235
236   if ( myFirstActivation ) {
237     myAllGraphsClosed = false;
238     // create new empty dataflow
239     createDataflow( New, true );
240   }
241
242   return true;
243 }
244
245 QString SUPERVGUI::engineIOR() const
246 {
247  if ( !CORBA::is_nil( engine ) )
248     return QString( getApp()->orb()->object_to_string( engine));
249   return QString( "" );
250 }
251
252 bool SUPERVGUI::deactivateModule( SUIT_Study* theStudy )
253 {
254   setMenuShown( false );
255   setToolShown( false );
256
257   disconnect( application()->desktop(), SIGNAL( windowActivated( SUIT_ViewWindow* ) ),
258               this, SLOT( setMain( SUIT_ViewWindow* ) ) );
259   //---------------------------------------
260
261   if ( !myAllGraphsClosed )
262     myFirstActivation = false;
263
264   return SalomeApp_Module::deactivateModule( theStudy );
265 }
266
267 CAM_DataModel* SUPERVGUI::createDataModel()
268 {
269   return new SUPERVGUI_DataModel( this );
270 }
271
272 LightApp_Selection* SUPERVGUI::createSelection() const
273 {
274   return new SUPERVGUI_Selection();
275 }
276
277 SUIT_ViewWindow* SUPERVGUI::createGraph() {
278   SUPERVGraph_ViewManager* aVM = new SUPERVGraph_ViewManager( study, application()->desktop(), new SUPERVGraph_Viewer() );
279   (( SalomeApp_Application* )application())->addViewManager( aVM );
280   SUPERVGraph_ViewFrame* aVW = dynamic_cast<SUPERVGraph_ViewFrame*>( aVM->createViewWindow() );
281   if ( aVW ) {
282     QColor back = getApp()->resourceMgr()->colorValue( "SUPERVGraph", "Background", DEF_MAIN_COLOR );
283     qDebug( QString( "background: %1 %2 %3" ).arg( back.red() ).arg( back.green() ).arg( back.blue() ) );
284     aVW->setBackgroundColor( back );
285     connect( aVM,
286              SIGNAL( deleteView( SUIT_ViewWindow* ) ),
287              this,
288              SLOT( onGraphClosed( SUIT_ViewWindow* ) ) );
289   }
290   return aVW;
291 }
292
293
294
295 void SUPERVGUI::loadEngine(SALOME_NamingService* namingService) {
296     Trace("SUPERVGUI::loadEngine")
297     SALOME_LifeCycleCORBA LCC(namingService);
298     Engines::Component_var objComponent = LCC.FindOrLoad_Component("SuperVisionContainer", "SUPERV");
299     if (CORBA::is_nil(objComponent)) {
300         QMessageBox::warning(application()->desktop(), tr("ERROR"), tr("MSG_CANT_LOAD_SUPERV"));
301         return;
302     };
303
304     SUPERV::SuperG_var aSuperVisionComponent;
305     aSuperVisionComponent = SUPERV::SuperG::_narrow(objComponent);
306     if (CORBA::is_nil(aSuperVisionComponent)) {
307         QMessageBox::warning(application()->desktop(), tr("ERROR"), tr("MSG_CANT_NARROW_SUPERV"));
308         return;
309     };
310
311     //    engine  = new SUPERV::SuperG_var;
312     engine = aSuperVisionComponent;
313 }
314
315 /*
316 bool SUPERVGUI::information(SUPERV_CNode node, bool isReadOnly) {
317     Trace("SUPERVGUI::information")
318     return(info->run(node, isReadOnly));
319 }
320 */
321 void SUPERVGUI::putInfo(const char* mess) {
322     Trace("SUPERVGUI::putInfo")
323     application()->putInfo(mess);
324 }
325
326 SUPERV_Engine SUPERVGUI::getEngine() {
327     Trace("SUPERVGUI::getEngine")
328     return(engine);
329 }
330
331 SUPERVGUI_Service* SUPERVGUI::getBrowser() {
332     Trace("SUPERVGUI::getBrowser")
333     return(browser);
334 }
335
336 QCursor SUPERVGUI::getCursor() {
337     Trace("SUPERVGUI::getCursor")
338     return(cursor);
339 }
340
341 SUPERVGUI_Main* SUPERVGUI::getMain() {
342     Trace("SUPERVGUI::getMain")
343     return main;
344 }
345
346
347 void SUPERVGUI::registerGraph(QString theName, SUPERVGUI_Main* theGraph){
348   theGraph->setHashCode(theName);
349   myGraphList.append(theGraph);
350 }
351
352
353 void SUPERVGUI::unregisterGraph(SUPERVGUI_Main* theGraph) {
354   SUPERVGUI_Main* aMain;
355   for (aMain = myGraphList.first(); aMain; aMain = myGraphList.next()) {
356     if (aMain == theGraph)
357       myGraphList.remove(aMain);
358   }
359 }
360
361
362 bool SUPERVGUI::isContains(SUIT_Study* theStudy, const QString theKey) {
363   SUPERVGUI_Main* aMain;
364   for (aMain = myGraphList.first(); aMain; aMain = myGraphList.next()) {
365     if ((aMain->getStudy() == theStudy) && (aMain->getHashCode() == theKey))
366       return true;
367   }
368   return false;
369 }
370
371
372 void SUPERVGUI::onGraphClosed(SUIT_ViewWindow* theViewWindow) {
373   if( SUPERVGraph_ViewFrame* supervFrame = dynamic_cast<SUPERVGraph_ViewFrame*>(theViewWindow) ) {
374     disconnect(supervFrame->getViewManager(), 0 , this, 0);
375     SUPERVGraph_View* view = supervFrame->getViewWidget();
376     SUPERVGUI_Main* aGraph = dynamic_cast<SUPERVGUI_Main*>(view);
377     if ( aGraph ) {
378       unregisterGraph(aGraph);
379       SUPERV_Graph aDataFlow = aGraph->getDataflow();
380       if ( !SUPERV_isNull( aDataFlow ) ) {
381         if ( aDataFlow->IsExecuting() ) {
382           const int aMsgResult = QMessageBox::warning(application()->desktop(),
383                                                       tr("WARNING"),
384                                                       tr("MSG_DF_RUNNING"),
385                                                       tr("MSG_DF_EXECUTION"),
386                                                       tr("MSG_DF_KILL"));
387           if ( aMsgResult == 1 ) {
388             // KILL EXECUTION
389             if ( aDataFlow->Kill() ) {
390               // Kill() sends KillEvent and KillState to SUPERVGUI_Thread
391               // while sets myIsActive flag to false when it receives such event/state
392               // after myIsActive is false it calls QThread::exit() to terminate.
393
394               // why while() { qApp->processEvents() } ?
395               // because: SUPERVGUI_Thread::run() receives events, and calls myMain->execute()
396               // method using SALOME_Event paradigm, ProcessVoidEvent() function -
397               // it puts this event to the main application event loop, in which we are being now.
398               // So if we block main GUI application thread (by calling aGraph->getMyThread()->wait() here)
399               // then we will have a deadlock of 2 threads waiting for one another
400               while (aGraph->getMyThread()->running())
401                 qApp->processEvents();
402             }
403           }
404           else { // BACKGROUND EXECUTION
405             emit KillMainThread(true); // set SUPERVGUI_Thread::myIsActive to false
406             while ( aGraph->getMyThread()->running() )
407               qApp->processEvents();
408           }
409         }
410         else { // EXECUTION IS FINISHED, JUST DESTROY THE SUPERVGUI_Thread object and return.
411           emit KillMainThread(true);
412           while ( aGraph->getMyThread()->running() )
413             qApp->processEvents();
414         }
415       }
416     }
417   }
418   if ( myGraphList.isEmpty() ) {
419     myAllGraphsClosed = true;
420     myFirstActivation = true;
421     myInitialViewFrame = 0;
422     myIVFBackgroundColor = QColor();
423     main = 0;
424   }
425 }
426
427 void SUPERVGUI::setMain( SUIT_ViewWindow* w) {
428   main = 0;
429   if ( !w ) return;
430
431   study = w->getViewManager()->study();
432   if (!study)
433     return;
434
435   if(SUPERVGraph_ViewFrame* supervFrame = dynamic_cast<SUPERVGraph_ViewFrame*>(w)){
436     SUPERVGraph_View* view = supervFrame->getViewWidget();
437     if (view) {
438       main = dynamic_cast<SUPERVGUI_Main*>(view);
439       connect(this, SIGNAL(KillMainThread(bool)), main->getMyThread(), SLOT(KillThread(bool)));
440     }
441   }
442   Trace("SUPERVGUI::setMain - main: "<<main);
443 }
444
445 void SUPERVGUI::displayDataflow() {
446     Trace("SUPERVGUI::displayDataflow");
447     OB_Browser* aBrowser = (( SalomeApp_Application* )application())->objectBrowser();
448     SUPERV_Graph aDataFlow;
449     QString aIORName;
450
451     OB_ListItem* item = (OB_ListItem*)(aBrowser->listView()->currentItem());
452     _PTR(SObject) aObj
453       ( (( SalomeApp_Study* )(application()->activeStudy()))->studyDS()->FindObjectID(item->text(2).latin1()) );
454     _PTR(GenericAttribute) anAttr;
455     if (aObj->FindAttribute(anAttr, "AttributeIOR")) {
456       _PTR(AttributeIOR) anIOR ( anAttr );
457       aIORName = QString(anIOR->Value().c_str());
458       if (isContains(study, aIORName)) {
459         if (QMessageBox::warning(application()->desktop(), tr("WARNING"),
460                                  tr("MSG_GRAPH_DISPLAYED").arg(""),
461                                  QMessageBox::Yes, QMessageBox::No) == QMessageBox::No)
462           return;
463       }
464       //aDataFlow = engine->getStreamGraph(anIOR->Value().c_str());
465       aDataFlow = engine->getGraph(anIOR->Value().c_str());
466       if (SUPERV_isNull(aDataFlow)) {
467         QMessageBox::warning(0, tr("ERROR"), tr("MSG_ACCESS_BAD_IOR"));
468         return;
469       }
470       /* ASV: 20.10.04: fix for 6896
471       if (aDataFlow->IsStreamGraph()) {
472         SUPERV_StreamGraph aDataFlowStream = aDataFlow->ToStreamGraph();
473         if (SUPERV_isNull(aDataFlowStream)) {
474           QMessageBox::warning(0, tr("ERROR"), tr("MSG_ACCESS_BAD_IOR"));
475           return;
476         }
477         aDataFlow = aDataFlowStream;
478       }
479       */
480     }
481
482     SUPERVGraph_ViewFrame* aViewFrame;
483     if ( !myInitialViewFrame ) {
484       // first case : create a ViewFrame object
485       aViewFrame = dynamic_cast<SUPERVGraph_ViewFrame*>( createGraph() );
486     }
487     else {
488       // second case : get empty initial view frame as new ViewFrame object
489       aViewFrame = myInitialViewFrame;
490       // mkr : PAL8237 : remove first "gag" Main from children
491       // srn: commented as it cases on application exit "X Windows error"
492       //aViewFrame->removeChild( aViewFrame->queryList("SUPERVGUI_Main")->first() );
493     }
494
495     if( aViewFrame ) {
496       main = new SUPERVGUI_Main( aViewFrame, application()->desktop(), aDataFlow );
497       registerGraph( aIORName, main );
498       aViewFrame->show();
499     }
500
501     if ( myInitialViewFrame ) {
502       myInitialViewFrame = 0;
503       myIVFBackgroundColor = QColor();
504     }
505 }
506
507
508 void SUPERVGUI::renameDataflow() {
509   SALOME_ListIO aList;
510   aList.Clear();
511   (( SalomeApp_Application* )application())->selectionMgr()->selectedObjects( aList );
512
513   SALOME_ListIteratorOfListIO It( aList );
514   for ( ; It.More(); It.Next() ) {
515     Handle(SALOME_InteractiveObject) IObject = It.Value();
516
517     _PTR(Study) aStudy = (( SalomeApp_Study* )study)->studyDS();
518     _PTR(SObject) obj ( aStudy->FindObjectID( IObject->getEntry() ) );
519     _PTR(GenericAttribute) anAttr;
520     if ( obj ) {
521       if ( obj->FindAttribute(anAttr, "AttributeName") ) {
522         _PTR(AttributeName) aName ( anAttr );
523         QString nm = QString( aName->Value().c_str() );
524         bool ok;
525         nm = QInputDialog::getText( tr( "Rename" ), tr( "Enter new name:" ), QLineEdit::Normal,
526                                     nm, &ok, application()->desktop() );
527         if ( ok && !nm.isEmpty() ) {
528           // sak : 24.11.04 : fix for PAL6898 : if rename fails (study locked),
529           // a message box is displayed, and cursor is "wait cursor".  We think that "wait cursor"
530           // is not neccessary here, because the rename operation is fast.
531           //QApplication::setOverrideCursor( Qt::waitCursor );
532           //study->renameIObject( IObject, nm );
533
534           //--->
535           aName->SetValue( nm.latin1() );
536           //rename Interactive object
537           IObject->setName( ( char* )nm.latin1() );
538           //<---
539
540           updateObjBrowser();
541           //QApplication::restoreOverrideCursor();
542
543           // mkr : PAL7037 => rename engine of the graph (i.e. corresponding SUPERV_Graph) -->
544           if ( obj->FindAttribute(anAttr, "AttributeIOR") ) {
545             _PTR(AttributeIOR) anIOR ( anAttr );
546             SUPERV_Graph aDataFlow = engine->getGraph(anIOR->Value().c_str());
547             if ( !SUPERV_isNull(aDataFlow) ) {
548               if ( aDataFlow->IsStreamGraph() ) {
549                 SUPERV_StreamGraph aStreamDataFlow = aDataFlow->ToStreamGraph();
550                 if ( !SUPERV_isNull(aStreamDataFlow) )
551                   aStreamDataFlow->SetName( nm.latin1() );
552               }
553               else
554                 aDataFlow->SetName( nm.latin1() );
555             }
556           }
557           // mkr : PAL7037 <--
558         }
559       }
560     }
561   }
562 }
563
564 void SUPERVGUI::exportDataflow() {
565     Trace("SUPERVGUI::exportDataflow")
566     if ( main==0 ) {
567       QMessageBox::warning(application()->desktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_EXPORT"));
568     }
569     else if ( SUPERV_isNull( main->getDataflow() ) ) { // should not normally happen..
570       QMessageBox::warning(application()->desktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_EXPORT"));
571     }
572     else {
573       QString f = SUIT_FileDlg::getFileName(application()->desktop(),
574                                             "",
575                                             "*.xml",
576                                             tr("TTL_EXPORT_DATAFLOW"),
577                                             false);
578       if ( !f.isEmpty() ) {
579
580         // asv : bug [VSR Bugs and Improvements in Supervisor] 1.8 : when exporting a file,
581         // a backup copy of an existing file must be created (in case Export fails..)
582         QString aBackupFile = SUPERVGUI::createBackupFile( f );
583
584         if ( main->getDataflow()->Export(f.latin1()) ) {
585           // mkr : PAL8110 : if we re-register graph with its xml-file name the "Supervisor Warning"
586           //       after object browser popup "Display" item will not appear, it's an error,
587           //       because of this dataflow is already displayed.
588           //unregisterGraph(main);
589           //registerGraph(f, main);
590
591           // remove a backup file if export was successfull
592           if ( !aBackupFile.isNull() && !aBackupFile.isEmpty() )
593             QFile::remove( aBackupFile );
594         }
595         else {
596           QMessageBox::warning(application()->desktop(), tr("ERROR"), tr("MSG_BAD_WRITING").arg(aBackupFile));
597         }
598       }
599     }
600 }
601
602 /**
603  *If a file with theOriginalFileName exists, then the function tries to create
604  * its backup copy of it (the_name + ".bakX", X = 0,1,2,..,99).  Returns backup file's name
605  * If a file with theOriginalFileName does not exist, or creation fails - Return empty string.
606  */
607 QString SUPERVGUI::createBackupFile( const QString& theOriginalFileName ) {
608   QString theBackupFileName("");
609   if ( QFile::exists( theOriginalFileName ) ) {
610     // 1. construct a backup file name
611     int i = 0;
612     do {
613       theBackupFileName = theOriginalFileName;
614       theBackupFileName += ".bak";
615       theBackupFileName += QString::number(i++);
616     }
617     while ( QFile::exists( theBackupFileName ) && i < 100 ); // max 99 backup files
618     // if *.bak99 exists -- it will be overwritten
619
620     // 2. copy the original file to theBackupFileName
621     QString cmd( "cp \"");
622     cmd += theOriginalFileName;
623     cmd += "\" \"";
624     cmd += theBackupFileName;
625     cmd += "\"";
626     bool res = system( cmd.latin1() );
627     if ( res )
628       theBackupFileName = QString("");
629   }
630   return theBackupFileName;
631 }
632
633 void SUPERVGUI::windows( QMap<int, int>& mappa ) const
634 {
635   mappa.insert( SalomeApp_Application::WT_ObjectBrowser, Qt::DockLeft );
636   mappa.insert( SalomeApp_Application::WT_PyConsole, Qt::DockBottom );
637   mappa.insert( SalomeApp_Application::WT_LogWindow, Qt::DockBottom );
638 }
639
640 void SUPERVGUI::newDataflow() {
641   createDataflow( New );
642 }
643
644 void SUPERVGUI::importDataflow() {
645   createDataflow( Import );
646 }
647
648 void SUPERVGUI::modifyDataflow() {
649   createDataflow( Modify );
650 }
651
652 bool SUPERVGUI::createDataflow( const NEW_DF_MODE mode, bool theInitialDF ) {
653   Trace("SUPERVGUI::createDataflow, mode = " << mode );
654
655   // asv : 27.01.05 : fix for PAL7823 : if the study is locked - warn the user and return.
656   _PTR(Study) aStudy = (( SalomeApp_Study* )study)->studyDS();
657   if ( aStudy->GetProperties()->IsLocked() ) {
658     QMessageBox::warning(application()->desktop(), tr("WRN_WARNING"), tr("WRN_STUDY_LOCKED"));
659     return false;
660   }
661
662   SUPERV::Graph_var aGraph;
663
664   QString f; // file name.  declared here because may be used below in error msg construction..
665   if ( mode == Import || mode == Modify ) { // 0. import or modify existing dataflow - select XML file
666     QString title = QString( "TLT_CREATE_DF_%1" ).arg( mode );
667     f = SUIT_FileDlg::getFileName( application()->desktop(), "", "*.xml", tr( title ), true );
668     if ( f.isEmpty() ) // pressed Cancel in file select dialog
669       return false;
670
671     // check if study already contains a graph imported from the same file
672     if ( isContains( study, f ) ) {
673       if ( QMessageBox::warning( application()->desktop(), tr("WARNING"), tr("MSG_GRAPH_DISPLAYED").arg(f),
674                                  QMessageBox::Yes, QMessageBox::No) == QMessageBox::No )
675         return false;
676     }
677
678     // 1. create a graph
679     aGraph = ( mode == Import ) ? engine->StreamGraphE( f ) : engine->StreamGraph( f );
680   }
681   else
682     aGraph = engine->StreamGraph( MAIN_NEW );
683
684   if ( CORBA::is_nil( aGraph ) ) {
685     QString msg( mode == New ? tr("MSG_CANT_CREATE_DF") : tr("MSG_BAD_FILE").arg(f) );
686     SUIT_MessageBox::warn1( application()->desktop(), tr("ERROR"), tr(msg), tr("BUT_OK") );
687     return false;
688   }
689
690   SUPERVGraph_ViewFrame* aViewFrame;
691   if ( theInitialDF || !myInitialViewFrame ) {
692     // 2. create a ViewFrame object
693     aViewFrame = dynamic_cast<SUPERVGraph_ViewFrame*>( createGraph() );
694   }
695   else {
696     // 2. get empty initial view frame as new ViewFrame object
697     aViewFrame = myInitialViewFrame;
698     // mkr : PAL8237 : remove first "gag" Main from children
699     // srn: commented as it cases on application exit "X Windows error"
700     //aViewFrame->removeChild( aViewFrame->queryList("SUPERVGUI_Main")->first() );
701   }
702
703   if ( aViewFrame ) {
704
705     // 3. bind Graph and ViewFrame == create SUPERVGUI_Main object
706     main = new SUPERVGUI_Main( aViewFrame, application()->desktop(), aGraph );
707     if ( mode == New ) {
708       if ( !theInitialDF )      
709         main->addNode();
710       else
711         myInitialViewFrame = aViewFrame;
712     }
713     // mkr : IPAL11550 : register graph not depend on creation mode
714     registerGraph( f, main );
715     main->resizeView( new QResizeEvent( aViewFrame->size(), aViewFrame->size() ) );
716     aViewFrame->show();
717     QFileInfo inf( f );
718     if( !f.isEmpty() )
719       aViewFrame->setCaption( inf.fileName() );
720   }
721
722   if ( !theInitialDF ) {
723     myInitialViewFrame = 0;
724     myIVFBackgroundColor = QColor();
725   }
726
727   return true;
728 }
729
730 void SUPERVGUI::reloadDataflow() {
731   Trace("SUPERVGUI::reloadDataflow");
732   if ( main )
733     main->sync();
734   else
735     QMessageBox::warning(application()->desktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_RELOAD"));
736 }
737
738 void SUPERVGUI::runDataflow() {
739   Trace("SUPERVGUI::runDataflow");
740   if ( main )
741     main->run( /*andSuspend=*/false );
742   else
743     QMessageBox::warning(application()->desktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_RUN"));
744 }
745
746 void SUPERVGUI::stepByStep() {
747   Trace("SUPERVGUI::stepByStep");
748   if ( main )
749     main->run( /*andSuspend=*/true );
750   else
751     QMessageBox::warning(application()->desktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_RUN"));
752 }
753
754 void SUPERVGUI::killDataflow() {
755   Trace("SUPERVGUI::killDataflow");
756   if ( main )
757     main->kill();
758   else
759     QMessageBox::warning(application()->desktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_KILL"));
760 }
761
762 void SUPERVGUI::suspendResumeDataflow() {
763   Trace("SUPERVGUI::suspendResumeDataflow");
764   if ( main )
765     main->suspendResume();
766   else
767     QMessageBox::warning(application()->desktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_SUSPEND"));
768 }
769
770 void SUPERVGUI::showComponents() {
771   Trace("SUPERVGUI::showComponents");
772   if ( main ) {
773     if ( main->isEditable() )
774       main->addNode();
775     else
776       QMessageBox::warning(application()->desktop(), tr("WARNING"), tr("MSG_NOTEDITABLE"));
777   }
778   else
779     QMessageBox::warning(application()->desktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_ADD"));
780
781 }
782
783
784 /*bool SUPERVGUI::CustomPopup(QPopupMenu* popup, const QString& theContext, const QString& theParent, const QString& theObject) {
785   Trace("SUPERVGUI::customPopup");
786   Supervision.init();
787   if(popup->count() > 3) {
788     // Temporary code: is to be deleted soon
789     popup->removeItem(QAD_Display_Popup_ID);
790     popup->removeItem(QAD_DisplayOnly_Popup_ID);
791     popup->removeItem(QAD_Erase_Popup_ID);
792     int id = popup->idAt(popup->count() - 1);
793     if (id < 0 && id != -1) popup->removeItem(id); // separator
794     // Temporary code end
795   }
796
797   SALOME_ListIO aList;
798   aList.Clear();
799   (( SalomeApp_Application* )application())->selectionMgr()->selectedObjects( aList );
800   if ( aList.Extent() == 0 ) return false;
801
802   if ( aList.Extent() == 1 ) {
803     Handle(SALOME_InteractiveObject) anIObj = aList.First();
804
805     // insert SUPERV-specific popup items here
806
807     bool isDataflow, ownObj;
808     whatIsSelected(anIObj, ownObj, isDataflow);
809
810     if (isDataflow) {
811       popup->insertItem(tr( "MSG_RENAME" ), this, SLOT(renameDataflow()));
812       popup->insertItem("Display", this, SLOT(displayDataflow()));
813       popup->insertSeparator();
814     }
815     if (ownObj)
816       popup->insertItem(tr("MSG_DELETE"), this, SLOT(deleteObject()));
817   }
818
819   if ( aList.Extent() > 1 ) {
820     int aIObjCount = 0;
821     SALOME_ListIteratorOfListIO It_forCheckOwner( aList );
822     for(;It_forCheckOwner.More();It_forCheckOwner.Next()) {
823       Handle(SALOME_InteractiveObject) anIObj = It_forCheckOwner.Value();
824       bool aIsOwner, aIsDataflow;
825       whatIsSelected(anIObj, aIsOwner, aIsDataflow);
826
827       if (aIsOwner) aIObjCount++;
828     }
829     if ( aIObjCount == aList.Extent() )  //all selected objects belong to Supervision
830       popup->insertItem(tr("MSG_DELETE"), this, SLOT(deleteObject()));
831   }
832
833   return(true);
834   }*/
835
836
837
838 /** Returns:
839     theIsOwner = true if Selected object belongs to Supervision.
840     theIsDataflow = true if Selected object is Dataflow
841 */
842 void SUPERVGUI::whatIsSelected(const _PTR(SObject)& theObj, bool& theIsOwner, bool& theIsDataflow) {
843   theIsOwner = false;
844   theIsDataflow = false;
845
846   if ( theObj ) {
847     _PTR(SComponent) comp ( theObj->GetFatherComponent() );
848     if ( comp ) {
849       _PTR(GenericAttribute) anAttr;
850       if (comp->FindAttribute(anAttr, "AttributeName")) {
851         _PTR(AttributeName) aName ( anAttr );
852         QString compName(aName->Value().c_str());
853         if ( compName.compare( moduleName() ) == 0 ) {
854           _PTR(GenericAttribute) anAttr;
855           if (theObj->FindAttribute(anAttr, "AttributeIOR")) {
856             _PTR(AttributeIOR) anIOR ( anAttr );
857             SUPERV_Graph aDataFlow = engine->getGraph(anIOR->Value().c_str());
858             if (!SUPERV_isNull(aDataFlow)) {
859               if (aDataFlow->IsStreamGraph()) {
860                 if (!SUPERV_isNull(aDataFlow->ToStreamGraph()))
861                   theIsDataflow = true;
862               }
863               else
864                 theIsDataflow = true;
865             }
866           }
867           CORBA::String_var anObjectID = theObj->GetID().c_str();
868           CORBA::String_var aComponentID = comp->GetID().c_str();
869           if (strcmp(anObjectID, aComponentID))
870             theIsOwner = true;
871         }
872       }
873     }
874   }
875 }
876
877 void SUPERVGUI::deleteObject() {
878   SALOME_ListIO aList;
879   aList.Clear();
880   (( SalomeApp_Application* )application())->selectionMgr()->selectedObjects( aList, QString::null, false );
881   if ( aList.Extent() == 0 ) return;
882
883   // sak : 24.11.04 : fix for PAL6899 : if the study is locked - warn the user and return.
884   _PTR(Study) aStudy = (( SalomeApp_Study* )study)->studyDS();
885   if ( aStudy->GetProperties()->IsLocked() ) {
886     QMessageBox::warning(application()->desktop(), tr("WRN_WARNING"), tr("WRN_STUDY_LOCKED"));
887     return;
888   }
889
890   // sak : 24.11.04 : fix for PAL6901 : Incorrect deletion of the objects : pressing ESC button
891   // emitted "YES" button click, now it is corrected, and treated as "NO" button click.
892   if (QMessageBox::warning(application()->desktop(),
893                            tr("WARNING"),
894                            tr("MSG_ASK_DELETE"),
895                            QMessageBox::No, QMessageBox::Yes) != QMessageBox::Yes)
896     return;
897
898   SALOME_ListIteratorOfListIO It( aList );
899   for(;It.More();It.Next()) {
900     Handle(SALOME_InteractiveObject) anIObj = It.Value();
901     //bool aIsOwner, aIsDataflow;
902     //whatIsSelected(anIObj, aIsOwner, aIsDataflow);
903
904     _PTR(SObject) aObj ( aStudy->FindObjectID( anIObj->getEntry() ) );
905     if ( aObj ) {
906       SUIT_Operation* op = new SalomeApp_ImportOperation( application() );
907       _PTR(StudyBuilder) aBuilder ( aStudy->NewBuilder() );
908       op->start();
909       aBuilder->RemoveObjectWithChildren( aObj );
910       op->commit();
911     }
912   }
913   (( SalomeApp_Application* )application())->selectionMgr()->clearSelected();
914   updateObjBrowser();
915 }
916
917 void SUPERVGUI::OnGUIEvent()
918 {
919   const QObject* obj = sender();
920   if ( !obj || !obj->inherits( "QAction" ) )
921     return;
922   int id = actionId((QAction*)obj);
923   if ( id != -1 )
924     OnGUIEvent( id );
925 }
926
927 bool SUPERVGUI::OnGUIEvent(int command) {
928   switch (command) {
929   case 301:
930     importDataflow();
931     return(false);
932
933   case 302:
934     exportDataflow();
935     return(false);
936
937   case 303:
938     newDataflow();
939     return(false);
940
941   case 304:
942     modifyDataflow();
943     return(false);
944
945   case 305:
946     reloadDataflow();
947     return(false);
948
949   case 306:
950     runDataflow();
951     return(false);
952
953   case 307:
954     killDataflow();
955     return(false);
956
957   case 308:
958     suspendResumeDataflow();
959     return(false);
960
961   case 309:
962     showComponents();
963     return(false);
964
965   case 310:
966     stepByStep();
967     return(false);
968
969   case 311:
970     renameDataflow();
971     return(false);
972
973   case 312:
974     displayDataflow();
975     return(false);
976
977   case 313:
978     deleteObject();
979     return(false);
980
981   default:
982     QMessageBox::warning(application()->desktop(), "Supervision Error", "Unknown Command From Salome");
983     return(false);
984   }
985 }
986
987 /*bool SUPERVGUI::SetSettings() {
988   Trace("SUPERVGUI::SetSettings");
989   Supervision.init();
990   return(true);
991   }*/
992
993 /*void SUPERVGUI::DefinePopup(QString& theContext, QString& theParent, QString& theObject) {
994   theObject  = "";
995   theContext = "";
996   }*/
997
998 bool SUPERVGUI::ActiveStudyChanged() {
999   Trace("SUPERVGUI::activeStudyChanged");
1000   study = application()->activeStudy();
1001   return true;
1002 }
1003
1004 /*void SUPERVGUI::SupportedViewType (int* buffer, int bufferSize)
1005 {
1006   if (!buffer || !bufferSize) return;
1007   buffer[0] = (int)VIEW_GRAPHSUPERV;
1008 }*/
1009
1010 void SUPERVGUI::fillInterfaceNameMap() {
1011   //fill map: interface_name <-> component_name for all
1012   //interfaces of all loaded components, it is necessary
1013   //for correct adding factory nodes from AddComponent,
1014   //SubComponent, MulComponent, etc. components.
1015   myInterfaceNameMap.clear();
1016
1017   //get naming service
1018   SALOME_NamingService* namingService = (( SalomeApp_Application* )application())->namingService();
1019   //get module catalog
1020   CORBA::Object_ptr obj  = namingService->Resolve("/Kernel/ModulCatalog");
1021   SALOME_ModuleCatalog::ModuleCatalog_var* aModuleCatalog = new SALOME_ModuleCatalog::ModuleCatalog_var;
1022   *aModuleCatalog = SALOME_ModuleCatalog::ModuleCatalog::_narrow(obj);
1023   if (!CORBA::is_nil(*aModuleCatalog)) {
1024     //get component list
1025     SALOME_ModuleCatalog::ListOfComponents_var aCompList = (*aModuleCatalog)->GetComponentList();
1026     for (int ind1 = 0; ind1 < aCompList->length(); ind1++) {
1027       //get component
1028       SALOME_ModuleCatalog::Acomponent_ptr aComponent = (*aModuleCatalog)->GetComponent(aCompList[ind1]);
1029       if ( aComponent != NULL ) {
1030         //get interface list
1031         SALOME_ModuleCatalog::ListOfInterfaces_var anIntList = aComponent->GetInterfaceList();
1032         for (int ind2 = 0; ind2 < anIntList->length(); ind2++) {
1033           const char* anIntName = anIntList[ind2];
1034           myInterfaceNameMap.insert(QString(anIntName), QString(aComponent->componentname()));
1035         }
1036       }
1037     }
1038   }
1039 }
1040
1041 QMap<QString, QString> SUPERVGUI::getInterfaceNameMap() const {
1042   return myInterfaceNameMap;
1043 }
1044
1045 bool SUPERVGUI::updateDataFlowSOName( SUPERV::Graph_ptr theDataflow ) {
1046   if ( !SUPERV_isNull(theDataflow) ) {
1047     _PTR(Study) aStudy = (( SalomeApp_Study* )study)->studyDS();
1048     _PTR(SObject) aSO ( aStudy->FindObjectIOR( theDataflow->getIOR() ) );
1049
1050     _PTR(GenericAttribute) anAttr;
1051     if ( aSO ) // i.e. if theDataflow is in study
1052       if ( aSO->FindAttribute(anAttr, "AttributeName") ) {
1053         _PTR(AttributeName) aName ( anAttr );
1054         aName->SetValue( theDataflow->Name() );
1055         updateObjBrowser();
1056         return true;
1057       }    
1058   }
1059   return false;
1060 }