2007-10-11 16:58:24 +00:00
|
|
|
/* <!-- copyright */
|
|
|
|
/*
|
|
|
|
* aria2 - The high speed download utility
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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.
|
|
|
|
*/
|
|
|
|
/* copyright --> */
|
|
|
|
#include "common.h"
|
2008-02-08 15:53:45 +00:00
|
|
|
#include "SharedHandle.h"
|
2007-11-28 14:22:28 +00:00
|
|
|
#include "a2io.h"
|
2007-10-11 16:58:24 +00:00
|
|
|
#include "FeatureConfig.h"
|
2007-11-14 10:10:38 +00:00
|
|
|
#ifdef ENABLE_MESSAGE_DIGEST
|
|
|
|
# include "messageDigest.h"
|
|
|
|
#endif // ENABLE_MESSAGE_DIGEST
|
2008-01-05 11:26:56 +00:00
|
|
|
#include "TagContainer.h"
|
|
|
|
#include "HelpItem.h"
|
|
|
|
#include "HelpItemFactory.h"
|
|
|
|
#include "help_tags.h"
|
|
|
|
#include "prefs.h"
|
2008-04-26 05:58:49 +00:00
|
|
|
#include "StringFormat.h"
|
2008-02-08 15:53:45 +00:00
|
|
|
#include <iostream>
|
2008-01-05 11:26:56 +00:00
|
|
|
#include <iterator>
|
2008-02-08 18:39:26 +00:00
|
|
|
#include <algorithm>
|
2007-11-27 15:16:12 +00:00
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
namespace aria2 {
|
|
|
|
|
2007-10-11 16:58:24 +00:00
|
|
|
void showVersion() {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << PACKAGE << _(" version ") << PACKAGE_VERSION << "\n"
|
|
|
|
<< "Copyright (C) 2006, 2008 Tatsuhiro Tsujikawa" << "\n"
|
|
|
|
<< "\n"
|
|
|
|
<<
|
2007-10-11 16:58:24 +00:00
|
|
|
_("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"
|
2007-11-18 11:59:42 +00:00
|
|
|
"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n")
|
2008-02-08 15:53:45 +00:00
|
|
|
<< "\n"
|
2007-10-11 16:58:24 +00:00
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
<<
|
2007-11-18 11:59:42 +00:00
|
|
|
"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"
|
2008-02-08 15:53:45 +00:00
|
|
|
<< "\n"
|
|
|
|
<< "** Configuration **" << "\n"
|
|
|
|
<< FeatureConfig::getInstance()->getConfigurationSummary()
|
2007-11-18 11:59:42 +00:00
|
|
|
#ifdef ENABLE_MESSAGE_DIGEST
|
2008-02-08 15:53:45 +00:00
|
|
|
<< "message digest algorithms: " << MessageDigestContext::getSupportedAlgoString() << "\n"
|
2007-11-18 11:59:42 +00:00
|
|
|
#endif // ENABLE_MESSAGE_DIGEST
|
2008-04-26 05:58:49 +00:00
|
|
|
<< "\n"
|
|
|
|
<< StringFormat(_("Report bugs to %s"), "<tujikawa at users dot sourceforge dot net>")
|
|
|
|
<< std::endl;
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
|
|
|
|
2008-04-22 11:26:50 +00:00
|
|
|
void showUsage(const std::string& category, const Option* option) {
|
2008-04-26 05:58:49 +00:00
|
|
|
std::cout << StringFormat(_("Usage: %s [options] URL ...\n"), PACKAGE_NAME)
|
2007-10-11 16:58:24 +00:00
|
|
|
#ifdef ENABLE_BITTORRENT
|
2008-04-26 05:58:49 +00:00
|
|
|
<< StringFormat(_(" %s [options] -T TORRENT_FILE URL ...\n"), PACKAGE_NAME)
|
2007-10-11 16:58:24 +00:00
|
|
|
#endif // ENABLE_BITTORRENT
|
|
|
|
#ifdef ENABLE_METALINK
|
2008-04-26 05:58:49 +00:00
|
|
|
<< StringFormat(_(" %s [options] -M METALINK_FILE\n"), PACKAGE_NAME)
|
2007-10-11 16:58:24 +00:00
|
|
|
#endif // ENABLE_METALINK
|
2008-04-26 05:58:49 +00:00
|
|
|
<< "\n";
|
2007-10-11 16:58:24 +00:00
|
|
|
|
2008-04-22 11:26:50 +00:00
|
|
|
SharedHandle<TagContainer> tc = HelpItemFactory::createHelpItems(option);
|
2008-02-08 15:53:45 +00:00
|
|
|
std::deque<SharedHandle<TaggedItem> > items =
|
|
|
|
category == V_ALL ? tc->getAllItems() : tc->search(category);
|
2008-01-05 11:26:56 +00:00
|
|
|
if(items.size() > 0) {
|
|
|
|
if(category == V_ALL) {
|
2008-04-26 05:58:49 +00:00
|
|
|
std::cout << _("Printing all options.");
|
2008-01-05 11:26:56 +00:00
|
|
|
} else {
|
2008-04-26 05:58:49 +00:00
|
|
|
std::cout << StringFormat(_("Printing options tagged with '%s'."), category.c_str());
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << "\n";
|
2008-04-20 00:50:22 +00:00
|
|
|
SharedHandle<HelpItem> helpItem
|
|
|
|
(dynamic_pointer_cast<HelpItem>(tc->nameMatch("help")));
|
2008-04-26 05:58:49 +00:00
|
|
|
std::cout << StringFormat(_("See -h option to know other command-line options(%s)."),
|
|
|
|
helpItem->getAvailableValues().c_str());
|
2008-01-05 11:26:56 +00:00
|
|
|
}
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << "\n"
|
|
|
|
<< _("Options:") << "\n";
|
2008-04-20 00:50:22 +00:00
|
|
|
|
|
|
|
std::copy(items.begin(), items.end(), std::ostream_iterator<SharedHandle<TaggedItem> >(std::cout, "\n"));
|
|
|
|
|
2008-01-05 11:26:56 +00:00
|
|
|
} else {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::deque<SharedHandle<TaggedItem> > items = tc->nameMatchForward(category);
|
2008-01-05 11:26:56 +00:00
|
|
|
if(items.size() > 0) {
|
2008-04-26 05:58:49 +00:00
|
|
|
std::cout << StringFormat(_("Printing options whose name starts with '%s'."), category.c_str())
|
|
|
|
<< "\n"
|
2008-02-08 15:53:45 +00:00
|
|
|
<< _("Options:") << "\n";
|
2008-04-20 00:50:22 +00:00
|
|
|
std::copy(items.begin(), items.end(), std::ostream_iterator<SharedHandle<TaggedItem> >(std::cout, "\n"));
|
2008-01-05 11:26:56 +00:00
|
|
|
} else {
|
2008-04-26 05:58:49 +00:00
|
|
|
std::cout << StringFormat(_("No help category or option name matching with '%s'."), category.c_str())
|
|
|
|
<< "\n" << tc->nameMatch("help") << "\n";
|
2008-01-05 11:26:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(category == TAG_BASIC) {
|
2008-02-08 15:53:45 +00:00
|
|
|
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";
|
2008-01-05 11:26:56 +00:00
|
|
|
}
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << "\n"
|
|
|
|
<< _("Refer to man page for more information.") << std::endl;
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
2008-02-08 15:53:45 +00:00
|
|
|
|
|
|
|
} // namespace aria2
|