Salome HOME
legere difference ds VARIABLES_TO_BE...
[tools/eficas.git] / Noyau / N_MCFACT.py
1 # coding=utf-8
2 # Copyright (C) 2007-2013   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.
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 """
22     Ce module contient la classe MCFACT qui sert à controler la valeur
23     d'un mot-clé facteur par rapport à sa définition portée par un objet
24     de type ENTITE
25 """
26
27 from __future__ import absolute_import
28 from . import N_MCCOMPO
29
30
31 class MCFACT(N_MCCOMPO.MCCOMPO):
32
33     """
34     """
35     nature = "MCFACT"
36
37     def __init__(self, val, definition, nom, parent):
38         """
39            Attributs :
40             - val : valeur du mot clé simple
41             - definition
42             - nom
43             - parent
44         """
45         self.definition = definition
46         self.nom = nom
47         self.val = val
48         self.parent = parent
49         self.valeur = self.GETVAL(self.val)
50         if parent:
51             self.jdc = self.parent.jdc
52             self.niveau = self.parent.niveau
53             self.etape = self.parent.etape
54         else:
55             # Le mot cle a été créé sans parent
56             self.jdc = None
57             self.niveau = None
58             self.etape = None
59         self.mc_liste = self.build_mc()
60
61     def GETVAL(self, val):
62         """
63             Retourne la valeur effective du mot-clé en fonction
64             de la valeur donnée. Defaut si val == None
65         """
66         if (val is None and hasattr(self.definition, 'defaut')):
67             return self.definition.defaut
68         else:
69             return val
70
71     def get_valeur(self):
72         """
73             Retourne la "valeur" d'un mot-clé facteur qui est l'objet lui-meme.
74             Cette valeur est utilisée lors de la création d'un contexte
75             d'évaluation d'expressions à l'aide d'un interpréteur Python
76         """
77         return self
78
79     def get_val(self):
80         """
81             Une autre méthode qui retourne une "autre" valeur du mot clé facteur.
82             Elle est utilisée par la méthode get_mocle
83         """
84         return [self]
85
86     def __getitem__(self, key):
87         """
88             Dans le cas d un mot cle facteur unique on simule une liste de
89             longueur 1
90         """
91         if key == 0:
92             return self
93         return self.get_mocle(key)
94
95     def accept(self, visitor):
96         """
97            Cette methode permet de parcourir l'arborescence des objets
98            en utilisant le pattern VISITEUR
99         """
100         visitor.visitMCFACT(self)
101
102     def makeobjet(self):
103         return self.definition.class_instance(val=None, nom=self.nom,
104                                               definition=self.definition, parent=self.parent)