This file is indexed.

/usr/lib/aster/Stanley/salomeVisu.py is in code-aster 11.5.0+dfsg2-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
# coding=utf-8
#            CONFIGURATION MANAGEMENT OF EDF VERSION
# ======================================================================
# COPYRIGHT (C) 1991 - 2013  EDF R&D                  WWW.CODE-ASTER.ORG
# THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
# IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
# THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
# (AT YOUR OPTION) ANY LATER VERSION.
#
# THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT
# WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU
# GENERAL PUBLIC LICENSE FOR MORE DETAILS.
#
# YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
# ALONG WITH THIS PROGRAM; IF NOT, WRITE TO EDF R&D CODE_ASTER,
#    1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE.
# ======================================================================

debug = False

import os, commands, string, sys, socket, getpass
from Utilitai.Utmess import UTMESS
#from pylotage.TOOLS import *
from graphiqueTk import *
import cata_champs
cata = cata_champs.CATA_CHAMPS()

from Cata.cata import *
from Accas import _F

# Type de visualisation
DeformedShape        = 'DEPL'
DeformedShapeOnField = 'ON_DEFORMED'
GaussPoints          = 'GAUSS'
GaussPointsOnField   = 'ON_DEFORMED'
ScalarMap            = 'ISO'

# =========================================================================

class VISU:
    def __init__( self,  param ) :
        """
        param : dictionnaire pouvant contenir( optionnel ):
        machine_salome      : nom de la machine Salome dans laquelle on souhaite faire la VISU
        machine_salome_port : port du NS Salome

        remarque :
        le service NS Salome est deduit des 2 paramètres ci-dessus.
        le service NS Salome peut egalement etre specifie dans les arguments de la ligne de commande ( ORBInitRef )

        """
        self.param         = param              # parametres Stanley
        self.studyName     = None               # nom de l'etude SALOME dans laquelle on fait la visualisation

        if debug: print "AA1/param=", self.param, dir(self.param)

        if param['Visualiseur'] == 'POSTPRO':
            self.chemin_script = './Python/Templates/salomeScript.py'
        else:
            self.chemin_script = './Python/Templates/salomeParaviz.py'

        # Construction paramètre pour SALOME
        self.salome_host           = param['machine_salome']
        self.salome_port           = int(param['machine_salome_port'])
        self.salome_runscript      = param['machine_salome_runscript']
        self.machine_salome_login  = param['machine_salome_login']
        self.mode                  = param['mode']

        if debug: print "AA1/", self.salome_host, self.salome_port, self.salome_runscript, self.machine_salome_login, self.mode

        if self.mode == 'LOCAL' :
            self.salome_host = 'localhost'


        # selection de l'étude SALOME ( parmi celles ouvertes )
        try:
            studyList = self.__studyList( param )
        except:
            UTMESS('A','STANLEY_14')
            return

        if studyList:
            if len( studyList ) == 1:           # une seule etude -> on publie dans celle-ci
                self.studyName = studyList[0]
            else:                               # plusieurs études -> l'utilisateur doit en selectionner une
                studyList.extend(["New"])
                self.studyName = SAISIE_MODE( studyList, _("Choix de l'etude SALOME pour visualisation"), vbar=1 )
        else:
            UTMESS('A','STANLEY_19', valk=[self.salome_host, str(self.salome_port), self.salome_runscript])
            return


    # --------------------------------------------------------------------------
    def __studyList( self, param ):
        """
        Retourne la liste des études
        """

        result = []

        _UL=INFO_EXEC_ASTER(LISTE_INFO='UNITE_LIBRE')
        unite=_UL['UNITE_LIBRE',1]

        dSALOME = { 'CHEMIN_SCRIPT'    : './Python/Templates/salomeGetStudies.py',
                    'SALOME_HOST'      : self.salome_host,
                    'SALOME_PORT'      : self.salome_port,
                    'FICHIERS_SORTIE'  : [ './fort.%s' % unite ],
                    'SALOME_RUNAPPLI'  : self.salome_runscript,
                  }

        if self.mode == 'LOCAL':
            EXEC_LOGICIEL(CODE_RETOUR_MAXI=-1,
                          INFO=2,
                          SALOME=dSALOME
                          );
        else:
            dMACHINE_DISTANTE = {
                    'SSH_ADRESSE'      : self.salome_host,
                    'SSH_LOGIN'        : self.machine_salome_login
                  }

            EXEC_LOGICIEL(CODE_RETOUR_MAXI=-1,
                          INFO=2,
                          SALOME=dSALOME,
                          MACHINE_DISTANTE=dMACHINE_DISTANTE
                          );

        try:
           f=open('./fort.%s' % unite, 'r')
           result=[ study.strip() for study in f.readlines() ]
           f.close()
        except: pass
        if debug: print 'AA1/Studies list=', result
        if len(result)==0:
            UTMESS('A','STANLEY_19', valk=[self.salome_host, str(self.salome_port), self.salome_runscript])

        DEFI_FICHIER(ACTION='LIBERER',UNITE=unite)

        return result


    # --------------------------------------------------------------------------
    def Terminal_ouvert(self) :
        """
            Retourne 1 si le terminal est ouvert, 0 sinon
        """
        return 0


    # --------------------------------------------------------------------------
    def Fermer(self) :
        """
            Ferme le terminal (si necessaire)
            Fais le menage dans l'objet
        """
        pass


    # --------------------------------------------------------------------------
    def Show( self ) :
        """
        Lance la visualisation dans SALOME
        """
        raise NotImplementedError("Non implémentée")


