blob: cb06754e05d0819eddac69b080b6333fa4ada8b9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Nokia and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Nokia - Initial API and implementation. Feb 26, 2010
*******************************************************************************/
#include <assert.h>
#include "PropertyValue.h"
#include "Logger.h"
PropertyValue::PropertyValue() {
type = PVT_UNKNOWN;
}
PropertyValue::PropertyValue(const PropertyValue &src) {
type = src.type;
if (type == PVT_INT)
v.v_int = src.v.v_int;
else if (type == PVT_ULONG_INT)
v.v_int = src.v.v_ulong_int;
else if (type == PVT_BOOL)
v.v_bool = src.v.v_bool;
else if (type == PVT_STRING)
v_string = src.v_string; // copy !
}
PropertyValue::PropertyValue(int x) {
type = PVT_INT;
v.v_int = x;
}
PropertyValue::PropertyValue(unsigned long int x) {
type = PVT_ULONG_INT;
v.v_ulong_int = x;
}
PropertyValue::PropertyValue(bool x) {
type = PVT_BOOL;
v.v_bool = x;
}
PropertyValue::PropertyValue(const char *x) {
type = PVT_STRING;
v_string = x;
}
PropertyValue::PropertyValue(const std::string& x) {
type = PVT_STRING;
v_string = x;
}
PropertyType PropertyValue::getType() {
return type;
}
int PropertyValue::getIntValue() {
return v.v_int;
}
unsigned long int PropertyValue::getUnsignedLongIntValue() {
return v.v_ulong_int;
}
bool PropertyValue::getBoolValue() {
return v.v_bool;
}
const std::string& PropertyValue::getStringValue() {
return v_string;
}
void PropertyValue::log() const {
Logger::getLogger().Log(Logger::LOG_NORMAL, "PropertyValue::log type: %d", type);
switch (type) {
case PVT_INT:
Logger::getLogger().Log(Logger::LOG_NORMAL, "PropertyValue::log value: %d", v.v_int); break;
case PVT_ULONG_INT:
Logger::getLogger().Log(Logger::LOG_NORMAL, "PropertyValue::log value: %X", v.v_ulong_int); break;
case PVT_BOOL:
Logger::getLogger().Log(Logger::LOG_NORMAL, "PropertyValue::log value: %d", v.v_bool); break;
case PVT_STRING:
Logger::getLogger().Log(Logger::LOG_NORMAL, "PropertyValue::log value: %s", v_string.c_str()); break;
default:
assert(false);
break;
}
}
void PropertyValue::writeToTCFChannel(TCFOutputStream& tcf_stream) const {
switch (type) {
case PVT_INT:
tcf_stream.writeLong(v.v_int); break;
case PVT_ULONG_INT:
tcf_stream.writeULong(v.v_ulong_int); break;
case PVT_BOOL:
tcf_stream.writeBoolean(v.v_bool); break;
case PVT_STRING:
tcf_stream.writeString(v_string); break;
default:
assert(false);
break;
}
}
void logProperties(Properties& properties)
{
Logger::getLogger().Log(Logger::LOG_NORMAL, "logProperties");
for (Properties::const_iterator iter = properties.begin();
iter != properties.end(); iter++)
{
Logger::getLogger().Log(Logger::LOG_NORMAL, "prop id: %s", iter->first.c_str());
iter->second.log();
}
}