version_usage.cc 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /* <!-- copyright */
  2. /*
  3. * aria2 - The high speed download utility
  4. *
  5. * Copyright (C) 2006 Tatsuhiro Tsujikawa
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * In addition, as a special exception, the copyright holders give
  22. * permission to link the code of portions of this program with the
  23. * OpenSSL library under certain conditions as described in each
  24. * individual source file, and distribute linked combinations
  25. * including the two.
  26. * You must obey the GNU General Public License in all respects
  27. * for all of the code used other than OpenSSL. If you modify
  28. * file(s) with this exception, you may extend this exception to your
  29. * version of the file(s), but you are not obligated to do so. If you
  30. * do not wish to do so, delete this exception statement from your
  31. * version. If you delete this exception statement from all source
  32. * files in the program, then also delete it here.
  33. */
  34. /* copyright --> */
  35. #include "common.h"
  36. #include <iostream>
  37. #include <iterator>
  38. #include <algorithm>
  39. #include "SharedHandle.h"
  40. #include "a2io.h"
  41. #include "FeatureConfig.h"
  42. #ifdef ENABLE_MESSAGE_DIGEST
  43. # include "messageDigest.h"
  44. #endif // ENABLE_MESSAGE_DIGEST
  45. #include "help_tags.h"
  46. #include "prefs.h"
  47. #include "StringFormat.h"
  48. #include "OptionParser.h"
  49. #include "OptionHandler.h"
  50. #include "Util.h"
  51. namespace aria2 {
  52. void showVersion() {
  53. std::cout << PACKAGE << _(" version ") << PACKAGE_VERSION << "\n"
  54. << "Copyright (C) 2006, 2009 Tatsuhiro Tsujikawa" << "\n"
  55. << "\n"
  56. <<
  57. "This program is distributed in the hope that it will be useful,\n"
  58. "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  59. "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  60. "GNU General Public License for more details.\n"
  61. << "\n"
  62. << "** Configuration **" << "\n"
  63. << "Enabled Features: "
  64. << FeatureConfig::getInstance()->featureSummary() << "\n"
  65. #ifdef ENABLE_MESSAGE_DIGEST
  66. << "Hash Algorithms: "
  67. << MessageDigestContext::getSupportedAlgoString() << "\n"
  68. #endif // ENABLE_MESSAGE_DIGEST
  69. << "\n"
  70. << StringFormat(_("Report bugs to %s"), "<tujikawa at users dot sourceforge dot net>")
  71. << std::endl;
  72. }
  73. void showUsage(const std::string& keyword, const OptionParser& oparser) {
  74. std::cout << StringFormat(_("Usage: %s [OPTIONS] [URL | TORRENT_FILE |"
  75. " METALINK_FILE]..."), PACKAGE_NAME) << "\n"
  76. << "\n";
  77. if(Util::startsWith(keyword, "#")) {
  78. std::deque<SharedHandle<OptionHandler> > handlers =
  79. keyword == TAG_ALL ? oparser.findAll():oparser.findByTag(keyword);
  80. if(keyword == TAG_ALL) {
  81. std::cout << _("Printing all options.");
  82. } else {
  83. std::cout << StringFormat(_("Printing options tagged with '%s'."),
  84. keyword.c_str());
  85. std::cout << "\n";
  86. SharedHandle<OptionHandler> help = oparser.findByName("help");
  87. std::cout << StringFormat(_("See -h option to know other command-line"
  88. " options(%s)."),
  89. help->createPossibleValuesString().c_str());
  90. }
  91. std::cout << "\n"
  92. << _("Options:") << "\n";
  93. std::copy(handlers.begin(), handlers.end(),
  94. std::ostream_iterator<SharedHandle<OptionHandler> >
  95. (std::cout, "\n\n"));
  96. } else {
  97. std::deque<SharedHandle<OptionHandler> > handlers =
  98. oparser.findByNameSubstring(keyword);
  99. if(!handlers.empty()) {
  100. std::cout << StringFormat(_("Printing options whose name includes"
  101. " '%s'."), keyword.c_str())
  102. << "\n"
  103. << _("Options:") << "\n";
  104. std::copy(handlers.begin(), handlers.end(),
  105. std::ostream_iterator<SharedHandle<OptionHandler> >
  106. (std::cout, "\n\n"));
  107. } else {
  108. std::cout << StringFormat(_("No option matching with '%s'."),
  109. keyword.c_str())
  110. << "\n" << oparser.findByName("help") << "\n";
  111. }
  112. }
  113. if(keyword == TAG_BASIC) {
  114. std::cout << "URL, TORRENT_FILE, METALINK_FILE:" << "\n"
  115. << _(" You can specify multiple URLs. Unless you specify -Z option, all URLs must\n"
  116. " point to the same file or downloading will fail.") << "\n"
  117. << _(" You can also specify arbitrary number of torrent files and metalink files\n"
  118. " stored in a local drive. Please note that they are always treated as a\n"
  119. " separate download.") << "\n"
  120. << "\n"
  121. << _(" You can specify both torrent file with -T option and URLs. By doing this,\n"
  122. " download a file from both torrent swarm and http/ftp server at the same time,\n"
  123. " while the data from http/ftp are uploaded to the torrent swarm. For single file\n"
  124. " torrents, URL can be a complete URL pointing to the resource or if URL ends\n"
  125. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' and\n"
  126. " 'path' in torrent are added to form a URL for each file.") << "\n"
  127. << "\n"
  128. << _(" Make sure that URL is quoted with single(\') or double(\") quotation if it\n"
  129. " contains \"&\" or any characters that have special meaning in shell.") << "\n"
  130. << "\n";
  131. }
  132. std::cout << _("Refer to man page for more information.") << std::endl;
  133. }
  134. } // namespace aria2