# =========================================================================

class ISOVALEURS( VISU ):
    def __init__( self, fichier, param,  selection, options ) :
        if not os.path.exists( fichier ):
            raise _("Fichier MED résultat de Stanley non accessible par SALOME : ") + fichier

        VISU .__init__( self,  param )

        # Si on n'a pas trouvé de session Salome ouverte on sort
        if not self.studyName: return
        if self.studyName=="New": self.studyName=''

        self.fichier       = os.path.abspath( fichier )         # chemin absolu du fichier MED fourni par Stanley
        self.visuType      = None                               # type de visualisation
        self.selection     = selection
        self.options       = options

        # parsing fichier MED (nom maillage + nom champ)
        self.medInfo = MEDInfo( selection )

        # selection d'un type de visualisation ( parmi celles possibles )
        self.visuType = self.__visuType( self.selection )

        if debug: print "AA3/", self.fichier, self.visuType, self.selection

        # et enfin la visualisation..
        self.Show(self.fichier, self.visuType)


    # --------------------------------------------------------------------------
    def __visuType(self, selection):
        """
        selection du type de visualisation selon le nom du champ de la selection donnée en paramètre
        ScalarMap
        DeformedShapeOnField
        GaussPointsOnField
        """
        nom_champ = cata[selection.nom_cham].nom
        nom_type  = cata[selection.nom_cham].type
        options   = self.options

        if nom_champ == 'DEPL':
            if selection.nom_cmp[0] == 'TOUT_CMP':
                result = DeformedShape
            else:
                result = ScalarMap
        elif nom_type == 'ELGA':
            result = GaussPoints
#             # Champ sur la deformee  # pas encore gere
#             if options.has_key( 'case_sur_deformee' ):
#                 if options['case_sur_deformee'] == 1:
#                     result = GaussPointsOnField
        else:
            result = ScalarMap
            # Champ sur la deformee
            if options.has_key( 'case_sur_deformee' ):
                if options['case_sur_deformee'] == 1:
                    result = DeformedShapeOnField
        return result


    # --------------------------------------------------------------------------
    def Show(self, medFilePath, visuType) :
        """
        Lecture d'un fichier MED par le composant VISU de SALOME.

        @type     medFilePath : string
        @param  medFilePath:  chemin du fichier MED

        @type     visuType :     integer
        @param  visuType:      type de visualisation
        """

        dSALOME = { 'CHEMIN_SCRIPT'    : self.chemin_script,
                    'SALOME_HOST'      : self.salome_host,
                    'SALOME_PORT'      : self.salome_port,
                    'FICHIERS_ENTREE'  : [ medFilePath ],
                    'SALOME_RUNAPPLI'  : self.salome_runscript,
                    'NOM_PARA'         : [ 'CHOIX', 'STUDY' ],
                    'VALE'             : [ self.visuType, self.studyName ],
                  }

        if self.mode == 'LOCAL':
            EXEC_LOGICIEL(CODE_RETOUR_MAXI=-1,
                          INFO=2,
                          SALOME=dSALOME
                          );
        else:
            dMACHINE_DISTANTE = {
                    'SSH_ADRESSE'      : self.salome_host,
                    'SSH_LOGIN'        : self.machine_salome_login
                  }

            EXEC_LOGICIEL(CODE_RETOUR_MAXI=-1,
                          INFO=2,
                          SALOME=dSALOME,
                          MACHINE_DISTANTE=dMACHINE_DISTANTE
                          );


        if not debug:
            try:
                os.remove(medFilePath)
            except:
                pass

        UTMESS('I','STANLEY_20')



# =========================================================================

