io.xlate.edi.internal.stream.validation.NumericValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of staedi Show documentation
Show all versions of staedi Show documentation
Streaming API for EDI for Java
/*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
******************************************************************************/
package io.xlate.edi.internal.stream.validation;
import java.util.List;
import io.xlate.edi.internal.stream.tokenization.Dialect;
import io.xlate.edi.schema.EDISimpleType;
import io.xlate.edi.stream.EDIStreamValidationError;
class NumericValidator extends ElementValidator {
private static final NumericValidator singleton = new NumericValidator();
protected NumericValidator() {
}
static NumericValidator getInstance() {
return singleton;
}
@Override
void validate(Dialect dialect, EDISimpleType element, CharSequence value, List errors) {
int length = validate(dialect, value);
validateLength(dialect, element, Math.abs(length), errors);
if (length < 0) {
errors.add(EDIStreamValidationError.INVALID_CHARACTER_DATA);
}
}
@Override
void format(Dialect dialect, EDISimpleType element, CharSequence value, StringBuilder result) {
int length = validate(dialect, value);
for (long i = length, min = element.getMinLength(); i < min; i++) {
result.append('0');
}
result.append(value);
}
/**
* Validate that the value contains only characters the represent an
* integer.
*
* @param dialect the dialect currently be parsed
* @param value the sequence of characters to validate
* @return true of the value is a valid integer representation, otherwise false
*/
int validate(Dialect dialect, CharSequence value) {
int length = value.length();
boolean invalid = false;
for (int i = 0, m = length; i < m; i++) {
switch (value.charAt(i)) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
break;
case '-':
length--;
if (i > 0) {
invalid = true;
}
break;
default:
invalid = true;
break;
}
}
return invalid ? -length : length;
}
}