// 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 // // Skomakerveien 33 // 3185 Skoppum, NORWAY #include "config.h" #include #include #include #include "core/manager.h" #include "core/view_manager.h" #include "ui/root.h" #include "ui/download_list.h" #include "rpc/command_slot.h" #include "rpc/command_variable.h" #include "rpc/parse.h" #include "globals.h" #include "control.h" #include "command_helpers.h" typedef void (core::ViewManager::*view_cfilter_slot)(const std::string&, const std::string&); torrent::Object apply_view_filter_on(const torrent::Object& rawArgs) { const torrent::Object::list_type& args = rawArgs.as_list(); if (args.size() < 1) throw torrent::input_error("Too few arguments."); const std::string& name = args.front().as_string(); if (name.empty()) throw torrent::input_error("First argument must be a string."); core::ViewManager::filter_args filterArgs; for (torrent::Object::list_const_iterator itr = ++args.begin(), last = args.end(); itr != last; itr++) filterArgs.push_back(itr->as_string()); control->view_manager()->set_filter_on(name, filterArgs); return torrent::Object(); } torrent::Object apply_view_cfilter(view_cfilter_slot viewFilterSlot, const torrent::Object& rawArgs) { const torrent::Object::list_type& args = rawArgs.as_list(); if (args.size() != 2) throw torrent::input_error("Too few arguments."); const std::string& name = args.front().as_string(); if (name.empty()) throw torrent::input_error("First argument must be a string."); (control->view_manager()->*viewFilterSlot)(name, args.back().as_string()); return torrent::Object(); } torrent::Object apply_view_sort(const torrent::Object& rawArgs) { const torrent::Object::list_type& args = rawArgs.as_list(); if (args.size() <= 0 || args.size() > 2) throw torrent::input_error("Wrong argument count."); const std::string& name = args.front().as_string(); if (name.empty()) throw torrent::input_error("First argument must be a string."); int32_t value = 0; if (args.size() == 2) value = rpc::convert_to_value(args.back()); control->view_manager()->sort(name, value); return torrent::Object(); } torrent::Object apply_view_list(const torrent::Object&) { torrent::Object rawResult = torrent::Object::create_list(); torrent::Object::list_type& result = rawResult.as_list(); for (core::ViewManager::const_iterator itr = control->view_manager()->begin(), last = control->view_manager()->end(); itr != last; itr++) result.push_back((*itr)->name()); return rawResult; } torrent::Object apply_view_set(const torrent::Object& rawArgs) { const torrent::Object::list_type& args = rawArgs.as_list(); if (args.size() != 2) throw torrent::input_error("Wrong argument count."); core::ViewManager::iterator itr = control->view_manager()->find(args.back().as_string()); if (itr == control->view_manager()->end()) throw torrent::input_error("Could not find view \"" + args.back().as_string() + "\"."); // if (args.front().as_string() == "main") // control->ui()->download_list()->set_view(*itr); // else throw torrent::input_error("No such target."); } torrent::Object apply_print(rpc::target_type target, const torrent::Object& rawArgs) { char buffer[1024]; rpc::print_object(buffer, buffer + 1024, &rawArgs, 0); control->core()->push_log(buffer); return torrent::Object(); } torrent::Object apply_cat(rpc::target_type target, const torrent::Object& rawArgs) { std::string result; rpc::print_object_std(&result, &rawArgs, 0); return result; } // Move these boolean operators to a new file. bool as_boolean(const torrent::Object& rawArgs) { switch (rawArgs.type()) { case torrent::Object::TYPE_VALUE: return rawArgs.as_value(); case torrent::Object::TYPE_STRING: return !rawArgs.as_string().empty(); case torrent::Object::TYPE_LIST: return !rawArgs.as_list().empty(); case torrent::Object::TYPE_MAP: return !rawArgs.as_map().empty(); default: return false; } } torrent::Object apply_not(rpc::target_type target, const torrent::Object& rawArgs) { return (int64_t)!as_boolean(rawArgs); } torrent::Object apply_and(rpc::target_type target, const torrent::Object& rawArgs) { if (rawArgs.type() != torrent::Object::TYPE_LIST) return as_boolean(rawArgs); for (torrent::Object::list_const_iterator itr = rawArgs.as_list().begin(), last = rawArgs.as_list().end(); itr != last; itr++) if (!as_boolean(rpc::parse_command_single(target, itr->as_string()))) return (int64_t)false; return (int64_t)true; } torrent::Object apply_or(rpc::target_type target, const torrent::Object& rawArgs) { if (rawArgs.type() != torrent::Object::TYPE_LIST) return as_boolean(rawArgs); for (torrent::Object::list_const_iterator itr = rawArgs.as_list().begin(), last = rawArgs.as_list().end(); itr != last; itr++) if (as_boolean(rpc::parse_command_single(target, itr->as_string()))) return (int64_t)true; return (int64_t)false; } torrent::Object apply_less(rpc::target_type target, const torrent::Object& rawArgs) { const torrent::Object::list_type& args = rawArgs.as_list(); // We only need to check if empty() since if size() == 1 it calls // the same command for both, or if size() == 2 then each side of // the comparison has different commands. if (args.empty()) throw torrent::input_error("Wrong argument count."); // This really should be converted to using args flagged as // commands, so that we can compare commands and statics values. torrent::Object result1; torrent::Object result2; if (rpc::is_target_pair(target)) { result1 = rpc::parse_command_single(rpc::get_target_left(target), args.front().as_string()); result2 = rpc::parse_command_single(rpc::get_target_right(target), args.back().as_string()); } else { result1 = rpc::parse_command_single(target, args.front().as_string()); result2 = rpc::parse_command_single(target, args.back().as_string()); } if (result1.type() != result2.type()) throw torrent::input_error("Type mismatch."); switch (result1.type()) { case torrent::Object::TYPE_VALUE: return result1.as_value() < result2.as_value(); case torrent::Object::TYPE_STRING: return result1.as_string() < result2.as_string(); default: return (int64_t)false; } } // Fixme. torrent::Object apply_greater(rpc::target_type target, const torrent::Object& rawArgs) { return (int64_t)!apply_less(target, rawArgs).as_value(); } torrent::Object apply_to_time(int flags, const torrent::Object& rawArgs) { std::tm *u; time_t t = (uint64_t)rawArgs.as_value(); if (flags & 0x1) u = std::localtime(&t); else u = std::gmtime(&t); if (u == NULL) return torrent::Object(); char buffer[11]; if (flags & 0x2) snprintf(buffer, 11, "%02u/%02u/%04u", u->tm_mday, (u->tm_mon + 1), (1900 + u->tm_year)); else snprintf(buffer, 9, "%2d:%02d:%02d", u->tm_hour, u->tm_min, u->tm_sec); return std::string(buffer); } torrent::Object apply_to_elapsed_time(const torrent::Object& rawArgs) { uint64_t arg = cachedTime.seconds() - rawArgs.as_value(); char buffer[48]; snprintf(buffer, 48, "%2d:%02d:%02d", (int)(arg / 3600), (int)((arg / 60) % 60), (int)(arg % 60)); return std::string(buffer); } torrent::Object apply_to_kb(const torrent::Object& rawArgs) { char buffer[32]; snprintf(buffer, 32, "%5.1f", (double)rawArgs.as_value() / (1 << 10)); return std::string(buffer); } torrent::Object apply_to_mb(const torrent::Object& rawArgs) { char buffer[32]; snprintf(buffer, 32, "%8.1f", (double)rawArgs.as_value() / (1 << 20)); return std::string(buffer); } torrent::Object apply_to_xb(const torrent::Object& rawArgs) { char buffer[48]; int64_t arg = rawArgs.as_value(); if (arg < (int64_t(1000) << 10)) snprintf(buffer, 48, "%5.1f KB", (double)arg / (int64_t(1) << 10)); else if (arg < (int64_t(1000) << 20)) snprintf(buffer, 48, "%5.1f MB", (double)arg / (int64_t(1) << 20)); else if (arg < (int64_t(1000) << 30)) snprintf(buffer, 48, "%5.1f GB", (double)arg / (int64_t(1) << 30)); else snprintf(buffer, 48, "%5.1f TB", (double)arg / (int64_t(1) << 40)); return std::string(buffer); } // A series of if/else statements. Every even arguments are // conditionals and odd arguments are branches to be executed, except // the last one which is always a branch. // // if (cond1) { branch1 } // , // // if (cond1) { branch1 } else if (cond2) { branch2 } else { branch3 } // ,,,, torrent::Object apply_if(int flags, rpc::target_type target, const torrent::Object& rawArgs) { const torrent::Object::list_type& args = rawArgs.as_list(); torrent::Object::list_const_iterator itr = args.begin(); while (itr != args.end() && itr != --args.end()) { torrent::Object tmp; const torrent::Object* conditional; if (flags & 0x1 && itr->is_string()) conditional = &(tmp = rpc::parse_command(target, itr->as_string().c_str(), itr->as_string().c_str() + itr->as_string().size()).first); else conditional = &*itr; bool result; switch (conditional->type()) { case torrent::Object::TYPE_STRING: result = !conditional->as_string().empty(); break; case torrent::Object::TYPE_VALUE: result = conditional->as_value(); break; case torrent::Object::TYPE_NONE: result = false; break; default: throw torrent::input_error("Type not supported by 'if'."); }; itr++; if (result) break; itr++; } if (itr == args.end()) return torrent::Object(); if (flags & 0x1 && itr->is_string()) { return rpc::parse_command(target, itr->as_string().c_str(), itr->as_string().c_str() + itr->as_string().size()).first; } else if (flags & 0x1 && itr->is_list()) { // Move this into a special function or something. Also, might be // nice to have a parse_command function that takes list // iterator... for (torrent::Object::list_type::const_iterator cmdItr = itr->as_list().begin(), last = itr->as_list().end(); cmdItr != last; cmdItr++) if (cmdItr->is_string()) rpc::parse_command(target, cmdItr->as_string().c_str(), cmdItr->as_string().c_str() + cmdItr->as_string().size()); return torrent::Object(); } else { return *itr; } } void initialize_command_ui() { ADD_VARIABLE_STRING("key_layout", "qwerty"); ADD_COMMAND_STRING("view_add", rpc::object_string_fn(rak::make_mem_fun(control->view_manager(), &core::ViewManager::insert_throw))); ADD_COMMAND_NONE_L("view_list", rak::ptr_fn(&apply_view_list)); ADD_COMMAND_NONE_L("view_set", rak::ptr_fn(&apply_view_set)); ADD_COMMAND_LIST("view_filter", rak::bind_ptr_fn(&apply_view_cfilter, &core::ViewManager::set_filter)); ADD_COMMAND_LIST("view_filter_on", rak::ptr_fn(&apply_view_filter_on)); ADD_COMMAND_LIST("view_sort", rak::ptr_fn(&apply_view_sort)); ADD_COMMAND_LIST("view_sort_new", rak::bind_ptr_fn(&apply_view_cfilter, &core::ViewManager::set_sort_new)); ADD_COMMAND_LIST("view_sort_current", rak::bind_ptr_fn(&apply_view_cfilter, &core::ViewManager::set_sort_current)); // Move. ADD_ANY_NONE("print", rak::ptr_fn(&apply_print)); ADD_ANY_NONE("cat", rak::ptr_fn(&apply_cat)); ADD_ANY_NONE("if", rak::bind_ptr_fn(&apply_if, 0)); ADD_ANY_NONE("not", rak::ptr_fn(&apply_not)); ADD_ANY_NONE("and", rak::ptr_fn(&apply_and)); ADD_ANY_NONE("or", rak::ptr_fn(&apply_or)); ADD_ANY_LIST("less", rak::ptr_fn(&apply_less)); ADD_ANY_LIST("greater", rak::ptr_fn(&apply_greater)); // A temporary command for handling stuff until we get proper // support for seperation of commands and literals. ADD_ANY_NONE("branch", rak::bind_ptr_fn(&apply_if, 1)); ADD_COMMAND_VALUE("to_gm_time", rak::bind_ptr_fn(&apply_to_time, 0)); ADD_COMMAND_VALUE("to_gm_date", rak::bind_ptr_fn(&apply_to_time, 0x2)); ADD_COMMAND_VALUE("to_time", rak::bind_ptr_fn(&apply_to_time, 0x1)); ADD_COMMAND_VALUE("to_date", rak::bind_ptr_fn(&apply_to_time, 0x1 | 0x2)); ADD_COMMAND_VALUE("to_elapsed_time", rak::ptr_fn(&apply_to_elapsed_time)); ADD_COMMAND_VALUE("to_kb", rak::ptr_fn(&apply_to_kb)); ADD_COMMAND_VALUE("to_mb", rak::ptr_fn(&apply_to_mb)); ADD_COMMAND_VALUE("to_xb", rak::ptr_fn(&apply_to_xb)); }