2012-04-29 20:52:25 +02:00
|
|
|
//
|
|
|
|
// NameValueCollection.cpp
|
|
|
|
//
|
|
|
|
// Library: Net
|
|
|
|
// Package: Messages
|
|
|
|
// Module: NameValueCollection
|
|
|
|
//
|
|
|
|
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
|
|
|
|
// and Contributors.
|
|
|
|
//
|
2014-05-04 21:02:42 +02:00
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
2012-04-29 20:52:25 +02:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#include "Poco/Net/NameValueCollection.h"
|
|
|
|
#include "Poco/Exception.h"
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
|
|
|
|
using Poco::NotFoundException;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Poco {
|
|
|
|
namespace Net {
|
|
|
|
|
|
|
|
|
|
|
|
NameValueCollection::NameValueCollection()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NameValueCollection::NameValueCollection(const NameValueCollection& nvc):
|
|
|
|
_map(nvc._map)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-09 10:08:09 +01:00
|
|
|
NameValueCollection::NameValueCollection(NameValueCollection&& nvc) noexcept:
|
|
|
|
_map(std::move(nvc._map))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-29 20:52:25 +02:00
|
|
|
NameValueCollection::~NameValueCollection()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NameValueCollection& NameValueCollection::operator = (const NameValueCollection& nvc)
|
|
|
|
{
|
2020-01-09 10:08:09 +01:00
|
|
|
NameValueCollection tmp(nvc);
|
|
|
|
swap(tmp);
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NameValueCollection& NameValueCollection::operator = (NameValueCollection&& nvc) noexcept
|
|
|
|
{
|
|
|
|
_map = std::move(nvc._map);
|
|
|
|
|
2012-04-29 20:52:25 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void NameValueCollection::swap(NameValueCollection& nvc)
|
|
|
|
{
|
|
|
|
std::swap(_map, nvc._map);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const std::string& NameValueCollection::operator [] (const std::string& name) const
|
|
|
|
{
|
|
|
|
ConstIterator it = _map.find(name);
|
|
|
|
if (it != _map.end())
|
|
|
|
return it->second;
|
|
|
|
else
|
|
|
|
throw NotFoundException(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void NameValueCollection::set(const std::string& name, const std::string& value)
|
|
|
|
{
|
|
|
|
Iterator it = _map.find(name);
|
|
|
|
if (it != _map.end())
|
|
|
|
it->second = value;
|
|
|
|
else
|
2012-11-15 07:16:31 +01:00
|
|
|
_map.insert(HeaderMap::ValueType(name, value));
|
2012-04-29 20:52:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void NameValueCollection::add(const std::string& name, const std::string& value)
|
|
|
|
{
|
2012-11-15 07:16:31 +01:00
|
|
|
_map.insert(HeaderMap::ValueType(name, value));
|
2012-04-29 20:52:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const std::string& NameValueCollection::get(const std::string& name) const
|
|
|
|
{
|
|
|
|
ConstIterator it = _map.find(name);
|
|
|
|
if (it != _map.end())
|
|
|
|
return it->second;
|
|
|
|
else
|
|
|
|
throw NotFoundException(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const std::string& NameValueCollection::get(const std::string& name, const std::string& defaultValue) const
|
|
|
|
{
|
|
|
|
ConstIterator it = _map.find(name);
|
|
|
|
if (it != _map.end())
|
|
|
|
return it->second;
|
|
|
|
else
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool NameValueCollection::has(const std::string& name) const
|
|
|
|
{
|
|
|
|
return _map.find(name) != _map.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NameValueCollection::ConstIterator NameValueCollection::find(const std::string& name) const
|
|
|
|
{
|
|
|
|
return _map.find(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NameValueCollection::ConstIterator NameValueCollection::begin() const
|
|
|
|
{
|
|
|
|
return _map.begin();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NameValueCollection::ConstIterator NameValueCollection::end() const
|
|
|
|
{
|
|
|
|
return _map.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool NameValueCollection::empty() const
|
|
|
|
{
|
|
|
|
return _map.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-19 23:26:04 +01:00
|
|
|
std::size_t NameValueCollection::size() const
|
2012-04-29 20:52:25 +02:00
|
|
|
{
|
2014-11-19 23:26:04 +01:00
|
|
|
return _map.size();
|
2012-04-29 20:52:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void NameValueCollection::erase(const std::string& name)
|
|
|
|
{
|
|
|
|
_map.erase(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void NameValueCollection::clear()
|
|
|
|
{
|
|
|
|
_map.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} } // namespace Poco::Net
|