| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337 | /* <!-- 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"#include <cstdlib>#include <cstring>#include <sstream>#include <aria2/aria2.h>#include "Option.h"#include "prefs.h"#include "OptionParser.h"#include "OptionHandlerFactory.h"#include "OptionHandler.h"#include "util.h"#include "message.h"#include "Exception.h"#include "a2io.h"#include "help_tags.h"#include "File.h"#include "fmt.h"#include "OptionHandlerException.h"#include "UnknownOptionException.h"#include "error_code.h"#include "SimpleRandomizer.h"#include "bittorrent_helper.h"#include "BufferedFile.h"#include "console.h"#include "array_fun.h"#ifndef HAVE_DAEMON#include "daemon.h"#endif // !HAVE_DAEMONnamespace aria2 {extern void showVersion();extern void showUsage(const std::string& keyword, const std::shared_ptr<OptionParser>& oparser, const Console& out);namespace {void overrideWithEnv(Option& op, const std::shared_ptr<OptionParser>& optionParser, PrefPtr pref, const std::string& envName){  char* value = getenv(envName.c_str());  if(value) {    try {      optionParser->find(pref)->parse(op, value);    } catch(Exception& e) {      global::cerr()->printf        (_("Caught Error while parsing environment variable '%s'"),         envName.c_str());      global::cerr()->printf("\n%s\n", e.stackTrace().c_str());    }  }}} // namespacenamespace {// Calculates Damerau–Levenshtein distance between c-string a and b// with given costs.  swapcost, subcost, addcost and delcost are cost// to swap 2 adjacent characters, substitute characters, add character// and delete character respectively.int levenshtein(const char* a, const char* b, int swapcost, int subcost, int addcost, int delcost){  int alen = strlen(a);  int blen = strlen(b);  std::vector<std::vector<int> > dp(3, std::vector<int>(blen+1));  for(int i = 0; i <= blen; ++i) {    dp[1][i] = i;  }  for(int i = 1; i <= alen; ++i) {    dp[0][0] = i;    for(int j = 1; j <= blen; ++j) {      dp[0][j] = dp[1][j-1]+(a[i-1] == b[j-1] ? 0 : subcost);      if(i >= 2 && j >= 2 && a[i-1] != b[j-1] &&         a[i-2] == b[j-1] && a[i-1] == b[j-2]) {        dp[0][j] = std::min(dp[0][j], dp[2][j-2]+swapcost);      }      dp[0][j] = std::min(dp[0][j],                          std::min(dp[1][j]+delcost, dp[0][j-1]+addcost));    }    std::rotate(dp.begin(), dp.begin()+2, dp.end());  }  return dp[1][blen];}} // namespacenamespace {void showCandidates(const std::string& unknownOption, const std::shared_ptr<OptionParser>& parser){  const char* optstr = unknownOption.c_str();  for(; *optstr == '-'; ++optstr);  if(*optstr == '\0') {    return;  }  int optstrlen = strlen(optstr);  std::vector<std::pair<int, PrefPtr> > cands;  for(int i = 1, len = option::countOption(); i < len; ++i) {    PrefPtr pref = option::i2p(i);    const OptionHandler* h = parser->find(pref);    if(!h || h->isHidden()) {      continue;    }    // Use cost 0 for prefix match    if(util::startsWith(pref->k, pref->k+strlen(pref->k),                        optstr, optstr+optstrlen)) {      cands.push_back(std::make_pair(0, pref));      continue;    }    // cost values are borrowed from git, help.c.    int sim = levenshtein(optstr, pref->k, 0, 2, 1, 4);    cands.push_back(std::make_pair(sim, pref));  }  if(cands.empty()) {    return;  }  std::sort(cands.begin(), cands.end());  int threshold = cands[0].first;  // threshold value 12 is a magic value.  if(threshold > 12) {    return;  }  global::cerr()->printf("\n");  global::cerr()->printf(_("Did you mean:"));  global::cerr()->printf("\n");  for(auto i = cands.begin(), eoi = cands.end();      i != eoi && (*i).first <= threshold; ++i) {    global::cerr()->printf("\t--%s\n", (*i).second->k);  }}} // namespaceerror_code::Value option_processing(Option& op, bool standalone,                                    std::vector<std::string>& uris,                                    int argc, char** argv,                                    const KeyVals& options){  const std::shared_ptr<OptionParser>& oparser = OptionParser::getInstance();  try {    bool noConf = false;    std::string ucfname;    std::stringstream cmdstream;    {      // first evaluate --no-conf and --conf-path options.      Option op;      if(argc == 0) {        oparser->parse(op, options);      } else {        oparser->parseArg(cmdstream, uris, argc, argv);        oparser->parse(op, cmdstream);      }      noConf = op.getAsBool(PREF_NO_CONF);      ucfname = op.get(PREF_CONF_PATH);      if(standalone) {        if(op.defined(PREF_VERSION)) {          showVersion();          exit(error_code::FINISHED);        }        if(op.defined(PREF_HELP)) {          std::string keyword;          if(op.get(PREF_HELP).empty()) {            keyword = strHelpTag(TAG_BASIC);          } else {            keyword = op.get(PREF_HELP);            if(util::startsWith(keyword, "--")) {              keyword.erase(keyword.begin(), keyword.begin()+2);            }            std::string::size_type eqpos = keyword.find("=");            if(eqpos != std::string::npos) {              keyword.erase(keyword.begin()+eqpos, keyword.end());            }          }          showUsage(keyword, oparser, global::cout());          exit(error_code::FINISHED);        }      }    }    std::shared_ptr<Option> confOption(new Option());    oparser->parseDefaultValues(*confOption);    if(!noConf) {      std::string cfname =        ucfname.empty() ?        oparser->find(PREF_CONF_PATH)->getDefaultValue() : ucfname;      if(File(cfname).isFile()) {        std::stringstream ss;        {          BufferedFile fp(cfname.c_str(), BufferedFile::READ);          if(fp) {            fp.transfer(ss);          }        }        try {          oparser->parse(*confOption, ss);        } catch(OptionHandlerException& e) {          global::cerr()->printf(_("Parse error in %s"), cfname.c_str());          global::cerr()->printf("\n%s", e.stackTrace().c_str());          const OptionHandler* h = oparser->find(e.getPref());          if(h) {            global::cerr()->printf(_("Usage:"));            global::cerr()->printf("\n%s\n", h->getDescription());          }          return e.getErrorCode();        } catch(Exception& e) {          global::cerr()->printf(_("Parse error in %s"), cfname.c_str());          global::cerr()->printf("\n%s", e.stackTrace().c_str());          return e.getErrorCode();        }      } else if(!ucfname.empty()) {        global::cerr()->printf(_("Configuration file %s is not found."),                               cfname.c_str());        global::cerr()->printf("\n");        showUsage(strHelpTag(TAG_HELP), oparser, global::cerr());        return error_code::UNKNOWN_ERROR;      }    }    // Override configuration with environment variables.    overrideWithEnv(*confOption, oparser, PREF_HTTP_PROXY, "http_proxy");    overrideWithEnv(*confOption, oparser, PREF_HTTPS_PROXY, "https_proxy");    overrideWithEnv(*confOption, oparser, PREF_FTP_PROXY, "ftp_proxy");    overrideWithEnv(*confOption, oparser, PREF_ALL_PROXY, "all_proxy");    overrideWithEnv(*confOption, oparser, PREF_NO_PROXY, "no_proxy");    if(!standalone) {      // For non-standalone mode, set PREF_QUIET to true to suppress      // output. The caller can override this by including PREF_QUIET      // in options argument.      confOption->put(PREF_QUIET, A2_V_TRUE);    }    // we must clear eof bit and seek to the beginning of the buffer.    cmdstream.clear();    cmdstream.seekg(0, std::ios::beg);    // finaly let's parse and store command-iine options.    op.setParent(confOption);    oparser->parse(op, cmdstream);    oparser->parse(op, options);  } catch(OptionHandlerException& e) {    global::cerr()->printf("%s", e.stackTrace().c_str());    const OptionHandler* h = oparser->find(e.getPref());    if(h) {      global::cerr()->printf(_("Usage:"));      global::cerr()->printf("\n");      write(global::cerr(), *h);    }    return e.getErrorCode();  } catch(UnknownOptionException& e) {    showUsage("", oparser, global::cerr());    showCandidates(e.getUnknownOption(), oparser);    return e.getErrorCode();  } catch(Exception& e) {    global::cerr()->printf("%s", e.stackTrace().c_str());    showUsage("", oparser, global::cerr());    return e.getErrorCode();  }  if(standalone &&     !op.getAsBool(PREF_ENABLE_RPC) &&#ifdef ENABLE_BITTORRENT     op.blank(PREF_TORRENT_FILE) &&#endif // ENABLE_BITTORRENT#ifdef ENABLE_METALINK     op.blank(PREF_METALINK_FILE) &&#endif // ENABLE_METALINK     op.blank(PREF_INPUT_FILE)) {    if(uris.empty()) {      global::cerr()->printf(MSG_URI_REQUIRED);      global::cerr()->printf("\n");      showUsage("", oparser, global::cerr());      return error_code::UNKNOWN_ERROR;    }  }  if(standalone && op.getAsBool(PREF_DAEMON)) {#if defined(__GNUC__) && defined(__APPLE__)    // daemon() is deprecated on OSX since... forever.    // Silence the warning for good, so that -Werror becomes feasible.#pragma GCC diagnostic push#pragma GCC diagnostic ignored "-Wdeprecated-declarations"#endif // defined(__GNUC__) && defined(__APPLE__)    const auto daemonized = daemon(0, 0);#if defined(__GNUC__) && defined(__APPLE__)#pragma GCC diagnostic pop#endif // defined(__GNUC__) && defined(__APPLE__)    if(daemonized < 0) {      perror(MSG_DAEMON_FAILED);      return error_code::UNKNOWN_ERROR;    }  }  return error_code::FINISHED;}} // namespace aria2
 |