blob: 580dcab882d09ff132c953e92ef632c98c375b0f [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/EtchAuthenticationExceptionSerializer.h"
#include "support/EtchRuntime.h"
const EtchString& EtchAuthenticationExceptionSerializer::FIELD_NAME() {
static const EtchString name("msg");
return name;
}
EtchAuthenticationExceptionSerializer::EtchAuthenticationExceptionSerializer(EtchRuntime* runtime, EtchType* type, EtchField* field)
: EtchImportExportHelper(runtime), mField(*field), mType(type) {
}
EtchAuthenticationExceptionSerializer::~EtchAuthenticationExceptionSerializer() {
}
status_t EtchAuthenticationExceptionSerializer::importValue(EtchStructValue* value, capu::SmartPointer<EtchObject> &result) {
if (value == NULL) {
return ETCH_EINVAL;
} else if (!value->isType(mType)) {
return ETCH_EINVAL;
}
capu::SmartPointer<EtchObject> tmp;
if (value->get(mField, &tmp) != ETCH_OK) {
ETCH_LOG_TRACE(mRuntime->getLogger(), mRuntime->getLogger().getSerializerContext(), "Msg Field could not be found");
return ETCH_ERROR;
}
EtchString str = *((EtchString*) tmp.get());
result = new EtchAuthenticationException(str);
ETCH_LOG_TRACE(mRuntime->getLogger(), mRuntime->getLogger().getSerializerContext(), "Exception has been deserialized");
return ETCH_OK;
}
status_t EtchAuthenticationExceptionSerializer::exportValue(EtchValueFactory* vf, capu::SmartPointer<EtchObject> value, EtchStructValue*& result) {
if ((value.get() == NULL) || (vf == NULL))
return ETCH_EINVAL;
if (value->getObjectType() != EtchAuthenticationException::TYPE())
return ETCH_EINVAL;
result = new EtchStructValue(mType, vf);
EtchString *str = new EtchString(((EtchAuthenticationException*) value.get())->getErrorMessage());
if (result->put(mField, str) != ETCH_OK)
return ETCH_ERROR;
ETCH_LOG_TRACE(mRuntime->getLogger(), mRuntime->getLogger().getSerializerContext(), "Exception has been serialized");
return ETCH_OK;
}
status_t EtchAuthenticationExceptionSerializer::Init(EtchRuntime* runtime, EtchType* type, EtchClass2TypeMap* class2type) {
status_t result;
EtchField field;
result = type->getField(FIELD_NAME(), &field);
if (result != ETCH_OK) {
return result;
}
result = class2type->put(EtchAuthenticationException::TYPE(), type);
if (result != ETCH_OK) {
return result;
}
type->setComponentType(EtchAuthenticationException::TYPE());
//set the import export helper
type->setImportExportHelper(new EtchAuthenticationExceptionSerializer(runtime, type, &field));
//get validator
capu::SmartPointer<EtchValidator> tmp;
result = EtchValidatorString::Get(runtime, 0, tmp);
if (result != ETCH_OK) {
return result;
}
result = type->putValidator(field, tmp);
if (result != ETCH_OK) {
return result;
}
type->lock();
ETCH_LOG_TRACE(runtime->getLogger(), runtime->getLogger().getSerializerContext(), "EtchAuthenticationExceptionSerializer has been initialized");
return ETCH_OK;
}