Salome HOME
cht version
[tools/eficas.git] / Noyau / N_MCFACT.py
1 # coding=utf-8
2 # Copyright (C) 2007-2021   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,dicoPyxbDeConstruction):
38         """
39            Attributs :
40             - val : valeur du mot clé simple
41             - definition
42             - nom
43             - parent
44         """
45         #print ('MCFACT', self, val, definition, nom, parent, dicoPyxbDeConstruction)
46         #import traceback
47         #traceback.print_stack()
48         self.dicoPyxbDeConstruction=dicoPyxbDeConstruction
49         if self.dicoPyxbDeConstruction :
50             self.objPyxbDeConstruction=self.dicoPyxbDeConstruction['objEnPyxb']
51             del self.dicoPyxbDeConstruction['objEnPyxb']
52         else :
53             self.objPyxbDeConstruction=None
54         self.definition = definition
55         self.nom = nom
56         self.val = val
57         self.parent = parent
58         self.estIdentifiePar=None
59         self.valeur = self.getValeurEffective(self.val)
60         if parent:
61             self.jdc = self.parent.jdc
62             self.niveau = self.parent.niveau
63             self.etape = self.parent.etape
64         else:
65             # Le mot cle a été créé sans parent
66             self.jdc = None
67             self.niveau = None
68             self.etape = None
69         self.mcListe = self.buildMc()
70
71     def getValeurEffective(self, val):
72         """
73             Retourne la valeur effective du mot-clé en fonction
74             de la valeur donnée. Defaut si val == None
75         """
76         if (val is None and hasattr(self.definition, 'defaut')):
77             return self.definition.defaut
78         else:
79             return val
80
81     def getValeur(self):
82         """
83             Retourne la "valeur" d'un mot-clé facteur qui est l'objet lui-meme.
84             Cette valeur est utilisée lors de la création d'un contexte
85             d'évaluation d'expressions à l'aide d'un interpréteur Python
86         """
87         return self
88
89     def getVal(self):
90         """
91             Une autre méthode qui retourne une "autre" valeur du mot clé facteur.
92             Elle est utilisée par la méthode getMocle
93         """
94         return [self]
95
96     def __getitem__(self, key):
97         """
98             Dans le cas d un mot cle facteur unique on simule une liste de
99             longueur 1
100         """
101         if key == 0:
102             return self
103         return self.getMocle(key)
104
105     def accept(self, visitor):
106         """
107            Cette methode permet de parcourir l'arborescence des objets
108            en utilisant le pattern VISITEUR
109         """
110         visitor.visitMCFACT(self)
111
112     def makeobjet(self):
113         return self.definition.class_instance(val=None, nom=self.nom,
114                                               definition=self.definition, parent=self.parent)