rtphone/src/libs/resiprocate/resip/stack/CallId.cxx

220 lines
8.3 KiB
C++

#if defined(HAVE_CONFIG_H)
#include "config.h"
#endif
#include "resip/stack/CallId.hxx"
#include "resip/stack/UnknownParameter.hxx"
#include "rutil/Data.hxx"
#include "rutil/DnsUtil.hxx"
#include "rutil/Logger.hxx"
#include "rutil/ParseBuffer.hxx"
//#include "rutil/WinLeakCheck.hxx" // not compatible with placement new used below
using namespace resip;
using namespace std;
#define RESIPROCATE_SUBSYSTEM Subsystem::SIP
//====================
// CallID:
//====================
CallID::CallID()
: ParserCategory(),
mValue()
{}
CallID::CallID(const HeaderFieldValue& hfv,
Headers::Type type,
PoolBase* pool)
: ParserCategory(hfv, type, pool), mValue()
{}
CallID::CallID(const CallID& rhs,
PoolBase* pool)
: ParserCategory(rhs, pool),
mValue(rhs.mValue)
{}
CallID&
CallID::operator=(const CallID& rhs)
{
if (this != &rhs)
{
ParserCategory::operator=(rhs);
mValue = rhs.mValue;
}
return *this;
}
bool
CallID::operator==(const CallID& rhs) const
{
return value() == rhs.value();
}
ParserCategory *
CallID::clone() const
{
return new CallID(*this);
}
ParserCategory *
CallID::clone(void* location) const
{
return new (location) CallID(*this);
}
ParserCategory*
CallID::clone(PoolBase* pool) const
{
return new (pool) CallID(*this, pool);
}
Data&
CallID::value()
{
checkParsed();
return mValue;
}
const Data&
CallID::value() const
{
checkParsed();
return mValue;
}
void
CallID::parse(ParseBuffer& pb)
{
const char* start = pb.skipWhitespace();
static const std::bitset<256> wsOrSemi(Data::toBitset(ParseBuffer::Whitespace).set(Symbols::SEMI_COLON[0]));
pb.skipToOneOf(wsOrSemi);
pb.data(mValue, start);
parseParameters(pb);
}
EncodeStream&
CallID::encodeParsed(EncodeStream& str) const
{
str << mValue;
encodeParameters(str);
return str;
}
ParameterTypes::Factory CallID::ParameterFactories[ParameterTypes::MAX_PARAMETER]={0};
Parameter*
CallID::createParam(ParameterTypes::Type type, ParseBuffer& pb, const std::bitset<256>& terminators, PoolBase* pool)
{
if(type > ParameterTypes::UNKNOWN && type < ParameterTypes::MAX_PARAMETER && ParameterFactories[type])
{
return ParameterFactories[type](type, pb, terminators, pool);
}
return 0;
}
bool
CallID::exists(const Param<CallID>& paramType) const
{
checkParsed();
bool ret = getParameterByEnum(paramType.getTypeNum()) != NULL;
return ret;
}
void
CallID::remove(const Param<CallID>& paramType)
{
checkParsed();
removeParameterByEnum(paramType.getTypeNum());
}
#define defineParam(_enum, _name, _type, _RFC_ref_ignored) \
_enum##_Param::DType& \
CallID::param(const _enum##_Param& paramType) \
{ \
checkParsed(); \
_enum##_Param::Type* p = \
static_cast<_enum##_Param::Type*>(getParameterByEnum(paramType.getTypeNum())); \
if (!p) \
{ \
p = new _enum##_Param::Type(paramType.getTypeNum()); \
mParameters.push_back(p); \
} \
return p->value(); \
} \
\
const _enum##_Param::DType& \
CallID::param(const _enum##_Param& paramType) const \
{ \
checkParsed(); \
_enum##_Param::Type* p = \
static_cast<_enum##_Param::Type*>(getParameterByEnum(paramType.getTypeNum())); \
if (!p) \
{ \
InfoLog(<< "Missing parameter " _name " " << ParameterTypes::ParameterNames[paramType.getTypeNum()]); \
DebugLog(<< *this); \
throw Exception("Missing parameter " _name, __FILE__, __LINE__); \
} \
return p->value(); \
}
defineParam(fromTag, "from-tag", DataParameter, "RFC 3891 (not in IANA, apparently)");
defineParam(toTag, "to-tag", DataParameter, "RFC 3891 (not in IANA, apparently)");
defineParam(earlyOnly, "early-only", ExistsParameter, "RFC 3891 (not in IANA, apparently)");
#undef defineParam
/* ====================================================================
* The Vovida Software License, Version 1.0
*
* Copyright (c) 2000 Vovida Networks, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The names "VOCAL", "Vovida Open Communication Application Library",
* and "Vovida Open Communication Application Library (VOCAL)" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact vocal@vovida.org.
*
* 4. Products derived from this software may not be called "VOCAL", nor
* may "VOCAL" appear in their name, without prior written
* permission of Vovida Networks, Inc.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
* NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA
* NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
* IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*
* ====================================================================
*
* This software consists of voluntary contributions made by Vovida
* Networks, Inc. and many individuals on behalf of Vovida Networks,
* Inc. For more information on Vovida Networks, Inc., please see
* <http://www.vovida.org/>.
*
*/