class COURBES( VISU ):
    def __init__( self,  l_courbes, param, selection, datafile ):

        VISU .__init__(self, param)

        # Si on n'a pas trouvé de session Salome ouverte on sort
        if not self.studyName: return
        if self.studyName=="New": self.studyName=''

        self.tables     = {}
        self.l_courbes  = l_courbes
        self.selection  = selection
        self.datafile   = datafile

        self.Show(self.datafile)


#     # --------------------------------------------------------------------------
#     def __writeSalomeTables( self, l_courbes, selection ):
#         """
#         """
#         result =   {}
#         tabList = {}
#
#         try:
#
#             for courbe in l_courbes:
#                 composantName   = courbe[1].split('---')[0].strip()
#                 if selection.geom[0] == 'POINT' :
#                     ordre = 1
#                 elif selection.geom[0] == 'CHEMIN' :
#                     ordre = courbe[1].split('=')[1].strip()
#
#                 if not tabList.has_key(  composantName ):
#                     tabList[ composantName ] = []  # un tableau par composante
#                 tabList[ composantName ].insert( int(float(ordre)), str( courbe[0] ))
#
#             for composantName, liste  in tabList.items():
#                 data            = ""
#                 theTableName    = "table Stanley"
#
#                 newListe =map( string.split, liste )
#
#                 m = [[newListe[0][i]] + [newListe[j][i+1] for j in range(len(newListe))] for i in range(0, len(newListe[0]), 2)]
#
#                 if selection.geom[0] == 'POINT' :
#                     theTableName +='_%s_%s_sur_%s'%( selection.nom_cham,  composantName , selection.nom_va )
#                 elif selection.geom[0] == 'CHEMIN' :
#                     theTableName +='_%s_%s_sur_%s'%( selection.nom_cham,  composantName, 'ABSC_CURV ' + selection.geom[1][0])
#
#                 theTableName += ' '+selection.nom_va+' : ' + str( selection.vale_va )
#
#                 prefix  = '#TITLE: ' + theTableName + os.linesep
#                 data += prefix
#
#                 for a in m :
#                     for b in a :
#                         data+=b+" "
#                     data+=os.linesep
#                 theTxtFilePathName = os.path.join( '/tmp',  composantName )
#                 if os.path.exists( theTxtFilePathName):
#                     os.remove( theTxtFilePathName )
#                 f = open( theTxtFilePathName,'w')
#                 f.write( data )
#                 f.close()
#                 result [ theTableName ]  = theTxtFilePathName
#
#         except:
#             msg = str(sys.exc_info()[0]) +  str(sys.exc_info()[1]) + str(sys.exc_info()[2])
#             raise _("Erreur construction table de valeur pour visualisation 2D SALOME") + msg
#
#
#         return result



    # --------------------------------------------------------------------------
    def Show(self, datafile) :
        """
        Lecture d'un fichier MED par le composant VISU de SALOME.
        """

        dSALOME = { 'CHEMIN_SCRIPT'    : self.chemin_script,
                    'SALOME_HOST'      : self.salome_host,
                    'SALOME_PORT'      : self.salome_port,
                    'FICHIERS_ENTREE'  : [ datafile ],
                    'SALOME_RUNAPPLI'  : self.salome_runscript,
                    'NOM_PARA'         : [ 'CHOIX', 'STUDY' ],
                    'VALE'             : [ 'COURBE', self.studyName ],
                  }

        if self.mode == 'LOCAL':
            EXEC_LOGICIEL(CODE_RETOUR_MAXI=-1,
                          INFO=2,
                          SALOME=dSALOME
                          );
        else:
            dMACHINE_DISTANTE = {
                    'SSH_ADRESSE'      : self.salome_host,
                    'SSH_LOGIN'        : self.machine_salome_login
                  }

            EXEC_LOGICIEL(CODE_RETOUR_MAXI=-1,
                          INFO=2,
                          SALOME=dSALOME,
                          MACHINE_DISTANTE=dMACHINE_DISTANTE
                          );

        if not debug:
            try:
                os.remove(datafile)
            except:
                pass



# =========================================================================

class MEDInfo:
    """
    """
    def __init__( self, selection ):
        """
        Recupère les informations( nom maillage, champ ) du fichier MED resultat en sortie de Stanley
        """
        self.name           = selection.contexte.maillage.nom
        self.fieldName      = selection.contexte.resultat.nom
        tailSize            = 8 - len( self.fieldName)
        if tailSize > 0:
            self.fieldName += tailSize * '_'
        self.fieldName     += selection.nom_cham

        tailSize            = 32 - len( self.fieldName )
        if tailSize > 0:
            self.fieldName += tailSize * '_'