blob: b4c83e248054196fe644adce3da7bb20c8a3e800 [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/EtchValidatorDouble.h"
#include "support/EtchRuntime.h"
static const char* TAG = "EtchValidatorDouble";
capu::SmartPointer<EtchValidator>* EtchValidatorDouble::Validators(EtchRuntime* runtime) {
static EtchValidatorCaches validators;
return validators.get(runtime);
}
const EtchObjectType* EtchValidatorDouble::TYPE() {
const static EtchObjectType TYPE(EOTID_VALIDATOR_DOUBLE, NULL);
return &TYPE;
}
EtchValidatorDouble::EtchValidatorDouble(capu::uint32_t ndim)
: EtchTypeValidator(EtchValidatorDouble::TYPE(), EtchDouble::TYPE(), EtchDouble::TYPE(), ndim) {
//TODO rafactor this
mRuntime = EtchRuntime::getRuntime();
}
EtchValidatorDouble::EtchValidatorDouble(const EtchValidatorDouble& other)
: EtchTypeValidator(other), mRuntime(other.mRuntime) {
}
EtchValidatorDouble::~EtchValidatorDouble() {
}
capu::bool_t EtchValidatorDouble::validate(capu::SmartPointer<EtchObject> value) {
if (value.get() == NULL)
return false;
if (mExpectedType == NULL)
return false;
if (value->getObjectType() ->equals(mExpectedType))
return true;
//handle array
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 EtchValidatorDouble::validateValue(capu::SmartPointer<EtchObject> value, capu::SmartPointer<EtchObject>& result) {
if (validate(value)) {
result = value;
CAPU_LOG_TRACE(mRuntime->getLogger(), TAG, "Object has been validated");
return ETCH_OK;
} else {
CAPU_LOG_WARN(mRuntime->getLogger(), TAG, "Object has not been validated");
return ETCH_ERROR;
}
}
status_t EtchValidatorDouble::Get(capu::uint32_t ndim, capu::SmartPointer<EtchValidator> &val) {
//TODO rafactor this
EtchRuntime* runtime = EtchRuntime::getRuntime();
if (ndim > MAX_NDIMS) {
return ETCH_EINVAL;
}
if (ndim >= MAX_CACHED) {
val = new EtchValidatorDouble(ndim);
return ETCH_OK;
}
if (Validators(runtime)[ndim].get() == NULL) {
Validators(runtime)[ndim] = new EtchValidatorDouble(ndim);
CAPU_LOG_TRACE(runtime->getLogger(), TAG, "EtchValidatorDouble has been created");
}
val = Validators(runtime)[ndim];
return ETCH_OK;
}
status_t EtchValidatorDouble::getElementValidator(capu::SmartPointer<EtchValidator> &val) {
return EtchValidatorDouble::Get(mNDims - 1, val);
}