Salome HOME
Update copyrights 2014.
[modules/smesh.git] / src / Tools / MGCleanerPlug / MGCleanerMonViewText.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2007-2014  EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 # Modules Python
22 import string,types,os
23 import traceback
24
25 from PyQt4 import *
26 from PyQt4.QtGui import *
27 from PyQt4.QtCore import *
28
29 # Import des panels
30
31 from MGCleanerViewText_ui import Ui_ViewExe
32
33 class MGCleanerMonViewText(Ui_ViewExe, QDialog):
34     """
35     Classe permettant la visualisation de texte
36     """
37     def __init__(self, parent, txt, ):
38         QDialog.__init__(self,parent)
39         self.setupUi(self)
40         self.resize( QSize(1000,600).expandedTo(self.minimumSizeHint()) )
41         #self.connect( self.PB_Ok,SIGNAL("clicked()"), self, SLOT("close()") )
42         self.connect( self.PB_Ok,SIGNAL("clicked()"), self.theClose )
43         self.connect( self.PB_Save,SIGNAL("clicked()"), self.saveFile )
44         self.PB_Save.setToolTip("Save trace in log file")
45         self.PB_Ok.setToolTip("Close view")
46         self.monExe=QProcess(self)
47
48         self.connect(self.monExe, SIGNAL("readyReadStandardOutput()"), self.readFromStdOut )
49         self.connect(self.monExe, SIGNAL("readyReadStandardError()"), self.readFromStdErr )
50       
51         # Je n arrive pas a utiliser le setEnvironment du QProcess
52         # fonctionne hors Salome mais pas dans Salome ???
53         cmds=''
54         try :
55           LICENCE_FILE=os.environ["DISTENE_LICENCE_FILE_FOR_MGCLEANER"]
56         except:
57           LICENCE_FILE=''
58         try :
59           PATH=os.environ["DISTENE_PATH_FOR_MGCLEANER"]
60         except:
61           PATH=''
62         if LICENCE_FILE != '': 
63           cmds+='source '+LICENCE_FILE+'\n'
64         else:
65           cmds+="# $DISTENE_LICENCE_FILE_FOR_MGCLEANER NOT SET\n"
66         if PATH != '': 
67           cmds+='export PATH='+PATH+':$PATH\n'
68         else:
69           cmds+="# $DISTENE_PATH_FOR_MGCLEANER NOT SET\n"
70         #cmds+='env\n'
71         cmds+='rm -f '+self.parent().fichierOut+'\n'
72         cmds+=txt+'\n'
73         cmds+='echo END_OF_MGCleaner\n'
74         pid=self.monExe.pid()
75         nomFichier='/tmp/MGCleaner_'+str(pid)+'.sh'
76         f=open(nomFichier,'w')
77         f.write(cmds)
78         f.close()
79
80         maBidouille='sh ' + nomFichier
81         self.monExe.start(maBidouille)
82         self.monExe.closeWriteChannel()
83         self.enregistreResultatsDone=False
84         self.show()
85
86     def saveFile(self):
87         #recuperation du nom du fichier
88         savedir=os.environ['HOME']
89         fn = QFileDialog.getSaveFileName(None, self.trUtf8("Save File"),savedir)
90         if fn.isNull() : return
91         ulfile = os.path.abspath(unicode(fn))
92         try:
93            f = open(fn, 'wb')
94            f.write(str(self.TB_Exe.toPlainText()))
95            f.close()
96         except IOError, why:
97            QMessageBox.critical(self, self.trUtf8('Save File'),
98                 self.trUtf8('The file <b>%1</b> could not be saved.<br>Reason: %2')
99                     .arg(unicode(fn)).arg(str(why)))
100
101     def readFromStdErr(self):
102         a=self.monExe.readAllStandardError()
103         self.TB_Exe.append(QString.fromUtf8(a.data(),len(a)))
104
105     def readFromStdOut(self) :
106         a=self.monExe.readAllStandardOutput()
107         aa=QString.fromUtf8(a.data(),len(a))
108         self.TB_Exe.append(aa)
109         if "END_OF_MGCleaner" in aa:
110           self.parent().enregistreResultat()
111           self.enregistreResultatsDone=True
112           #self.theClose()
113     
114     def theClose(self):
115       if not self.enregistreResultatsDone:
116         self.parent().enregistreResultat()
117         self.enregistreResultatsDone=True
118       self.close()