This file is indexed.

/usr/lib/aster/Stanley/xmgrace.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
# coding=utf-8
#            CONFIGURATION MANAGEMENT OF EDF VERSION
# ======================================================================
# COPYRIGHT (C) 1991 - 2012  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.
# ======================================================================
# =========================================================================
#                       TERMINAL GRAPHIQUE XMGRACE
# =========================================================================



import os
from glob import glob
from subprocess import Popen

import aster_core
import aster
from Utilitai.Utmess import UTMESS

TERMINAL = 0    # terminal actif ou non (au plus un terminal en meme temps)


class Xmgr :

  DEJA_ACTIF = 'Terminal xmgrace deja actif'

  def __init__(self, gr_max = 10, options=None, xmgrace=os.path.join(aster_core.get_option('repout'), 'xmgrace')) :

    # Declaration
    global TERMINAL

    # Precondition
    if TERMINAL : raise Xmgr.DEJA_ACTIF

    # Initialisation
    TERMINAL = 1
    self.gr_max   = gr_max        # nombre de graphes
    self.gr_act   = 0             # numero du graphe actif
    self.sets     = [0]*gr_max    # nombre de sets par graphe
    self.nom_pipe = 'xmgr.pipe'   # nom du pipe de communication
    self.xmgrace  = xmgrace

    # Ouverture du pipe de communication avec xmgrace
    if os.path.exists(self.nom_pipe) :
      os.remove(self.nom_pipe)
    os.mkfifo(self.nom_pipe)
    self.pipe = open(self.nom_pipe,'a+')

    # Lancement de xmgrace
    if options != None :
       cmd = self.xmgrace + ' -noask ' + options + ' -graph ' + repr(gr_max-1) + ' -npipe ' + self.nom_pipe
    else :
       cmd = self.xmgrace + ' -noask ' +           ' -graph ' + repr(gr_max-1) + ' -npipe ' + self.nom_pipe

    # Teste le DISPLAY avant de lancer xmgrace...
    if os.environ.has_key('DISPLAY'):

      UTMESS('I','STANLEY_9',valk=[cmd])
      self.controle = Popen(cmd, shell=True)

      # Mise a l'echelle des graphes
      for i in xrange(gr_max) :
        gr = 'G'+repr(i)
        self.Send('WITH ' + gr)
        self.Send('VIEW XMIN 0.10')
        self.Send('VIEW XMAX 0.95')
        self.Send('VIEW YMIN 0.10')
        self.Send('VIEW YMAX 0.95')

      # Activation du graphe G0
      self.Active(0)

    else:
      TERMINAL = 0
      UTMESS('A','STANLEY_3',valk=['XMGRACE'])

# --------------------------------------------------------------------

  def Terminal_ouvert(self) :

    """
      Retourne 1 si le terminal est ouvert, 0 sinon
    """

    try:
        etat = self.controle.poll()
        if etat is None:
            return 1
        else :
            return 0
    except:
        return 0   # generalement c'est que le popen ne s'est pas ouvert
                   # car pas de DISPLAY

# --------------------------------------------------------------------

  def Fermer(self) :

    """
      Ferme le terminal (si necessaire)
      Fais le menage dans l'objet
    """

    # Declaration
    global TERMINAL

    if self.Terminal_ouvert() :
      self.Send('Exit')
    self.pipe.close()
    try:    os.remove(self.nom_pipe)
    except: pass
    for fich in glob('xmgr.*.dat'):
       try:    os.remove(fich)
       except: pass
    TERMINAL = 0

# --------------------------------------------------------------------

  def Attendre(self) :

    """
      Attend que l'on quitte xmgrace
    """
    try:
      self.controle.wait()
    except: pass
    self.Fermer()

# --------------------------------------------------------------------

  def Send(self,command, echo = None) :

    """
      Envoie une commande a l'interpreteur de xmgrace
    """

    if self.Terminal_ouvert() :
      self.pipe.write(command + '\n')
      self.pipe.flush()
      if echo : print command

# --------------------------------------------------------------------

  def Active(self, graphe) :

    """
      Active un graphique
      IN  graphe : Numero du graphe a activer
    """

    if graphe >= self.gr_max : raise 'Graphe inexistant'

    # On efface tous les graphes
    for i in xrange(self.gr_max) :
      gr = 'G'+repr(i)
      self.Send(gr + ' OFF')

    # On active et on affiche le graphe courant
    gr = 'G' + repr(graphe)
    self.Send(gr + ' ON')
    self.Send('redraw')

    # On met a jour le graphe actif
    self.gr_act = graphe

# --------------------------------------------------------------------

  def Nouveau_graphe(self) :

    """
      Active un nouveau graphe
      (en pratique, celui qui suit le graphe actuel)
    """

    gr_act = self.gr_act
    self.Active(gr_act+1)

  # --------------------------------------------------------------------

  def Titre(self, titre, sous_titre = '') :

    if self.Terminal_ouvert() :
      self.Send('WITH G'+repr(self.gr_act))
      self.Send('TITLE SIZE 1.2')
      self.Send('TITLE "' + titre + '"')
      self.Send('SUBTITLE "' + sous_titre + '"')
      self.Send('redraw')

# --------------------------------------------------------------------

  def Axe_x(self, label) :

    if self.Terminal_ouvert() :
      self.Send('WITH G'+repr(self.gr_act))
      self.Send('XAXIS LABEL "' + label + '"')
      self.Send('XAXIS LABEL CHAR SIZE 0.75')
      self.Send('REDRAW')

# --------------------------------------------------------------------

  def Axe_y(self, label) :

    if self.Terminal_ouvert() :
      self.Send('WITH G'+repr(self.gr_act))
      self.Send('YAXIS LABEL "' + label + '"')
      self.Send('YAXIS LABEL CHAR SIZE 0.75')
      self.Send('REDRAW')

# --------------------------------------------------------------------

  def Legende(self, set, legende) :

    if self.Terminal_ouvert() :
      self.Send('WITH G'+repr(self.gr_act))
      self.Send('LEGEND ON')
      self.Send('LEGEND LOCTYPE VIEW')
      self.Send('LEGEND 0.79, 0.85')
      self.Send('LEGEND CHAR SIZE 0.75')
      self.Send('LEGEND BOX OFF')
      self.Send('LEGEND STRING ' + repr(set) + ' "' + legende + '"')
      self.Send('REDRAW')

# --------------------------------------------------------------------

  def Sortie_EPS(self,nom_fich) :

    if self.Terminal_ouvert() :
      self.Send('HARDCOPY DEVICE "EPS" ')
      self.Send('PRINT TO "' + nom_fich +'"')
      self.Send('PRINT')

# --------------------------------------------------------------------

  def Courbe(self, courbe, legende = None) :

    """
      Trace une courbe dans le graphique actif
      IN  courbe : objet de type courbe a tracer
    """

    set = self.sets[self.gr_act]
    self.sets[self.gr_act] = set+1

    name = 'xmgr.' + repr(self.gr_act) + '.' + repr(set) + '.dat'
    courbe.Sauve(name)
    if self.Terminal_ouvert() :
      self.Send('WITH G'+repr(self.gr_act))
      self.Send('read "' + name + '"')
      self.Send('redraw')
      if legende :
        self.Legende(set, legende)

    return set