2003-10-23 01:00:57 +02:00
|
|
|
/*
|
|
|
|
|
2016-01-18 00:57:46 +01:00
|
|
|
Copyright (c) 2003-2016, Arvid Norberg
|
2003-10-23 01:00:57 +02:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* 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.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, 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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-04-20 02:01:27 +02:00
|
|
|
#include "libtorrent/config.hpp"
|
|
|
|
|
2015-04-21 03:16:28 +02:00
|
|
|
#include "libtorrent/aux_/disable_warnings_push.hpp"
|
2015-04-20 02:01:27 +02:00
|
|
|
|
2013-12-19 09:30:17 +01:00
|
|
|
#if TORRENT_USE_IOSTREAM
|
2009-04-04 11:52:25 +02:00
|
|
|
#include <iostream>
|
|
|
|
#endif
|
2015-04-20 02:01:27 +02:00
|
|
|
#include <algorithm>
|
2008-05-19 09:36:04 +02:00
|
|
|
#include <boost/bind.hpp>
|
2015-04-20 02:01:27 +02:00
|
|
|
|
2015-04-21 03:16:28 +02:00
|
|
|
#include "libtorrent/aux_/disable_warnings_pop.hpp"
|
2015-04-20 02:01:27 +02:00
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
#include "libtorrent/entry.hpp"
|
2015-03-12 06:20:12 +01:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2010-03-04 17:42:39 +01:00
|
|
|
#include "libtorrent/lazy_entry.hpp"
|
2015-03-12 06:20:12 +01:00
|
|
|
#endif
|
|
|
|
#include "libtorrent/bdecode.hpp"
|
2015-04-20 02:01:27 +02:00
|
|
|
#include "libtorrent/entry.hpp"
|
2015-03-15 00:10:20 +01:00
|
|
|
#include "libtorrent/hex.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
template <class T>
|
|
|
|
void call_destructor(T* o)
|
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(o);
|
2003-10-23 01:00:57 +02:00
|
|
|
o->~T();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-07 01:48:02 +01:00
|
|
|
namespace libtorrent
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2005-08-12 14:40:58 +02:00
|
|
|
namespace detail
|
|
|
|
{
|
2015-04-20 02:01:27 +02:00
|
|
|
TORRENT_EXPORT char const* integer_to_str(char* buf, int size
|
|
|
|
, entry::integer_type val)
|
2005-08-12 14:40:58 +02:00
|
|
|
{
|
|
|
|
int sign = 0;
|
|
|
|
if (val < 0)
|
|
|
|
{
|
|
|
|
sign = 1;
|
|
|
|
val = -val;
|
|
|
|
}
|
|
|
|
buf[--size] = '\0';
|
|
|
|
if (val == 0) buf[--size] = '0';
|
|
|
|
for (; size > sign && val != 0;)
|
|
|
|
{
|
|
|
|
buf[--size] = '0' + char(val % 10);
|
|
|
|
val /= 10;
|
|
|
|
}
|
|
|
|
if (sign) buf[--size] = '-';
|
|
|
|
return buf + size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-17 13:14:44 +01:00
|
|
|
entry& entry::operator[](char const* key)
|
|
|
|
{
|
2005-10-13 23:50:59 +02:00
|
|
|
dictionary_type::iterator i = dict().find(key);
|
2004-03-17 13:14:44 +01:00
|
|
|
if (i != dict().end()) return i->second;
|
|
|
|
dictionary_type::iterator ret = dict().insert(
|
2009-08-30 09:38:52 +02:00
|
|
|
std::pair<const std::string, entry>(key, entry())).first;
|
2004-03-17 13:14:44 +01:00
|
|
|
return ret->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
entry& entry::operator[](std::string const& key)
|
|
|
|
{
|
2008-05-19 09:15:44 +02:00
|
|
|
dictionary_type::iterator i = dict().find(key);
|
|
|
|
if (i != dict().end()) return i->second;
|
|
|
|
dictionary_type::iterator ret = dict().insert(
|
2009-08-30 09:38:52 +02:00
|
|
|
std::make_pair(key, entry())).first;
|
2008-05-19 09:15:44 +02:00
|
|
|
return ret->second;
|
2004-03-17 13:14:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
entry* entry::find_key(char const* key)
|
|
|
|
{
|
2008-05-19 09:15:44 +02:00
|
|
|
dictionary_type::iterator i = dict().find(key);
|
2004-03-17 13:14:44 +01:00
|
|
|
if (i == dict().end()) return 0;
|
|
|
|
return &i->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
entry const* entry::find_key(char const* key) const
|
|
|
|
{
|
2005-10-13 23:50:59 +02:00
|
|
|
dictionary_type::const_iterator i = dict().find(key);
|
2004-03-17 13:14:44 +01:00
|
|
|
if (i == dict().end()) return 0;
|
|
|
|
return &i->second;
|
|
|
|
}
|
2015-06-03 07:12:54 +02:00
|
|
|
|
2008-05-19 09:15:44 +02:00
|
|
|
entry* entry::find_key(std::string const& key)
|
|
|
|
{
|
|
|
|
dictionary_type::iterator i = dict().find(key);
|
|
|
|
if (i == dict().end()) return 0;
|
|
|
|
return &i->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
entry const* entry::find_key(std::string const& key) const
|
|
|
|
{
|
|
|
|
dictionary_type::const_iterator i = dict().find(key);
|
|
|
|
if (i == dict().end()) return 0;
|
|
|
|
return &i->second;
|
|
|
|
}
|
2015-06-03 07:12:54 +02:00
|
|
|
|
2007-11-02 03:02:52 +01:00
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
2004-03-17 13:14:44 +01:00
|
|
|
const entry& entry::operator[](char const* key) const
|
|
|
|
{
|
2015-03-14 22:55:26 +01:00
|
|
|
return (*this)[std::string(key)];
|
2004-03-17 13:14:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const entry& entry::operator[](std::string const& key) const
|
|
|
|
{
|
2015-03-14 22:55:26 +01:00
|
|
|
dictionary_type::const_iterator i = dict().find(key);
|
|
|
|
if (i == dict().end()) throw type_error(
|
|
|
|
(std::string("key not found: ") + key).c_str());
|
|
|
|
return i->second;
|
2004-03-17 13:14:44 +01:00
|
|
|
}
|
2007-11-02 03:02:52 +01:00
|
|
|
#endif
|
2004-01-07 01:48:02 +01:00
|
|
|
|
2010-06-06 02:47:39 +02:00
|
|
|
entry::data_type entry::type() const
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
m_type_queried = true;
|
|
|
|
#endif
|
2015-08-02 05:57:11 +02:00
|
|
|
return entry::data_type(m_type);
|
2010-06-06 02:47:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
entry::~entry() { destruct(); }
|
|
|
|
|
2016-02-21 05:40:45 +01:00
|
|
|
entry& entry::operator=(const entry& e)
|
2010-06-06 02:47:39 +02:00
|
|
|
{
|
|
|
|
destruct();
|
|
|
|
copy(e);
|
2016-02-21 05:40:45 +01:00
|
|
|
return *this;
|
2010-06-06 02:47:39 +02:00
|
|
|
}
|
|
|
|
|
2016-05-01 05:44:48 +02:00
|
|
|
entry& entry::operator=(entry&& e)
|
|
|
|
{
|
|
|
|
swap(e);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2010-06-06 02:47:39 +02:00
|
|
|
entry::integer_type& entry::integer()
|
|
|
|
{
|
|
|
|
if (m_type == undefined_t) construct(int_t);
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
if (m_type != int_t) throw_type_error();
|
|
|
|
#elif defined TORRENT_DEBUG
|
|
|
|
TORRENT_ASSERT(m_type_queried);
|
|
|
|
#endif
|
|
|
|
TORRENT_ASSERT(m_type == int_t);
|
|
|
|
return *reinterpret_cast<integer_type*>(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
entry::integer_type const& entry::integer() const
|
|
|
|
{
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
if (m_type != int_t) throw_type_error();
|
|
|
|
#elif defined TORRENT_DEBUG
|
|
|
|
TORRENT_ASSERT(m_type_queried);
|
|
|
|
#endif
|
|
|
|
TORRENT_ASSERT(m_type == int_t);
|
|
|
|
return *reinterpret_cast<const integer_type*>(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
entry::string_type& entry::string()
|
|
|
|
{
|
|
|
|
if (m_type == undefined_t) construct(string_t);
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
if (m_type != string_t) throw_type_error();
|
|
|
|
#elif defined TORRENT_DEBUG
|
|
|
|
TORRENT_ASSERT(m_type_queried);
|
|
|
|
#endif
|
|
|
|
TORRENT_ASSERT(m_type == string_t);
|
|
|
|
return *reinterpret_cast<string_type*>(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
entry::string_type const& entry::string() const
|
|
|
|
{
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
if (m_type != string_t) throw_type_error();
|
|
|
|
#elif defined TORRENT_DEBUG
|
|
|
|
TORRENT_ASSERT(m_type_queried);
|
|
|
|
#endif
|
|
|
|
TORRENT_ASSERT(m_type == string_t);
|
|
|
|
return *reinterpret_cast<const string_type*>(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
entry::list_type& entry::list()
|
|
|
|
{
|
|
|
|
if (m_type == undefined_t) construct(list_t);
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
if (m_type != list_t) throw_type_error();
|
|
|
|
#elif defined TORRENT_DEBUG
|
|
|
|
TORRENT_ASSERT(m_type_queried);
|
|
|
|
#endif
|
|
|
|
TORRENT_ASSERT(m_type == list_t);
|
|
|
|
return *reinterpret_cast<list_type*>(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
entry::list_type const& entry::list() const
|
|
|
|
{
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
if (m_type != list_t) throw_type_error();
|
|
|
|
#elif defined TORRENT_DEBUG
|
|
|
|
TORRENT_ASSERT(m_type_queried);
|
|
|
|
#endif
|
|
|
|
TORRENT_ASSERT(m_type == list_t);
|
|
|
|
return *reinterpret_cast<const list_type*>(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
entry::dictionary_type& entry::dict()
|
|
|
|
{
|
|
|
|
if (m_type == undefined_t) construct(dictionary_t);
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
if (m_type != dictionary_t) throw_type_error();
|
|
|
|
#elif defined TORRENT_DEBUG
|
|
|
|
TORRENT_ASSERT(m_type_queried);
|
|
|
|
#endif
|
|
|
|
TORRENT_ASSERT(m_type == dictionary_t);
|
|
|
|
return *reinterpret_cast<dictionary_type*>(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
entry::dictionary_type const& entry::dict() const
|
|
|
|
{
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
if (m_type != dictionary_t) throw_type_error();
|
|
|
|
#elif defined TORRENT_DEBUG
|
|
|
|
TORRENT_ASSERT(m_type_queried);
|
|
|
|
#endif
|
|
|
|
TORRENT_ASSERT(m_type == dictionary_t);
|
|
|
|
return *reinterpret_cast<const dictionary_type*>(data);
|
|
|
|
}
|
|
|
|
|
2008-02-22 05:54:43 +01:00
|
|
|
entry::entry()
|
|
|
|
: m_type(undefined_t)
|
2008-01-03 04:10:25 +01:00
|
|
|
{
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2008-01-03 04:10:25 +01:00
|
|
|
m_type_queried = true;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-02-22 05:54:43 +01:00
|
|
|
entry::entry(data_type t)
|
|
|
|
: m_type(undefined_t)
|
2008-01-03 04:10:25 +01:00
|
|
|
{
|
|
|
|
construct(t);
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2008-01-03 04:10:25 +01:00
|
|
|
m_type_queried = true;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
entry::entry(const entry& e)
|
2008-02-22 05:54:43 +01:00
|
|
|
: m_type(undefined_t)
|
2008-01-03 04:10:25 +01:00
|
|
|
{
|
|
|
|
copy(e);
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2008-01-03 04:10:25 +01:00
|
|
|
m_type_queried = e.m_type_queried;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-05-01 05:44:48 +02:00
|
|
|
entry::entry(entry&& e)
|
|
|
|
: m_type(undefined_t)
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
uint8_t type_queried = e.m_type_queried;
|
|
|
|
#endif
|
|
|
|
swap(e);
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
m_type_queried = type_queried;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
entry::entry(dictionary_type const& v)
|
2008-02-22 05:54:43 +01:00
|
|
|
: m_type(undefined_t)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2007-12-28 20:07:28 +01:00
|
|
|
m_type_queried = true;
|
|
|
|
#endif
|
2004-01-07 01:48:02 +01:00
|
|
|
new(data) dictionary_type(v);
|
|
|
|
m_type = dictionary_t;
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
entry::entry(string_type const& v)
|
2008-02-22 05:54:43 +01:00
|
|
|
: m_type(undefined_t)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2007-12-28 20:07:28 +01:00
|
|
|
m_type_queried = true;
|
|
|
|
#endif
|
2004-01-07 01:48:02 +01:00
|
|
|
new(data) string_type(v);
|
|
|
|
m_type = string_t;
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
entry::entry(list_type const& v)
|
2008-02-22 05:54:43 +01:00
|
|
|
: m_type(undefined_t)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2007-12-28 20:07:28 +01:00
|
|
|
m_type_queried = true;
|
|
|
|
#endif
|
2004-01-07 01:48:02 +01:00
|
|
|
new(data) list_type(v);
|
|
|
|
m_type = list_t;
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
entry::entry(integer_type const& v)
|
2008-02-22 05:54:43 +01:00
|
|
|
: m_type(undefined_t)
|
2004-01-07 01:48:02 +01:00
|
|
|
{
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2007-12-28 20:07:28 +01:00
|
|
|
m_type_queried = true;
|
|
|
|
#endif
|
2004-01-07 01:48:02 +01:00
|
|
|
new(data) integer_type(v);
|
|
|
|
m_type = int_t;
|
|
|
|
}
|
|
|
|
|
2015-03-12 06:20:12 +01:00
|
|
|
// convert a bdecode_node into an old skool entry
|
2016-02-21 05:40:45 +01:00
|
|
|
entry& entry::operator=(bdecode_node const& e)
|
2015-03-12 06:20:12 +01:00
|
|
|
{
|
|
|
|
switch (e.type())
|
|
|
|
{
|
|
|
|
case bdecode_node::string_t:
|
|
|
|
this->string() = e.string_value();
|
|
|
|
break;
|
|
|
|
case bdecode_node::int_t:
|
|
|
|
this->integer() = e.int_value();
|
|
|
|
break;
|
|
|
|
case bdecode_node::dict_t:
|
|
|
|
{
|
|
|
|
dictionary_type& d = this->dict();
|
|
|
|
for (int i = 0; i < e.dict_size(); ++i)
|
|
|
|
{
|
|
|
|
std::pair<std::string, bdecode_node> elem = e.dict_at(i);
|
|
|
|
d[elem.first] = elem.second;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case bdecode_node::list_t:
|
|
|
|
{
|
|
|
|
list_type& l = this->list();
|
|
|
|
for (int i = 0; i < e.list_size(); ++i)
|
|
|
|
{
|
|
|
|
l.push_back(entry());
|
|
|
|
l.back() = e.list_at(i);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case bdecode_node::none_t:
|
|
|
|
destruct();
|
|
|
|
break;
|
|
|
|
}
|
2016-02-21 05:40:45 +01:00
|
|
|
return *this;
|
2015-03-12 06:20:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2010-03-04 17:42:39 +01:00
|
|
|
// convert a lazy_entry into an old skool entry
|
2016-02-21 05:40:45 +01:00
|
|
|
entry& entry::operator=(lazy_entry const& e)
|
2010-03-04 17:42:39 +01:00
|
|
|
{
|
|
|
|
switch (e.type())
|
|
|
|
{
|
|
|
|
case lazy_entry::string_t:
|
|
|
|
this->string() = e.string_value();
|
|
|
|
break;
|
|
|
|
case lazy_entry::int_t:
|
|
|
|
this->integer() = e.int_value();
|
|
|
|
break;
|
|
|
|
case lazy_entry::dict_t:
|
|
|
|
{
|
|
|
|
dictionary_type& d = this->dict();
|
|
|
|
for (int i = 0; i < e.dict_size(); ++i)
|
|
|
|
{
|
|
|
|
std::pair<std::string, lazy_entry const*> elem = e.dict_at(i);
|
|
|
|
d[elem.first] = *elem.second;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case lazy_entry::list_t:
|
|
|
|
{
|
|
|
|
list_type& l = this->list();
|
|
|
|
for (int i = 0; i < e.list_size(); ++i)
|
|
|
|
{
|
|
|
|
l.push_back(entry());
|
|
|
|
l.back() = *e.list_at(i);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2011-02-14 02:59:01 +01:00
|
|
|
case lazy_entry::none_t:
|
|
|
|
destruct();
|
|
|
|
break;
|
2010-03-04 17:42:39 +01:00
|
|
|
}
|
2016-02-21 05:40:45 +01:00
|
|
|
return *this;
|
2010-03-04 17:42:39 +01:00
|
|
|
}
|
2015-03-12 06:20:12 +01:00
|
|
|
#endif
|
2010-03-04 17:42:39 +01:00
|
|
|
|
2016-02-21 05:40:45 +01:00
|
|
|
entry& entry::operator=(dictionary_type const& v)
|
2004-01-07 01:48:02 +01:00
|
|
|
{
|
|
|
|
destruct();
|
|
|
|
new(data) dictionary_type(v);
|
|
|
|
m_type = dictionary_t;
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2007-12-28 20:07:28 +01:00
|
|
|
m_type_queried = true;
|
|
|
|
#endif
|
2016-02-21 05:40:45 +01:00
|
|
|
return *this;
|
2004-01-07 01:48:02 +01:00
|
|
|
}
|
|
|
|
|
2016-02-21 05:40:45 +01:00
|
|
|
entry& entry::operator=(string_type const& v)
|
2004-01-07 01:48:02 +01:00
|
|
|
{
|
|
|
|
destruct();
|
|
|
|
new(data) string_type(v);
|
|
|
|
m_type = string_t;
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2007-12-28 20:07:28 +01:00
|
|
|
m_type_queried = true;
|
|
|
|
#endif
|
2016-02-21 05:40:45 +01:00
|
|
|
return *this;
|
2004-01-07 01:48:02 +01:00
|
|
|
}
|
|
|
|
|
2016-02-21 05:40:45 +01:00
|
|
|
entry& entry::operator=(list_type const& v)
|
2004-01-07 01:48:02 +01:00
|
|
|
{
|
|
|
|
destruct();
|
|
|
|
new(data) list_type(v);
|
|
|
|
m_type = list_t;
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2007-12-28 20:07:28 +01:00
|
|
|
m_type_queried = true;
|
|
|
|
#endif
|
2016-02-21 05:40:45 +01:00
|
|
|
return *this;
|
2004-01-07 01:48:02 +01:00
|
|
|
}
|
|
|
|
|
2016-02-21 05:40:45 +01:00
|
|
|
entry& entry::operator=(integer_type const& v)
|
2004-01-07 01:48:02 +01:00
|
|
|
{
|
|
|
|
destruct();
|
|
|
|
new(data) integer_type(v);
|
|
|
|
m_type = int_t;
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2007-12-28 20:07:28 +01:00
|
|
|
m_type_queried = true;
|
|
|
|
#endif
|
2016-02-21 05:40:45 +01:00
|
|
|
return *this;
|
2004-01-07 01:48:02 +01:00
|
|
|
}
|
|
|
|
|
2005-08-11 13:06:52 +02:00
|
|
|
bool entry::operator==(entry const& e) const
|
|
|
|
{
|
|
|
|
if (m_type != e.m_type) return false;
|
|
|
|
|
2015-08-11 02:03:24 +02:00
|
|
|
switch (m_type)
|
2005-08-11 13:06:52 +02:00
|
|
|
{
|
|
|
|
case int_t:
|
|
|
|
return integer() == e.integer();
|
|
|
|
case string_t:
|
|
|
|
return string() == e.string();
|
|
|
|
case list_t:
|
|
|
|
return list() == e.list();
|
|
|
|
case dictionary_t:
|
|
|
|
return dict() == e.dict();
|
|
|
|
default:
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(m_type == undefined_t);
|
2005-08-11 13:06:52 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2004-01-07 01:48:02 +01:00
|
|
|
|
|
|
|
void entry::construct(data_type t)
|
|
|
|
{
|
2015-08-11 02:03:24 +02:00
|
|
|
switch (t)
|
2004-01-07 01:48:02 +01:00
|
|
|
{
|
|
|
|
case int_t:
|
|
|
|
new(data) integer_type;
|
|
|
|
break;
|
|
|
|
case string_t:
|
|
|
|
new(data) string_type;
|
|
|
|
break;
|
|
|
|
case list_t:
|
|
|
|
new(data) list_type;
|
|
|
|
break;
|
|
|
|
case dictionary_t:
|
|
|
|
new (data) dictionary_type;
|
|
|
|
break;
|
2015-08-11 02:03:24 +02:00
|
|
|
case undefined_t:
|
|
|
|
break;
|
2004-01-07 01:48:02 +01:00
|
|
|
}
|
2008-02-22 05:54:43 +01:00
|
|
|
m_type = t;
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2007-12-28 20:07:28 +01:00
|
|
|
m_type_queried = true;
|
|
|
|
#endif
|
2004-01-07 01:48:02 +01:00
|
|
|
}
|
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
void entry::copy(entry const& e)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-02-22 05:54:43 +01:00
|
|
|
switch (e.type())
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2004-01-07 01:48:02 +01:00
|
|
|
case int_t:
|
|
|
|
new(data) integer_type(e.integer());
|
|
|
|
break;
|
|
|
|
case string_t:
|
|
|
|
new(data) string_type(e.string());
|
|
|
|
break;
|
|
|
|
case list_t:
|
|
|
|
new(data) list_type(e.list());
|
|
|
|
break;
|
|
|
|
case dictionary_t:
|
|
|
|
new (data) dictionary_type(e.dict());
|
|
|
|
break;
|
2015-08-11 02:03:24 +02:00
|
|
|
case undefined_t:
|
2008-02-22 05:54:43 +01:00
|
|
|
TORRENT_ASSERT(e.type() == undefined_t);
|
2004-01-07 01:48:02 +01:00
|
|
|
}
|
2008-02-22 05:54:43 +01:00
|
|
|
m_type = e.type();
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2007-12-28 20:07:28 +01:00
|
|
|
m_type_queried = true;
|
|
|
|
#endif
|
2004-01-07 01:48:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void entry::destruct()
|
|
|
|
{
|
|
|
|
switch(m_type)
|
|
|
|
{
|
|
|
|
case int_t:
|
|
|
|
call_destructor(reinterpret_cast<integer_type*>(data));
|
|
|
|
break;
|
|
|
|
case string_t:
|
|
|
|
call_destructor(reinterpret_cast<string_type*>(data));
|
|
|
|
break;
|
|
|
|
case list_t:
|
|
|
|
call_destructor(reinterpret_cast<list_type*>(data));
|
|
|
|
break;
|
|
|
|
case dictionary_t:
|
|
|
|
call_destructor(reinterpret_cast<dictionary_type*>(data));
|
|
|
|
break;
|
|
|
|
default:
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(m_type == undefined_t);
|
2004-01-07 01:48:02 +01:00
|
|
|
break;
|
|
|
|
}
|
2008-02-22 05:54:43 +01:00
|
|
|
m_type = undefined_t;
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2007-12-28 20:07:28 +01:00
|
|
|
m_type_queried = false;
|
|
|
|
#endif
|
2004-01-07 01:48:02 +01:00
|
|
|
}
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
void entry::swap(entry& e)
|
|
|
|
{
|
2014-02-28 05:02:48 +01:00
|
|
|
bool clear_this = false;
|
|
|
|
bool clear_that = false;
|
|
|
|
|
|
|
|
if (m_type == undefined_t && e.m_type == undefined_t)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (m_type == undefined_t)
|
|
|
|
{
|
2015-08-02 05:57:11 +02:00
|
|
|
construct(data_type(e.m_type));
|
2014-02-28 05:02:48 +01:00
|
|
|
clear_that = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (e.m_type == undefined_t)
|
|
|
|
{
|
2015-08-02 05:57:11 +02:00
|
|
|
e.construct(data_type(m_type));
|
2014-02-28 05:02:48 +01:00
|
|
|
clear_this = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_type == e.m_type)
|
|
|
|
{
|
|
|
|
switch (m_type)
|
|
|
|
{
|
|
|
|
case int_t:
|
|
|
|
std::swap(*reinterpret_cast<integer_type*>(data)
|
|
|
|
, *reinterpret_cast<integer_type*>(e.data));
|
|
|
|
break;
|
|
|
|
case string_t:
|
|
|
|
std::swap(*reinterpret_cast<string_type*>(data)
|
|
|
|
, *reinterpret_cast<string_type*>(e.data));
|
|
|
|
break;
|
|
|
|
case list_t:
|
|
|
|
std::swap(*reinterpret_cast<list_type*>(data)
|
|
|
|
, *reinterpret_cast<list_type*>(e.data));
|
|
|
|
break;
|
|
|
|
case dictionary_t:
|
|
|
|
std::swap(*reinterpret_cast<dictionary_type*>(data)
|
|
|
|
, *reinterpret_cast<dictionary_type*>(e.data));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (clear_this)
|
|
|
|
destruct();
|
|
|
|
|
|
|
|
if (clear_that)
|
|
|
|
e.destruct();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// currently, only swapping entries of the same type or where one
|
|
|
|
// of the entries is uninitialized is supported.
|
2015-08-08 08:33:54 +02:00
|
|
|
TORRENT_ASSERT(false);
|
2014-02-28 05:02:48 +01:00
|
|
|
}
|
2007-06-10 22:46:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-19 09:30:17 +01:00
|
|
|
std::string entry::to_string() const
|
|
|
|
{
|
|
|
|
std::string ret;
|
|
|
|
to_string_impl(ret, 0);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void entry::to_string_impl(std::string& out, int indent) const
|
2004-01-07 01:48:02 +01:00
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(indent >= 0);
|
2013-12-19 09:30:17 +01:00
|
|
|
for (int i = 0; i < indent; ++i) out += " ";
|
2004-01-07 01:48:02 +01:00
|
|
|
switch (m_type)
|
|
|
|
{
|
|
|
|
case int_t:
|
2016-05-01 05:10:47 +02:00
|
|
|
out += libtorrent::to_string(integer()).data();
|
2015-08-08 08:33:54 +02:00
|
|
|
out += "\n";
|
2004-01-07 01:48:02 +01:00
|
|
|
break;
|
|
|
|
case string_t:
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2004-01-07 01:48:02 +01:00
|
|
|
bool binary_string = false;
|
|
|
|
for (std::string::const_iterator i = string().begin(); i != string().end(); ++i)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2009-06-23 03:53:47 +02:00
|
|
|
if (!is_print(static_cast<unsigned char>(*i)))
|
2004-01-07 01:48:02 +01:00
|
|
|
{
|
|
|
|
binary_string = true;
|
|
|
|
break;
|
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
2013-12-19 09:30:17 +01:00
|
|
|
if (binary_string)
|
|
|
|
{
|
|
|
|
out += to_hex(string());
|
|
|
|
out += "\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out += string();
|
|
|
|
out += "\n";
|
|
|
|
}
|
2004-01-07 01:48:02 +01:00
|
|
|
} break;
|
|
|
|
case list_t:
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2013-12-19 09:30:17 +01:00
|
|
|
out += "list\n";
|
2004-01-07 01:48:02 +01:00
|
|
|
for (list_type::const_iterator i = list().begin(); i != list().end(); ++i)
|
|
|
|
{
|
2013-12-19 09:30:17 +01:00
|
|
|
i->to_string_impl(out, indent+1);
|
2004-01-07 01:48:02 +01:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case dictionary_t:
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2013-12-19 09:30:17 +01:00
|
|
|
out += "dictionary\n";
|
2004-01-07 01:48:02 +01:00
|
|
|
for (dictionary_type::const_iterator i = dict().begin(); i != dict().end(); ++i)
|
|
|
|
{
|
2008-05-19 09:36:04 +02:00
|
|
|
bool binary_string = false;
|
|
|
|
for (std::string::const_iterator k = i->first.begin(); k != i->first.end(); ++k)
|
|
|
|
{
|
2009-06-23 03:53:47 +02:00
|
|
|
if (!is_print(static_cast<unsigned char>(*k)))
|
2008-05-19 09:36:04 +02:00
|
|
|
{
|
|
|
|
binary_string = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-12-19 09:30:17 +01:00
|
|
|
for (int j = 0; j < indent+1; ++j) out += " ";
|
|
|
|
out += "[";
|
|
|
|
if (binary_string) out += to_hex(i->first);
|
|
|
|
else out += i->first;
|
|
|
|
out += "]";
|
2008-05-19 09:36:04 +02:00
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
if (i->second.type() != entry::string_t
|
|
|
|
&& i->second.type() != entry::int_t)
|
2013-12-19 09:30:17 +01:00
|
|
|
out += "\n";
|
|
|
|
else out += " ";
|
|
|
|
i->second.to_string_impl(out, indent+2);
|
2004-01-07 01:48:02 +01:00
|
|
|
}
|
|
|
|
} break;
|
2015-08-11 02:03:24 +02:00
|
|
|
case undefined_t:
|
2004-01-07 01:48:02 +01:00
|
|
|
default:
|
2013-12-19 09:30:17 +01:00
|
|
|
out += "<uninitialized>\n";
|
2004-01-07 01:48:02 +01:00
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
}
|
2005-10-13 23:50:59 +02:00
|
|
|
|