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