Salome HOME
bug
[tools/eficas.git] / Noyau / N_GEOM.py
1 # coding=utf-8
2 # Copyright (C) 2007-2017   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
23 """
24 from __future__ import absolute_import
25 from .N_ASSD import ASSD
26 import six
27
28
29 class GEOM(ASSD):
30
31     """
32        Cette classe sert à définir les types de concepts
33        géométriques comme GROUP_NO, GROUP_MA,NOEUD et MAILLE
34
35     """
36
37     def __init__(self, nom, etape=None, sd=None, reg='oui'):
38         """
39         """
40         self.etape = etape
41         self.sd = sd
42         if etape:
43             self.parent = etape.parent
44         else:
45             self.parent = CONTEXT.getCurrentStep()
46         if self.parent:
47             self.jdc = self.parent.getJdcRoot()
48         else:
49             self.jdc = None
50
51         if not self.parent:
52             self.id = None
53         elif reg == 'oui':
54             self.id = self.parent.regSD(self)
55         self.nom = nom
56
57     def getName(self):
58         return self.nom
59
60     def __convert__(cls, valeur):
61         if isinstance(valeur, (str, six.text_type)) and len(valeur.strip()) <= 8:
62             return valeur.strip()
63         raise ValueError(
64             _(u'On attend une chaine de caractères (de longueur <= 8).'))
65     __convert__ = classmethod(__convert__)
66
67
68 class geom(GEOM):
69     pass