From 608a0c8e1045752e663038e65eed2eb2afe691ae Mon Sep 17 00:00:00 2001 From: Jean-Philippe ARGAUD Date: Sat, 8 Jun 2019 17:33:49 +0200 Subject: [PATCH] Adding data file input capacity for vectors --- bin/AdaoCatalogGenerator.py | 3 +++ resources/ADAOSchemaCatalog.xml | 17 ++++++++++++ src/daComposant/daCore/Interfaces.py | 5 ++++ .../daYacsSchemaCreator/infos_daComposant.py | 4 +-- src/daSalome/daYacsSchemaCreator/methods.py | 27 +++++++++++++++++++ 5 files changed, 54 insertions(+), 2 deletions(-) diff --git a/bin/AdaoCatalogGenerator.py b/bin/AdaoCatalogGenerator.py index 153f5ef..406de4f 100644 --- a/bin/AdaoCatalogGenerator.py +++ b/bin/AdaoCatalogGenerator.py @@ -142,6 +142,9 @@ def F_{data_name}(statut, fv=NoCheckInNS) : return FACT( SCRIPT_DATA = BLOC ( condition = " FROM in ( 'Script', ) ", SCRIPT_FILE = SIMP(statut = "o", typ = ("FichierNoAbs",'Python Files (*.py)',), validators=[OnlyStr(), FileExtVal('py'), FunctionVal(fv)], fr="En attente d'un nom de fichier script, avec ou sans le chemin complet pour le trouver, contenant si nécessaire la définition d'une variable interne de même nom que le concept parent", ang="Waiting for a script file name, with or without the full path to find it, containing if necessary the definition of an internal variable of the same name as the parent concept"), ), + DATA_DATA = BLOC ( condition = " FROM in ( 'DataFile', ) ", + DATA_FILE = SIMP(statut = "o", typ = ("FichierNoAbs",'CSV Text Files (*.csv);;TSV Text Files (*.tsv);;TXT Text Files (*.txt);;NPY Binary Numpy Files (*.npy);;NPZ Binary Numpy Files (*.npz);;All Files (*)", ',), validators=[OnlyStr(), FunctionVal(ColDataFileExtVal)], fr="En attente d'un nom de fichier de données, avec ou sans le chemin complet pour le trouver, contenant ou plusieurs colonnes pour définir un unique vecteur continu", ang="Waiting for a data file name, with or without the full path to find it, containing one or more columns to define a unique continuous vector"), + ), STRING_DATA = BLOC ( condition = " FROM in ( 'String', ) ", STRING = SIMP(statut = "o", typ = "TXM",{ms_default} fr="En attente d'une chaine de caractères entre guillements. Pour construire un vecteur ou une matrice, ce doit être une suite de nombres, utilisant un espace ou une virgule pour séparer deux éléments et un point-virgule pour séparer deux lignes", ang="Waiting for a string in quotes. To build a vector or a matrix, it has to be a float serie, using a space or comma to separate two elements in a line, a semi-colon to separate rows"), ), diff --git a/resources/ADAOSchemaCatalog.xml b/resources/ADAOSchemaCatalog.xml index 62f4340..6506dfa 100644 --- a/resources/ADAOSchemaCatalog.xml +++ b/resources/ADAOSchemaCatalog.xml @@ -407,6 +407,23 @@ if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index + + + + + + + + +