]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Variable validation without regexp
authorsbh <sergey.belash@opencascade.com>
Mon, 13 Apr 2015 15:37:38 +0000 (18:37 +0300)
committersbh <sergey.belash@opencascade.com>
Mon, 13 Apr 2015 15:37:38 +0000 (18:37 +0300)
src/ParametersPlugin/ParametersPlugin_Validators.cpp
src/ParametersPlugin/ParametersPlugin_Validators.h

index dc7eb066ca19d5c8afd06b29b38ce0e779169faa..788e163980f6308e9a1740ee45418c016db22b9c 100644 (file)
@@ -13,7 +13,6 @@
 
 ParametersPlugin_VariableValidator::ParametersPlugin_VariableValidator()
 {
-  myPyVariableRegex = std::regex("[_a-zA-Z][a-zA-Z0-9_]*");
 }
 
 ParametersPlugin_VariableValidator::~ParametersPlugin_VariableValidator()
@@ -24,10 +23,24 @@ bool ParametersPlugin_VariableValidator::isValid(const AttributePtr& theAttribut
                                                  const std::list<std::string>& theArguments) const
 {
   AttributeStringPtr aStrAttr = std::dynamic_pointer_cast<ModelAPI_AttributeString>(theAttribute);
-  bool result = std::regex_match(aStrAttr->value(), myPyVariableRegex);
+  bool result = isVariable(aStrAttr->value());
   return result;
 }
 
+bool ParametersPlugin_VariableValidator::isVariable(const std::string& theString) const
+{
+  std::string::const_iterator it = theString.begin();
+  if (!(isalpha(*it) || (*it) == '_') || it == theString.end())
+    return false;
+  it++;
+  for ( ; it != theString.end(); ++it ) {
+    if(!(isalnum(*it) || (*it) == '_')) {
+      return false;
+    }
+  }
+  return true;
+}
+
 ParametersPlugin_ExpressionValidator::ParametersPlugin_ExpressionValidator()
 {
 
index 3a4db55c88a8944bd6ede1e74e2ba600260a70b8..be8f285b5c1684edfd38cc0bccafa3e344cadbce 100644 (file)
@@ -13,7 +13,6 @@
 
 #include <ModelAPI_AttributeValidator.h>
 
-#include <regex>
 #include <memory>
 
 class ParametersPlugin_VariableValidator : public ModelAPI_AttributeValidator
@@ -28,8 +27,9 @@ class ParametersPlugin_VariableValidator : public ModelAPI_AttributeValidator
   PARAMETERSPLUGIN_EXPORT virtual bool isValid(const AttributePtr& theAttribute,
                                                const std::list<std::string>& theArguments) const;
 
- private:
-  std::regex myPyVariableRegex;
+ protected:
+  PARAMETERSPLUGIN_EXPORT bool isVariable(const std::string& theString) const;
+
 };
 
 class ParametersPlugin_ExpressionValidator: public ModelAPI_AttributeValidator