heroku-tokyotyrant 0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (340) hide show
  1. data/COPYING +504 -0
  2. data/README.rdoc +231 -0
  3. data/Rakefile +72 -0
  4. data/benchmarks/balancer.rb +101 -0
  5. data/benchmarks/bulk_db.rb +74 -0
  6. data/benchmarks/bulk_table.rb +87 -0
  7. data/benchmarks/db.rb +114 -0
  8. data/benchmarks/table.rb +161 -0
  9. data/ext/extconf.rb +43 -0
  10. data/ext/tokyo/bin/tcamgr +0 -0
  11. data/ext/tokyo/bin/tcamttest +0 -0
  12. data/ext/tokyo/bin/tcatest +0 -0
  13. data/ext/tokyo/bin/tcbmgr +0 -0
  14. data/ext/tokyo/bin/tcbmttest +0 -0
  15. data/ext/tokyo/bin/tcbtest +0 -0
  16. data/ext/tokyo/bin/tcfmgr +0 -0
  17. data/ext/tokyo/bin/tcfmttest +0 -0
  18. data/ext/tokyo/bin/tcftest +0 -0
  19. data/ext/tokyo/bin/tchmgr +0 -0
  20. data/ext/tokyo/bin/tchmttest +0 -0
  21. data/ext/tokyo/bin/tchtest +0 -0
  22. data/ext/tokyo/bin/tcrmgr +0 -0
  23. data/ext/tokyo/bin/tcrmttest +0 -0
  24. data/ext/tokyo/bin/tcrtest +0 -0
  25. data/ext/tokyo/bin/tctmgr +0 -0
  26. data/ext/tokyo/bin/tctmttest +0 -0
  27. data/ext/tokyo/bin/tcttest +0 -0
  28. data/ext/tokyo/bin/tcucodec +0 -0
  29. data/ext/tokyo/bin/tcumttest +0 -0
  30. data/ext/tokyo/bin/tcutest +0 -0
  31. data/ext/tokyo/bin/ttserver +0 -0
  32. data/ext/tokyo/bin/ttulmgr +0 -0
  33. data/ext/tokyo/bin/ttultest +0 -0
  34. data/ext/tokyo/include/tcadb.h +548 -0
  35. data/ext/tokyo/include/tcbdb.h +1101 -0
  36. data/ext/tokyo/include/tcfdb.h +858 -0
  37. data/ext/tokyo/include/tchdb.h +871 -0
  38. data/ext/tokyo/include/tcrdb.h +801 -0
  39. data/ext/tokyo/include/tctdb.h +1086 -0
  40. data/ext/tokyo/include/tculog.h +392 -0
  41. data/ext/tokyo/include/tcutil.h +4184 -0
  42. data/ext/tokyo/include/ttutil.h +494 -0
  43. data/ext/tokyo/lib/libtokyocabinet.9.4.0.dylib +0 -0
  44. data/ext/tokyo/lib/libtokyocabinet.9.dylib +0 -0
  45. data/ext/tokyo/lib/libtokyocabinet.a +0 -0
  46. data/ext/tokyo/lib/libtokyocabinet.dylib +0 -0
  47. data/ext/tokyo/lib/libtokyotyrant.3.22.0.dylib +0 -0
  48. data/ext/tokyo/lib/libtokyotyrant.3.dylib +0 -0
  49. data/ext/tokyo/lib/libtokyotyrant.a +0 -0
  50. data/ext/tokyo/lib/libtokyotyrant.dylib +0 -0
  51. data/ext/tokyo/lib/pkgconfig/tokyocabinet.pc +14 -0
  52. data/ext/tokyo/lib/pkgconfig/tokyotyrant.pc +14 -0
  53. data/ext/tokyo/lib/ttskeldir.bundle +0 -0
  54. data/ext/tokyo/lib/ttskelmock.bundle +0 -0
  55. data/ext/tokyo/lib/ttskelnull.bundle +0 -0
  56. data/ext/tokyo/lib/ttskelproxy.bundle +0 -0
  57. data/ext/tokyo/libexec/tcawmgr.cgi +0 -0
  58. data/ext/tokyo/sbin/ttservctl +163 -0
  59. data/ext/tokyo/share/man/man1/tcamgr.1 +97 -0
  60. data/ext/tokyo/share/man/man1/tcamttest.1 +35 -0
  61. data/ext/tokyo/share/man/man1/tcatest.1 +55 -0
  62. data/ext/tokyo/share/man/man1/tcbmgr.1 +125 -0
  63. data/ext/tokyo/share/man/man1/tcbmttest.1 +81 -0
  64. data/ext/tokyo/share/man/man1/tcbtest.1 +107 -0
  65. data/ext/tokyo/share/man/man1/tcfmgr.1 +98 -0
  66. data/ext/tokyo/share/man/man1/tcfmttest.1 +62 -0
  67. data/ext/tokyo/share/man/man1/tcftest.1 +73 -0
  68. data/ext/tokyo/share/man/man1/tchmgr.1 +110 -0
  69. data/ext/tokyo/share/man/man1/tchmttest.1 +85 -0
  70. data/ext/tokyo/share/man/man1/tchtest.1 +95 -0
  71. data/ext/tokyo/share/man/man1/tcrmgr.1 +164 -0
  72. data/ext/tokyo/share/man/man1/tcrmttest.1 +55 -0
  73. data/ext/tokyo/share/man/man1/tcrtest.1 +89 -0
  74. data/ext/tokyo/share/man/man1/tctmgr.1 +140 -0
  75. data/ext/tokyo/share/man/man1/tctmttest.1 +92 -0
  76. data/ext/tokyo/share/man/man1/tcttest.1 +105 -0
  77. data/ext/tokyo/share/man/man1/tcucodec.1 +162 -0
  78. data/ext/tokyo/share/man/man1/tcumttest.1 +41 -0
  79. data/ext/tokyo/share/man/man1/tcutest.1 +81 -0
  80. data/ext/tokyo/share/man/man1/ttserver.1 +84 -0
  81. data/ext/tokyo/share/man/man1/ttulmgr.1 +40 -0
  82. data/ext/tokyo/share/man/man1/ttultest.1 +16 -0
  83. data/ext/tokyo/share/man/man3/tcadb.3 +676 -0
  84. data/ext/tokyo/share/man/man3/tcbdb.3 +1355 -0
  85. data/ext/tokyo/share/man/man3/tcfdb.3 +975 -0
  86. data/ext/tokyo/share/man/man3/tchdb.3 +898 -0
  87. data/ext/tokyo/share/man/man3/tclist.3 +1 -0
  88. data/ext/tokyo/share/man/man3/tcmap.3 +1 -0
  89. data/ext/tokyo/share/man/man3/tcmdb.3 +1 -0
  90. data/ext/tokyo/share/man/man3/tcmpool.3 +1 -0
  91. data/ext/tokyo/share/man/man3/tcrdb.3 +1309 -0
  92. data/ext/tokyo/share/man/man3/tctdb.3 +1110 -0
  93. data/ext/tokyo/share/man/man3/tctree.3 +1 -0
  94. data/ext/tokyo/share/man/man3/tculog.3 +15 -0
  95. data/ext/tokyo/share/man/man3/tcutil.3 +4518 -0
  96. data/ext/tokyo/share/man/man3/tcxstr.3 +1 -0
  97. data/ext/tokyo/share/man/man3/tokyocabinet.3 +132 -0
  98. data/ext/tokyo/share/man/man3/ttutil.3 +14 -0
  99. data/ext/tokyo/share/man/man8/ttservctl.8 +37 -0
  100. data/ext/tokyo/share/tokyocabinet/COPYING +504 -0
  101. data/ext/tokyo/share/tokyocabinet/ChangeLog +1252 -0
  102. data/ext/tokyo/share/tokyocabinet/THANKS +12 -0
  103. data/ext/tokyo/share/tokyocabinet/doc/benchmark.pdf +0 -0
  104. data/ext/tokyo/share/tokyocabinet/doc/common.css +211 -0
  105. data/ext/tokyo/share/tokyocabinet/doc/icon16.png +0 -0
  106. data/ext/tokyo/share/tokyocabinet/doc/index.html +156 -0
  107. data/ext/tokyo/share/tokyocabinet/doc/index.ja.html +197 -0
  108. data/ext/tokyo/share/tokyocabinet/doc/logo-ja.png +0 -0
  109. data/ext/tokyo/share/tokyocabinet/doc/logo.png +0 -0
  110. data/ext/tokyo/share/tokyocabinet/doc/spex-en.html +7145 -0
  111. data/ext/tokyo/share/tokyocabinet/doc/spex-ja.html +7476 -0
  112. data/ext/tokyo/share/tokyocabinet/doc/tokyoproducts.pdf +0 -0
  113. data/ext/tokyo/share/tokyocabinet/doc/tokyoproducts.ppt +0 -0
  114. data/ext/tokyo/share/tokyotyrant/COPYING +504 -0
  115. data/ext/tokyo/share/tokyotyrant/ChangeLog +578 -0
  116. data/ext/tokyo/share/tokyotyrant/THANKS +15 -0
  117. data/ext/tokyo/share/tokyotyrant/doc/common.css +211 -0
  118. data/ext/tokyo/share/tokyotyrant/doc/index.html +79 -0
  119. data/ext/tokyo/share/tokyotyrant/doc/spex.html +2264 -0
  120. data/ext/tokyo/share/tokyotyrant/ext/mapreduce.lua +57 -0
  121. data/ext/tokyo/share/tokyotyrant/ext/queue.lua +55 -0
  122. data/ext/tokyo/share/tokyotyrant/ext/senatus.lua +532 -0
  123. data/ext/tokyo/share/tokyotyrant/ext/usherette.lua +438 -0
  124. data/ext/tokyo_tyrant.c +147 -0
  125. data/ext/tokyo_tyrant.h +48 -0
  126. data/ext/tokyo_tyrant_db.c +227 -0
  127. data/ext/tokyo_tyrant_db.h +8 -0
  128. data/ext/tokyo_tyrant_module.c +453 -0
  129. data/ext/tokyo_tyrant_module.h +10 -0
  130. data/ext/tokyo_tyrant_query.c +226 -0
  131. data/ext/tokyo_tyrant_query.h +9 -0
  132. data/ext/tokyo_tyrant_table.c +319 -0
  133. data/ext/tokyo_tyrant_table.h +8 -0
  134. data/ext/tokyocabinet-1.4.41/COPYING +504 -0
  135. data/ext/tokyocabinet-1.4.41/ChangeLog +1252 -0
  136. data/ext/tokyocabinet-1.4.41/Makefile.in +825 -0
  137. data/ext/tokyocabinet-1.4.41/README +38 -0
  138. data/ext/tokyocabinet-1.4.41/THANKS +12 -0
  139. data/ext/tokyocabinet-1.4.41/bros/Makefile +133 -0
  140. data/ext/tokyocabinet-1.4.41/bros/bdbtest.c +438 -0
  141. data/ext/tokyocabinet-1.4.41/bros/cdbtest.c +219 -0
  142. data/ext/tokyocabinet-1.4.41/bros/cmpsqltctest.c +186 -0
  143. data/ext/tokyocabinet-1.4.41/bros/gdbmtest.c +216 -0
  144. data/ext/tokyocabinet-1.4.41/bros/mapreporter +72 -0
  145. data/ext/tokyocabinet-1.4.41/bros/maptest.cc +677 -0
  146. data/ext/tokyocabinet-1.4.41/bros/ndbmtest.c +204 -0
  147. data/ext/tokyocabinet-1.4.41/bros/qdbmtest.c +375 -0
  148. data/ext/tokyocabinet-1.4.41/bros/reporter +141 -0
  149. data/ext/tokyocabinet-1.4.41/bros/result.xls +0 -0
  150. data/ext/tokyocabinet-1.4.41/bros/sdbmtest.c +204 -0
  151. data/ext/tokyocabinet-1.4.41/bros/sqltest.c +404 -0
  152. data/ext/tokyocabinet-1.4.41/bros/tctest.c +748 -0
  153. data/ext/tokyocabinet-1.4.41/bros/tdbtest.c +205 -0
  154. data/ext/tokyocabinet-1.4.41/configure +7402 -0
  155. data/ext/tokyocabinet-1.4.41/configure.in +362 -0
  156. data/ext/tokyocabinet-1.4.41/doc/benchmark.pdf +0 -0
  157. data/ext/tokyocabinet-1.4.41/doc/common.css +211 -0
  158. data/ext/tokyocabinet-1.4.41/doc/icon16.png +0 -0
  159. data/ext/tokyocabinet-1.4.41/doc/index.html +156 -0
  160. data/ext/tokyocabinet-1.4.41/doc/index.ja.html +197 -0
  161. data/ext/tokyocabinet-1.4.41/doc/logo-ja.png +0 -0
  162. data/ext/tokyocabinet-1.4.41/doc/logo.png +0 -0
  163. data/ext/tokyocabinet-1.4.41/doc/spex-en.html +7145 -0
  164. data/ext/tokyocabinet-1.4.41/doc/spex-ja.html +7476 -0
  165. data/ext/tokyocabinet-1.4.41/doc/tokyoproducts.pdf +0 -0
  166. data/ext/tokyocabinet-1.4.41/doc/tokyoproducts.ppt +0 -0
  167. data/ext/tokyocabinet-1.4.41/example/Makefile +113 -0
  168. data/ext/tokyocabinet-1.4.41/example/tcadbex.c +55 -0
  169. data/ext/tokyocabinet-1.4.41/example/tcbdbex.c +64 -0
  170. data/ext/tokyocabinet-1.4.41/example/tcfdbex.c +60 -0
  171. data/ext/tokyocabinet-1.4.41/example/tchdbex.c +60 -0
  172. data/ext/tokyocabinet-1.4.41/example/tctchat.c +97 -0
  173. data/ext/tokyocabinet-1.4.41/example/tctchat.tmpl +141 -0
  174. data/ext/tokyocabinet-1.4.41/example/tctdbex.c +85 -0
  175. data/ext/tokyocabinet-1.4.41/example/tctsearch.c +95 -0
  176. data/ext/tokyocabinet-1.4.41/example/tctsearch.tmpl +122 -0
  177. data/ext/tokyocabinet-1.4.41/example/tcutilex.c +77 -0
  178. data/ext/tokyocabinet-1.4.41/f.tsv +2 -0
  179. data/ext/tokyocabinet-1.4.41/lab/calccomp +118 -0
  180. data/ext/tokyocabinet-1.4.41/lab/datechange +56 -0
  181. data/ext/tokyocabinet-1.4.41/lab/diffcheck +45 -0
  182. data/ext/tokyocabinet-1.4.41/lab/htmltotsv +102 -0
  183. data/ext/tokyocabinet-1.4.41/lab/magic +19 -0
  184. data/ext/tokyocabinet-1.4.41/lab/printenv.cgi +27 -0
  185. data/ext/tokyocabinet-1.4.41/lab/stepcount +26 -0
  186. data/ext/tokyocabinet-1.4.41/lab/stopwatch +61 -0
  187. data/ext/tokyocabinet-1.4.41/lab/tabcheck +43 -0
  188. data/ext/tokyocabinet-1.4.41/lab/wgettsv +239 -0
  189. data/ext/tokyocabinet-1.4.41/lab/widthcheck +57 -0
  190. data/ext/tokyocabinet-1.4.41/man/htmltoman +104 -0
  191. data/ext/tokyocabinet-1.4.41/man/tcadb.3 +676 -0
  192. data/ext/tokyocabinet-1.4.41/man/tcamgr.1 +97 -0
  193. data/ext/tokyocabinet-1.4.41/man/tcamttest.1 +35 -0
  194. data/ext/tokyocabinet-1.4.41/man/tcatest.1 +55 -0
  195. data/ext/tokyocabinet-1.4.41/man/tcbdb.3 +1355 -0
  196. data/ext/tokyocabinet-1.4.41/man/tcbmgr.1 +125 -0
  197. data/ext/tokyocabinet-1.4.41/man/tcbmttest.1 +81 -0
  198. data/ext/tokyocabinet-1.4.41/man/tcbtest.1 +107 -0
  199. data/ext/tokyocabinet-1.4.41/man/tcfdb.3 +975 -0
  200. data/ext/tokyocabinet-1.4.41/man/tcfmgr.1 +98 -0
  201. data/ext/tokyocabinet-1.4.41/man/tcfmttest.1 +62 -0
  202. data/ext/tokyocabinet-1.4.41/man/tcftest.1 +73 -0
  203. data/ext/tokyocabinet-1.4.41/man/tchdb.3 +898 -0
  204. data/ext/tokyocabinet-1.4.41/man/tchmgr.1 +110 -0
  205. data/ext/tokyocabinet-1.4.41/man/tchmttest.1 +85 -0
  206. data/ext/tokyocabinet-1.4.41/man/tchtest.1 +95 -0
  207. data/ext/tokyocabinet-1.4.41/man/tclist.3 +1 -0
  208. data/ext/tokyocabinet-1.4.41/man/tcmap.3 +1 -0
  209. data/ext/tokyocabinet-1.4.41/man/tcmdb.3 +1 -0
  210. data/ext/tokyocabinet-1.4.41/man/tcmpool.3 +1 -0
  211. data/ext/tokyocabinet-1.4.41/man/tctdb.3 +1110 -0
  212. data/ext/tokyocabinet-1.4.41/man/tctmgr.1 +140 -0
  213. data/ext/tokyocabinet-1.4.41/man/tctmttest.1 +92 -0
  214. data/ext/tokyocabinet-1.4.41/man/tctree.3 +1 -0
  215. data/ext/tokyocabinet-1.4.41/man/tcttest.1 +105 -0
  216. data/ext/tokyocabinet-1.4.41/man/tcucodec.1 +162 -0
  217. data/ext/tokyocabinet-1.4.41/man/tcumttest.1 +41 -0
  218. data/ext/tokyocabinet-1.4.41/man/tcutest.1 +81 -0
  219. data/ext/tokyocabinet-1.4.41/man/tcutil.3 +4518 -0
  220. data/ext/tokyocabinet-1.4.41/man/tcxstr.3 +1 -0
  221. data/ext/tokyocabinet-1.4.41/man/tokyocabinet.3 +132 -0
  222. data/ext/tokyocabinet-1.4.41/md5.c +381 -0
  223. data/ext/tokyocabinet-1.4.41/md5.h +101 -0
  224. data/ext/tokyocabinet-1.4.41/myconf.c +493 -0
  225. data/ext/tokyocabinet-1.4.41/myconf.h +549 -0
  226. data/ext/tokyocabinet-1.4.41/tcadb.c +4339 -0
  227. data/ext/tokyocabinet-1.4.41/tcadb.h +548 -0
  228. data/ext/tokyocabinet-1.4.41/tcamgr.c +1019 -0
  229. data/ext/tokyocabinet-1.4.41/tcamttest.c +542 -0
  230. data/ext/tokyocabinet-1.4.41/tcatest.c +1845 -0
  231. data/ext/tokyocabinet-1.4.41/tcawmgr.c +482 -0
  232. data/ext/tokyocabinet-1.4.41/tcbdb.c +4180 -0
  233. data/ext/tokyocabinet-1.4.41/tcbdb.h +1101 -0
  234. data/ext/tokyocabinet-1.4.41/tcbmgr.c +1012 -0
  235. data/ext/tokyocabinet-1.4.41/tcbmttest.c +1810 -0
  236. data/ext/tokyocabinet-1.4.41/tcbtest.c +2586 -0
  237. data/ext/tokyocabinet-1.4.41/tcfdb.c +2746 -0
  238. data/ext/tokyocabinet-1.4.41/tcfdb.h +858 -0
  239. data/ext/tokyocabinet-1.4.41/tcfmgr.c +786 -0
  240. data/ext/tokyocabinet-1.4.41/tcfmttest.c +1220 -0
  241. data/ext/tokyocabinet-1.4.41/tcftest.c +1695 -0
  242. data/ext/tokyocabinet-1.4.41/tchdb.c +5153 -0
  243. data/ext/tokyocabinet-1.4.41/tchdb.h +871 -0
  244. data/ext/tokyocabinet-1.4.41/tchmgr.c +842 -0
  245. data/ext/tokyocabinet-1.4.41/tchmttest.c +1757 -0
  246. data/ext/tokyocabinet-1.4.41/tchtest.c +2129 -0
  247. data/ext/tokyocabinet-1.4.41/tctdb.c +6199 -0
  248. data/ext/tokyocabinet-1.4.41/tctdb.h +1086 -0
  249. data/ext/tokyocabinet-1.4.41/tctmgr.c +1241 -0
  250. data/ext/tokyocabinet-1.4.41/tctmttest.c +1563 -0
  251. data/ext/tokyocabinet-1.4.41/tcttest.c +2062 -0
  252. data/ext/tokyocabinet-1.4.41/tcucodec.c +1357 -0
  253. data/ext/tokyocabinet-1.4.41/tcumttest.c +578 -0
  254. data/ext/tokyocabinet-1.4.41/tcutest.c +1875 -0
  255. data/ext/tokyocabinet-1.4.41/tcutil.c +10528 -0
  256. data/ext/tokyocabinet-1.4.41/tcutil.h +4184 -0
  257. data/ext/tokyocabinet-1.4.41/tokyocabinet.idl +336 -0
  258. data/ext/tokyocabinet-1.4.41/tokyocabinet.pc.in +14 -0
  259. data/ext/tokyotyrant-1.1.39/COPYING +504 -0
  260. data/ext/tokyotyrant-1.1.39/ChangeLog +578 -0
  261. data/ext/tokyotyrant-1.1.39/Makefile.in +365 -0
  262. data/ext/tokyotyrant-1.1.39/README +38 -0
  263. data/ext/tokyotyrant-1.1.39/THANKS +15 -0
  264. data/ext/tokyotyrant-1.1.39/configure +6979 -0
  265. data/ext/tokyotyrant-1.1.39/configure.in +300 -0
  266. data/ext/tokyotyrant-1.1.39/doc/common.css +211 -0
  267. data/ext/tokyotyrant-1.1.39/doc/index.html +79 -0
  268. data/ext/tokyotyrant-1.1.39/doc/spex.html +2264 -0
  269. data/ext/tokyotyrant-1.1.39/example/Makefile +68 -0
  270. data/ext/tokyotyrant-1.1.39/example/httptest.pl +88 -0
  271. data/ext/tokyotyrant-1.1.39/example/mcftest.pl +39 -0
  272. data/ext/tokyotyrant-1.1.39/example/mctest.pl +43 -0
  273. data/ext/tokyotyrant-1.1.39/example/tcrdbex +0 -0
  274. data/ext/tokyotyrant-1.1.39/example/tcrdbex.c +49 -0
  275. data/ext/tokyotyrant-1.1.39/example/tcrdbex.o +0 -0
  276. data/ext/tokyotyrant-1.1.39/example/tcrdbtblex +0 -0
  277. data/ext/tokyotyrant-1.1.39/example/tcrdbtblex.c +79 -0
  278. data/ext/tokyotyrant-1.1.39/example/tcrdbtblex.o +0 -0
  279. data/ext/tokyotyrant-1.1.39/ext/mapreduce.lua +57 -0
  280. data/ext/tokyotyrant-1.1.39/ext/queue.lua +55 -0
  281. data/ext/tokyotyrant-1.1.39/ext/senatus.lua +532 -0
  282. data/ext/tokyotyrant-1.1.39/ext/usherette.lua +438 -0
  283. data/ext/tokyotyrant-1.1.39/lab/datechange +56 -0
  284. data/ext/tokyotyrant-1.1.39/lab/diffcheck +45 -0
  285. data/ext/tokyotyrant-1.1.39/lab/fibonacci.lua +20 -0
  286. data/ext/tokyotyrant-1.1.39/lab/footprint.lua +67 -0
  287. data/ext/tokyotyrant-1.1.39/lab/highlow.lua +88 -0
  288. data/ext/tokyotyrant-1.1.39/lab/killdualmaster +12 -0
  289. data/ext/tokyotyrant-1.1.39/lab/rundualmaster +38 -0
  290. data/ext/tokyotyrant-1.1.39/lab/stepcount +26 -0
  291. data/ext/tokyotyrant-1.1.39/lab/tabcheck +43 -0
  292. data/ext/tokyotyrant-1.1.39/lab/ushrtregister.pl +55 -0
  293. data/ext/tokyotyrant-1.1.39/lab/widthcheck +57 -0
  294. data/ext/tokyotyrant-1.1.39/man/htmltoman +100 -0
  295. data/ext/tokyotyrant-1.1.39/man/tcrdb.3 +1309 -0
  296. data/ext/tokyotyrant-1.1.39/man/tcrmgr.1 +164 -0
  297. data/ext/tokyotyrant-1.1.39/man/tcrmttest.1 +55 -0
  298. data/ext/tokyotyrant-1.1.39/man/tcrtest.1 +89 -0
  299. data/ext/tokyotyrant-1.1.39/man/tculog.3 +15 -0
  300. data/ext/tokyotyrant-1.1.39/man/ttservctl.8 +37 -0
  301. data/ext/tokyotyrant-1.1.39/man/ttserver.1 +84 -0
  302. data/ext/tokyotyrant-1.1.39/man/ttulmgr.1 +40 -0
  303. data/ext/tokyotyrant-1.1.39/man/ttultest.1 +16 -0
  304. data/ext/tokyotyrant-1.1.39/man/ttutil.3 +14 -0
  305. data/ext/tokyotyrant-1.1.39/myconf.c +169 -0
  306. data/ext/tokyotyrant-1.1.39/myconf.h +408 -0
  307. data/ext/tokyotyrant-1.1.39/scrext.c +2394 -0
  308. data/ext/tokyotyrant-1.1.39/scrext.h +96 -0
  309. data/ext/tokyotyrant-1.1.39/tcrdb.c +2637 -0
  310. data/ext/tokyotyrant-1.1.39/tcrdb.h +801 -0
  311. data/ext/tokyotyrant-1.1.39/tcrmgr.c +1559 -0
  312. data/ext/tokyotyrant-1.1.39/tcrmttest.c +915 -0
  313. data/ext/tokyotyrant-1.1.39/tcrtest.c +1542 -0
  314. data/ext/tokyotyrant-1.1.39/tculog.c +1211 -0
  315. data/ext/tokyotyrant-1.1.39/tculog.h +392 -0
  316. data/ext/tokyotyrant-1.1.39/tokyotyrant.idl +143 -0
  317. data/ext/tokyotyrant-1.1.39/tokyotyrant.pc.in +14 -0
  318. data/ext/tokyotyrant-1.1.39/ttservctl +163 -0
  319. data/ext/tokyotyrant-1.1.39/ttserver.c +3583 -0
  320. data/ext/tokyotyrant-1.1.39/ttskeldir.c +141 -0
  321. data/ext/tokyotyrant-1.1.39/ttskelmock.c +64 -0
  322. data/ext/tokyotyrant-1.1.39/ttskelnull.c +79 -0
  323. data/ext/tokyotyrant-1.1.39/ttskelproxy.c +74 -0
  324. data/ext/tokyotyrant-1.1.39/ttulmgr.c +266 -0
  325. data/ext/tokyotyrant-1.1.39/ttultest.c +371 -0
  326. data/ext/tokyotyrant-1.1.39/ttutil.c +1510 -0
  327. data/ext/tokyotyrant-1.1.39/ttutil.h +494 -0
  328. data/lib/tokyo_tyrant/balancer.rb +189 -0
  329. data/spec/ext.lua +4 -0
  330. data/spec/plu_db.rb +538 -0
  331. data/spec/spec.rb +1 -0
  332. data/spec/spec_base.rb +17 -0
  333. data/spec/start_tyrants.sh +36 -0
  334. data/spec/stop_tyrants.sh +9 -0
  335. data/spec/tokyo_tyrant_balancer_db_spec.rb +160 -0
  336. data/spec/tokyo_tyrant_balancer_table_spec.rb +177 -0
  337. data/spec/tokyo_tyrant_query_spec.rb +159 -0
  338. data/spec/tokyo_tyrant_spec.rb +254 -0
  339. data/spec/tokyo_tyrant_table_spec.rb +301 -0
  340. metadata +402 -0
