Salome HOME
commentaire
[tools/eficas.git] / Noyau / N__F.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 from __future__ import absolute_import
22 try :
23    from past.builtins import cmp
24 except :
25    pass
26 try:
27    from UserDict import UserDict
28 except ImportError:
29    from collections import UserDict
30
31
32 class _F(UserDict):
33
34     """
35         Cette classe a un comportement semblable à un
36         dictionnaire Python et permet de donner
37         la valeur d'un mot-clé facteur avec pour les sous
38         mots-clés la syntaxe motcle=valeur
39     """
40
41     def __init__(self, *pos, **args):
42         if len(pos) != 0:
43             raise SyntaxError("Valeur invalide pour '_F('. "
44                               "On attend cette syntaxe : _F(MOTCLE=valeur, ...)")
45         self.data = args
46
47     def supprime(self):
48         self.data = {}
49
50     def __cmp__(self, dict):
51         if type(dict) == type(self.data):
52             return cmp(self.data, dict)
53         elif hasattr(dict, "data"):
54             return cmp(self.data, dict.data)
55         else:
56             return cmp(self.data, dict)
57
58     def __iter__(self):
59         return iter(self.data)
60
61     def copy(self):
62         import copy
63         c = copy.copy(self)
64         c.data = self.data.copy()
65         return c