Salome HOME
version 19 mars
[tools/eficas.git] / Validation / V_PRESENT_PRESENT.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
22 class PRESENT_PRESENT:
23    """
24       La règle vérifie que si le premier mot-clé de self.mcs est present 
25           parmi les elements de args les autres doivent l'etre aussi
26
27       Ces arguments sont transmis à la règle pour validation sous la forme 
28       d'une liste de noms de mots-clés ou d'un dictionnaire dont 
29       les clés sont des noms de mots-clés.
30    """
31    def verif(self,args):
32       """
33           La methode verif effectue la verification specifique à la règle.
34           args peut etre un dictionnaire ou une liste. Les éléments de args
35           sont soit les éléments de la liste soit les clés du dictionnaire.
36       """
37       #  on verifie que si le premier de la liste est present, 
38       #    les autres le sont aussi
39       mc0=self.mcs[0]
40       text=''
41       test = 1
42       args = self.liste_to_dico(args)
43       if args.has_key(mc0):
44         for mc in self.mcs[1:len(self.mcs)]:
45           if not args.has_key(mc):
46             text = text + u"- Le mot clé "+`mc0`+ u" étant présent, il faut que : "+mc+ u" soit présent"+'\n'
47             test = 0
48       return text,test
49