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