blob: e0c01ed796cc9df3044b498d71ac4059ff76d26e [file] [log] [blame]
/* $Id$
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you 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.
*/
#include "serialization/EtchValidatorFloat.h"
#include "support/EtchRuntime.h"
capu::SmartPointer<EtchValidator>* EtchValidatorFloat::Validators(EtchRuntime* runtime) {
static EtchValidatorCaches validators;
return validators.get(runtime);
}
const EtchObjectType* EtchValidatorFloat::TYPE() {
const static EtchObjectType TYPE(EOTID_VALIDATOR_FLOAT, NULL);
return &TYPE;
}
EtchValidatorFloat::EtchValidatorFloat(EtchRuntime* runtime, capu::uint32_t ndim)
: EtchTypeValidator(EtchValidatorFloat::TYPE(), EtchFloat::TYPE(), EtchFloat::TYPE(), ndim), mRuntime(runtime) {
}
EtchValidatorFloat::EtchValidatorFloat(const EtchValidatorFloat& other)
: EtchTypeValidator(other), mRuntime(other.mRuntime) {
}
EtchValidatorFloat::~EtchValidatorFloat() {
}
capu::bool_t EtchValidatorFloat::validate(capu::SmartPointer<EtchObject> value) {
if (value.get() == NULL)
return false;
if (mExpectedType == NULL)
return false;
if (value->getObjectType()->equals(mExpectedType))
return true;
//array handling
if ((value->getObjectType()->isArray()) && (mExpectedType->isArray())) {
EtchNativeArray<EtchObject*> *array = (EtchNativeArray<EtchObject*> *) value.get();
if (array->getDim() != mNDims) {
return false;
}
const EtchObjectType* type = array->getObjectType()->getObjectComponentType();
const EtchObjectType* type2 = mExpectedType->getObjectComponentType();
return type->equals(type2);
}
return false;
}
status_t EtchValidatorFloat::validateValue(capu::SmartPointer<EtchObject> value, capu::SmartPointer<EtchObject>& result) {
if (validate(value)) {
result = value;
ETCH_LOG_TRACE(mRuntime->getLogger(), mRuntime->getLogger().getValidatorContext(), "Float object validated");
return ETCH_OK;
} else {
ETCH_LOG_WARN(mRuntime->getLogger(), mRuntime->getLogger().getValidatorContext(), "Float object validation failed");
return ETCH_ERROR;
}
}
status_t EtchValidatorFloat::Get(EtchRuntime* runtime, capu::uint32_t ndim, capu::SmartPointer<EtchValidator> &val) {
if (ndim > MAX_NDIMS) {
return ETCH_EINVAL;
}
if (ndim >= MAX_CACHED) {
val = new EtchValidatorFloat(runtime, ndim);
return ETCH_OK;
}
if (Validators(runtime)[ndim].get() == NULL) {
Validators(runtime)[ndim] = new EtchValidatorFloat(runtime, ndim);
ETCH_LOG_TRACE(runtime->getLogger(), runtime->getLogger().getValidatorContext(), "EtchValidatorFloat has been created");
}
val = Validators(runtime)[ndim];
return ETCH_OK;
}
status_t EtchValidatorFloat::getElementValidator(capu::SmartPointer<EtchValidator> &val) {
return EtchValidatorFloat::Get(mRuntime, mNDims - 1, val);
}