aboutsummaryrefslogtreecommitdiffstats
path: root/jtosca/src/main/java/org/openecomp/sdc/toscaparser/elements/constraints/MinLength.java
blob: 447572cad680c01d95cfbfc9ec67d99dfa58af7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package org.openecomp.sdc.toscaparser.elements.constraints;

import java.util.LinkedHashMap;

import org.openecomp.sdc.toscaparser.common.ExceptionCollector;

public class MinLength extends Constraint {
	// Constraint class for "min_length"
	
	// Constrains the property or parameter to a value of a minimum length.

	@Override
	protected void _setValues() {

		constraintKey = MIN_LENGTH;

		validTypes.add("Integer");
		
		validPropTypes.add(Schema.STRING);
		validPropTypes.add(Schema.MAP);
		
	}
	
	public MinLength(String name,String type,Object c) {
		super(name,type,c);
		
		if(!validTypes.contains(constraintValue.getClass().getSimpleName())) {
	        ExceptionCollector.appendException("InvalidSchemaError: The property \"min_length\" expects an integer");
		}
	}
	
	@SuppressWarnings("unchecked")
	@Override
	protected boolean _isValid(Object value) {
	    if(value instanceof String && constraintValue instanceof Integer &&
	    		((String)value).length() >= (Integer)constraintValue) {
	        return true;
	    }
	    else if(value instanceof LinkedHashMap && constraintValue instanceof Integer &&
	    		((LinkedHashMap<String,Object>)value).size() >= (Integer)constraintValue) {
	        return true;
	    }
		return false;
	}

	@Override
	protected String _errMsg(Object value) {
	    return String.format("Length of value \"%s\" of property \"%s\" must be at least \"%s\"",
	    					 value.toString(),propertyName,constraintValue.toString());
	}

}

/*python

class MinLength(Constraint):
	"""Constraint class for "min_length"
	
	Constrains the property or parameter to a value to a minimum length.
	"""
	
	constraint_key = Constraint.MIN_LENGTH
	
	valid_types = (int, )
	
	valid_prop_types = (Schema.STRING, Schema.MAP)
	
	def __init__(self, property_name, property_type, constraint):
	    super(MinLength, self).__init__(property_name, property_type,
	                                    constraint)
	    if not isinstance(self.constraint_value, self.valid_types):
	        ExceptionCollector.appendException(
	            InvalidSchemaError(message=_('The property "min_length" '
	                                         'expects an integer.')))
	
	def _is_valid(self, value):
	    if ((isinstance(value, str) or isinstance(value, dict)) and
	       len(value) >= self.constraint_value):
	        return True
	
	    return False
	
	def _err_msg(self, value):
	    return (_('Length of value "%(pvalue)s" of property "%(pname)s" '
	              'must be at least "%(cvalue)s".') %
	            dict(pname=self.property_name,
	                 pvalue=value,
	                 cvalue=self.constraint_value))
*/