io.xlate.edi.internal.stream.validation.TimeValidator 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 TimeValidator extends ElementValidator {
private static final TimeValidator singleton = new TimeValidator();
private TimeValidator() {
}
static TimeValidator getInstance() {
return singleton;
}
@Override
void validate(Dialect dialect,
EDISimpleType element,
CharSequence value,
List errors) {
final int length = value.length();
if (!validateLength(dialect, element, length, errors) || !validValue(value)) {
errors.add(EDIStreamValidationError.INVALID_TIME);
}
}
@Override
void format(Dialect dialect, EDISimpleType element, CharSequence value, StringBuilder result) {
int length = value.length();
result.append(value);
for (long i = length, min = element.getMinLength(); i < min; i++) {
result.append('0');
}
}
static boolean validValue(CharSequence value) {
final int length = value.length();
int hr = 0;
int mi = 0;
int se = 0;
int ds = 0;
int index = 0;
for (int i = 0; i < length; i++) {
char current = value.charAt(i);
switch (current) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
break;
default:
return false;
}
int digit = Character.digit(current, 10);
switch (++index) {
case 1:
case 2:
hr = hr * 10 + digit;
break;
case 3:
case 4:
mi = mi * 10 + digit;
break;
case 5:
case 6:
se = se * 10 + digit;
break;
default:
ds = ds * 10 + digit;
break;
}
}
return hr < 24 && mi < 60 && se < 60;
}
}