1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: ExchangePlugin_Validators.h
4 // Created: Aug 01, 2014
5 // Author: Sergey BELASH
7 #ifndef EXCHANGEPLUGIN_VALIDATORS_H
8 #define EXCHANGEPLUGIN_VALIDATORS_H
10 #include "ExchangePlugin.h"
11 #include <ModelAPI_AttributeValidator.h>
14 * \class ExchangePlugin_FormatValidator
16 * \brief Validator for the imported formats checking
18 * The configuration file of import/export features contains the information
19 * about which formats are supported and the extension of the associated files.
20 * This validator filters out files that are out of this description.
22 class ExchangePlugin_FormatValidator : public ModelAPI_AttributeValidator
25 * Parses input arguments "BREP:BREPImport", "STEP|STP:STEPImport"
26 * into list of file formats "BREP","STEP","STP"
27 * and list of corresponding plugins: "BREPImport", "STEPImport"
29 static bool parseFormats(const std::list<std::string>& theArguments,
30 std::list<std::string>& outFormats);
33 * Returns true is the file-name attribute correctly corresponds to the set of
36 virtual bool isValid(const AttributePtr& theAttribute,
37 const std::list<std::string>& theArguments,
38 Events_InfoMessage& theError) const;
42 * \class ExchangePlugin_ImportFormatValidator
44 * \brief Validator for the import format.
46 class ExchangePlugin_ImportFormatValidator : public ExchangePlugin_FormatValidator
52 * \class ExchangePlugin_ExportFormatValidator
54 * \brief Validator for the export format.
56 class ExchangePlugin_ExportFormatValidator : public ExchangePlugin_FormatValidator