prefs.cc 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  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 "prefs.h"
  36. namespace aria2 {
  37. /**
  38. * Constants
  39. */
  40. const std::string V_TRUE("true");
  41. const std::string V_FALSE("false");
  42. const std::string V_NONE("none");
  43. const std::string V_MEM("mem");
  44. const std::string V_ALL("all");
  45. /**
  46. * General preferences
  47. */
  48. // values: 1*digit
  49. const std::string PREF_RETRY_WAIT("retry-wait");
  50. // values: 1*digit
  51. const std::string PREF_TIMEOUT("timeout");
  52. // values: 1*digit
  53. const std::string PREF_DNS_TIMEOUT("dns-timeout");
  54. // values: 1*digit
  55. const std::string PREF_CONNECT_TIMEOUT("connect-timeout");
  56. // values: 1*digit
  57. const std::string PREF_MAX_TRIES("max-tries");
  58. // values: 1*digit
  59. const std::string PREF_AUTO_SAVE_INTERVAL("auto-save-interval");
  60. // values: a string that your file system recognizes as a file name.
  61. const std::string PREF_LOG("log");
  62. // values: a string that your file system recognizes as a directory.
  63. const std::string PREF_DIR("dir");
  64. // values: a string that your file system recognizes as a file name.
  65. const std::string PREF_OUT("out");
  66. // values: 1*digit
  67. const std::string PREF_SPLIT("split");
  68. // value: true | false
  69. const std::string PREF_DAEMON("daemon");
  70. // value: a string
  71. const std::string PREF_REFERER("referer");
  72. // value: 1*digit
  73. const std::string PREF_LOWEST_SPEED_LIMIT("lowest-speed-limit");
  74. // value: 1*digit
  75. const std::string PREF_SEGMENT_SIZE("segment-size");
  76. // value: 1*digit
  77. const std::string PREF_MAX_DOWNLOAD_LIMIT("max-download-limit");
  78. // value: 1*digit
  79. const std::string PREF_STARTUP_IDLE_TIME("startup-idle-time");
  80. // value: prealloc | none
  81. const std::string PREF_FILE_ALLOCATION("file-allocation");
  82. const std::string V_PREALLOC("prealloc");
  83. #// value: 1*digit
  84. const std::string PREF_NO_FILE_ALLOCATION_LIMIT("no-file-allocation-limit");
  85. // value: true | false
  86. const std::string PREF_ALLOW_OVERWRITE("allow-overwrite");
  87. // value: true | false
  88. const std::string PREF_REALTIME_CHUNK_CHECKSUM("realtime-chunk-checksum");
  89. // value: true | false
  90. const std::string PREF_CHECK_INTEGRITY("check-integrity");
  91. // value: string that your file system recognizes as a file name.
  92. const std::string PREF_NETRC_PATH("netrc-path");
  93. // value:
  94. const std::string PREF_CONTINUE("continue");
  95. // value:
  96. const std::string PREF_NO_NETRC("no-netrc");
  97. // value: 1*digit
  98. const std::string PREF_MAX_DOWNLOADS("max-downloads");
  99. // value: string that your file system recognizes as a file name.
  100. const std::string PREF_INPUT_FILE("input-file");
  101. // value: 1*digit
  102. const std::string PREF_MAX_CONCURRENT_DOWNLOADS("max-concurrent-downloads");
  103. // value: true | false
  104. const std::string PREF_FORCE_SEQUENTIAL("force-sequential");
  105. // value: true | false
  106. const std::string PREF_AUTO_FILE_RENAMING("auto-file-renaming");
  107. // value: true | false
  108. const std::string PREF_PARAMETERIZED_URI("parameterized-uri");
  109. // value: true | false
  110. const std::string PREF_ENABLE_DIRECT_IO("enable-direct-io");
  111. // value: true | false
  112. const std::string PREF_ALLOW_PIECE_LENGTH_CHANGE("allow-piece-length-change");
  113. // value: true | false
  114. const std::string PREF_NO_CONF("no-conf");
  115. // value: string
  116. const std::string PREF_CONF_PATH("conf-path");
  117. // value: 1*digit
  118. const std::string PREF_STOP("stop");
  119. // value: true | false
  120. const std::string PREF_QUIET("quiet");
  121. // value: true | false
  122. const std::string PREF_ASYNC_DNS("async-dns");
  123. // value: 1*digit
  124. const std::string PREF_SUMMARY_INTERVAL("summary-interval");
  125. // value: debug, info, notice, warn, error
  126. const std::string PREF_LOG_LEVEL("log-level");
  127. const std::string V_DEBUG("debug");
  128. const std::string V_INFO("info");
  129. const std::string V_NOTICE("notice");
  130. const std::string V_WARN("warn");
  131. const std::string V_ERROR("error");
  132. // value: inorder | feedback
  133. const std::string PREF_URI_SELECTOR("uri-selector");
  134. const std::string V_INORDER("inorder");
  135. const std::string V_FEEDBACK("feedback");
  136. // value: 1*digit
  137. const std::string PREF_SERVER_STAT_TIMEOUT("server-stat-timeout");
  138. // value: string that your file system recognizes as a file name.
  139. const std::string PREF_SERVER_STAT_IF("server-stat-if");
  140. // value: string that your file system recognizes as a file name.
  141. const std::string PREF_SERVER_STAT_OF("server-stat-of");
  142. // value: true | false
  143. const std::string PREF_REMOTE_TIME("remote-time");
  144. // value: 1*digit
  145. const std::string PREF_MAX_FILE_NOT_FOUND("max-file-not-found");
  146. /**
  147. * FTP related preferences
  148. */
  149. const std::string PREF_FTP_USER("ftp-user");
  150. const std::string PREF_FTP_PASSWD("ftp-passwd");
  151. // values: binary | ascii
  152. const std::string PREF_FTP_TYPE("ftp-type");
  153. const std::string V_BINARY("binary");
  154. const std::string V_ASCII("ascii");
  155. // values: true | false
  156. const std::string PREF_FTP_PASV("ftp-pasv");
  157. // values: true | false
  158. const std::string PREF_FTP_REUSE_CONNECTION("ftp-reuse-connection");
  159. /**
  160. * HTTP related preferences
  161. */
  162. const std::string PREF_HTTP_USER("http-user");
  163. const std::string PREF_HTTP_PASSWD("http-passwd");
  164. // values: basic
  165. const std::string PREF_HTTP_AUTH_SCHEME("http-auth-scheme");
  166. const std::string V_BASIC("basic");
  167. // values: string
  168. const std::string PREF_USER_AGENT("user-agent");
  169. // value: string that your file system recognizes as a file name.
  170. const std::string PREF_LOAD_COOKIES("load-cookies");
  171. // values: true | false
  172. const std::string PREF_ENABLE_HTTP_KEEP_ALIVE("enable-http-keep-alive");
  173. // values: true | false
  174. const std::string PREF_ENABLE_HTTP_PIPELINING("enable-http-pipelining");
  175. // value: 1*digit
  176. const std::string PREF_MAX_HTTP_PIPELINING("max-http-pipelining");
  177. // value: string
  178. const std::string PREF_HEADER("header");
  179. /**
  180. * Proxy related preferences
  181. */
  182. const std::string PREF_HTTP_PROXY("http-proxy");
  183. const std::string PREF_HTTPS_PROXY("https-proxy");
  184. const std::string PREF_FTP_PROXY("ftp-proxy");
  185. const std::string PREF_ALL_PROXY("all-proxy");
  186. // values: get | tunnel
  187. const std::string PREF_HTTP_PROXY_METHOD("http-proxy-method");
  188. const std::string V_GET("get");
  189. const std::string V_TUNNEL("tunnel");
  190. /**
  191. * BitTorrent related preferences
  192. */
  193. // values: 1*digit
  194. const std::string PREF_PEER_CONNECTION_TIMEOUT("peer-connection-timeout");
  195. // values: 1*digit
  196. const std::string PREF_BT_TIMEOUT("bt-timeout");
  197. // values: 1*digit
  198. const std::string PREF_BT_REQUEST_TIMEOUT("bt-request-timeout");
  199. // values: true | false
  200. const std::string PREF_SHOW_FILES("show-files");
  201. // values: true | false
  202. const std::string PREF_DIRECT_FILE_MAPPING("direct-file-mapping");
  203. // values: 1*digit
  204. const std::string PREF_MAX_UPLOAD_LIMIT("max-upload-limit");
  205. // values: a string that your file system recognizes as a file name.
  206. const std::string PREF_TORRENT_FILE("torrent-file");
  207. // values: 1*digit
  208. const std::string PREF_LISTEN_PORT("listen-port");
  209. // values: true | false | mem
  210. const std::string PREF_FOLLOW_TORRENT("follow-torrent");
  211. // values: 1*digit *( (,|-) 1*digit);
  212. const std::string PREF_SELECT_FILE("select-file");
  213. // values: 1*digit
  214. const std::string PREF_SEED_TIME("seed-time");
  215. // values: 1*digit ['.' [ 1*digit ] ]
  216. const std::string PREF_SEED_RATIO("seed-ratio");
  217. // values: 1*digit
  218. const std::string PREF_BT_KEEP_ALIVE_INTERVAL("bt-keep-alive-interval");
  219. // values: a string, less than or equals to 20 bytes length
  220. const std::string PREF_PEER_ID_PREFIX("peer-id-prefix");
  221. // values: true | false
  222. const std::string PREF_ENABLE_PEER_EXCHANGE("enable-peer-exchange");
  223. // values: true | false
  224. const std::string PREF_ENABLE_DHT("enable-dht");
  225. // values: 1*digit
  226. const std::string PREF_DHT_LISTEN_PORT("dht-listen-port");
  227. // values: a string
  228. const std::string PREF_DHT_ENTRY_POINT_HOST("dht-entry-point-host");
  229. // values: 1*digit
  230. const std::string PREF_DHT_ENTRY_POINT_PORT("dht-entry-point-port");
  231. // values: a string (hostname:port);
  232. const std::string PREF_DHT_ENTRY_POINT("dht-entry-point");
  233. // values: a string
  234. const std::string PREF_DHT_FILE_PATH("dht-file-path");
  235. // values: plain | arc4
  236. const std::string PREF_BT_MIN_CRYPTO_LEVEL("bt-min-crypto-level");
  237. const std::string V_PLAIN("plain");
  238. const std::string V_ARC4("arc4");
  239. // values:: true | false
  240. const std::string PREF_BT_REQUIRE_CRYPTO("bt-require-crypto");
  241. // values: 1*digit
  242. const std::string PREF_BT_REQUEST_PEER_SPEED_LIMIT("bt-request-peer-speed-limit");
  243. // values: 1*digit
  244. const std::string PREF_BT_MAX_OPEN_FILES("bt-max-open-files");
  245. // values: true | false
  246. const std::string PREF_BT_SEED_UNVERIFIED("bt-seed-unverified");
  247. /**
  248. * Metalink related preferences
  249. */
  250. // values: a string that your file system recognizes as a file name.
  251. const std::string PREF_METALINK_FILE("metalink-file");
  252. // values: a string
  253. const std::string PREF_METALINK_VERSION("metalink-version");
  254. // values: a string
  255. const std::string PREF_METALINK_LANGUAGE("metalink-language");
  256. // values: a string
  257. const std::string PREF_METALINK_OS("metalink-os");
  258. // values: a string
  259. const std::string PREF_METALINK_LOCATION("metalink-location");
  260. // values: 1*digit
  261. const std::string PREF_METALINK_SERVERS("metalink-servers");
  262. // values: true | false | mem
  263. const std::string PREF_FOLLOW_METALINK("follow-metalink");
  264. // values: http | https | ftp | none
  265. const std::string PREF_METALINK_PREFERRED_PROTOCOL("metalink-preferred-protocol");
  266. const std::string V_HTTP("http");
  267. const std::string V_HTTPS("https");
  268. const std::string V_FTP("ftp");
  269. // values: true | false
  270. const std::string PREF_METALINK_ENABLE_UNIQUE_PROTOCOL("metalink-enable-unique-protocol");
  271. } // namespace aria2