/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* * 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 "attribute.h" #include "log.h" #include "fatal-error.h" #include "string.h" #include namespace ns3 { NS_LOG_COMPONENT_DEFINE ("AttributeValue"); AttributeValue::AttributeValue () { } AttributeValue::~AttributeValue () { } AttributeAccessor::AttributeAccessor () { } AttributeAccessor::~AttributeAccessor () { } AttributeChecker::AttributeChecker () { } AttributeChecker::~AttributeChecker () { } Ptr AttributeChecker::CreateValidValue (const AttributeValue &value) const { NS_LOG_FUNCTION (this << &value); if (Check (value)) { return value.Copy (); } // attempt to convert to string. const StringValue *str = dynamic_cast (&value); if (str == 0) { return 0; } // attempt to convert back to value. Ptr v = Create (); bool ok = v->DeserializeFromString (str->Get (), this); if (!ok) { return 0; } ok = Check (*v); if (!ok) { return 0; } return v; } EmptyAttributeValue::EmptyAttributeValue () { NS_LOG_FUNCTION (this); } Ptr EmptyAttributeValue::Copy (void) const { NS_LOG_FUNCTION (this); return Create (); } std::string EmptyAttributeValue::SerializeToString (Ptr checker) const { NS_LOG_FUNCTION (this << checker); return ""; } bool EmptyAttributeValue::DeserializeFromString (std::string value, Ptr checker) { NS_LOG_FUNCTION (this << value << checker); return true; } } // namespace ns3