mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-05 17:52:29 +00:00
347 lines
17 KiB
C++
347 lines
17 KiB
C++
// rTorrent - BitTorrent client
|
|
// Copyright (C) 2005-2011, 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 <fcntl.h>
|
|
#include <functional>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <rak/path.h>
|
|
#include <rak/error_number.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <torrent/torrent.h>
|
|
#include <torrent/chunk_manager.h>
|
|
#include <torrent/data/file_manager.h>
|
|
#include <torrent/data/chunk_utils.h>
|
|
#include <torrent/utils/option_strings.h>
|
|
|
|
#include "core/download.h"
|
|
#include "core/download_list.h"
|
|
#include "core/download_store.h"
|
|
#include "core/manager.h"
|
|
#include "rak/string_manip.h"
|
|
#include "rpc/parse_commands.h"
|
|
#include "rpc/scgi.h"
|
|
#include "utils/file_status_cache.h"
|
|
|
|
#include "globals.h"
|
|
#include "control.h"
|
|
#include "command_helpers.h"
|
|
|
|
typedef torrent::ChunkManager CM_t;
|
|
typedef torrent::FileManager FM_t;
|
|
|
|
torrent::Object
|
|
apply_pieces_stats_total_size() {
|
|
uint64_t size = 0;
|
|
core::DownloadList* d_list = control->core()->download_list();
|
|
|
|
for (core::DownloadList::iterator itr = d_list->begin(), last = d_list->end(); itr != last; itr++)
|
|
if ((*itr)->is_active())
|
|
size += (*itr)->file_list()->size_bytes();
|
|
|
|
return size;
|
|
}
|
|
|
|
torrent::Object
|
|
system_env(const torrent::Object::string_type& arg) {
|
|
if (arg.empty())
|
|
throw torrent::input_error("system.env: Missing variable name.");
|
|
|
|
char* val = getenv(arg.c_str());
|
|
return std::string(val ? val : "");
|
|
}
|
|
|
|
torrent::Object
|
|
system_hostname() {
|
|
char buffer[1024];
|
|
|
|
if (gethostname(buffer, 1023) == -1)
|
|
throw torrent::input_error("Unable to read hostname.");
|
|
|
|
// if (shorten)
|
|
// *std::find(buffer, buffer + 1023, '.') = '\0';
|
|
|
|
return std::string(buffer);
|
|
}
|
|
|
|
torrent::Object
|
|
system_get_cwd() {
|
|
char* buffer = getcwd(NULL, 0);
|
|
|
|
if (buffer == NULL)
|
|
throw torrent::input_error("Unable to read cwd.");
|
|
|
|
torrent::Object result = torrent::Object(std::string(buffer));
|
|
free(buffer);
|
|
|
|
return result;
|
|
}
|
|
|
|
torrent::Object
|
|
system_set_cwd(const torrent::Object::string_type& rawArgs) {
|
|
if (::chdir(rawArgs.c_str()) != 0)
|
|
throw torrent::input_error("Could not change current working directory.");
|
|
|
|
return torrent::Object();
|
|
}
|
|
|
|
inline torrent::Object::list_const_iterator
|
|
post_increment(torrent::Object::list_const_iterator& itr, const torrent::Object::list_const_iterator& last) {
|
|
if (itr == last)
|
|
throw torrent::input_error("Invalid number of arguments.");
|
|
|
|
return itr++;
|
|
}
|
|
|
|
inline const std::string&
|
|
check_name(const std::string& str) {
|
|
if (!rak::is_all_name(str))
|
|
throw torrent::input_error("Non-alphanumeric characters found.");
|
|
|
|
return str;
|
|
}
|
|
|
|
torrent::Object
|
|
group_insert(const torrent::Object::list_type& args) {
|
|
torrent::Object::list_const_iterator itr = args.begin();
|
|
torrent::Object::list_const_iterator last = args.end();
|
|
|
|
const std::string& name = check_name(post_increment(itr, last)->as_string());
|
|
const std::string& view = check_name(post_increment(itr, last)->as_string());
|
|
|
|
rpc::commands.call("method.insert", rpc::create_object_list("group." + name + ".ratio.enable", "simple",
|
|
"schedule2=group." + name + ".ratio,5,60,on_ratio=" + name));
|
|
rpc::commands.call("method.insert", rpc::create_object_list("group." + name + ".ratio.disable", "simple",
|
|
"schedule_remove2=group." + name + ".ratio"));
|
|
rpc::commands.call("method.insert", rpc::create_object_list("group." + name + ".ratio.command", "simple",
|
|
"d.try_close= ;d.ignore_commands.set=1"));
|
|
rpc::commands.call("method.insert", rpc::create_object_list("group2." + name + ".view", "string", view));
|
|
rpc::commands.call("method.insert", rpc::create_object_list("group2." + name + ".ratio.min", "value", (int64_t)200));
|
|
rpc::commands.call("method.insert", rpc::create_object_list("group2." + name + ".ratio.max", "value", (int64_t)300));
|
|
rpc::commands.call("method.insert", rpc::create_object_list("group2." + name + ".ratio.upload", "value", (int64_t)20 << 20));
|
|
|
|
if (rpc::call_command_value("method.use_intermediate") == 1) {
|
|
// Deprecated in 0.7.0:
|
|
|
|
CMD2_REDIRECT_GENERIC_STR("group." + name + ".view", "group2." + name + ".view");
|
|
CMD2_REDIRECT_GENERIC_STR("group." + name + ".view.set", "group2." + name + ".view.set");
|
|
CMD2_REDIRECT_GENERIC_STR("group." + name + ".ratio.min", "group2." + name + ".ratio.min");
|
|
CMD2_REDIRECT_GENERIC_STR("group." + name + ".ratio.min.set", "group2." + name + ".ratio.min.set");
|
|
CMD2_REDIRECT_GENERIC_STR("group." + name + ".ratio.max", "group2." + name + ".ratio.max");
|
|
CMD2_REDIRECT_GENERIC_STR("group." + name + ".ratio.max.set", "group2." + name + ".ratio.max.set");
|
|
CMD2_REDIRECT_GENERIC_STR("group." + name + ".ratio.upload", "group2." + name + ".ratio.upload");
|
|
CMD2_REDIRECT_GENERIC_STR("group." + name + ".ratio.upload.set", "group2." + name + ".ratio.upload.set");
|
|
|
|
} if (rpc::call_command_value("method.use_intermediate") == 2) {
|
|
// Deprecated in 0.7.0:
|
|
|
|
CMD2_REDIRECT_GENERIC_STR_NO_EXPORT("group." + name + ".view", "group2." + name + ".view");
|
|
CMD2_REDIRECT_GENERIC_STR_NO_EXPORT("group." + name + ".view.set", "group2." + name + ".view.set");
|
|
CMD2_REDIRECT_GENERIC_STR_NO_EXPORT("group." + name + ".ratio.min", "group2." + name + ".ratio.min");
|
|
CMD2_REDIRECT_GENERIC_STR_NO_EXPORT("group." + name + ".ratio.min.set", "group2." + name + ".ratio.min.set");
|
|
CMD2_REDIRECT_GENERIC_STR_NO_EXPORT("group." + name + ".ratio.max", "group2." + name + ".ratio.max");
|
|
CMD2_REDIRECT_GENERIC_STR_NO_EXPORT("group." + name + ".ratio.max.set", "group2." + name + ".ratio.max.set");
|
|
CMD2_REDIRECT_GENERIC_STR_NO_EXPORT("group." + name + ".ratio.upload", "group2." + name + ".ratio.upload");
|
|
CMD2_REDIRECT_GENERIC_STR_NO_EXPORT("group." + name + ".ratio.upload.set", "group2." + name + ".ratio.upload.set");
|
|
}
|
|
|
|
return name;
|
|
}
|
|
|
|
static const int file_print_use_space = 0x1;
|
|
static const int file_print_delim_space = 0x2;
|
|
|
|
void
|
|
file_print_list(torrent::Object::list_const_iterator first, torrent::Object::list_const_iterator last, FILE* output, int flags) {
|
|
while (first != last) {
|
|
switch (first->type()) {
|
|
case torrent::Object::TYPE_STRING:
|
|
fprintf(output, (const char*)" %s" + !(flags & file_print_use_space), first->as_string().c_str());
|
|
break;
|
|
case torrent::Object::TYPE_VALUE:
|
|
fprintf(output, (const char*)" %" PRIi64 + !(flags & file_print_use_space), first->as_value());
|
|
break;
|
|
case torrent::Object::TYPE_LIST:
|
|
file_print_list(first->as_list().begin(), first->as_list().end(), output, 0);
|
|
break;
|
|
case torrent::Object::TYPE_NONE:
|
|
break;
|
|
default:
|
|
throw torrent::input_error("Invalid type.");
|
|
}
|
|
|
|
flags |= (flags & file_print_delim_space) >> 1;
|
|
first++;
|
|
}
|
|
}
|
|
|
|
torrent::Object
|
|
cmd_file_append(const torrent::Object::list_type& args) {
|
|
if (args.empty())
|
|
throw torrent::input_error("Invalid number of arguments.");
|
|
|
|
FILE* output = fopen(args.front().as_string().c_str(), "a");
|
|
|
|
if (output == NULL)
|
|
throw torrent::input_error("Could not append to file '" + args.front().as_string() + "': " + rak::error_number::current().c_str());
|
|
|
|
file_print_list(++args.begin(), args.end(), output, file_print_delim_space);
|
|
|
|
fprintf(output, "\n");
|
|
fclose(output);
|
|
return torrent::Object();
|
|
}
|
|
|
|
void
|
|
initialize_command_local() {
|
|
core::DownloadList* dList = control->core()->download_list();
|
|
core::DownloadStore* dStore = control->core()->download_store();
|
|
torrent::ChunkManager* chunkManager = torrent::chunk_manager();
|
|
torrent::FileManager* fileManager = torrent::file_manager();
|
|
|
|
CMD2_ANY ("system.hostname", std::bind(&system_hostname));
|
|
CMD2_ANY ("system.pid", std::bind(&getpid));
|
|
|
|
CMD2_VAR_C_STRING("system.api_version", (int64_t)API_VERSION);
|
|
CMD2_VAR_C_STRING("system.client_version", PACKAGE_VERSION);
|
|
CMD2_VAR_C_STRING("system.library_version", torrent::version());
|
|
CMD2_VAR_VALUE ("system.file.allocate", 0);
|
|
CMD2_VAR_VALUE ("system.file.max_size", (int64_t)512 << 30);
|
|
CMD2_VAR_VALUE ("system.file.split_size", -1);
|
|
CMD2_VAR_STRING ("system.file.split_suffix", ".part");
|
|
|
|
CMD2_ANY ("system.file_status_cache.size", std::bind(&utils::FileStatusCache::size,
|
|
(utils::FileStatusCache::base_type*)control->core()->file_status_cache()));
|
|
CMD2_ANY_V ("system.file_status_cache.prune", std::bind(&utils::FileStatusCache::prune, control->core()->file_status_cache()));
|
|
|
|
CMD2_VAR_BOOL ("file.prioritize_toc", 0);
|
|
CMD2_VAR_LIST ("file.prioritize_toc.first");
|
|
CMD2_VAR_LIST ("file.prioritize_toc.last");
|
|
|
|
CMD2_ANY ("system.files.opened_counter", std::bind(&FM_t::files_opened_counter, fileManager));
|
|
CMD2_ANY ("system.files.closed_counter", std::bind(&FM_t::files_closed_counter, fileManager));
|
|
CMD2_ANY ("system.files.failed_counter", std::bind(&FM_t::files_failed_counter, fileManager));
|
|
|
|
CMD2_ANY_STRING ("system.env", std::bind(&system_env, std::placeholders::_2));
|
|
|
|
CMD2_ANY ("system.time", std::bind(&rak::timer::seconds, &cachedTime));
|
|
CMD2_ANY ("system.time_seconds", std::bind(&rak::timer::current_seconds));
|
|
CMD2_ANY ("system.time_usec", std::bind(&rak::timer::current_usec));
|
|
|
|
CMD2_ANY_VALUE_V ("system.umask.set", std::bind(&umask, std::placeholders::_2));
|
|
|
|
CMD2_VAR_BOOL ("system.daemon", false);
|
|
|
|
CMD2_ANY_V ("system.shutdown.normal", std::bind(&Control::receive_normal_shutdown, control));
|
|
CMD2_ANY_V ("system.shutdown.quick", std::bind(&Control::receive_quick_shutdown, control));
|
|
CMD2_REDIRECT_GENERIC_NO_EXPORT("system.shutdown", "system.shutdown.normal");
|
|
|
|
CMD2_ANY ("system.cwd", std::bind(&system_get_cwd));
|
|
CMD2_ANY_STRING ("system.cwd.set", std::bind(&system_set_cwd, std::placeholders::_2));
|
|
|
|
CMD2_ANY ("pieces.sync.always_safe", std::bind(&CM_t::safe_sync, chunkManager));
|
|
CMD2_ANY_VALUE_V ("pieces.sync.always_safe.set", std::bind(&CM_t::set_safe_sync, chunkManager, std::placeholders::_2));
|
|
CMD2_ANY ("pieces.sync.safe_free_diskspace", std::bind(&CM_t::safe_free_diskspace, chunkManager));
|
|
CMD2_ANY ("pieces.sync.timeout", std::bind(&CM_t::timeout_sync, chunkManager));
|
|
CMD2_ANY_VALUE_V ("pieces.sync.timeout.set", std::bind(&CM_t::set_timeout_sync, chunkManager, std::placeholders::_2));
|
|
CMD2_ANY ("pieces.sync.timeout_safe", std::bind(&CM_t::timeout_safe_sync, chunkManager));
|
|
CMD2_ANY_VALUE_V ("pieces.sync.timeout_safe.set", std::bind(&CM_t::set_timeout_safe_sync, chunkManager, std::placeholders::_2));
|
|
CMD2_ANY ("pieces.sync.queue_size", std::bind(&CM_t::sync_queue_size, chunkManager));
|
|
|
|
CMD2_ANY ("pieces.preload.type", std::bind(&CM_t::preload_type, chunkManager));
|
|
CMD2_ANY_VALUE_V ("pieces.preload.type.set", std::bind(&CM_t::set_preload_type, chunkManager, std::placeholders::_2));
|
|
CMD2_ANY ("pieces.preload.min_size", std::bind(&CM_t::preload_min_size, chunkManager));
|
|
CMD2_ANY_VALUE_V ("pieces.preload.min_size.set", std::bind(&CM_t::set_preload_min_size, chunkManager, std::placeholders::_2));
|
|
CMD2_ANY ("pieces.preload.min_rate", std::bind(&CM_t::preload_required_rate, chunkManager));
|
|
CMD2_ANY_VALUE_V ("pieces.preload.min_rate.set", std::bind(&CM_t::set_preload_required_rate, chunkManager, std::placeholders::_2));
|
|
|
|
CMD2_ANY ("pieces.memory.current", std::bind(&CM_t::memory_usage, chunkManager));
|
|
CMD2_ANY ("pieces.memory.sync_queue", std::bind(&CM_t::sync_queue_memory_usage, chunkManager));
|
|
CMD2_ANY ("pieces.memory.block_count", std::bind(&CM_t::memory_block_count, chunkManager));
|
|
CMD2_ANY ("pieces.memory.max", std::bind(&CM_t::max_memory_usage, chunkManager));
|
|
CMD2_ANY_VALUE_V ("pieces.memory.max.set", std::bind(&CM_t::set_max_memory_usage, chunkManager, std::placeholders::_2));
|
|
CMD2_ANY ("pieces.stats_preloaded", std::bind(&CM_t::stats_preloaded, chunkManager));
|
|
CMD2_ANY ("pieces.stats_not_preloaded", std::bind(&CM_t::stats_not_preloaded, chunkManager));
|
|
|
|
CMD2_ANY ("pieces.stats.total_size", std::bind(&apply_pieces_stats_total_size));
|
|
|
|
CMD2_ANY ("pieces.hash.queue_size", std::bind(&torrent::hash_queue_size));
|
|
CMD2_VAR_BOOL ("pieces.hash.on_completion", true);
|
|
|
|
CMD2_VAR_STRING ("directory.default", "./");
|
|
|
|
CMD2_VAR_STRING ("session.name", "");
|
|
CMD2_VAR_BOOL ("session.use_lock", true);
|
|
CMD2_VAR_BOOL ("session.on_completion", true);
|
|
|
|
CMD2_ANY ("session.path", std::bind(&core::DownloadStore::path, dStore));
|
|
CMD2_ANY_STRING_V("session.path.set", std::bind(&core::DownloadStore::set_path, dStore, std::placeholders::_2));
|
|
|
|
CMD2_ANY_V ("session.save", std::bind(&core::DownloadList::session_save, dList));
|
|
|
|
#define CMD2_EXECUTE(key, flags) \
|
|
CMD2_ANY(key, std::bind(&rpc::ExecFile::execute_object, &rpc::execFile, std::placeholders::_2, flags));
|
|
|
|
CMD2_EXECUTE ("execute2", rpc::ExecFile::flag_expand_tilde | rpc::ExecFile::flag_throw);
|
|
CMD2_EXECUTE ("execute.throw", rpc::ExecFile::flag_expand_tilde | rpc::ExecFile::flag_throw);
|
|
CMD2_EXECUTE ("execute.throw.bg", rpc::ExecFile::flag_expand_tilde | rpc::ExecFile::flag_throw | rpc::ExecFile::flag_background);
|
|
CMD2_EXECUTE ("execute.nothrow", rpc::ExecFile::flag_expand_tilde);
|
|
CMD2_EXECUTE ("execute.nothrow.bg", rpc::ExecFile::flag_expand_tilde | rpc::ExecFile::flag_background);
|
|
CMD2_EXECUTE ("execute.raw", rpc::ExecFile::flag_throw);
|
|
CMD2_EXECUTE ("execute.raw.bg", rpc::ExecFile::flag_throw | rpc::ExecFile::flag_background);
|
|
CMD2_EXECUTE ("execute.raw_nothrow", 0);
|
|
CMD2_EXECUTE ("execute.raw_nothrow.bg", rpc::ExecFile::flag_background);
|
|
CMD2_EXECUTE ("execute.capture", rpc::ExecFile::flag_throw | rpc::ExecFile::flag_expand_tilde | rpc::ExecFile::flag_capture);
|
|
CMD2_EXECUTE ("execute.capture_nothrow", rpc::ExecFile::flag_expand_tilde | rpc::ExecFile::flag_capture);
|
|
|
|
CMD2_ANY_LIST ("file.append", std::bind(&cmd_file_append, std::placeholders::_2));
|
|
|
|
// TODO: Convert to new command types:
|
|
*rpc::command_base::argument(0) = "placeholder.0";
|
|
*rpc::command_base::argument(1) = "placeholder.1";
|
|
*rpc::command_base::argument(2) = "placeholder.2";
|
|
*rpc::command_base::argument(3) = "placeholder.3";
|
|
CMD2_ANY_P("argument.0", std::bind(&rpc::command_base::argument_ref, 0));
|
|
CMD2_ANY_P("argument.1", std::bind(&rpc::command_base::argument_ref, 1));
|
|
CMD2_ANY_P("argument.2", std::bind(&rpc::command_base::argument_ref, 2));
|
|
CMD2_ANY_P("argument.3", std::bind(&rpc::command_base::argument_ref, 3));
|
|
|
|
CMD2_ANY_LIST ("group.insert", std::bind(&group_insert, std::placeholders::_2));
|
|
}
|