mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-08 19:22:29 +00:00
c8fc6402bb
* Added redirects for several commands. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@1166 e378c898-3ddf-0310-93e7-cc216c733640
187 lines
6.4 KiB
C++
187 lines
6.4 KiB
C++
// rTorrent - BitTorrent client
|
|
// Copyright (C) 2005-2007, Jari Sundell
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// 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
|
|
//
|
|
// In addition, as a special exception, the copyright holders give
|
|
// permission to link the code of portions of this program with the
|
|
// OpenSSL library under certain conditions as described in each
|
|
// individual source file, and distribute linked combinations
|
|
// including the two.
|
|
//
|
|
// You must obey the GNU General Public License in all respects for
|
|
// all of the code used other than OpenSSL. If you modify file(s)
|
|
// with this exception, you may extend this exception to your version
|
|
// of the file(s), but you are not obligated to do so. If you do not
|
|
// wish to do so, delete this exception statement from your version.
|
|
// If you delete this exception statement from all source files in the
|
|
// program, then also delete it here.
|
|
//
|
|
// Contact: Jari Sundell <jaris@ifi.uio.no>
|
|
//
|
|
// Skomakerveien 33
|
|
// 3185 Skoppum, NORWAY
|
|
|
|
#include "config.h"
|
|
|
|
#include "object_storage.h"
|
|
|
|
#include "parse.h"
|
|
#include "parse_commands.h"
|
|
|
|
namespace rpc {
|
|
|
|
object_storage::local_iterator
|
|
object_storage::find_local(const torrent::raw_string& key) {
|
|
std::size_t n = hash_fixed_key_type::hash(key.data(), key.size()) % bucket_count();
|
|
|
|
for (local_iterator itr = begin(n), last = end(n); itr != last; itr++)
|
|
if (itr->first.size() == key.size() && std::memcmp(itr->first.data(), key.data(), key.size()) == 0)
|
|
return itr;
|
|
|
|
return end(bucket_count());
|
|
}
|
|
|
|
object_storage::iterator
|
|
object_storage::insert(const char* key_data, uint32_t key_size, const torrent::Object& rawObject, unsigned int flags) {
|
|
if (std::find(key_data, key_data + key_size, '\0') != key_data + key_size)
|
|
throw torrent::input_error("Found nul-char in string.");
|
|
|
|
// Check for size > key_size.
|
|
// Check for empty string.
|
|
|
|
torrent::Object object;
|
|
|
|
switch (flags & mask_type) {
|
|
case flag_bool_type: object = !!convert_to_value(rawObject); break;
|
|
case flag_value_type: object = convert_to_value(rawObject); break;
|
|
case flag_string_type: object = convert_to_string(rawObject); break;
|
|
case flag_function_type: object = convert_to_string(rawObject); break;
|
|
case flag_multi_type: object = torrent::Object::create_map(); break;
|
|
}
|
|
|
|
if (!(flags & mask_type))
|
|
throw torrent::input_error("No type flags set when calling object_storage::insert.");
|
|
|
|
std::pair<iterator, bool> result = base_type::insert(std::make_pair(key_type(key_data, key_size), object_storage_node()));
|
|
|
|
if (!result.second)
|
|
throw torrent::input_error("Key already exists in object_storage.");
|
|
|
|
result.first->second.flags = flags;
|
|
result.first->second.object = object;
|
|
|
|
return result.first;
|
|
}
|
|
|
|
const torrent::Object&
|
|
object_storage::get(const torrent::raw_string& key) {
|
|
local_iterator itr = find_local(key);
|
|
|
|
if (itr == end(bucket_count()))
|
|
throw torrent::input_error("Key not found.");
|
|
|
|
return itr->second.object;
|
|
}
|
|
|
|
const torrent::Object&
|
|
object_storage::set_bool(const torrent::raw_string& key, int64_t object) {
|
|
local_iterator itr = find_local(key);
|
|
|
|
if (itr == end(bucket_count()) || (itr->second.flags & mask_type) != flag_bool_type)
|
|
throw torrent::input_error("Key not found or wrong type.");
|
|
|
|
return itr->second.object = !!object;
|
|
}
|
|
|
|
|
|
const torrent::Object&
|
|
object_storage::set_value(const torrent::raw_string& key, int64_t object) {
|
|
local_iterator itr = find_local(key);
|
|
|
|
if (itr == end(bucket_count()) || (itr->second.flags & mask_type) != flag_value_type)
|
|
throw torrent::input_error("Key not found or wrong type.");
|
|
|
|
return itr->second.object = object;
|
|
}
|
|
|
|
|
|
const torrent::Object&
|
|
object_storage::set_string(const torrent::raw_string& key, const std::string& object) {
|
|
local_iterator itr = find_local(key);
|
|
|
|
if (itr == end(bucket_count()) || (itr->second.flags & mask_type) != flag_string_type)
|
|
throw torrent::input_error("Key not found or wrong type.");
|
|
|
|
return itr->second.object = object;
|
|
}
|
|
|
|
const torrent::Object&
|
|
object_storage::set_function(const torrent::raw_string& key, const std::string& object) {
|
|
local_iterator itr = find_local(key);
|
|
|
|
if (itr == end(bucket_count()) || (itr->second.flags & mask_type) != flag_function_type)
|
|
throw torrent::input_error("Key not found or wrong type.");
|
|
|
|
return itr->second.object = object;
|
|
}
|
|
|
|
torrent::Object
|
|
object_storage::call_function(const torrent::raw_string& key, target_type target, const torrent::Object& object) {
|
|
local_iterator itr = find_local(key);
|
|
|
|
if (itr == end(bucket_count()))
|
|
throw torrent::input_error("Key not found or wrong type.");
|
|
|
|
switch (itr->second.flags & mask_type) {
|
|
case flag_function_type:
|
|
return command_function_call_str(itr->second.object.as_string(), target, object);
|
|
case flag_multi_type:
|
|
return command_function_multi_call(itr->second.object.as_map(), target, object);
|
|
default:
|
|
throw torrent::input_error("Key not found or wrong type.");
|
|
}
|
|
}
|
|
|
|
bool
|
|
object_storage::has_multi_key(const torrent::raw_string& key, const std::string& cmd_key) {
|
|
local_iterator itr = find_local(key);
|
|
|
|
return itr != end(0) && (itr->second.flags & mask_type) == flag_multi_type &&
|
|
itr->second.object.has_key(cmd_key);
|
|
}
|
|
|
|
void
|
|
object_storage::erase_multi_key(const torrent::raw_string& key, const std::string& cmd_key) {
|
|
local_iterator itr = find_local(key);
|
|
|
|
if (itr != end(0) && (itr->second.flags & mask_type) == flag_multi_type)
|
|
return;
|
|
|
|
itr->second.object.erase_key(cmd_key);
|
|
}
|
|
|
|
void
|
|
object_storage::set_multi_key(const torrent::raw_string& key, const std::string& cmd_key, const std::string& object) {
|
|
local_iterator itr = find_local(key);
|
|
|
|
if (itr == end(0) || (itr->second.flags & mask_type) != flag_multi_type)
|
|
throw torrent::input_error("Key not found or wrong type.");
|
|
|
|
itr->second.object.insert_key(cmd_key, object);
|
|
}
|
|
|
|
}
|