]> SALOME platform Git repositories - modules/adao.git/blob - src/daSalome/daYacsSchemaCreator/help_methods.py
Salome HOME
Bug fix
[modules/adao.git] / src / daSalome / daYacsSchemaCreator / help_methods.py
1 #-*- coding: utf-8 -*-
2 # Copyright (C) 2010-2011 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 # Author: André Ribes, andre.ribes@edf.fr, EDF R&D
21
22 import sys
23 import os
24 import traceback
25 import logging
26
27 from daYacsSchemaCreator.infos_daComposant import *
28
29 def check_args(args):
30
31   logging.debug("Arguments are :" + str(args))
32   if len(args) != 2:
33     logging.fatal("Bad number of arguments: you have to provide two arguments (%d given)" % (len(args)))
34     sys.exit(1)
35
36 def check_study(study_config):
37
38   logging.debug("[check_env] study_config : " + str(study_config))
39
40   # Check study_config
41   if not isinstance(study_config, dict):
42     logging.fatal("Study configuration is not a dictionnary")
43     sys.exit(1)
44
45   # Name
46   if "Name" not in study_config:
47     logging.fatal("Cannot found Name in the study configuration")
48     sys.exit(1)
49
50   # Algorithm
51   if "Algorithm" not in study_config:
52     logging.fatal("Cannot found Algorithm in the study configuration")
53     sys.exit(1)
54   else:
55     if study_config["Algorithm"] not in AssimAlgos:
56       logging.fatal("Algorithm provided is unknow : " + str(study_config["Algorithm"]) +
57                     "\n You can choose between : " + str(AssimAlgos))
58       sys.exit(1)
59
60   # Debug
61   if "Debug" not in study_config:
62     study_config["Debug"] = "0"
63
64   # Repertory
65   check_repertory = False
66   repertory = ""
67   if "Repertory" in study_config.keys():
68     repertory = study_config["Repertory"]
69     check_repertory = True
70     if not os.path.isabs(repertory):
71       logging.fatal("Study repertory should be an absolute path")
72       logging.fatal("Repertory provided is %s" % repertory)
73       sys.exit(1)
74
75   # Check if all the data is provided
76   for key in AlgoDataRequirements[study_config["Algorithm"]]:
77     if key not in study_config.keys():
78       logging.fatal("Cannot found " +  key + " in your study configuration !" +
79                     "\n This key is mandatory into a study with " + study_config["Algorithm"] + " algorithm." +
80                     "\n " + study_config["Algorithm"] + " requirements are " + str(AlgoDataRequirements[study_config["Algorithm"]]))
81       sys.exit(1)
82
83   # Data
84   for key in study_config.keys():
85     if key in AssimData:
86       check_data(key, study_config[key], check_repertory, repertory)
87
88   # UserDataInit
89   if "UserDataInit" in study_config.keys():
90     check_data("UserDataInit", study_config["UserDataInit"], check_repertory, repertory)
91
92   # Variables
93   check_variables("InputVariables", study_config)
94   check_variables("OutputVariables", study_config)
95
96   # Analyse
97   if "UserPostAnalysis" in study_config.keys():
98     analysis_config = study_config["UserPostAnalysis"]
99     if "From" not in analysis_config:
100       logging.fatal("UserPostAnalysis found but From is not defined in the analysis configuration !")
101       sys.exit(1)
102     else:
103       if analysis_config["From"] not in AnalysisFromList:
104         logging.fatal("Analysis From defined in the study configuration does not have a correct type : " + str(analysis_config["From"])
105                       + "\n You can have : " + str(AnalysisFromList))
106         sys.exit(1)
107     if "Data" not in analysis_config:
108       logging.fatal("Analysis found but Data is not defined in the analysis configuration !")
109       sys.exit(1)
110
111     if analysis_config["From"] == "Script":
112       check_file_name = ""
113       if check_repertory:
114         check_file_name = os.path.join(repertory, os.path.basename(analysis_config["Data"]))
115       else:
116         check_file_name = analysis_config["Data"]
117       if not os.path.exists(check_file_name):
118         logging.fatal("A script file cannot be found")
119         logging.fatal("File is %s" % check_file_name)
120         sys.exit(1)
121
122 def check_variables(name, study_config):
123
124   if name not in study_config.keys():
125     logging.fatal("%s not found in your study configuration!" % name)
126     sys.exit(1)
127
128   variable_config = study_config[name]
129   if "Order" not in variable_config.keys():
130     logging.fatal("Order not found in the %s configuration!" % name)
131     sys.exit(1)
132
133   list_of_variables = variable_config["Order"]
134   if not isinstance(list_of_variables, type([])):
135     logging.fatal("Order sould be a list in the %s configuration!" % name)
136     sys.exit(1)
137   if len(list_of_variables) < 1:
138     logging.fatal("Order should contain one or more names in the %s configuration!" % name)
139     sys.exit(1)
140
141   for var in list_of_variables:
142     if var not in variable_config.keys():
143       logging.fatal("Variable %s not found in the %s configuration!" % name)
144       sys.exit(1)
145     value = variable_config[var]
146     try:
147       value = int(value)
148     except:
149       loggind.fatal("Variable %s value cannot be converted in an integer in the %s configuration!" % name)
150       sys.exit(1)
151
152 def check_data(data_name, data_config, repertory_check=False, repertory=""):
153
154   logging.debug("[check_data] " + data_name)
155   data_name_data = "Data"
156   data_name_type = "Type"
157   data_name_from = "From"
158
159   if data_name_data not in data_config:
160     logging.fatal(data_name +" found but " + data_name_data +" is not defined in the study configuration !")
161     sys.exit(1)
162
163   if data_name_type not in data_config:
164     logging.fatal(data_name +" found but " + data_name_type  +" is not defined in the study configuration !")
165     sys.exit(1)
166   else:
167     if data_config[data_name_type] not in AssimType[data_name]:
168       logging.fatal(data_name_type + " defined in the study configuration does not have a correct type : " + str(data_config[data_name_type]) 
169                     + "\n You can have : " + str(AssimType[data_name]))
170       sys.exit(1)
171   if data_name_from not in data_config:
172     logging.fatal(data_name + " found but " + data_name_from + " is not defined in the study configuration !")
173     sys.exit(1)
174   else:
175     if data_config[data_name_from] not in FromNumpyList[data_config[data_name_type]]:
176       logging.fatal(data_name_from + " defined in the study configuration does not have a correct value : " + str(data_config[data_name_from]) 
177                     + "\n You can have : " + str(FromNumpyList[data_config[data_name_type]]))
178       sys.exit(1)
179
180   # Check des fichiers
181   from_type = data_config["From"]
182   if from_type == "Script":
183     check_file_name = ""
184     if repertory_check:
185       check_file_name = os.path.join(repertory, os.path.basename(data_config["Data"]))
186     else:
187       check_file_name = data_config["Data"]
188     if not os.path.exists(check_file_name):
189       logging.fatal("A script file cannot be found")
190       logging.fatal("File is %s" % check_file_name)
191       sys.exit(1)
192   elif from_type == "FunctionDict":
193     FunctionDict = data_config["Data"]
194     for FunctionName in FunctionDict["Function"]:
195       check_file_name = ""
196       if repertory_check:
197         check_file_name = os.path.join(repertory, os.path.basename(FunctionDict["Script"][FunctionName]))
198       else:
199         check_file_name = FunctionDict["Script"][FunctionName]
200       if not os.path.exists(check_file_name):
201         logging.fatal("A script file cannot be found")
202         logging.fatal("File is %s" % check_file_name)
203         sys.exit(1)