@@ -0,0 +1,362 @@
1
+ # Source of configuration for Tokyo Cabinet
2
+
3
+
4
+
5
+ #================================================================
6
+ # Generic Settings
7
+ #================================================================
8
+
9
+ # Package name
10
+ AC_INIT(tokyocabinet, 1.4.41)
11
+
12
+ # Package information
13
+ MYLIBVER=9
14
+ MYLIBREV=4
15
+ MYFORMATVER="1.0"
16
+
17
+ # Targets
18
+ MYHEADERFILES="tcutil.h tchdb.h tcbdb.h tcfdb.h tctdb.h tcadb.h"
19
+ MYLIBRARYFILES="libtokyocabinet.a"
20
+ MYLIBOBJFILES="tcutil.o tchdb.o tcbdb.o tcfdb.o tctdb.o tcadb.o myconf.o md5.o"
21
+ MYCOMMANDFILES="tcutest tcumttest tcucodec tchtest tchmttest tchmgr"
22
+ MYCOMMANDFILES="$MYCOMMANDFILES tcbtest tcbmttest tcbmgr tcftest tcfmttest tcfmgr"
23
+ MYCOMMANDFILES="$MYCOMMANDFILES tcttest tctmttest tctmgr tcatest tcamttest tcamgr"
24
+ MYCGIFILES="tcawmgr.cgi"
25
+ MYMAN1FILES="tcutest.1 tcumttest.1 tcucodec.1 tchtest.1 tchmttest.1 tchmgr.1"
26
+ MYMAN1FILES="$MYMAN1FILES tcbtest.1 tcbmttest.1 tcbmgr.1 tcftest.1 tcfmttest.1 tcfmgr.1"
27
+ MYMAN1FILES="$MYMAN1FILES tcttest.1 tctmttest.1 tctmgr.1 tcatest.1 tcamttest.1 tcamgr.1"
28
+ MYMAN3FILES="tokyocabinet.3 tcutil.3 tcxstr.3 tclist.3 tcmap.3 tctree.3 tcmdb.3 tcmpool.3"
29
+ MYMAN3FILES="$MYMAN3FILES tchdb.3 tcbdb.3 tcfdb.3 tctdb.3 tcadb.3"
30
+ MYDOCUMENTFILES="COPYING ChangeLog THANKS doc"
31
+ MYPCFILES="tokyocabinet.pc"
32
+
33
+ # Building flags
34
+ MYCFLAGS="-std=c99 -Wall -fPIC -fsigned-char -O2"
35
+ MYCPPFLAGS="-I. -I\$(INCLUDEDIR) -I$HOME/include -I/usr/local/include"
36
+ MYCPPFLAGS="$MYCPPFLAGS -DNDEBUG -D_GNU_SOURCE=1 -D_REENTRANT -D__EXTENSIONS__"
37
+ MYLDFLAGS="-L. -L\$(LIBDIR) -L$HOME/lib -L/usr/local/lib"
38
+ MYCMDLDFLAGS=""
39
+ MYRUNPATH="\$(LIBDIR)"
40
+ MYLDLIBPATHENV="LD_LIBRARY_PATH"
41
+ MYPOSTCMD="true"
42
+
43
+ # Building paths
44
+ PATH="$PATH:$HOME/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin"
45
+ PATH="$PATH:/opt/SUNWspro/bin:/usr/ccs/bin:/usr/xpg4/bin:/usr/xpg6/bin:/usr/ucb"
46
+ CPATH="$HOME/include:/usr/local/include:$CPATH"
47
+ LIBRARY_PATH="$HOME/lib:/usr/local/lib:$LIBRARY_PATH"
48
+ LD_LIBRARY_PATH="$HOME/lib:/usr/local/lib:$LD_LIBRARY_PATH"
49
+ PKG_CONFIG_PATH="$HOME/lib/pkgconfig:/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH"
50
+ export PATH CPATH LIBRARY_PATH LD_LIBRARY_PATH PKG_CONFIG_PATH
51
+
52
+
53
+
54
+ #================================================================
55
+ # Options
56
+ #================================================================
57
+
58
+
59
+ # Internal variables
60
+ enables=""
61
+
62
+ # Debug mode
63
+ AC_ARG_ENABLE(debug,
64
+ AC_HELP_STRING([--enable-debug], [build for debugging]))
65
+ if test "$enable_debug" = "yes"
66
+ then
67
+ MYCFLAGS="-std=c99 -Wall -fPIC -pedantic -fsigned-char -g -O0"
68
+ MYCPPFLAGS="$MYCPPFLAGS -UNDEBUG"
69
+ MYCMDLDFLAGS="$MYCMDLDFLAGS -static"
70
+ enables="$enables (debug)"
71
+ fi
72
+
73
+ # Developping mode
74
+ AC_ARG_ENABLE(devel,
75
+ AC_HELP_STRING([--enable-devel], [build for development]))
76
+ if test "$enable_devel" = "yes"
77
+ then
78
+ MYCFLAGS="-std=c99 -Wall -fPIC -pedantic -fsigned-char -g -O2 -pipe"
79
+ MYCPPFLAGS="$MYCPPFLAGS -UNDEBUG"
80
+ enables="$enables (devel)"
81
+ fi
82
+
83
+ # Profiling mode
84
+ AC_ARG_ENABLE(profile,
85
+ AC_HELP_STRING([--enable-profile], [build for profiling]))
86
+ if test "$enable_profile" = "yes"
87
+ then
88
+ MYCFLAGS="-std=c99 -Wall -fPIC -pedantic -fsigned-char -g -pg -O2 -pipe"
89
+ enables="$enables (profile)"
90
+ fi
91
+
92
+ # Static mode
93
+ AC_ARG_ENABLE(static,
94
+ AC_HELP_STRING([--enable-static], [build by static linking]))
95
+ if test "$enable_static" = "yes"
96
+ then
97
+ MYCMDLDFLAGS="$MYCMDLDFLAGS -static"
98
+ enables="$enables (static)"
99
+ fi
100
+
101
+ # Fastest mode
102
+ AC_ARG_ENABLE(fastest,
103
+ AC_HELP_STRING([--enable-fastest], [build for fastest run]))
104
+ if test "$enable_fastest" = "yes"
105
+ then
106
+ MYLIBOBJFILES="tokyocabinet_all.o"
107
+ MYCFLAGS="-std=c99 -Wall -fPIC -pedantic -fsigned-char -O3"
108
+ MYCFLAGS="$MYCFLAGS -fomit-frame-pointer -fforce-addr -minline-all-stringops"
109
+ MYCPPFLAGS="$MYCPPFLAGS -D_MYFASTEST"
110
+ enables="$enables (fastest)"
111
+ fi
112
+
113
+ # 64-bit offset mode
114
+ AC_ARG_ENABLE(off64,
115
+ AC_HELP_STRING([--enable-off64], [build with 64-bit file offset on 32-bit system]))
116
+ if test "$enable_off64" = "yes"
117
+ then
118
+ MYCPPFLAGS="$MYCPPFLAGS -D_FILE_OFFSET_BITS=64"
119
+ enables="$enables (off64)"
120
+ fi
121
+
122
+ # Swapping byte-orders mode
123
+ AC_ARG_ENABLE(swab,
124
+ AC_HELP_STRING([--enable-swab], [build for swapping byte-orders]))
125
+ if test "$enable_swab" = "yes"
126
+ then
127
+ MYCPPFLAGS="$MYCPPFLAGS -D_MYSWAB"
128
+ enables="$enables (swab)"
129
+ fi
130
+
131
+ # Micro yield mode
132
+ AC_ARG_ENABLE(uyield,
133
+ AC_HELP_STRING([--enable-uyield], [build for detecting race conditions]))
134
+ if test "$enable_uyield" = "yes"
135
+ then
136
+ MYCPPFLAGS="$MYCPPFLAGS -D_MYMICROYIELD"
137
+ enables="$enables (uyield)"
138
+ fi
139
+
140
+ # Disable the unified buffer cache assumption
141
+ AC_ARG_ENABLE(ubc,
142
+ AC_HELP_STRING([--disable-ubc], [build without the unified buffer cache assumption]))
143
+ if test "$enable_ubc" = "no"
144
+ then
145
+ MYCPPFLAGS="$MYCPPFLAGS -D_MYNOUBC"
146
+ enables="$enables (no-ubc)"
147
+ fi
148
+
149
+ # Disable ZLIB compression
150
+ AC_ARG_ENABLE(zlib,
151
+ AC_HELP_STRING([--disable-zlib], [build without ZLIB compression]))
152
+ if test "$enable_zlib" = "no"
153
+ then
154
+ MYCPPFLAGS="$MYCPPFLAGS -D_MYNOZLIB"
155
+ enables="$enables (no-zlib)"
156
+ fi
157
+
158
+ # Disable BZIP2 compression
159
+ AC_ARG_ENABLE(bzip,
160
+ AC_HELP_STRING([--disable-bzip], [build without BZIP2 compression]))
161
+ if test "$enable_bzip" = "no"
162
+ then
163
+ MYCPPFLAGS="$MYCPPFLAGS -D_MYNOBZIP"
164
+ enables="$enables (no-bzip)"
165
+ fi
166
+
167
+ # Disable POSIX thread
168
+ AC_ARG_ENABLE(pthread,
169
+ AC_HELP_STRING([--disable-pthread], [build without POSIX thread support]))
170
+ if test "$enable_pthread" = "no"
171
+ then
172
+ MYCPPFLAGS="$MYCPPFLAGS -D_MYNOPTHREAD"
173
+ enables="$enables (no-pthread)"
174
+ fi
175
+
176
+ # Disable shared object
177
+ AC_ARG_ENABLE(shared,
178
+ AC_HELP_STRING([--disable-shared], [avoid to build shared libraries]))
179
+ if test "$enable_shared" = "no"
180
+ then
181
+ enables="$enables (no-shared)"
182
+ fi
183
+
184
+ # Enable custom codec functions of LZMA
185
+ AC_ARG_ENABLE(exlzma,
186
+ AC_HELP_STRING([--disable-exlzma], [build with the custom codec of LZMA]))
187
+ if test "$enable_exlzma" = "yes"
188
+ then
189
+ MYCPPFLAGS="$MYCPPFLAGS -D_MYEXLZMA"
190
+ enables="$enables (exlzma)"
191
+ fi
192
+
193
+ # Enable custom codec functions of LZO
194
+ AC_ARG_ENABLE(exlzo,
195
+ AC_HELP_STRING([--disable-exlzo], [build with the custom codec of LZO]))
196
+ if test "$enable_exlzo" = "yes"
197
+ then
198
+ MYCPPFLAGS="$MYCPPFLAGS -D_MYEXLZO"
199
+ enables="$enables (exlzo)"
200
+ fi
201
+
202
+ # Specify the installation path of ZLIB
203
+ AC_ARG_WITH(zlib,
204
+ AC_HELP_STRING([--with-zlib=DIR], [search DIR/include and DIR/lib for ZLIB]))
205
+ if test -n "$with_zlib"
206
+ then
207
+ MYCPPFLAGS="$MYCPPFLAGS -I$with_zlib/include"
208
+ MYLDFLAGS="$MYLDFLAGS -L$with_zlib/lib"
209
+ MYRUNPATH="$MYRUNPATH:$with_zlib/lib"
210
+ CPATH="$CPATH:$with_zlib/include"
211
+ LIBRARY_PATH="$LIBRARY_PATH:$with_zlib/lib"
212
+ LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$with_zlib/lib"
213
+ fi
214
+
215
+ # Specify the installation path of BZIP2
216
+ AC_ARG_WITH(bzip,
217
+ AC_HELP_STRING([--with-bzip=DIR], [search DIR/include and DIR/lib for BZIP2]))
218
+ if test -n "$with_bzip"
219
+ then
220
+ MYCPPFLAGS="$MYCPPFLAGS -I$with_bzip/include"
221
+ MYLDFLAGS="$MYLDFLAGS -L$with_bzip/lib"
222
+ MYRUNPATH="$MYRUNPATH:$with_bzip/lib"
223
+ CPATH="$CPATH:$with_bzip/include"
224
+ LIBRARY_PATH="$LIBRARY_PATH:$with_bzip/lib"
225
+ LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$with_bzip/lib"
226
+ fi
227
+
228
+ # Messages
229
+ printf '#================================================================\n'
230
+ printf '# Configuring Tokyo Cabinet version %s%s.\n' "$PACKAGE_VERSION" "$enables"
231
+ printf '#================================================================\n'
232
+
233
+
234
+
235
+ #================================================================
236
+ # Checking Commands and Libraries
237
+ #================================================================
238
+
239
+ # C compiler
240
+ AC_PROG_CC
241
+
242
+ # Reset variables
243
+ if test "$GCC" != "yes"
244
+ then
245
+ AC_MSG_WARN([another compiler except for GCC was detected])
246
+ MYCFLAGS=""
247
+ fi
248
+ test -n "$CFLAGS" && MYCFLAGS="$CFLAGS $MYCFLAGS"
249
+ test -n "$CPPFLAGS" && MYCPPFLAGS="$CPPFLAGS $MYCPPFLAGS"
250
+ test -n "$LDFLAGS" && MYLDFLAGS="$LDFLAGS $MYLDFLAGS"
251
+
252
+ # Byte order
253
+ AC_C_BIGENDIAN(MYCPPFLAGS="$MYCPPFLAGS -D_MYBIGEND")
254
+
255
+ # Underlying libraries
256
+ AC_CHECK_LIB(c, main)
257
+ AC_CHECK_LIB(m, main)
258
+ if test "$enable_pthread" != "no"
259
+ then
260
+ AC_CHECK_LIB(pthread, main)
261
+ AC_CHECK_LIB(rt, main)
262
+ fi
263
+ if test "$enable_zlib" != "no"
264
+ then
265
+ AC_CHECK_LIB(z, main)
266
+ fi
267
+ if test "$enable_bzip" != "no"
268
+ then
269
+ AC_CHECK_LIB(bz2, main)
270
+ fi
271
+ if test "$enable_exlzma" = "yes"
272
+ then
273
+ AC_CHECK_LIB(lzma, main)
274
+ fi
275
+ if test "$enable_exlzo" = "yes"
276
+ then
277
+ AC_CHECK_LIB(lzo2, main)
278
+ fi
279
+ AC_CHECK_LIB(tokyocabinet, main, AC_MSG_WARN([old version of Tokyo Cabinet was detected]))
280
+
281
+ # Necessary headers
282
+ AC_CHECK_HEADER(stdlib.h, true, AC_MSG_ERROR([stdlib.h is required]))
283
+ AC_CHECK_HEADER(stdint.h, true, AC_MSG_ERROR([stdint.h is required]))
284
+ AC_CHECK_HEADER(unistd.h, true, AC_MSG_ERROR([unistd.h is required]))
285
+ AC_CHECK_HEADER(dirent.h, true, AC_MSG_ERROR([dirent.h is required]))
286
+ AC_CHECK_HEADER(regex.h, true, AC_MSG_ERROR([regex.h is required]))
287
+ AC_CHECK_HEADER(glob.h, true, AC_MSG_ERROR([glob.h is required]))
288
+ if test "$enable_pthread" != "no"
289
+ then
290
+ AC_CHECK_HEADER(pthread.h, true, AC_MSG_ERROR([pthread.h is required]))
291
+ fi
292
+ if test "$enable_zlib" != "no"
293
+ then
294
+ AC_CHECK_HEADER(zlib.h, true, AC_MSG_ERROR([zlib.h is required]))
295
+ fi
296
+ if test "$enable_bzip" != "no"
297
+ then
298
+ AC_CHECK_HEADER(bzlib.h, true, AC_MSG_ERROR([bzlib.h is required]))
299
+ fi
300
+ if test "$enable_exlzma" = "yes"
301
+ then
302
+ AC_CHECK_HEADER(lzmalib.h, true, AC_MSG_ERROR([lzmalib.h is required]))
303
+ fi
304
+ if test "$enable_exlzo" = "yes"
305
+ then
306
+ AC_CHECK_HEADER(lzo/lzo1x.h, true, AC_MSG_ERROR([lzo/lzo1x.h is required]))
307
+ fi
308
+
309
+ # Shared libraries
310
+ if test "$enable_shared" != "no" && test "$enable_profile" != "yes"
311
+ then
312
+ if uname | grep Darwin >/dev/null
313
+ then
314
+ MYLIBRARYFILES="$MYLIBRARYFILES libtokyocabinet.$MYLIBVER.$MYLIBREV.0.dylib"
315
+ MYLIBRARYFILES="$MYLIBRARYFILES libtokyocabinet.$MYLIBVER.dylib"
316
+ MYLIBRARYFILES="$MYLIBRARYFILES libtokyocabinet.dylib"
317
+ MYLDLIBPATHENV="DYLD_LIBRARY_PATH"
318
+ else
319
+ MYLIBRARYFILES="$MYLIBRARYFILES libtokyocabinet.so.$MYLIBVER.$MYLIBREV.0"
320
+ MYLIBRARYFILES="$MYLIBRARYFILES libtokyocabinet.so.$MYLIBVER"
321
+ MYLIBRARYFILES="$MYLIBRARYFILES libtokyocabinet.so"
322
+ fi
323
+ fi
324
+
325
+
326
+
327
+ #================================================================
328
+ # Generic Settings
329
+ #================================================================
330
+
331
+ # Export variables
332
+ AC_SUBST(MYLIBVER)
333
+ AC_SUBST(MYLIBREV)
334
+ AC_SUBST(MYFORMATVER)
335
+ AC_SUBST(MYHEADERFILES)
336
+ AC_SUBST(MYLIBRARYFILES)
337
+ AC_SUBST(MYLIBOBJFILES)
338
+ AC_SUBST(MYCOMMANDFILES)
339
+ AC_SUBST(MYCGIFILES)
340
+ AC_SUBST(MYMAN1FILES)
341
+ AC_SUBST(MYMAN3FILES)
342
+ AC_SUBST(MYDOCUMENTFILES)
343
+ AC_SUBST(MYPCFILES)
344
+ AC_SUBST(MYCFLAGS)
345
+ AC_SUBST(MYCPPFLAGS)
346
+ AC_SUBST(MYLDFLAGS)
347
+ AC_SUBST(MYCMDLDFLAGS)
348
+ AC_SUBST(MYRUNPATH)
349
+ AC_SUBST(MYLDLIBPATHENV)
350
+ AC_SUBST(MYPOSTCMD)
351
+
352
+ # Targets
353
+ AC_OUTPUT(Makefile tokyocabinet.pc)
354
+
355
+ # Messages
356
+ printf '#================================================================\n'
357
+ printf '# Ready to make.\n'
358
+ printf '#================================================================\n'
359
+
360
+
361
+
362
+ # END OF FILE
@@ -0,0 +1,211 @@
1
+ /*
2
+ * Style Sheets commonly used by documents of Tokyo Cabinet
3
+ */
4
+
5
+ html {
6
+ margin: 0em 0em;
7
+ padding: 0em 0em;
8
+ background: #eeeeee none;
9
+ }
10
+ body {
11
+ margin: 1em 2em;
12
+ padding: 0em 0em;
13
+ background: #eeeeee none;
14
+ color: #111111;
15
+ }
16
+
17
+ hr {
18
+ margin: 2.5em 0em 1.5em 0em;
19
+ height: 1px;
20
+ border: none;
21
+ background: #999999 none;
22
+ color: #999999;
23
+ }
24
+
25
+ h1,h2,h3,h4,h5,h6 {
26
+ font-weight: bold;
27
+ }
28
+ h1 {
29
+ margin: 1.0em 0em 1.3em 0em;
30
+ padding: 0em 0em;
31
+ font-size: 180%;
32
+ color: #000000;
33
+ }
34
+ h2 {
35
+ margin: 1.0em 0em 1.0em 0.2em;
36
+ padding: 0.5em 0.5em;
37
+ width: 60%;
38
+ border-left: solid 0.6em #445555;
39
+ border-bottom: solid 1px #bbbbbb;
40
+ font-size: 150%;
41
+ color: #000011;
42
+ }
43
+ h3 {
44
+ margin: 0.8em 0em 0.5em 0.2em;
45
+ padding: 0em 0em;
46
+ font-size: 120%;
47
+ color: #001111;
48
+ }
49
+
50
+ p {
51
+ margin: 0.8em 0em;
52
+ line-height: 140%;
53
+ text-indent: 0.8em;
54
+ }
55
+
56
+ div,pre,table {
57
+ margin: 0.8em 1.5em;
58
+ }
59
+
60
+ div.note,div.navi {
61
+ text-align: right;
62
+ margin: 0em 0.5em;
63
+ color: #333333;
64
+ }
65
+ span.void {
66
+ color: #888888;
67
+ }
68
+
69
+ div.logo {
70
+ text-align: center;
71
+ margin: 3em 0em;
72
+ }
73
+ div.logo img {
74
+ border: inset 2px #ccccdd;
75
+ }
76
+ div.illust {
77
+ margin: 1em 0em;
78
+ text-align: center;
79
+ }
80
+ div.illust img {
81
+ border: solid 1px #ccccdd;
82
+ }
83
+
84
+ pre {
85
+ padding: 0.2em;
86
+ background-color: #ddddee;
87
+ border: 1px solid #bbbbcc;
88
+ font-size: 95%;
89
+ }
90
+
91
+ li,dt,dd {
92
+ line-height: 130%;
93
+ }
94
+ dt {
95
+ margin-left: 1.2em;
96
+ }
97
+ dd {
98
+ margin-left: 2.5em;
99
+ text-indent: -0.3em;
100
+ }
101
+ dl.api {
102
+ margin-top: -0.2em;
103
+ }
104
+ dl.api dd {
105
+ margin-left: 3.0em;
106
+ font-size: 95%;
107
+ color: #333333;
108
+ }
109
+ ul {
110
+ margin: 0.5em 2.0em;
111
+ padding: 0em;
112
+ }
113
+ ul.options {
114
+ list-style-type: none;
115
+ margin: 0.5em 1.5em;
116
+ font-size: 95%;
117
+ color: #333333;
118
+ }
119
+ ul ul {
120
+ margin-top: 0em;
121
+ margin-bottom: 0em;
122
+ }
123
+
124
+ table {
125
+ border-collapse: collapse;
126
+ }
127
+ td {
128
+ text-align: left;
129
+ vertical-align: top;
130
+ padding: 0.1em 0.5em;
131
+ border: solid 1px #aaaabb;
132
+ font-size: 95%;
133
+ }
134
+ td.label {
135
+ border: none;
136
+ font-size: 80%;
137
+ color: #333333;
138
+ }
139
+ td.number {
140
+ text-align: right;
141
+ }
142
+
143
+ a {
144
+ color: #0022aa;
145
+ text-decoration: none;
146
+ }
147
+ a:hover,a:focus {
148
+ color: #0033ee;
149
+ text-decoration: underline;
150
+ }
151
+ code,kbd {
152
+ font-style: normal;
153
+ font-weight: bold;
154
+ font-size: 100%;
155
+ color: #001111;
156
+ }
157
+ var {
158
+ padding: 0em 0.15em 0em 0em;
159
+ font-style: italic;
160
+ color: #001122;
161
+ }
162
+
163
+ @media print {
164
+ html,body {
165
+ margin: 0em 0em;
166
+ background-color: #ffffff;
167
+ color: #000000;
168
+ }
169
+ h1 {
170
+ padding: 8em 0em 0.5em 0em;
171
+ text-align: center;
172
+ }
173
+ h2 {
174
+ page-break-before: always;
175
+ }
176
+ div.note {
177
+ text-align: center;
178
+ }
179
+ div.navi,div.logo {
180
+ display: none;
181
+ }
182
+ hr {
183
+ display: none;
184
+ }
185
+ pre {
186
+ margin: 0.8em 0.8em;
187
+ background-color: #ffffff;
188
+ border: 1px solid #aaaaaa;
189
+ font-size: 90%;
190
+ }
191
+ a,code,kbd {
192
+ color: #000000;
193
+ text-decoration: none;
194
+ }
195
+ h1,h2,h3 {
196
+ font-family: sans-serif;
197
+ }
198
+ p,div,li,dt,dd {
199
+ font-family: serif;
200
+ }
201
+ pre,code,kbd {
202
+ font-family: monospace;
203
+ }
204
+ dd {
205
+ font-size: 90%;
206
+ }
207
+ }
208
+
209
+
210
+
211
+ /* END OF FILE */