/* * Copyright (c) 2008 INRIA * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Authors: Mathieu Lacage */ #include "pointer.h" #include "log.h" #include "object-factory.h" #include /** * \file * \ingroup attribute_Pointer * ns3::PointerValue attribute value implementations. */ namespace ns3 { NS_LOG_COMPONENT_DEFINE("Pointer"); PointerValue::PointerValue() : m_value() { NS_LOG_FUNCTION(this); } PointerValue::PointerValue(const Ptr& object) : m_value(object) { NS_LOG_FUNCTION(object); } void PointerValue::SetObject(Ptr object) { NS_LOG_FUNCTION(object); m_value = object; } Ptr PointerValue::GetObject() const { NS_LOG_FUNCTION(this); return m_value; } Ptr PointerValue::Copy() const { NS_LOG_FUNCTION(this); return Create(*this); } std::string PointerValue::SerializeToString(Ptr checker) const { NS_LOG_FUNCTION(this << checker); std::ostringstream oss; oss << m_value; return oss.str(); } bool PointerValue::DeserializeFromString(std::string value, Ptr checker) { // We assume that the string you want to deserialize contains // a description for an ObjectFactory to create an object and then assign it to the // member variable. NS_LOG_FUNCTION(this << value << checker); ObjectFactory factory; std::istringstream iss; iss.str(value); iss >> factory; if (iss.fail()) { return false; } m_value = factory.Create(); return true; } } // namespace ns3