prefs.cc 11 KB

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