/* */ #include "common.h" #include "SharedHandle.h" #include "a2io.h" #include "FeatureConfig.h" #ifdef ENABLE_MESSAGE_DIGEST # include "messageDigest.h" #endif // ENABLE_MESSAGE_DIGEST #include "TagContainer.h" #include "HelpItem.h" #include "HelpItemFactory.h" #include "help_tags.h" #include "prefs.h" #include "StringFormat.h" #include #include #include namespace aria2 { void showVersion() { std::cout << PACKAGE << _(" version ") << PACKAGE_VERSION << "\n" << "Copyright (C) 2006, 2008 Tatsuhiro Tsujikawa" << "\n" << "\n" << _("This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" "(at your option) any later version.\n" "\n" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" "GNU General Public License for more details.\n" "\n" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n") << "\n" << "In addition, as a special exception, the copyright holders give\n" "permission to link the code of portions of this program with the\n" "OpenSSL library under certain conditions as described in each\n" "individual source file, and distribute linked combinations\n" "including the two.\n" "You must obey the GNU General Public License in all respects\n" "for all of the code used other than OpenSSL. If you modify\n" "file(s) with this exception, you may extend this exception to your\n" "version of the file(s), but you are not obligated to do so. If you\n" "do not wish to do so, delete this exception statement from your\n" "version. If you delete this exception statement from all source\n" "files in the program, then also delete it here.\n" << "\n" << "** Configuration **" << "\n" << FeatureConfig::getInstance()->getConfigurationSummary() #ifdef ENABLE_MESSAGE_DIGEST << "message digest algorithms: " << MessageDigestContext::getSupportedAlgoString() << "\n" #endif // ENABLE_MESSAGE_DIGEST << "\n" << StringFormat(_("Report bugs to %s"), "") << std::endl; } void showUsage(const std::string& category, const Option* option) { std::cout << StringFormat(_("Usage: %s [options] URL ...\n"), PACKAGE_NAME) #ifdef ENABLE_BITTORRENT << StringFormat(_(" %s [options] -T TORRENT_FILE URL ...\n"), PACKAGE_NAME) #endif // ENABLE_BITTORRENT #ifdef ENABLE_METALINK << StringFormat(_(" %s [options] -M METALINK_FILE\n"), PACKAGE_NAME) #endif // ENABLE_METALINK << "\n"; SharedHandle tc = HelpItemFactory::createHelpItems(option); std::deque > items = category == V_ALL ? tc->getAllItems() : tc->search(category); if(items.size() > 0) { if(category == V_ALL) { std::cout << _("Printing all options."); } else { std::cout << StringFormat(_("Printing options tagged with '%s'."), category.c_str()); std::cout << "\n"; SharedHandle helpItem (dynamic_pointer_cast(tc->nameMatch("help"))); std::cout << StringFormat(_("See -h option to know other command-line options(%s)."), helpItem->getAvailableValues().c_str()); } std::cout << "\n" << _("Options:") << "\n"; std::copy(items.begin(), items.end(), std::ostream_iterator >(std::cout, "\n")); } else { std::deque > items = tc->nameMatchForward(category); if(items.size() > 0) { std::cout << StringFormat(_("Printing options whose name starts with '%s'."), category.c_str()) << "\n" << _("Options:") << "\n"; std::copy(items.begin(), items.end(), std::ostream_iterator >(std::cout, "\n")); } else { std::cout << StringFormat(_("No help category or option name matching with '%s'."), category.c_str()) << "\n" << tc->nameMatch("help") << "\n"; } } if(category == TAG_BASIC) { std::cout << "\n" << "URL:" << "\n" << _(" You can specify multiple URLs. Unless you specify -Z option, all URLs must\n" " point to the same file or downloading will fail.") << "\n" << _(" You can specify both torrent file with -T option and URLs. By doing this,\n" " download a file from both torrent swarm and http/ftp server at the same time,\n" " while the data from http/ftp are uploaded to the torrent swarm. Note that\n" " only single file torrent can be integrated with http/ftp.") << "\n" << "\n" << _(" Make sure that URL is quoted with single(\') or double(\") quotation if it\n" " contains \"&\" or any characters that have special meaning in shell.") << "\n"; } std::cout << "\n" << _("Refer to man page for more information.") << std::endl; } } // namespace aria2