webruby 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1364) hide show
  1. checksums.yaml +7 -0
  2. data/bin/webruby +36 -0
  3. data/driver/driver.c +50 -0
  4. data/driver/main.c +40 -0
  5. data/lib/webruby/app.rb +13 -0
  6. data/lib/webruby/config.rb +61 -0
  7. data/lib/webruby/environment.rb +32 -0
  8. data/lib/webruby/rake/files.rake +66 -0
  9. data/lib/webruby/rake/general.rake +22 -0
  10. data/lib/webruby/rake/mruby.rake +44 -0
  11. data/lib/webruby/utility.rb +132 -0
  12. data/lib/webruby.rb +10 -0
  13. data/modules/emscripten/AUTHORS +89 -0
  14. data/modules/emscripten/LICENSE +68 -0
  15. data/modules/emscripten/README.markdown +14 -0
  16. data/modules/emscripten/cmake/Platform/Emscripten.cmake +61 -0
  17. data/modules/emscripten/cmake/Platform/Emscripten_unix.cmake +24 -0
  18. data/modules/emscripten/em++ +12 -0
  19. data/modules/emscripten/em++.bat +2 -0
  20. data/modules/emscripten/em-config +24 -0
  21. data/modules/emscripten/em-config.bat +2 -0
  22. data/modules/emscripten/emar +24 -0
  23. data/modules/emscripten/emar.bat +2 -0
  24. data/modules/emscripten/emcc +1744 -0
  25. data/modules/emscripten/emcc.bat +2 -0
  26. data/modules/emscripten/emcc.py +5 -0
  27. data/modules/emscripten/emconfigure +27 -0
  28. data/modules/emscripten/emconfigure.bat +2 -0
  29. data/modules/emscripten/emlibtool +11 -0
  30. data/modules/emscripten/emlibtool.bat +2 -0
  31. data/modules/emscripten/emlink.py +293 -0
  32. data/modules/emscripten/emmake +29 -0
  33. data/modules/emscripten/emmake.bat +2 -0
  34. data/modules/emscripten/emranlib +9 -0
  35. data/modules/emscripten/emranlib.bat +2 -0
  36. data/modules/emscripten/emscons +20 -0
  37. data/modules/emscripten/emscripten.py +835 -0
  38. data/modules/emscripten/patches/README +4 -0
  39. data/modules/emscripten/patches/series +2 -0
  40. data/modules/emscripten/scons-tools/closure.py +28 -0
  41. data/modules/emscripten/scons-tools/emscripten.py +359 -0
  42. data/modules/emscripten/scons-tools/llvm.py +33 -0
  43. data/modules/emscripten/src/analyzer.js +1695 -0
  44. data/modules/emscripten/src/compiler.html +48 -0
  45. data/modules/emscripten/src/compiler.js +298 -0
  46. data/modules/emscripten/src/corruptionCheck.js +98 -0
  47. data/modules/emscripten/src/determinstic.js +20 -0
  48. data/modules/emscripten/src/embind/embind.js +1677 -0
  49. data/modules/emscripten/src/embind/emval.js +283 -0
  50. data/modules/emscripten/src/experimental/allow_loopvars_from_memsetcpy_inasm.diff +97 -0
  51. data/modules/emscripten/src/experimental/batching.diff +44 -0
  52. data/modules/emscripten/src/experimental/functypeopt.diff +113 -0
  53. data/modules/emscripten/src/experimental/multiple_heaps.diff +175 -0
  54. data/modules/emscripten/src/experimental/noncallgraphprofiling.diff +197 -0
  55. data/modules/emscripten/src/experimental/optimize_memcpy_for_ta1.diff +124 -0
  56. data/modules/emscripten/src/experimental/remove__label__s.diff +140 -0
  57. data/modules/emscripten/src/experimental/renderer_cache_hash.diff +99 -0
  58. data/modules/emscripten/src/experimental/sdl_key_forwarding.diff +57 -0
  59. data/modules/emscripten/src/experimental/simplifyGeneratedFunctionsDetection.diff +336 -0
  60. data/modules/emscripten/src/experimental/stringCache.diff +147 -0
  61. data/modules/emscripten/src/fastLong.js +299 -0
  62. data/modules/emscripten/src/framework.js +257 -0
  63. data/modules/emscripten/src/gl-matrix.js +1952 -0
  64. data/modules/emscripten/src/headless.js +904 -0
  65. data/modules/emscripten/src/intertyper.js +1050 -0
  66. data/modules/emscripten/src/jsifier.js +1827 -0
  67. data/modules/emscripten/src/library.js +8270 -0
  68. data/modules/emscripten/src/library_browser.js +911 -0
  69. data/modules/emscripten/src/library_egl.js +491 -0
  70. data/modules/emscripten/src/library_gc.js +236 -0
  71. data/modules/emscripten/src/library_gl.js +4452 -0
  72. data/modules/emscripten/src/library_glfw.js +576 -0
  73. data/modules/emscripten/src/library_glut.js +449 -0
  74. data/modules/emscripten/src/library_jansson.js +320 -0
  75. data/modules/emscripten/src/library_openal.js +602 -0
  76. data/modules/emscripten/src/library_sdl.js +2024 -0
  77. data/modules/emscripten/src/library_strtok_r.c +97 -0
  78. data/modules/emscripten/src/library_xlib.js +23 -0
  79. data/modules/emscripten/src/long.js +1609 -0
  80. data/modules/emscripten/src/modules.js +491 -0
  81. data/modules/emscripten/src/parseTools.js +2474 -0
  82. data/modules/emscripten/src/postamble.js +170 -0
  83. data/modules/emscripten/src/postamble_sharedlib.js +16 -0
  84. data/modules/emscripten/src/preamble.js +914 -0
  85. data/modules/emscripten/src/preamble_sharedlib.js +25 -0
  86. data/modules/emscripten/src/relooper/README.markdown +14 -0
  87. data/modules/emscripten/src/relooper/Relooper.cpp +1236 -0
  88. data/modules/emscripten/src/relooper/Relooper.h +250 -0
  89. data/modules/emscripten/src/relooper/doit.sh +70 -0
  90. data/modules/emscripten/src/relooper/emscripten/glue.js +57 -0
  91. data/modules/emscripten/src/relooper/emscripten/test.js +44 -0
  92. data/modules/emscripten/src/relooper/fuzzer.py +116 -0
  93. data/modules/emscripten/src/relooper/ministring.h +35 -0
  94. data/modules/emscripten/src/relooper/paper.pdf +0 -0
  95. data/modules/emscripten/src/relooper/test.cpp +262 -0
  96. data/modules/emscripten/src/relooper/test.txt +155 -0
  97. data/modules/emscripten/src/relooper/test2.c +44 -0
  98. data/modules/emscripten/src/relooper/test2.txt +12 -0
  99. data/modules/emscripten/src/relooper/test3.c +42 -0
  100. data/modules/emscripten/src/relooper/test3.txt +27 -0
  101. data/modules/emscripten/src/relooper/test4.cpp +40 -0
  102. data/modules/emscripten/src/relooper/test4.txt +23 -0
  103. data/modules/emscripten/src/relooper/test5.cpp +40 -0
  104. data/modules/emscripten/src/relooper/test5.txt +32 -0
  105. data/modules/emscripten/src/relooper/test6.cpp +31 -0
  106. data/modules/emscripten/src/relooper/test6.txt +12 -0
  107. data/modules/emscripten/src/relooper/test_dead.cpp +28 -0
  108. data/modules/emscripten/src/relooper/test_dead.txt +9 -0
  109. data/modules/emscripten/src/relooper/test_debug.cpp +30 -0
  110. data/modules/emscripten/src/relooper/test_debug.txt +128 -0
  111. data/modules/emscripten/src/relooper/test_fuzz1.cpp +52 -0
  112. data/modules/emscripten/src/relooper/test_fuzz1.txt +32 -0
  113. data/modules/emscripten/src/relooper/test_fuzz2.cpp +34 -0
  114. data/modules/emscripten/src/relooper/test_fuzz2.txt +13 -0
  115. data/modules/emscripten/src/relooper/test_fuzz3.cpp +36 -0
  116. data/modules/emscripten/src/relooper/test_fuzz3.txt +9 -0
  117. data/modules/emscripten/src/relooper/test_fuzz4.cpp +38 -0
  118. data/modules/emscripten/src/relooper/test_fuzz4.txt +19 -0
  119. data/modules/emscripten/src/relooper/test_fuzz5.cpp +57 -0
  120. data/modules/emscripten/src/relooper/test_fuzz5.txt +52 -0
  121. data/modules/emscripten/src/relooper/test_fuzz6.cpp +322 -0
  122. data/modules/emscripten/src/relooper/test_fuzz6.txt +108 -0
  123. data/modules/emscripten/src/relooper/test_inf.cpp +813 -0
  124. data/modules/emscripten/src/relooper/test_inf.txt +385 -0
  125. data/modules/emscripten/src/relooper/testit.sh +62 -0
  126. data/modules/emscripten/src/relooper/updateit.sh +17 -0
  127. data/modules/emscripten/src/relooper.js +11516 -0
  128. data/modules/emscripten/src/relooper.js.raw.js +11511 -0
  129. data/modules/emscripten/src/runtime.js +546 -0
  130. data/modules/emscripten/src/settings.js +1284 -0
  131. data/modules/emscripten/src/shell.html +92 -0
  132. data/modules/emscripten/src/shell.js +153 -0
  133. data/modules/emscripten/src/shell_sharedlib.js +12 -0
  134. data/modules/emscripten/src/socket.io.js +3870 -0
  135. data/modules/emscripten/src/utility.js +379 -0
  136. data/modules/emscripten/src/wrtcp.js +821 -0
  137. data/modules/emscripten/system/include/AL/al.h +172 -0
  138. data/modules/emscripten/system/include/AL/alc.h +84 -0
  139. data/modules/emscripten/system/include/EGL/egl.h +329 -0
  140. data/modules/emscripten/system/include/EGL/eglext.h +398 -0
  141. data/modules/emscripten/system/include/EGL/eglplatform.h +141 -0
  142. data/modules/emscripten/system/include/GL/freeglut_std.h +628 -0
  143. data/modules/emscripten/system/include/GL/gl.h +2241 -0
  144. data/modules/emscripten/system/include/GL/glew.h +6 -0
  145. data/modules/emscripten/system/include/GL/glext.h +11127 -0
  146. data/modules/emscripten/system/include/GL/glfw.h +518 -0
  147. data/modules/emscripten/system/include/GL/glu.h +353 -0
  148. data/modules/emscripten/system/include/GL/glut.h +21 -0
  149. data/modules/emscripten/system/include/GLES/gl.h +770 -0
  150. data/modules/emscripten/system/include/GLES/glext.h +1278 -0
  151. data/modules/emscripten/system/include/GLES/glplatform.h +30 -0
  152. data/modules/emscripten/system/include/GLES2/gl2.h +621 -0
  153. data/modules/emscripten/system/include/GLES2/gl2ext.h +803 -0
  154. data/modules/emscripten/system/include/GLES2/gl2platform.h +30 -0
  155. data/modules/emscripten/system/include/KHR/khrplatform.h +277 -0
  156. data/modules/emscripten/system/include/SDL/COPYING +19 -0
  157. data/modules/emscripten/system/include/SDL/SDL.h +162 -0
  158. data/modules/emscripten/system/include/SDL/SDL_assert.h +241 -0
  159. data/modules/emscripten/system/include/SDL/SDL_atomic.h +318 -0
  160. data/modules/emscripten/system/include/SDL/SDL_audio.h +509 -0
  161. data/modules/emscripten/system/include/SDL/SDL_blendmode.h +60 -0
  162. data/modules/emscripten/system/include/SDL/SDL_clipboard.h +75 -0
  163. data/modules/emscripten/system/include/SDL/SDL_compat.h +365 -0
  164. data/modules/emscripten/system/include/SDL/SDL_config.h +48 -0
  165. data/modules/emscripten/system/include/SDL/SDL_config.h.in +297 -0
  166. data/modules/emscripten/system/include/SDL/SDL_config_android.h +133 -0
  167. data/modules/emscripten/system/include/SDL/SDL_config_iphoneos.h +148 -0
  168. data/modules/emscripten/system/include/SDL/SDL_config_macosx.h +172 -0
  169. data/modules/emscripten/system/include/SDL/SDL_config_minimal.h +74 -0
  170. data/modules/emscripten/system/include/SDL/SDL_config_nintendods.h +129 -0
  171. data/modules/emscripten/system/include/SDL/SDL_config_pandora.h +125 -0
  172. data/modules/emscripten/system/include/SDL/SDL_config_windows.h +207 -0
  173. data/modules/emscripten/system/include/SDL/SDL_config_wiz.h +119 -0
  174. data/modules/emscripten/system/include/SDL/SDL_copying.h +20 -0
  175. data/modules/emscripten/system/include/SDL/SDL_cpuinfo.h +150 -0
  176. data/modules/emscripten/system/include/SDL/SDL_endian.h +248 -0
  177. data/modules/emscripten/system/include/SDL/SDL_error.h +77 -0
  178. data/modules/emscripten/system/include/SDL/SDL_events.h +639 -0
  179. data/modules/emscripten/system/include/SDL/SDL_gesture.h +91 -0
  180. data/modules/emscripten/system/include/SDL/SDL_gfxPrimitives.h +246 -0
  181. data/modules/emscripten/system/include/SDL/SDL_haptic.h +1200 -0
  182. data/modules/emscripten/system/include/SDL/SDL_hints.h +206 -0
  183. data/modules/emscripten/system/include/SDL/SDL_image.h +138 -0
  184. data/modules/emscripten/system/include/SDL/SDL_input.h +87 -0
  185. data/modules/emscripten/system/include/SDL/SDL_joystick.h +208 -0
  186. data/modules/emscripten/system/include/SDL/SDL_keyboard.h +169 -0
  187. data/modules/emscripten/system/include/SDL/SDL_keycode.h +344 -0
  188. data/modules/emscripten/system/include/SDL/SDL_loadso.h +85 -0
  189. data/modules/emscripten/system/include/SDL/SDL_log.h +211 -0
  190. data/modules/emscripten/system/include/SDL/SDL_main.h +98 -0
  191. data/modules/emscripten/system/include/SDL/SDL_mixer.h +634 -0
  192. data/modules/emscripten/system/include/SDL/SDL_mouse.h +213 -0
  193. data/modules/emscripten/system/include/SDL/SDL_mutex.h +248 -0
  194. data/modules/emscripten/system/include/SDL/SDL_name.h +11 -0
  195. data/modules/emscripten/system/include/SDL/SDL_opengl.h +11116 -0
  196. data/modules/emscripten/system/include/SDL/SDL_opengles.h +38 -0
  197. data/modules/emscripten/system/include/SDL/SDL_opengles2.h +38 -0
  198. data/modules/emscripten/system/include/SDL/SDL_pixels.h +423 -0
  199. data/modules/emscripten/system/include/SDL/SDL_platform.h +160 -0
  200. data/modules/emscripten/system/include/SDL/SDL_power.h +79 -0
  201. data/modules/emscripten/system/include/SDL/SDL_quit.h +58 -0
  202. data/modules/emscripten/system/include/SDL/SDL_rect.h +136 -0
  203. data/modules/emscripten/system/include/SDL/SDL_render.h +615 -0
  204. data/modules/emscripten/system/include/SDL/SDL_revision.h +2 -0
  205. data/modules/emscripten/system/include/SDL/SDL_revision.h.orig +2 -0
  206. data/modules/emscripten/system/include/SDL/SDL_rotozoom.h +123 -0
  207. data/modules/emscripten/system/include/SDL/SDL_rwops.h +220 -0
  208. data/modules/emscripten/system/include/SDL/SDL_scancode.h +398 -0
  209. data/modules/emscripten/system/include/SDL/SDL_shape.h +147 -0
  210. data/modules/emscripten/system/include/SDL/SDL_stdinc.h +764 -0
  211. data/modules/emscripten/system/include/SDL/SDL_surface.h +499 -0
  212. data/modules/emscripten/system/include/SDL/SDL_syswm.h +241 -0
  213. data/modules/emscripten/system/include/SDL/SDL_thread.h +182 -0
  214. data/modules/emscripten/system/include/SDL/SDL_timer.h +108 -0
  215. data/modules/emscripten/system/include/SDL/SDL_touch.h +124 -0
  216. data/modules/emscripten/system/include/SDL/SDL_ttf.h +249 -0
  217. data/modules/emscripten/system/include/SDL/SDL_types.h +29 -0
  218. data/modules/emscripten/system/include/SDL/SDL_version.h +166 -0
  219. data/modules/emscripten/system/include/SDL/SDL_video.h +820 -0
  220. data/modules/emscripten/system/include/SDL/begin_code.h +135 -0
  221. data/modules/emscripten/system/include/SDL/close_code.h +37 -0
  222. data/modules/emscripten/system/include/X11/X.h +717 -0
  223. data/modules/emscripten/system/include/X11/Xatom.h +79 -0
  224. data/modules/emscripten/system/include/X11/Xfuncproto.h +127 -0
  225. data/modules/emscripten/system/include/X11/Xlib.h +4023 -0
  226. data/modules/emscripten/system/include/X11/Xosdefs.h +116 -0
  227. data/modules/emscripten/system/include/X11/Xutil.h +826 -0
  228. data/modules/emscripten/system/include/X11/keysym.h +73 -0
  229. data/modules/emscripten/system/include/X11/keysymdef.h +2389 -0
  230. data/modules/emscripten/system/include/bsd/float.h +91 -0
  231. data/modules/emscripten/system/include/bsd/readme.txt +2 -0
  232. data/modules/emscripten/system/include/bsd/sys/mman.h +180 -0
  233. data/modules/emscripten/system/include/bsd/sys/utsname.h +70 -0
  234. data/modules/emscripten/system/include/dlfcn.h +31 -0
  235. data/modules/emscripten/system/include/emscripten/bind.h +1210 -0
  236. data/modules/emscripten/system/include/emscripten/emscripten.h +388 -0
  237. data/modules/emscripten/system/include/emscripten/val.h +311 -0
  238. data/modules/emscripten/system/include/emscripten/wire.h +393 -0
  239. data/modules/emscripten/system/include/err.h +95 -0
  240. data/modules/emscripten/system/include/execinfo.h +44 -0
  241. data/modules/emscripten/system/include/features.h +3 -0
  242. data/modules/emscripten/system/include/gc.h +70 -0
  243. data/modules/emscripten/system/include/gfx/png.h +3798 -0
  244. data/modules/emscripten/system/include/gfx/pngconf.h +1665 -0
  245. data/modules/emscripten/system/include/gfx/tiff.h +654 -0
  246. data/modules/emscripten/system/include/gfx/tiffconf.h +104 -0
  247. data/modules/emscripten/system/include/gfx/tiffio.h +526 -0
  248. data/modules/emscripten/system/include/gfx/tiffvers.h +9 -0
  249. data/modules/emscripten/system/include/jansson.h +323 -0
  250. data/modules/emscripten/system/include/jansson_config.h +54 -0
  251. data/modules/emscripten/system/include/libc/_ansi.h +135 -0
  252. data/modules/emscripten/system/include/libc/_syslist.h +40 -0
  253. data/modules/emscripten/system/include/libc/alloca.h +21 -0
  254. data/modules/emscripten/system/include/libc/ar.h +69 -0
  255. data/modules/emscripten/system/include/libc/argz.h +33 -0
  256. data/modules/emscripten/system/include/libc/assert.h +46 -0
  257. data/modules/emscripten/system/include/libc/complex.h +124 -0
  258. data/modules/emscripten/system/include/libc/ctype.h +196 -0
  259. data/modules/emscripten/system/include/libc/dirent.h +16 -0
  260. data/modules/emscripten/system/include/libc/endian.h +3 -0
  261. data/modules/emscripten/system/include/libc/envlock.h +15 -0
  262. data/modules/emscripten/system/include/libc/envz.h +16 -0
  263. data/modules/emscripten/system/include/libc/errno.h +11 -0
  264. data/modules/emscripten/system/include/libc/fastmath.h +13 -0
  265. data/modules/emscripten/system/include/libc/fcntl.h +1 -0
  266. data/modules/emscripten/system/include/libc/fnmatch.h +55 -0
  267. data/modules/emscripten/system/include/libc/getopt.h +196 -0
  268. data/modules/emscripten/system/include/libc/glob.h +89 -0
  269. data/modules/emscripten/system/include/libc/grp.h +94 -0
  270. data/modules/emscripten/system/include/libc/iconv.h +62 -0
  271. data/modules/emscripten/system/include/libc/ieeefp.h +256 -0
  272. data/modules/emscripten/system/include/libc/ifaddrs.h +64 -0
  273. data/modules/emscripten/system/include/libc/inttypes.h +290 -0
  274. data/modules/emscripten/system/include/libc/iso646.h +43 -0
  275. data/modules/emscripten/system/include/libc/langinfo.h +316 -0
  276. data/modules/emscripten/system/include/libc/libgen.h +23 -0
  277. data/modules/emscripten/system/include/libc/limits.h +155 -0
  278. data/modules/emscripten/system/include/libc/locale.h +80 -0
  279. data/modules/emscripten/system/include/libc/machine/_default_types.h +121 -0
  280. data/modules/emscripten/system/include/libc/machine/_types.h +8 -0
  281. data/modules/emscripten/system/include/libc/machine/ansi.h +1 -0
  282. data/modules/emscripten/system/include/libc/machine/endian.h +31 -0
  283. data/modules/emscripten/system/include/libc/machine/fastmath.h +100 -0
  284. data/modules/emscripten/system/include/libc/machine/ieeefp.h +376 -0
  285. data/modules/emscripten/system/include/libc/machine/malloc.h +8 -0
  286. data/modules/emscripten/system/include/libc/machine/param.h +1 -0
  287. data/modules/emscripten/system/include/libc/machine/setjmp-dj.h +43 -0
  288. data/modules/emscripten/system/include/libc/machine/setjmp.h +361 -0
  289. data/modules/emscripten/system/include/libc/machine/stdlib.h +8 -0
  290. data/modules/emscripten/system/include/libc/machine/termios.h +1 -0
  291. data/modules/emscripten/system/include/libc/machine/time.h +19 -0
  292. data/modules/emscripten/system/include/libc/machine/types.h +30 -0
  293. data/modules/emscripten/system/include/libc/malloc.h +169 -0
  294. data/modules/emscripten/system/include/libc/math.h +594 -0
  295. data/modules/emscripten/system/include/libc/newlib.h +2 -0
  296. data/modules/emscripten/system/include/libc/paths.h +7 -0
  297. data/modules/emscripten/system/include/libc/process.h +44 -0
  298. data/modules/emscripten/system/include/libc/pthread.h +362 -0
  299. data/modules/emscripten/system/include/libc/pwd.h +78 -0
  300. data/modules/emscripten/system/include/libc/readme.txt +3 -0
  301. data/modules/emscripten/system/include/libc/reent.h +183 -0
  302. data/modules/emscripten/system/include/libc/regdef.h +7 -0
  303. data/modules/emscripten/system/include/libc/regex.h +102 -0
  304. data/modules/emscripten/system/include/libc/sched.h +97 -0
  305. data/modules/emscripten/system/include/libc/search.h +59 -0
  306. data/modules/emscripten/system/include/libc/setjmp.h +20 -0
  307. data/modules/emscripten/system/include/libc/signal.h +30 -0
  308. data/modules/emscripten/system/include/libc/stdarg.h +50 -0
  309. data/modules/emscripten/system/include/libc/stddef.h +64 -0
  310. data/modules/emscripten/system/include/libc/stdint.h +493 -0
  311. data/modules/emscripten/system/include/libc/stdio.h +694 -0
  312. data/modules/emscripten/system/include/libc/stdlib.h +230 -0
  313. data/modules/emscripten/system/include/libc/string.h +105 -0
  314. data/modules/emscripten/system/include/libc/strings.h +35 -0
  315. data/modules/emscripten/system/include/libc/sys/_default_fcntl.h +223 -0
  316. data/modules/emscripten/system/include/libc/sys/_types.h +93 -0
  317. data/modules/emscripten/system/include/libc/sys/cdefs.h +123 -0
  318. data/modules/emscripten/system/include/libc/sys/config.h +255 -0
  319. data/modules/emscripten/system/include/libc/sys/custom_file.h +2 -0
  320. data/modules/emscripten/system/include/libc/sys/dir.h +10 -0
  321. data/modules/emscripten/system/include/libc/sys/dirent.h +58 -0
  322. data/modules/emscripten/system/include/libc/sys/errno.h +190 -0
  323. data/modules/emscripten/system/include/libc/sys/fcntl.h +4 -0
  324. data/modules/emscripten/system/include/libc/sys/features.h +212 -0
  325. data/modules/emscripten/system/include/libc/sys/file.h +2 -0
  326. data/modules/emscripten/system/include/libc/sys/iconvnls.h +77 -0
  327. data/modules/emscripten/system/include/libc/sys/lock.h +24 -0
  328. data/modules/emscripten/system/include/libc/sys/param.h +25 -0
  329. data/modules/emscripten/system/include/libc/sys/queue.h +471 -0
  330. data/modules/emscripten/system/include/libc/sys/reent.h +843 -0
  331. data/modules/emscripten/system/include/libc/sys/resource.h +59 -0
  332. data/modules/emscripten/system/include/libc/sys/sched.h +67 -0
  333. data/modules/emscripten/system/include/libc/sys/signal.h +314 -0
  334. data/modules/emscripten/system/include/libc/sys/stat.h +222 -0
  335. data/modules/emscripten/system/include/libc/sys/stdio.h +27 -0
  336. data/modules/emscripten/system/include/libc/sys/string.h +2 -0
  337. data/modules/emscripten/system/include/libc/sys/syslimits.h +65 -0
  338. data/modules/emscripten/system/include/libc/sys/termios.h +280 -0
  339. data/modules/emscripten/system/include/libc/sys/time.h +85 -0
  340. data/modules/emscripten/system/include/libc/sys/timeb.h +39 -0
  341. data/modules/emscripten/system/include/libc/sys/times.h +28 -0
  342. data/modules/emscripten/system/include/libc/sys/ttydefaults.h +97 -0
  343. data/modules/emscripten/system/include/libc/sys/types.h +481 -0
  344. data/modules/emscripten/system/include/libc/sys/unistd.h +514 -0
  345. data/modules/emscripten/system/include/libc/sys/utime.h +26 -0
  346. data/modules/emscripten/system/include/libc/sys/wait.h +40 -0
  347. data/modules/emscripten/system/include/libc/tar.h +39 -0
  348. data/modules/emscripten/system/include/libc/termios.h +7 -0
  349. data/modules/emscripten/system/include/libc/time.h +273 -0
  350. data/modules/emscripten/system/include/libc/unctrl.h +46 -0
  351. data/modules/emscripten/system/include/libc/unistd.h +6 -0
  352. data/modules/emscripten/system/include/libc/utime.h +12 -0
  353. data/modules/emscripten/system/include/libc/utmp.h +8 -0
  354. data/modules/emscripten/system/include/libc/wchar.h +194 -0
  355. data/modules/emscripten/system/include/libc/wctype.h +47 -0
  356. data/modules/emscripten/system/include/libc/wordexp.h +53 -0
  357. data/modules/emscripten/system/include/libcxx/CREDITS.TXT +91 -0
  358. data/modules/emscripten/system/include/libcxx/LICENSE.txt +76 -0
  359. data/modules/emscripten/system/include/libcxx/__bit_reference +1268 -0
  360. data/modules/emscripten/system/include/libcxx/__config +485 -0
  361. data/modules/emscripten/system/include/libcxx/__debug +193 -0
  362. data/modules/emscripten/system/include/libcxx/__functional_03 +2130 -0
  363. data/modules/emscripten/system/include/libcxx/__functional_base +437 -0
  364. data/modules/emscripten/system/include/libcxx/__functional_base_03 +1087 -0
  365. data/modules/emscripten/system/include/libcxx/__hash_table +1945 -0
  366. data/modules/emscripten/system/include/libcxx/__locale +1435 -0
  367. data/modules/emscripten/system/include/libcxx/__mutex_base +438 -0
  368. data/modules/emscripten/system/include/libcxx/__split_buffer +654 -0
  369. data/modules/emscripten/system/include/libcxx/__sso_allocator +77 -0
  370. data/modules/emscripten/system/include/libcxx/__std_stream +317 -0
  371. data/modules/emscripten/system/include/libcxx/__tree +2293 -0
  372. data/modules/emscripten/system/include/libcxx/__tuple +305 -0
  373. data/modules/emscripten/system/include/libcxx/__tuple_03 +27 -0
  374. data/modules/emscripten/system/include/libcxx/__undef_min_max +19 -0
  375. data/modules/emscripten/system/include/libcxx/algorithm +5458 -0
  376. data/modules/emscripten/system/include/libcxx/array +341 -0
  377. data/modules/emscripten/system/include/libcxx/atomic +1521 -0
  378. data/modules/emscripten/system/include/libcxx/bitset +1081 -0
  379. data/modules/emscripten/system/include/libcxx/cassert +25 -0
  380. data/modules/emscripten/system/include/libcxx/ccomplex +29 -0
  381. data/modules/emscripten/system/include/libcxx/cctype +164 -0
  382. data/modules/emscripten/system/include/libcxx/cerrno +393 -0
  383. data/modules/emscripten/system/include/libcxx/cfenv +82 -0
  384. data/modules/emscripten/system/include/libcxx/cfloat +78 -0
  385. data/modules/emscripten/system/include/libcxx/chrono +898 -0
  386. data/modules/emscripten/system/include/libcxx/cinttypes +259 -0
  387. data/modules/emscripten/system/include/libcxx/ciso646 +25 -0
  388. data/modules/emscripten/system/include/libcxx/climits +48 -0
  389. data/modules/emscripten/system/include/libcxx/clocale +53 -0
  390. data/modules/emscripten/system/include/libcxx/cmath +1683 -0
  391. data/modules/emscripten/system/include/libcxx/codecvt +547 -0
  392. data/modules/emscripten/system/include/libcxx/complex +1526 -0
  393. data/modules/emscripten/system/include/libcxx/complex.h +35 -0
  394. data/modules/emscripten/system/include/libcxx/condition_variable +256 -0
  395. data/modules/emscripten/system/include/libcxx/csetjmp +52 -0
  396. data/modules/emscripten/system/include/libcxx/csignal +58 -0
  397. data/modules/emscripten/system/include/libcxx/cstdarg +48 -0
  398. data/modules/emscripten/system/include/libcxx/cstdbool +32 -0
  399. data/modules/emscripten/system/include/libcxx/cstddef +103 -0
  400. data/modules/emscripten/system/include/libcxx/cstdint +191 -0
  401. data/modules/emscripten/system/include/libcxx/cstdio +175 -0
  402. data/modules/emscripten/system/include/libcxx/cstdlib +172 -0
  403. data/modules/emscripten/system/include/libcxx/cstring +112 -0
  404. data/modules/emscripten/system/include/libcxx/ctgmath +29 -0
  405. data/modules/emscripten/system/include/libcxx/ctime +72 -0
  406. data/modules/emscripten/system/include/libcxx/cwchar +208 -0
  407. data/modules/emscripten/system/include/libcxx/cwctype +213 -0
  408. data/modules/emscripten/system/include/libcxx/deque +2846 -0
  409. data/modules/emscripten/system/include/libcxx/exception +250 -0
  410. data/modules/emscripten/system/include/libcxx/ext/__hash +46 -0
  411. data/modules/emscripten/system/include/libcxx/ext/hash_map +1003 -0
  412. data/modules/emscripten/system/include/libcxx/ext/hash_set +657 -0
  413. data/modules/emscripten/system/include/libcxx/forward_list +1636 -0
  414. data/modules/emscripten/system/include/libcxx/fstream +1415 -0
  415. data/modules/emscripten/system/include/libcxx/functional +2063 -0
  416. data/modules/emscripten/system/include/libcxx/future +2505 -0
  417. data/modules/emscripten/system/include/libcxx/initializer_list +105 -0
  418. data/modules/emscripten/system/include/libcxx/iomanip +504 -0
  419. data/modules/emscripten/system/include/libcxx/ios +988 -0
  420. data/modules/emscripten/system/include/libcxx/iosfwd +194 -0
  421. data/modules/emscripten/system/include/libcxx/iostream +60 -0
  422. data/modules/emscripten/system/include/libcxx/istream +1713 -0
  423. data/modules/emscripten/system/include/libcxx/iterator +1869 -0
  424. data/modules/emscripten/system/include/libcxx/limits +809 -0
  425. data/modules/emscripten/system/include/libcxx/list +2275 -0
  426. data/modules/emscripten/system/include/libcxx/locale +4591 -0
  427. data/modules/emscripten/system/include/libcxx/map +1924 -0
  428. data/modules/emscripten/system/include/libcxx/memory +5437 -0
  429. data/modules/emscripten/system/include/libcxx/mutex +566 -0
  430. data/modules/emscripten/system/include/libcxx/new +117 -0
  431. data/modules/emscripten/system/include/libcxx/numeric +197 -0
  432. data/modules/emscripten/system/include/libcxx/ostream +1286 -0
  433. data/modules/emscripten/system/include/libcxx/queue +717 -0
  434. data/modules/emscripten/system/include/libcxx/random +6750 -0
  435. data/modules/emscripten/system/include/libcxx/ratio +487 -0
  436. data/modules/emscripten/system/include/libcxx/readme.txt +1 -0
  437. data/modules/emscripten/system/include/libcxx/regex +6439 -0
  438. data/modules/emscripten/system/include/libcxx/scoped_allocator +578 -0
  439. data/modules/emscripten/system/include/libcxx/set +1025 -0
  440. data/modules/emscripten/system/include/libcxx/sstream +888 -0
  441. data/modules/emscripten/system/include/libcxx/stack +292 -0
  442. data/modules/emscripten/system/include/libcxx/stdexcept +162 -0
  443. data/modules/emscripten/system/include/libcxx/streambuf +564 -0
  444. data/modules/emscripten/system/include/libcxx/string +3987 -0
  445. data/modules/emscripten/system/include/libcxx/strstream +400 -0
  446. data/modules/emscripten/system/include/libcxx/support/solaris/floatingpoint.h +5 -0
  447. data/modules/emscripten/system/include/libcxx/support/solaris/wchar.h +38 -0
  448. data/modules/emscripten/system/include/libcxx/support/solaris/xlocale.h +146 -0
  449. data/modules/emscripten/system/include/libcxx/support/win32/limits_win32.h +79 -0
  450. data/modules/emscripten/system/include/libcxx/support/win32/locale_win32.h +116 -0
  451. data/modules/emscripten/system/include/libcxx/support/win32/math_win32.h +113 -0
  452. data/modules/emscripten/system/include/libcxx/support/win32/support.h +115 -0
  453. data/modules/emscripten/system/include/libcxx/system_error +636 -0
  454. data/modules/emscripten/system/include/libcxx/tgmath.h +29 -0
  455. data/modules/emscripten/system/include/libcxx/thread +459 -0
  456. data/modules/emscripten/system/include/libcxx/tuple +1092 -0
  457. data/modules/emscripten/system/include/libcxx/type_traits +3040 -0
  458. data/modules/emscripten/system/include/libcxx/typeindex +103 -0
  459. data/modules/emscripten/system/include/libcxx/typeinfo +124 -0
  460. data/modules/emscripten/system/include/libcxx/unordered_map +1864 -0
  461. data/modules/emscripten/system/include/libcxx/unordered_set +1144 -0
  462. data/modules/emscripten/system/include/libcxx/utility +583 -0
  463. data/modules/emscripten/system/include/libcxx/valarray +4779 -0
  464. data/modules/emscripten/system/include/libcxx/vector +3228 -0
  465. data/modules/emscripten/system/include/memory.h +10 -0
  466. data/modules/emscripten/system/include/mntent.h +23 -0
  467. data/modules/emscripten/system/include/net/arpa/inet.h +32 -0
  468. data/modules/emscripten/system/include/net/arpa/nameser.h +535 -0
  469. data/modules/emscripten/system/include/net/arpa/nameser_compat.h +187 -0
  470. data/modules/emscripten/system/include/net/if.h +87 -0
  471. data/modules/emscripten/system/include/net/netinet/in.h +166 -0
  472. data/modules/emscripten/system/include/net/netinet/tcp.h +246 -0
  473. data/modules/emscripten/system/include/net/resolv.h +389 -0
  474. data/modules/emscripten/system/include/netdb.h +94 -0
  475. data/modules/emscripten/system/include/nl_types.h +19 -0
  476. data/modules/emscripten/system/include/poll.h +3 -0
  477. data/modules/emscripten/system/include/pty.h +6 -0
  478. data/modules/emscripten/system/include/semaphore.h +31 -0
  479. data/modules/emscripten/system/include/spawn.h +105 -0
  480. data/modules/emscripten/system/include/stdbool.h +16 -0
  481. data/modules/emscripten/system/include/sys/bitypes.h +3 -0
  482. data/modules/emscripten/system/include/sys/io.h +14 -0
  483. data/modules/emscripten/system/include/sys/ioctl.h +26 -0
  484. data/modules/emscripten/system/include/sys/poll.h +31 -0
  485. data/modules/emscripten/system/include/sys/select.h +14 -0
  486. data/modules/emscripten/system/include/sys/socket.h +101 -0
  487. data/modules/emscripten/system/include/sys/socketvar.h +3 -0
  488. data/modules/emscripten/system/include/sys/statvfs.h +32 -0
  489. data/modules/emscripten/system/include/sys/sysctl.h +14 -0
  490. data/modules/emscripten/system/include/sys/uio.h +22 -0
  491. data/modules/emscripten/system/include/sys/un.h +66 -0
  492. data/modules/emscripten/system/include/sysexits.h +108 -0
  493. data/modules/emscripten/system/include/unwind.h +154 -0
  494. data/modules/emscripten/system/include/xlocale.h +47 -0
  495. data/modules/emscripten/system/include/zconf.h +428 -0
  496. data/modules/emscripten/system/include/zlib.h +1613 -0
  497. data/modules/emscripten/system/lib/compiler-rt/LICENSE.TXT +97 -0
  498. data/modules/emscripten/system/lib/compiler-rt/divdi3.c +47 -0
  499. data/modules/emscripten/system/lib/compiler-rt/int_endianness.h +116 -0
  500. data/modules/emscripten/system/lib/compiler-rt/int_lib.h +46 -0
  501. data/modules/emscripten/system/lib/compiler-rt/int_math.h +67 -0
  502. data/modules/emscripten/system/lib/compiler-rt/int_types.h +140 -0
  503. data/modules/emscripten/system/lib/compiler-rt/int_util.h +29 -0
  504. data/modules/emscripten/system/lib/compiler-rt/muldi3.c +56 -0
  505. data/modules/emscripten/system/lib/compiler-rt/readme.txt +20 -0
  506. data/modules/emscripten/system/lib/compiler-rt/udivdi3.c +36 -0
  507. data/modules/emscripten/system/lib/compiler-rt/udivmoddi4.c +251 -0
  508. data/modules/emscripten/system/lib/debugging.cpp +24 -0
  509. data/modules/emscripten/system/lib/dlmalloc.c +6299 -0
  510. data/modules/emscripten/system/lib/embind/bind.cpp +63 -0
  511. data/modules/emscripten/system/lib/libc/gen/err.c +49 -0
  512. data/modules/emscripten/system/lib/libc/gen/errx.c +49 -0
  513. data/modules/emscripten/system/lib/libc/gen/verr.c +58 -0
  514. data/modules/emscripten/system/lib/libc/gen/verrx.c +51 -0
  515. data/modules/emscripten/system/lib/libc/gen/vwarn.c +55 -0
  516. data/modules/emscripten/system/lib/libc/gen/vwarnx.c +48 -0
  517. data/modules/emscripten/system/lib/libc/gen/warn.c +49 -0
  518. data/modules/emscripten/system/lib/libc/gen/warnx.c +49 -0
  519. data/modules/emscripten/system/lib/libc/musl/COPYRIGHT +92 -0
  520. data/modules/emscripten/system/lib/libc/musl/readme.txt +1 -0
  521. data/modules/emscripten/system/lib/libc/musl/src/ctype/alpha.h +125 -0
  522. data/modules/emscripten/system/lib/libc/musl/src/ctype/iswalnum.c +7 -0
  523. data/modules/emscripten/system/lib/libc/musl/src/ctype/iswalpha.c +14 -0
  524. data/modules/emscripten/system/lib/libc/musl/src/ctype/iswblank.c +8 -0
  525. data/modules/emscripten/system/lib/libc/musl/src/ctype/iswcntrl.c +10 -0
  526. data/modules/emscripten/system/lib/libc/musl/src/ctype/iswctype.c +63 -0
  527. data/modules/emscripten/system/lib/libc/musl/src/ctype/iswdigit.c +9 -0
  528. data/modules/emscripten/system/lib/libc/musl/src/ctype/iswgraph.c +7 -0
  529. data/modules/emscripten/system/lib/libc/musl/src/ctype/iswlower.c +6 -0
  530. data/modules/emscripten/system/lib/libc/musl/src/ctype/iswprint.c +19 -0
  531. data/modules/emscripten/system/lib/libc/musl/src/ctype/iswpunct.c +12 -0
  532. data/modules/emscripten/system/lib/libc/musl/src/ctype/iswspace.c +19 -0
  533. data/modules/emscripten/system/lib/libc/musl/src/ctype/iswupper.c +6 -0
  534. data/modules/emscripten/system/lib/libc/musl/src/ctype/iswxdigit.c +7 -0
  535. data/modules/emscripten/system/lib/libc/musl/src/ctype/nonspacing.h +62 -0
  536. data/modules/emscripten/system/lib/libc/musl/src/ctype/punct.h +109 -0
  537. data/modules/emscripten/system/lib/libc/musl/src/ctype/towctrans.c +268 -0
  538. data/modules/emscripten/system/lib/libc/musl/src/ctype/wcswidth.c +8 -0
  539. data/modules/emscripten/system/lib/libc/musl/src/ctype/wctrans.c +16 -0
  540. data/modules/emscripten/system/lib/libc/musl/src/ctype/wcwidth.c +29 -0
  541. data/modules/emscripten/system/lib/libc/musl/src/ctype/wide.h +42 -0
  542. data/modules/emscripten/system/lib/libc/musl/src/internal/libc.c +22 -0
  543. data/modules/emscripten/system/lib/libc/musl/src/internal/libc.h +71 -0
  544. data/modules/emscripten/system/lib/libc/musl/src/multibyte/btowc.c +7 -0
  545. data/modules/emscripten/system/lib/libc/musl/src/multibyte/internal.c +38 -0
  546. data/modules/emscripten/system/lib/libc/musl/src/multibyte/internal.h +22 -0
  547. data/modules/emscripten/system/lib/libc/musl/src/multibyte/mblen.c +17 -0
  548. data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbrlen.c +18 -0
  549. data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbrtowc.c +57 -0
  550. data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbsinit.c +17 -0
  551. data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbsnrtowcs.c +65 -0
  552. data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbsrtowcs.c +100 -0
  553. data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbstowcs.c +7 -0
  554. data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbtowc.c +53 -0
  555. data/modules/emscripten/system/lib/libc/musl/src/multibyte/wcrtomb.c +38 -0
  556. data/modules/emscripten/system/lib/libc/musl/src/multibyte/wcsnrtombs.c +52 -0
  557. data/modules/emscripten/system/lib/libc/musl/src/multibyte/wcsrtombs.c +58 -0
  558. data/modules/emscripten/system/lib/libc/musl/src/multibyte/wcstombs.c +7 -0
  559. data/modules/emscripten/system/lib/libc/musl/src/multibyte/wctob.c +8 -0
  560. data/modules/emscripten/system/lib/libc/musl/src/multibyte/wctomb.c +18 -0
  561. data/modules/emscripten/system/lib/libc/musl/src/string/wcpcpy.c +6 -0
  562. data/modules/emscripten/system/lib/libc/musl/src/string/wcpncpy.c +6 -0
  563. data/modules/emscripten/system/lib/libc/musl/src/string/wcscasecmp.c +7 -0
  564. data/modules/emscripten/system/lib/libc/musl/src/string/wcscasecmp_l.c +6 -0
  565. data/modules/emscripten/system/lib/libc/musl/src/string/wcscat.c +7 -0
  566. data/modules/emscripten/system/lib/libc/musl/src/string/wcschr.c +8 -0
  567. data/modules/emscripten/system/lib/libc/musl/src/string/wcscmp.c +7 -0
  568. data/modules/emscripten/system/lib/libc/musl/src/string/wcscpy.c +8 -0
  569. data/modules/emscripten/system/lib/libc/musl/src/string/wcscspn.c +10 -0
  570. data/modules/emscripten/system/lib/libc/musl/src/string/wcsdup.c +11 -0
  571. data/modules/emscripten/system/lib/libc/musl/src/string/wcslen.c +8 -0
  572. data/modules/emscripten/system/lib/libc/musl/src/string/wcsncasecmp.c +9 -0
  573. data/modules/emscripten/system/lib/libc/musl/src/string/wcsncasecmp_l.c +6 -0
  574. data/modules/emscripten/system/lib/libc/musl/src/string/wcsncat.c +10 -0
  575. data/modules/emscripten/system/lib/libc/musl/src/string/wcsncmp.c +7 -0
  576. data/modules/emscripten/system/lib/libc/musl/src/string/wcsncpy.c +9 -0
  577. data/modules/emscripten/system/lib/libc/musl/src/string/wcsnlen.c +8 -0
  578. data/modules/emscripten/system/lib/libc/musl/src/string/wcspbrk.c +7 -0
  579. data/modules/emscripten/system/lib/libc/musl/src/string/wcsrchr.c +8 -0
  580. data/modules/emscripten/system/lib/libc/musl/src/string/wcsspn.c +8 -0
  581. data/modules/emscripten/system/lib/libc/musl/src/string/wcsstr.c +108 -0
  582. data/modules/emscripten/system/lib/libc/musl/src/string/wcstok.c +12 -0
  583. data/modules/emscripten/system/lib/libc/musl/src/string/wcswcs.c +6 -0
  584. data/modules/emscripten/system/lib/libc/musl/src/string/wmemchr.c +8 -0
  585. data/modules/emscripten/system/lib/libc/musl/src/string/wmemcmp.c +8 -0
  586. data/modules/emscripten/system/lib/libc/musl/src/string/wmemcpy.c +9 -0
  587. data/modules/emscripten/system/lib/libc/musl/src/string/wmemmove.c +12 -0
  588. data/modules/emscripten/system/lib/libc/musl/src/string/wmemset.c +9 -0
  589. data/modules/emscripten/system/lib/libc/stdlib/getopt_long.c +511 -0
  590. data/modules/emscripten/system/lib/libc/stdlib/strtod.c +305 -0
  591. data/modules/emscripten/system/lib/libc.symbols +81 -0
  592. data/modules/emscripten/system/lib/libcextra.symbols +61 -0
  593. data/modules/emscripten/system/lib/libcxx/CREDITS.TXT +91 -0
  594. data/modules/emscripten/system/lib/libcxx/LICENSE.txt +76 -0
  595. data/modules/emscripten/system/lib/libcxx/algorithm.cpp +83 -0
  596. data/modules/emscripten/system/lib/libcxx/bind.cpp +30 -0
  597. data/modules/emscripten/system/lib/libcxx/chrono.cpp +132 -0
  598. data/modules/emscripten/system/lib/libcxx/condition_variable.cpp +81 -0
  599. data/modules/emscripten/system/lib/libcxx/debug.cpp +504 -0
  600. data/modules/emscripten/system/lib/libcxx/exception.cpp +226 -0
  601. data/modules/emscripten/system/lib/libcxx/future.cpp +285 -0
  602. data/modules/emscripten/system/lib/libcxx/hash.cpp +564 -0
  603. data/modules/emscripten/system/lib/libcxx/ios.cpp +455 -0
  604. data/modules/emscripten/system/lib/libcxx/iostream.cpp +68 -0
  605. data/modules/emscripten/system/lib/libcxx/locale.cpp +6093 -0
  606. data/modules/emscripten/system/lib/libcxx/memory.cpp +223 -0
  607. data/modules/emscripten/system/lib/libcxx/mutex.cpp +250 -0
  608. data/modules/emscripten/system/lib/libcxx/new.cpp +205 -0
  609. data/modules/emscripten/system/lib/libcxx/random.cpp +48 -0
  610. data/modules/emscripten/system/lib/libcxx/readme.txt +1 -0
  611. data/modules/emscripten/system/lib/libcxx/regex.cpp +325 -0
  612. data/modules/emscripten/system/lib/libcxx/stdexcept.cpp +196 -0
  613. data/modules/emscripten/system/lib/libcxx/string.cpp +687 -0
  614. data/modules/emscripten/system/lib/libcxx/strstream.cpp +329 -0
  615. data/modules/emscripten/system/lib/libcxx/support/solaris/README +4 -0
  616. data/modules/emscripten/system/lib/libcxx/support/solaris/mbsnrtowcs.inc +76 -0
  617. data/modules/emscripten/system/lib/libcxx/support/solaris/wcsnrtombs.inc +93 -0
  618. data/modules/emscripten/system/lib/libcxx/support/solaris/xlocale.c +245 -0
  619. data/modules/emscripten/system/lib/libcxx/support/win32/locale_win32.cpp +94 -0
  620. data/modules/emscripten/system/lib/libcxx/support/win32/support.cpp +70 -0
  621. data/modules/emscripten/system/lib/libcxx/symbols +2927 -0
  622. data/modules/emscripten/system/lib/libcxx/system_error.cpp +201 -0
  623. data/modules/emscripten/system/lib/libcxx/thread.cpp +208 -0
  624. data/modules/emscripten/system/lib/libcxx/typeinfo.cpp +60 -0
  625. data/modules/emscripten/system/lib/libcxx/utility.cpp +17 -0
  626. data/modules/emscripten/system/lib/libcxx/valarray.cpp +54 -0
  627. data/modules/emscripten/system/lib/libcxxabi/CREDITS.TXT +38 -0
  628. data/modules/emscripten/system/lib/libcxxabi/LICENSE.TXT +76 -0
  629. data/modules/emscripten/system/lib/libcxxabi/include/cxa_demangle.h +167 -0
  630. data/modules/emscripten/system/lib/libcxxabi/include/cxxabi.h +175 -0
  631. data/modules/emscripten/system/lib/libcxxabi/lib/buildit +99 -0
  632. data/modules/emscripten/system/lib/libcxxabi/readme.txt +1 -0
  633. data/modules/emscripten/system/lib/libcxxabi/src/abort_message.cpp +50 -0
  634. data/modules/emscripten/system/lib/libcxxabi/src/abort_message.h +33 -0
  635. data/modules/emscripten/system/lib/libcxxabi/src/cxa_aux_runtime.cpp +34 -0
  636. data/modules/emscripten/system/lib/libcxxabi/src/cxa_demangle.cpp +11036 -0
  637. data/modules/emscripten/system/lib/libcxxabi/src/cxa_exception.cpp +622 -0
  638. data/modules/emscripten/system/lib/libcxxabi/src/cxa_exception.hpp +123 -0
  639. data/modules/emscripten/system/lib/libcxxabi/src/cxa_exception_storage.cpp +91 -0
  640. data/modules/emscripten/system/lib/libcxxabi/src/cxa_guard.cpp +231 -0
  641. data/modules/emscripten/system/lib/libcxxabi/src/cxa_handlers.cpp +125 -0
  642. data/modules/emscripten/system/lib/libcxxabi/src/cxa_handlers.hpp +54 -0
  643. data/modules/emscripten/system/lib/libcxxabi/src/cxa_new_delete.cpp +242 -0
  644. data/modules/emscripten/system/lib/libcxxabi/src/cxa_personality.cpp +1055 -0
  645. data/modules/emscripten/system/lib/libcxxabi/src/cxa_unexpected.cpp +27 -0
  646. data/modules/emscripten/system/lib/libcxxabi/src/cxa_vector.cpp +367 -0
  647. data/modules/emscripten/system/lib/libcxxabi/src/cxa_virtual.cpp +31 -0
  648. data/modules/emscripten/system/lib/libcxxabi/src/exception.cpp +41 -0
  649. data/modules/emscripten/system/lib/libcxxabi/src/fallback_malloc.ipp +174 -0
  650. data/modules/emscripten/system/lib/libcxxabi/src/private_typeinfo.cpp +1146 -0
  651. data/modules/emscripten/system/lib/libcxxabi/src/private_typeinfo.h +248 -0
  652. data/modules/emscripten/system/lib/libcxxabi/src/stdexcept.cpp +169 -0
  653. data/modules/emscripten/system/lib/libcxxabi/src/typeinfo.cpp +53 -0
  654. data/modules/emscripten/system/lib/libcxxabi/symbols +236 -0
  655. data/modules/emscripten/system/lib/sdl.cpp +13 -0
  656. data/modules/emscripten/system/lib/sdl.symbols +1 -0
  657. data/modules/emscripten/tests/hello_world.js +92 -0
  658. data/modules/emscripten/third_party/CppHeaderParser/CppHeaderParser/CppHeaderParser.py +2347 -0
  659. data/modules/emscripten/third_party/CppHeaderParser/CppHeaderParser/__init__.py +4 -0
  660. data/modules/emscripten/third_party/CppHeaderParser/CppHeaderParser/doc/CppHeaderParser.html +657 -0
  661. data/modules/emscripten/third_party/CppHeaderParser/CppHeaderParser/examples/SampleClass.h +147 -0
  662. data/modules/emscripten/third_party/CppHeaderParser/CppHeaderParser/examples/readSampleClass.py +74 -0
  663. data/modules/emscripten/third_party/CppHeaderParser/PKG-INFO +249 -0
  664. data/modules/emscripten/third_party/CppHeaderParser/README.html +544 -0
  665. data/modules/emscripten/third_party/CppHeaderParser/README.txt +226 -0
  666. data/modules/emscripten/third_party/CppHeaderParser/setup.py +43 -0
  667. data/modules/emscripten/third_party/ansidecl.h +371 -0
  668. data/modules/emscripten/third_party/closure-compiler/COPYING +202 -0
  669. data/modules/emscripten/third_party/closure-compiler/README +292 -0
  670. data/modules/emscripten/third_party/closure-compiler/compiler.jar +0 -0
  671. data/modules/emscripten/third_party/closure-compiler/readme.txt +3 -0
  672. data/modules/emscripten/third_party/cp-demangle.h +161 -0
  673. data/modules/emscripten/third_party/demangle.h +549 -0
  674. data/modules/emscripten/third_party/demangler.py +49 -0
  675. data/modules/emscripten/third_party/gcc_demangler.c +4226 -0
  676. data/modules/emscripten/third_party/gcc_demangler.js +21282 -0
  677. data/modules/emscripten/third_party/jni/emjvm.cpp +133 -0
  678. data/modules/emscripten/third_party/jni/emjvm.h +8 -0
  679. data/modules/emscripten/third_party/jni/emjvm.js +185 -0
  680. data/modules/emscripten/third_party/jni/jni.h +1154 -0
  681. data/modules/emscripten/third_party/libiberty.h +634 -0
  682. data/modules/emscripten/third_party/lzma.js/README.markdown +37 -0
  683. data/modules/emscripten/third_party/lzma.js/doit.sh +37 -0
  684. data/modules/emscripten/third_party/lzma.js/lzip/AUTHORS +7 -0
  685. data/modules/emscripten/third_party/lzma.js/lzip/COPYING +676 -0
  686. data/modules/emscripten/third_party/lzma.js/lzip/ChangeLog +201 -0
  687. data/modules/emscripten/third_party/lzma.js/lzip/INSTALL +56 -0
  688. data/modules/emscripten/third_party/lzma.js/lzip/Makefile +160 -0
  689. data/modules/emscripten/third_party/lzma.js/lzip/Makefile.in +138 -0
  690. data/modules/emscripten/third_party/lzma.js/lzip/NEWS +22 -0
  691. data/modules/emscripten/third_party/lzma.js/lzip/README +77 -0
  692. data/modules/emscripten/third_party/lzma.js/lzip/arg_parser.cc +204 -0
  693. data/modules/emscripten/third_party/lzma.js/lzip/arg_parser.h +106 -0
  694. data/modules/emscripten/third_party/lzma.js/lzip/configure +192 -0
  695. data/modules/emscripten/third_party/lzma.js/lzip/decoder.cc +252 -0
  696. data/modules/emscripten/third_party/lzma.js/lzip/decoder.h +268 -0
  697. data/modules/emscripten/third_party/lzma.js/lzip/encoder.cc +643 -0
  698. data/modules/emscripten/third_party/lzma.js/lzip/encoder.h +582 -0
  699. data/modules/emscripten/third_party/lzma.js/lzip/fast_encoder.cc +378 -0
  700. data/modules/emscripten/third_party/lzma.js/lzip/fast_encoder.h +171 -0
  701. data/modules/emscripten/third_party/lzma.js/lzip/lzip.h +264 -0
  702. data/modules/emscripten/third_party/lzma.js/lzip/main.cc +545 -0
  703. data/modules/emscripten/third_party/lzma.js/lzma-decoder.js +27 -0
  704. data/modules/emscripten/third_party/lzma.js/lzma-full.js +27 -0
  705. data/modules/emscripten/third_party/lzma.js/native_test.sh +5 -0
  706. data/modules/emscripten/third_party/lzma.js/post.js +13 -0
  707. data/modules/emscripten/third_party/lzma.js/pre.js +13 -0
  708. data/modules/emscripten/third_party/lzma.js/test-decoder.js +39 -0
  709. data/modules/emscripten/third_party/lzma.js/test-full.html +9 -0
  710. data/modules/emscripten/third_party/lzma.js/test-full.js +78 -0
  711. data/modules/emscripten/third_party/ply/ANNOUNCE +40 -0
  712. data/modules/emscripten/third_party/ply/CHANGES +1093 -0
  713. data/modules/emscripten/third_party/ply/PKG-INFO +22 -0
  714. data/modules/emscripten/third_party/ply/README +271 -0
  715. data/modules/emscripten/third_party/ply/TODO +16 -0
  716. data/modules/emscripten/third_party/ply/doc/internal.html +874 -0
  717. data/modules/emscripten/third_party/ply/doc/makedoc.py +194 -0
  718. data/modules/emscripten/third_party/ply/doc/ply.html +3262 -0
  719. data/modules/emscripten/third_party/ply/example/BASIC/README +79 -0
  720. data/modules/emscripten/third_party/ply/example/BASIC/basic.py +71 -0
  721. data/modules/emscripten/third_party/ply/example/BASIC/basiclex.py +74 -0
  722. data/modules/emscripten/third_party/ply/example/BASIC/basiclog.py +79 -0
  723. data/modules/emscripten/third_party/ply/example/BASIC/basinterp.py +441 -0
  724. data/modules/emscripten/third_party/ply/example/BASIC/basparse.py +424 -0
  725. data/modules/emscripten/third_party/ply/example/BASIC/dim.bas +14 -0
  726. data/modules/emscripten/third_party/ply/example/BASIC/func.bas +5 -0
  727. data/modules/emscripten/third_party/ply/example/BASIC/gcd.bas +22 -0
  728. data/modules/emscripten/third_party/ply/example/BASIC/gosub.bas +13 -0
  729. data/modules/emscripten/third_party/ply/example/BASIC/hello.bas +4 -0
  730. data/modules/emscripten/third_party/ply/example/BASIC/linear.bas +17 -0
  731. data/modules/emscripten/third_party/ply/example/BASIC/maxsin.bas +12 -0
  732. data/modules/emscripten/third_party/ply/example/BASIC/powers.bas +13 -0
  733. data/modules/emscripten/third_party/ply/example/BASIC/rand.bas +4 -0
  734. data/modules/emscripten/third_party/ply/example/BASIC/sales.bas +20 -0
  735. data/modules/emscripten/third_party/ply/example/BASIC/sears.bas +18 -0
  736. data/modules/emscripten/third_party/ply/example/BASIC/sqrt1.bas +5 -0
  737. data/modules/emscripten/third_party/ply/example/BASIC/sqrt2.bas +4 -0
  738. data/modules/emscripten/third_party/ply/example/GardenSnake/GardenSnake.py +709 -0
  739. data/modules/emscripten/third_party/ply/example/GardenSnake/README +5 -0
  740. data/modules/emscripten/third_party/ply/example/README +10 -0
  741. data/modules/emscripten/third_party/ply/example/ansic/README +2 -0
  742. data/modules/emscripten/third_party/ply/example/ansic/clex.py +164 -0
  743. data/modules/emscripten/third_party/ply/example/ansic/cparse.py +863 -0
  744. data/modules/emscripten/third_party/ply/example/calc/calc.py +107 -0
  745. data/modules/emscripten/third_party/ply/example/calcdebug/calc.py +113 -0
  746. data/modules/emscripten/third_party/ply/example/classcalc/calc.py +157 -0
  747. data/modules/emscripten/third_party/ply/example/cleanup.sh +2 -0
  748. data/modules/emscripten/third_party/ply/example/closurecalc/calc.py +130 -0
  749. data/modules/emscripten/third_party/ply/example/hedit/hedit.py +48 -0
  750. data/modules/emscripten/third_party/ply/example/newclasscalc/calc.py +160 -0
  751. data/modules/emscripten/third_party/ply/example/optcalc/README +9 -0
  752. data/modules/emscripten/third_party/ply/example/optcalc/calc.py +119 -0
  753. data/modules/emscripten/third_party/ply/example/unicalc/calc.py +117 -0
  754. data/modules/emscripten/third_party/ply/example/yply/README +41 -0
  755. data/modules/emscripten/third_party/ply/example/yply/ylex.py +112 -0
  756. data/modules/emscripten/third_party/ply/example/yply/yparse.py +217 -0
  757. data/modules/emscripten/third_party/ply/example/yply/yply.py +53 -0
  758. data/modules/emscripten/third_party/ply/ply/__init__.py +4 -0
  759. data/modules/emscripten/third_party/ply/ply/cpp.py +898 -0
  760. data/modules/emscripten/third_party/ply/ply/ctokens.py +133 -0
  761. data/modules/emscripten/third_party/ply/ply/lex.py +1058 -0
  762. data/modules/emscripten/third_party/ply/ply/yacc.py +3276 -0
  763. data/modules/emscripten/third_party/ply/setup.py +31 -0
  764. data/modules/emscripten/third_party/ply/test/README +7 -0
  765. data/modules/emscripten/third_party/ply/test/calclex.py +49 -0
  766. data/modules/emscripten/third_party/ply/test/cleanup.sh +4 -0
  767. data/modules/emscripten/third_party/ply/test/lex_closure.py +54 -0
  768. data/modules/emscripten/third_party/ply/test/lex_doc1.py +26 -0
  769. data/modules/emscripten/third_party/ply/test/lex_dup1.py +29 -0
  770. data/modules/emscripten/third_party/ply/test/lex_dup2.py +33 -0
  771. data/modules/emscripten/third_party/ply/test/lex_dup3.py +31 -0
  772. data/modules/emscripten/third_party/ply/test/lex_empty.py +20 -0
  773. data/modules/emscripten/third_party/ply/test/lex_error1.py +24 -0
  774. data/modules/emscripten/third_party/ply/test/lex_error2.py +26 -0
  775. data/modules/emscripten/third_party/ply/test/lex_error3.py +27 -0
  776. data/modules/emscripten/third_party/ply/test/lex_error4.py +27 -0
  777. data/modules/emscripten/third_party/ply/test/lex_hedit.py +47 -0
  778. data/modules/emscripten/third_party/ply/test/lex_ignore.py +31 -0
  779. data/modules/emscripten/third_party/ply/test/lex_ignore2.py +29 -0
  780. data/modules/emscripten/third_party/ply/test/lex_literal1.py +25 -0
  781. data/modules/emscripten/third_party/ply/test/lex_literal2.py +25 -0
  782. data/modules/emscripten/third_party/ply/test/lex_many_tokens.py +27 -0
  783. data/modules/emscripten/third_party/ply/test/lex_module.py +10 -0
  784. data/modules/emscripten/third_party/ply/test/lex_module_import.py +42 -0
  785. data/modules/emscripten/third_party/ply/test/lex_object.py +55 -0
  786. data/modules/emscripten/third_party/ply/test/lex_opt_alias.py +54 -0
  787. data/modules/emscripten/third_party/ply/test/lex_optimize.py +50 -0
  788. data/modules/emscripten/third_party/ply/test/lex_optimize2.py +50 -0
  789. data/modules/emscripten/third_party/ply/test/lex_optimize3.py +52 -0
  790. data/modules/emscripten/third_party/ply/test/lex_re1.py +27 -0
  791. data/modules/emscripten/third_party/ply/test/lex_re2.py +27 -0
  792. data/modules/emscripten/third_party/ply/test/lex_re3.py +29 -0
  793. data/modules/emscripten/third_party/ply/test/lex_rule1.py +27 -0
  794. data/modules/emscripten/third_party/ply/test/lex_rule2.py +29 -0
  795. data/modules/emscripten/third_party/ply/test/lex_rule3.py +27 -0
  796. data/modules/emscripten/third_party/ply/test/lex_state1.py +40 -0
  797. data/modules/emscripten/third_party/ply/test/lex_state2.py +40 -0
  798. data/modules/emscripten/third_party/ply/test/lex_state3.py +42 -0
  799. data/modules/emscripten/third_party/ply/test/lex_state4.py +41 -0
  800. data/modules/emscripten/third_party/ply/test/lex_state5.py +40 -0
  801. data/modules/emscripten/third_party/ply/test/lex_state_noerror.py +39 -0
  802. data/modules/emscripten/third_party/ply/test/lex_state_norule.py +40 -0
  803. data/modules/emscripten/third_party/ply/test/lex_state_try.py +45 -0
  804. data/modules/emscripten/third_party/ply/test/lex_token1.py +19 -0
  805. data/modules/emscripten/third_party/ply/test/lex_token2.py +22 -0
  806. data/modules/emscripten/third_party/ply/test/lex_token3.py +24 -0
  807. data/modules/emscripten/third_party/ply/test/lex_token4.py +26 -0
  808. data/modules/emscripten/third_party/ply/test/lex_token5.py +31 -0
  809. data/modules/emscripten/third_party/ply/test/lex_token_dup.py +29 -0
  810. data/modules/emscripten/third_party/ply/test/testlex.py +606 -0
  811. data/modules/emscripten/third_party/ply/test/testyacc.py +347 -0
  812. data/modules/emscripten/third_party/ply/test/yacc_badargs.py +68 -0
  813. data/modules/emscripten/third_party/ply/test/yacc_badid.py +77 -0
  814. data/modules/emscripten/third_party/ply/test/yacc_badprec.py +64 -0
  815. data/modules/emscripten/third_party/ply/test/yacc_badprec2.py +68 -0
  816. data/modules/emscripten/third_party/ply/test/yacc_badprec3.py +68 -0
  817. data/modules/emscripten/third_party/ply/test/yacc_badrule.py +68 -0
  818. data/modules/emscripten/third_party/ply/test/yacc_badtok.py +68 -0
  819. data/modules/emscripten/third_party/ply/test/yacc_dup.py +68 -0
  820. data/modules/emscripten/third_party/ply/test/yacc_error1.py +68 -0
  821. data/modules/emscripten/third_party/ply/test/yacc_error2.py +68 -0
  822. data/modules/emscripten/third_party/ply/test/yacc_error3.py +67 -0
  823. data/modules/emscripten/third_party/ply/test/yacc_error4.py +72 -0
  824. data/modules/emscripten/third_party/ply/test/yacc_inf.py +56 -0
  825. data/modules/emscripten/third_party/ply/test/yacc_literal.py +69 -0
  826. data/modules/emscripten/third_party/ply/test/yacc_misplaced.py +68 -0
  827. data/modules/emscripten/third_party/ply/test/yacc_missing1.py +68 -0
  828. data/modules/emscripten/third_party/ply/test/yacc_nested.py +33 -0
  829. data/modules/emscripten/third_party/ply/test/yacc_nodoc.py +67 -0
  830. data/modules/emscripten/third_party/ply/test/yacc_noerror.py +66 -0
  831. data/modules/emscripten/third_party/ply/test/yacc_nop.py +68 -0
  832. data/modules/emscripten/third_party/ply/test/yacc_notfunc.py +66 -0
  833. data/modules/emscripten/third_party/ply/test/yacc_notok.py +67 -0
  834. data/modules/emscripten/third_party/ply/test/yacc_prec1.py +68 -0
  835. data/modules/emscripten/third_party/ply/test/yacc_rr.py +72 -0
  836. data/modules/emscripten/third_party/ply/test/yacc_rr_unused.py +30 -0
  837. data/modules/emscripten/third_party/ply/test/yacc_simple.py +68 -0
  838. data/modules/emscripten/third_party/ply/test/yacc_sr.py +63 -0
  839. data/modules/emscripten/third_party/ply/test/yacc_term1.py +68 -0
  840. data/modules/emscripten/third_party/ply/test/yacc_unused.py +77 -0
  841. data/modules/emscripten/third_party/ply/test/yacc_unused_rule.py +72 -0
  842. data/modules/emscripten/third_party/ply/test/yacc_uprec.py +63 -0
  843. data/modules/emscripten/third_party/ply/test/yacc_uprec2.py +63 -0
  844. data/modules/emscripten/third_party/readme.txt +7 -0
  845. data/modules/emscripten/third_party/websockify/CHANGES.txt +23 -0
  846. data/modules/emscripten/third_party/websockify/LICENSE.txt +16 -0
  847. data/modules/emscripten/third_party/websockify/MANIFEST.in +1 -0
  848. data/modules/emscripten/third_party/websockify/Makefile +11 -0
  849. data/modules/emscripten/third_party/websockify/README.md +168 -0
  850. data/modules/emscripten/third_party/websockify/Windows/Windows Service Readme.txt +39 -0
  851. data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/Program.cs +24 -0
  852. data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/ProjectInstaller.Designer.cs +61 -0
  853. data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/ProjectInstaller.cs +19 -0
  854. data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/ProjectInstaller.resx +129 -0
  855. data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/Properties/AssemblyInfo.cs +36 -0
  856. data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/Service1.Designer.cs +37 -0
  857. data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/Service1.cs +41 -0
  858. data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/noVNC Websocket.csproj +75 -0
  859. data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/noVNC Websocket.sln +20 -0
  860. data/modules/emscripten/third_party/websockify/docs/LICENSE.GPL-3 +621 -0
  861. data/modules/emscripten/third_party/websockify/docs/LICENSE.LGPL-3 +165 -0
  862. data/modules/emscripten/third_party/websockify/docs/LICENSE.MPL-2.0 +373 -0
  863. data/modules/emscripten/third_party/websockify/docs/TODO +9 -0
  864. data/modules/emscripten/third_party/websockify/docs/flash_policy.txt +4 -0
  865. data/modules/emscripten/third_party/websockify/docs/latency_results.txt +114 -0
  866. data/modules/emscripten/third_party/websockify/docs/notes +17 -0
  867. data/modules/emscripten/third_party/websockify/docs/release.txt +9 -0
  868. data/modules/emscripten/third_party/websockify/docs/websockify.1 +110 -0
  869. data/modules/emscripten/third_party/websockify/include/VT100.js +919 -0
  870. data/modules/emscripten/third_party/websockify/include/base64.js +114 -0
  871. data/modules/emscripten/third_party/websockify/include/keysym.js +99 -0
  872. data/modules/emscripten/third_party/websockify/include/util.js +359 -0
  873. data/modules/emscripten/third_party/websockify/include/web-socket-js/README.txt +109 -0
  874. data/modules/emscripten/third_party/websockify/include/web-socket-js/WebSocketMain.swf +0 -0
  875. data/modules/emscripten/third_party/websockify/include/web-socket-js/swfobject.js +4 -0
  876. data/modules/emscripten/third_party/websockify/include/web-socket-js/web_socket.js +391 -0
  877. data/modules/emscripten/third_party/websockify/include/websock.js +422 -0
  878. data/modules/emscripten/third_party/websockify/include/webutil.js +216 -0
  879. data/modules/emscripten/third_party/websockify/include/wsirc.js +235 -0
  880. data/modules/emscripten/third_party/websockify/include/wstelnet.js +335 -0
  881. data/modules/emscripten/third_party/websockify/other/Makefile +14 -0
  882. data/modules/emscripten/third_party/websockify/other/README.md +51 -0
  883. data/modules/emscripten/third_party/websockify/other/launch.sh +108 -0
  884. data/modules/emscripten/third_party/websockify/other/project.clj +13 -0
  885. data/modules/emscripten/third_party/websockify/other/websocket.c +802 -0
  886. data/modules/emscripten/third_party/websockify/other/websocket.h +84 -0
  887. data/modules/emscripten/third_party/websockify/other/websocket.rb +456 -0
  888. data/modules/emscripten/third_party/websockify/other/websockify.c +385 -0
  889. data/modules/emscripten/third_party/websockify/other/websockify.clj +233 -0
  890. data/modules/emscripten/third_party/websockify/other/websockify.js +196 -0
  891. data/modules/emscripten/third_party/websockify/other/websockify.rb +171 -0
  892. data/modules/emscripten/third_party/websockify/other/wswrap +22 -0
  893. data/modules/emscripten/third_party/websockify/rebind +18 -0
  894. data/modules/emscripten/third_party/websockify/rebind.c +94 -0
  895. data/modules/emscripten/third_party/websockify/run +5 -0
  896. data/modules/emscripten/third_party/websockify/setup.py +30 -0
  897. data/modules/emscripten/third_party/websockify/tests/b64_vs_utf8.py +29 -0
  898. data/modules/emscripten/third_party/websockify/tests/base64.html +91 -0
  899. data/modules/emscripten/third_party/websockify/tests/base64.js +12 -0
  900. data/modules/emscripten/third_party/websockify/tests/echo.html +148 -0
  901. data/modules/emscripten/third_party/websockify/tests/echo.py +75 -0
  902. data/modules/emscripten/third_party/websockify/tests/echo.rb +62 -0
  903. data/modules/emscripten/third_party/websockify/tests/latency.html +290 -0
  904. data/modules/emscripten/third_party/websockify/tests/latency.py +75 -0
  905. data/modules/emscripten/third_party/websockify/tests/load.html +250 -0
  906. data/modules/emscripten/third_party/websockify/tests/load.py +167 -0
  907. data/modules/emscripten/third_party/websockify/tests/plain_echo.html +168 -0
  908. data/modules/emscripten/third_party/websockify/tests/simple.html +68 -0
  909. data/modules/emscripten/third_party/websockify/tests/utf8-list.py +22 -0
  910. data/modules/emscripten/third_party/websockify/websockify/__init__.py +2 -0
  911. data/modules/emscripten/third_party/websockify/websockify/websocket.py +982 -0
  912. data/modules/emscripten/third_party/websockify/websockify/websocketproxy.py +393 -0
  913. data/modules/emscripten/third_party/websockify/websockify.py +5 -0
  914. data/modules/emscripten/third_party/websockify/wsirc.html +99 -0
  915. data/modules/emscripten/third_party/websockify/wstelnet.html +74 -0
  916. data/modules/emscripten/tools/__init__.py +0 -0
  917. data/modules/emscripten/tools/__init__.pyc +0 -0
  918. data/modules/emscripten/tools/autodebugger.py +289 -0
  919. data/modules/emscripten/tools/autodebugger_c.py +37 -0
  920. data/modules/emscripten/tools/autodebugger_indenter.py +18 -0
  921. data/modules/emscripten/tools/autodebugger_js.py +47 -0
  922. data/modules/emscripten/tools/autodediffer.py +60 -0
  923. data/modules/emscripten/tools/bindings_generator.py +832 -0
  924. data/modules/emscripten/tools/bisect_pair.py +88 -0
  925. data/modules/emscripten/tools/cache.py +198 -0
  926. data/modules/emscripten/tools/cache.pyc +0 -0
  927. data/modules/emscripten/tools/clean_webconsole.py +34 -0
  928. data/modules/emscripten/tools/crunch-worker.js +124 -0
  929. data/modules/emscripten/tools/diff_autodebugger.py +15 -0
  930. data/modules/emscripten/tools/eliminator/asm-eliminator-test-output.js +5129 -0
  931. data/modules/emscripten/tools/eliminator/asm-eliminator-test.js +6861 -0
  932. data/modules/emscripten/tools/eliminator/eliminator-test-output.js +6122 -0
  933. data/modules/emscripten/tools/eliminator/eliminator-test.js +8856 -0
  934. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/README.html +888 -0
  935. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/README.org +463 -0
  936. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/bin/uglifyjs +317 -0
  937. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/docstyle.css +75 -0
  938. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/lib/object-ast.js +75 -0
  939. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/lib/parse-js.js +1363 -0
  940. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/lib/process.js +2005 -0
  941. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/lib/squeeze-more.js +51 -0
  942. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/package.json +22 -0
  943. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/beautify.js +28 -0
  944. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/testparser.js +402 -0
  945. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/array1.js +1 -0
  946. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/array2.js +1 -0
  947. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/array3.js +1 -0
  948. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/array4.js +1 -0
  949. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/assignment.js +1 -0
  950. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/concatstring.js +1 -0
  951. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/const.js +1 -0
  952. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/empty-blocks.js +1 -0
  953. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/forstatement.js +1 -0
  954. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/if.js +1 -0
  955. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/ifreturn.js +1 -0
  956. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/ifreturn2.js +1 -0
  957. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue10.js +1 -0
  958. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue11.js +1 -0
  959. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue13.js +1 -0
  960. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue14.js +1 -0
  961. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue16.js +1 -0
  962. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue17.js +1 -0
  963. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue20.js +1 -0
  964. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue21.js +1 -0
  965. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue25.js +1 -0
  966. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue27.js +1 -0
  967. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue28.js +1 -0
  968. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue29.js +1 -0
  969. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue30.js +1 -0
  970. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue34.js +1 -0
  971. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue4.js +1 -0
  972. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue48.js +1 -0
  973. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue50.js +1 -0
  974. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue53.js +1 -0
  975. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue54.1.js +1 -0
  976. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue68.js +1 -0
  977. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue69.js +1 -0
  978. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue9.js +1 -0
  979. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/mangle.js +1 -0
  980. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/strict-equals.js +1 -0
  981. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/var.js +1 -0
  982. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/with.js +1 -0
  983. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/array1.js +3 -0
  984. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/array2.js +4 -0
  985. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/array3.js +4 -0
  986. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/array4.js +6 -0
  987. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/assignment.js +20 -0
  988. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/concatstring.js +3 -0
  989. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/const.js +5 -0
  990. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/empty-blocks.js +4 -0
  991. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/forstatement.js +10 -0
  992. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/if.js +6 -0
  993. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/ifreturn.js +9 -0
  994. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/ifreturn2.js +16 -0
  995. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue10.js +1 -0
  996. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue11.js +3 -0
  997. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue13.js +1 -0
  998. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue14.js +1 -0
  999. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue16.js +1 -0
  1000. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue17.js +4 -0
  1001. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue20.js +1 -0
  1002. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue21.js +6 -0
  1003. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue25.js +7 -0
  1004. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue27.js +1 -0
  1005. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue28.js +3 -0
  1006. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue29.js +1 -0
  1007. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue30.js +3 -0
  1008. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue34.js +3 -0
  1009. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue4.js +3 -0
  1010. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue48.js +1 -0
  1011. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue50.js +9 -0
  1012. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue53.js +1 -0
  1013. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue54.1.js +3 -0
  1014. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue68.js +5 -0
  1015. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue69.js +1 -0
  1016. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue9.js +4 -0
  1017. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/mangle.js +5 -0
  1018. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/strict-equals.js +3 -0
  1019. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/var.js +3 -0
  1020. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/with.js +2 -0
  1021. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/scripts.js +55 -0
  1022. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/tmp/hoist.js +33 -0
  1023. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/tmp/instrument.js +97 -0
  1024. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/tmp/instrument2.js +138 -0
  1025. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/tmp/test.js +16 -0
  1026. data/modules/emscripten/tools/eliminator/node_modules/uglify-js/uglify-js.js +17 -0
  1027. data/modules/emscripten/tools/eliminator/safe-eliminator-test-output.js +85 -0
  1028. data/modules/emscripten/tools/eliminator/safe-eliminator-test.js +103 -0
  1029. data/modules/emscripten/tools/emconfiguren.py +19 -0
  1030. data/modules/emscripten/tools/emmaken.py +230 -0
  1031. data/modules/emscripten/tools/emmakenxx.py +18 -0
  1032. data/modules/emscripten/tools/exec_llvm.py +50 -0
  1033. data/modules/emscripten/tools/file2json.py +49 -0
  1034. data/modules/emscripten/tools/file_packager.py +649 -0
  1035. data/modules/emscripten/tools/find_bigfuncs.py +23 -0
  1036. data/modules/emscripten/tools/find_bigis.py +18 -0
  1037. data/modules/emscripten/tools/fix_closure.py +88 -0
  1038. data/modules/emscripten/tools/ie7_fix.py +14 -0
  1039. data/modules/emscripten/tools/js-optimizer.js +3440 -0
  1040. data/modules/emscripten/tools/js_optimizer.py +341 -0
  1041. data/modules/emscripten/tools/js_optimizer.pyc +0 -0
  1042. data/modules/emscripten/tools/jsrun.py +27 -0
  1043. data/modules/emscripten/tools/jsrun.pyc +0 -0
  1044. data/modules/emscripten/tools/ll-strip.py +56 -0
  1045. data/modules/emscripten/tools/make_file.py +19 -0
  1046. data/modules/emscripten/tools/make_minigzip.py +13 -0
  1047. data/modules/emscripten/tools/namespacer.py +95 -0
  1048. data/modules/emscripten/tools/nativize_llvm.py +34 -0
  1049. data/modules/emscripten/tools/node_modules/source-map/CHANGELOG.md +58 -0
  1050. data/modules/emscripten/tools/node_modules/source-map/LICENSE +28 -0
  1051. data/modules/emscripten/tools/node_modules/source-map/Makefile.dryice.js +166 -0
  1052. data/modules/emscripten/tools/node_modules/source-map/README.md +347 -0
  1053. data/modules/emscripten/tools/node_modules/source-map/build/assert-shim.js +56 -0
  1054. data/modules/emscripten/tools/node_modules/source-map/build/mini-require.js +152 -0
  1055. data/modules/emscripten/tools/node_modules/source-map/build/prefix-source-map.jsm +20 -0
  1056. data/modules/emscripten/tools/node_modules/source-map/build/prefix-utils.jsm +18 -0
  1057. data/modules/emscripten/tools/node_modules/source-map/build/suffix-browser.js +8 -0
  1058. data/modules/emscripten/tools/node_modules/source-map/build/suffix-source-map.jsm +6 -0
  1059. data/modules/emscripten/tools/node_modules/source-map/build/suffix-utils.jsm +21 -0
  1060. data/modules/emscripten/tools/node_modules/source-map/build/test-prefix.js +8 -0
  1061. data/modules/emscripten/tools/node_modules/source-map/build/test-suffix.js +3 -0
  1062. data/modules/emscripten/tools/node_modules/source-map/lib/source-map/array-set.js +96 -0
  1063. data/modules/emscripten/tools/node_modules/source-map/lib/source-map/base64-vlq.js +144 -0
  1064. data/modules/emscripten/tools/node_modules/source-map/lib/source-map/base64.js +42 -0
  1065. data/modules/emscripten/tools/node_modules/source-map/lib/source-map/binary-search.js +81 -0
  1066. data/modules/emscripten/tools/node_modules/source-map/lib/source-map/source-map-consumer.js +430 -0
  1067. data/modules/emscripten/tools/node_modules/source-map/lib/source-map/source-map-generator.js +381 -0
  1068. data/modules/emscripten/tools/node_modules/source-map/lib/source-map/source-node.js +353 -0
  1069. data/modules/emscripten/tools/node_modules/source-map/lib/source-map/util.js +117 -0
  1070. data/modules/emscripten/tools/node_modules/source-map/lib/source-map.js +8 -0
  1071. data/modules/emscripten/tools/node_modules/source-map/node_modules/amdefine/LICENSE +58 -0
  1072. data/modules/emscripten/tools/node_modules/source-map/node_modules/amdefine/README.md +119 -0
  1073. data/modules/emscripten/tools/node_modules/source-map/node_modules/amdefine/amdefine.js +299 -0
  1074. data/modules/emscripten/tools/node_modules/source-map/node_modules/amdefine/package.json +33 -0
  1075. data/modules/emscripten/tools/node_modules/source-map/package.json +74 -0
  1076. data/modules/emscripten/tools/node_modules/source-map/test/run-tests.js +73 -0
  1077. data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-api.js +26 -0
  1078. data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-array-set.js +71 -0
  1079. data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-base64-vlq.js +24 -0
  1080. data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-base64.js +35 -0
  1081. data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-binary-search.js +54 -0
  1082. data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-dog-fooding.js +72 -0
  1083. data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-source-map-consumer.js +306 -0
  1084. data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-source-map-generator.js +391 -0
  1085. data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-source-node.js +282 -0
  1086. data/modules/emscripten/tools/node_modules/source-map/test/source-map/util.js +152 -0
  1087. data/modules/emscripten/tools/reproduceriter.js +216 -0
  1088. data/modules/emscripten/tools/reproduceriter.py +160 -0
  1089. data/modules/emscripten/tools/response_file.py +28 -0
  1090. data/modules/emscripten/tools/response_file.pyc +0 -0
  1091. data/modules/emscripten/tools/scan_js.py +20 -0
  1092. data/modules/emscripten/tools/scan_ll.py +18 -0
  1093. data/modules/emscripten/tools/scons/site_scons/site_tools/emscripten/__init__.py +3 -0
  1094. data/modules/emscripten/tools/scons/site_scons/site_tools/emscripten/emscripten.py +46 -0
  1095. data/modules/emscripten/tools/settings_template_readonly.py +47 -0
  1096. data/modules/emscripten/tools/shared.py +1437 -0
  1097. data/modules/emscripten/tools/shared.pyc +0 -0
  1098. data/modules/emscripten/tools/source-maps/sourcemap2json.js +15 -0
  1099. data/modules/emscripten/tools/source-maps/sourcemapper.js +177 -0
  1100. data/modules/emscripten/tools/split.py +97 -0
  1101. data/modules/emscripten/tools/tempfiles.py +40 -0
  1102. data/modules/emscripten/tools/tempfiles.pyc +0 -0
  1103. data/modules/emscripten/tools/test-js-optimizer-asm-last-output.js +75 -0
  1104. data/modules/emscripten/tools/test-js-optimizer-asm-last.js +91 -0
  1105. data/modules/emscripten/tools/test-js-optimizer-asm-outline-output.js +570 -0
  1106. data/modules/emscripten/tools/test-js-optimizer-asm-outline.js +606 -0
  1107. data/modules/emscripten/tools/test-js-optimizer-asm-pre-output.js +540 -0
  1108. data/modules/emscripten/tools/test-js-optimizer-asm-pre.js +550 -0
  1109. data/modules/emscripten/tools/test-js-optimizer-asm-regs-min-output.js +36 -0
  1110. data/modules/emscripten/tools/test-js-optimizer-asm-regs-min.js +37 -0
  1111. data/modules/emscripten/tools/test-js-optimizer-asm-regs-output.js +106 -0
  1112. data/modules/emscripten/tools/test-js-optimizer-asm-regs.js +110 -0
  1113. data/modules/emscripten/tools/test-js-optimizer-asm-relocate-output.js +9 -0
  1114. data/modules/emscripten/tools/test-js-optimizer-asm-relocate.js +12 -0
  1115. data/modules/emscripten/tools/test-js-optimizer-output.js +291 -0
  1116. data/modules/emscripten/tools/test-js-optimizer-regs-output.js +232 -0
  1117. data/modules/emscripten/tools/test-js-optimizer-regs.js +237 -0
  1118. data/modules/emscripten/tools/test-js-optimizer-t2-output.js +91 -0
  1119. data/modules/emscripten/tools/test-js-optimizer-t2.js +92 -0
  1120. data/modules/emscripten/tools/test-js-optimizer-t2c-output.js +17 -0
  1121. data/modules/emscripten/tools/test-js-optimizer-t2c.js +18 -0
  1122. data/modules/emscripten/tools/test-js-optimizer-t3-output.js +49 -0
  1123. data/modules/emscripten/tools/test-js-optimizer-t3.js +50 -0
  1124. data/modules/emscripten/tools/test-js-optimizer.js +401 -0
  1125. data/modules/mruby/AUTHORS +18 -0
  1126. data/modules/mruby/CONTRIBUTING.md +65 -0
  1127. data/modules/mruby/ChangeLog +15 -0
  1128. data/modules/mruby/INSTALL +29 -0
  1129. data/modules/mruby/LEGAL +6 -0
  1130. data/modules/mruby/MITL +20 -0
  1131. data/modules/mruby/Makefile +18 -0
  1132. data/modules/mruby/NEWS +13 -0
  1133. data/modules/mruby/README.md +116 -0
  1134. data/modules/mruby/Rakefile +114 -0
  1135. data/modules/mruby/TODO +11 -0
  1136. data/modules/mruby/benchmark/ao-render.rb +315 -0
  1137. data/modules/mruby/benchmark/bm_so_lists.rb +47 -0
  1138. data/modules/mruby/benchmark/fib39.rb +8 -0
  1139. data/modules/mruby/build_config.rb +88 -0
  1140. data/modules/mruby/doc/compile/README.md +376 -0
  1141. data/modules/mruby/doc/mrbgems/README.md +254 -0
  1142. data/modules/mruby/examples/mrbgems/c_and_ruby_extension_example/README.md +4 -0
  1143. data/modules/mruby/examples/mrbgems/c_and_ruby_extension_example/mrbgem.rake +23 -0
  1144. data/modules/mruby/examples/mrbgems/c_and_ruby_extension_example/mrblib/example.rb +5 -0
  1145. data/modules/mruby/examples/mrbgems/c_and_ruby_extension_example/src/example.c +20 -0
  1146. data/modules/mruby/examples/mrbgems/c_and_ruby_extension_example/test/example.rb +7 -0
  1147. data/modules/mruby/examples/mrbgems/c_extension_example/README.md +4 -0
  1148. data/modules/mruby/examples/mrbgems/c_extension_example/mrbgem.rake +23 -0
  1149. data/modules/mruby/examples/mrbgems/c_extension_example/src/example.c +20 -0
  1150. data/modules/mruby/examples/mrbgems/c_extension_example/test/example.c +7 -0
  1151. data/modules/mruby/examples/mrbgems/c_extension_example/test/example.rb +3 -0
  1152. data/modules/mruby/examples/mrbgems/ruby_extension_example/README.md +4 -0
  1153. data/modules/mruby/examples/mrbgems/ruby_extension_example/mrbgem.rake +23 -0
  1154. data/modules/mruby/examples/mrbgems/ruby_extension_example/mrblib/example.rb +5 -0
  1155. data/modules/mruby/examples/mrbgems/ruby_extension_example/test/example.rb +3 -0
  1156. data/modules/mruby/examples/targets/ArduinoDue.rb +65 -0
  1157. data/modules/mruby/examples/targets/chipKitMax32.rb +68 -0
  1158. data/modules/mruby/include/mrbconf.h +87 -0
  1159. data/modules/mruby/include/mruby/array.h +63 -0
  1160. data/modules/mruby/include/mruby/class.h +75 -0
  1161. data/modules/mruby/include/mruby/compile.h +176 -0
  1162. data/modules/mruby/include/mruby/data.h +53 -0
  1163. data/modules/mruby/include/mruby/dump.h +151 -0
  1164. data/modules/mruby/include/mruby/gc.h +17 -0
  1165. data/modules/mruby/include/mruby/hash.h +54 -0
  1166. data/modules/mruby/include/mruby/irep.h +40 -0
  1167. data/modules/mruby/include/mruby/khash.h +257 -0
  1168. data/modules/mruby/include/mruby/numeric.h +32 -0
  1169. data/modules/mruby/include/mruby/proc.h +62 -0
  1170. data/modules/mruby/include/mruby/range.h +35 -0
  1171. data/modules/mruby/include/mruby/string.h +78 -0
  1172. data/modules/mruby/include/mruby/value.h +483 -0
  1173. data/modules/mruby/include/mruby/variable.h +78 -0
  1174. data/modules/mruby/include/mruby.h +388 -0
  1175. data/modules/mruby/minirake +477 -0
  1176. data/modules/mruby/mrbgems/default.gembox +61 -0
  1177. data/modules/mruby/mrbgems/full-core.gembox +9 -0
  1178. data/modules/mruby/mrbgems/mruby-array-ext/mrbgem.rake +4 -0
  1179. data/modules/mruby/mrbgems/mruby-array-ext/mrblib/array.rb +204 -0
  1180. data/modules/mruby/mrbgems/mruby-array-ext/src/array.c +140 -0
  1181. data/modules/mruby/mrbgems/mruby-array-ext/test/array.rb +109 -0
  1182. data/modules/mruby/mrbgems/mruby-bin-mirb/mrbgem.rake +5 -0
  1183. data/modules/mruby/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c +365 -0
  1184. data/modules/mruby/mrbgems/mruby-bin-mruby/mrbgem.rake +5 -0
  1185. data/modules/mruby/mrbgems/mruby-bin-mruby/tools/mruby/mruby.c +243 -0
  1186. data/modules/mruby/mrbgems/mruby-enum-ext/mrbgem.rake +4 -0
  1187. data/modules/mruby/mrbgems/mruby-enum-ext/mrblib/enum.rb +164 -0
  1188. data/modules/mruby/mrbgems/mruby-enum-ext/test/enum.rb +44 -0
  1189. data/modules/mruby/mrbgems/mruby-eval/mrbgem.rake +4 -0
  1190. data/modules/mruby/mrbgems/mruby-eval/src/eval.c +23 -0
  1191. data/modules/mruby/mrbgems/mruby-fiber/mrbgem.rake +4 -0
  1192. data/modules/mruby/mrbgems/mruby-fiber/src/fiber.c +251 -0
  1193. data/modules/mruby/mrbgems/mruby-fiber/test/fiber.rb +64 -0
  1194. data/modules/mruby/mrbgems/mruby-hash-ext/mrbgem.rake +4 -0
  1195. data/modules/mruby/mrbgems/mruby-hash-ext/mrblib/hash.rb +13 -0
  1196. data/modules/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c +62 -0
  1197. data/modules/mruby/mrbgems/mruby-hash-ext/test/hash.rb +26 -0
  1198. data/modules/mruby/mrbgems/mruby-math/mrbgem.rake +4 -0
  1199. data/modules/mruby/mrbgems/mruby-math/src/math.c +685 -0
  1200. data/modules/mruby/mrbgems/mruby-math/test/math.rb +136 -0
  1201. data/modules/mruby/mrbgems/mruby-numeric-ext/mrbgem.rake +4 -0
  1202. data/modules/mruby/mrbgems/mruby-numeric-ext/src/numeric_ext.c +31 -0
  1203. data/modules/mruby/mrbgems/mruby-numeric-ext/test/numeric.rb +10 -0
  1204. data/modules/mruby/mrbgems/mruby-object-ext/mrbgem.rake +4 -0
  1205. data/modules/mruby/mrbgems/mruby-object-ext/src/object.c +108 -0
  1206. data/modules/mruby/mrbgems/mruby-object-ext/test/nil.rb +11 -0
  1207. data/modules/mruby/mrbgems/mruby-object-ext/test/object.rb +9 -0
  1208. data/modules/mruby/mrbgems/mruby-objectspace/mrbgem.rake +4 -0
  1209. data/modules/mruby/mrbgems/mruby-objectspace/src/mruby_objectspace.c +117 -0
  1210. data/modules/mruby/mrbgems/mruby-objectspace/test/objectspace.rb +38 -0
  1211. data/modules/mruby/mrbgems/mruby-print/mrbgem.rake +4 -0
  1212. data/modules/mruby/mrbgems/mruby-print/mrblib/print.rb +64 -0
  1213. data/modules/mruby/mrbgems/mruby-print/src/print.c +44 -0
  1214. data/modules/mruby/mrbgems/mruby-proc-ext/mrbgem.rake +4 -0
  1215. data/modules/mruby/mrbgems/mruby-proc-ext/mrblib/proc.rb +40 -0
  1216. data/modules/mruby/mrbgems/mruby-proc-ext/src/proc.c +97 -0
  1217. data/modules/mruby/mrbgems/mruby-proc-ext/test/proc.rb +41 -0
  1218. data/modules/mruby/mrbgems/mruby-random/mrbgem.rake +4 -0
  1219. data/modules/mruby/mrbgems/mruby-random/src/mt19937ar.c +193 -0
  1220. data/modules/mruby/mrbgems/mruby-random/src/mt19937ar.h +48 -0
  1221. data/modules/mruby/mrbgems/mruby-random/src/random.c +231 -0
  1222. data/modules/mruby/mrbgems/mruby-random/src/random.h +12 -0
  1223. data/modules/mruby/mrbgems/mruby-random/test/random.rb +32 -0
  1224. data/modules/mruby/mrbgems/mruby-range-ext/mrbgem.rake +4 -0
  1225. data/modules/mruby/mrbgems/mruby-range-ext/src/range.c +141 -0
  1226. data/modules/mruby/mrbgems/mruby-range-ext/test/range.rb +20 -0
  1227. data/modules/mruby/mrbgems/mruby-sprintf/mrbgem.rake +4 -0
  1228. data/modules/mruby/mrbgems/mruby-sprintf/src/kernel.c +30 -0
  1229. data/modules/mruby/mrbgems/mruby-sprintf/src/sprintf.c +1102 -0
  1230. data/modules/mruby/mrbgems/mruby-sprintf/test/sprintf.rb +3 -0
  1231. data/modules/mruby/mrbgems/mruby-string-ext/mrbgem.rake +4 -0
  1232. data/modules/mruby/mrbgems/mruby-string-ext/mrblib/string.rb +52 -0
  1233. data/modules/mruby/mrbgems/mruby-string-ext/src/string.c +175 -0
  1234. data/modules/mruby/mrbgems/mruby-string-ext/test/string.rb +112 -0
  1235. data/modules/mruby/mrbgems/mruby-struct/mrbgem.rake +4 -0
  1236. data/modules/mruby/mrbgems/mruby-struct/mrblib/struct.rb +50 -0
  1237. data/modules/mruby/mrbgems/mruby-struct/src/struct.c +818 -0
  1238. data/modules/mruby/mrbgems/mruby-struct/test/struct.rb +77 -0
  1239. data/modules/mruby/mrbgems/mruby-symbol-ext/mrbgem.rake +4 -0
  1240. data/modules/mruby/mrbgems/mruby-symbol-ext/mrblib/symbol.rb +9 -0
  1241. data/modules/mruby/mrbgems/mruby-symbol-ext/src/symbol.c +55 -0
  1242. data/modules/mruby/mrbgems/mruby-symbol-ext/test/symbol.rb +12 -0
  1243. data/modules/mruby/mrbgems/mruby-time/mrbgem.rake +4 -0
  1244. data/modules/mruby/mrbgems/mruby-time/src/time.c +749 -0
  1245. data/modules/mruby/mrbgems/mruby-time/test/time.rb +201 -0
  1246. data/modules/mruby/mrbgems/mruby-toplevel-ext/mrbgem.rake +4 -0
  1247. data/modules/mruby/mrbgems/mruby-toplevel-ext/mrblib/toplevel.rb +11 -0
  1248. data/modules/mruby/mrbgems/mruby-toplevel-ext/test/toplevel.rb +24 -0
  1249. data/modules/mruby/mrblib/array.rb +111 -0
  1250. data/modules/mruby/mrblib/class.rb +26 -0
  1251. data/modules/mruby/mrblib/compar.rb +104 -0
  1252. data/modules/mruby/mrblib/enum.rb +398 -0
  1253. data/modules/mruby/mrblib/error.rb +66 -0
  1254. data/modules/mruby/mrblib/hash.rb +193 -0
  1255. data/modules/mruby/mrblib/init_mrblib.c +14 -0
  1256. data/modules/mruby/mrblib/kernel.rb +46 -0
  1257. data/modules/mruby/mrblib/mrblib.rake +18 -0
  1258. data/modules/mruby/mrblib/numeric.rb +101 -0
  1259. data/modules/mruby/mrblib/print.rb +18 -0
  1260. data/modules/mruby/mrblib/range.rb +40 -0
  1261. data/modules/mruby/mrblib/string.rb +145 -0
  1262. data/modules/mruby/src/array.c +1150 -0
  1263. data/modules/mruby/src/backtrace.c +73 -0
  1264. data/modules/mruby/src/class.c +1942 -0
  1265. data/modules/mruby/src/codegen.c +2864 -0
  1266. data/modules/mruby/src/compar.c +13 -0
  1267. data/modules/mruby/src/crc.c +38 -0
  1268. data/modules/mruby/src/dump.c +542 -0
  1269. data/modules/mruby/src/enum.c +14 -0
  1270. data/modules/mruby/src/error.c +454 -0
  1271. data/modules/mruby/src/error.h +18 -0
  1272. data/modules/mruby/src/etc.c +204 -0
  1273. data/modules/mruby/src/gc.c +1542 -0
  1274. data/modules/mruby/src/hash.c +1261 -0
  1275. data/modules/mruby/src/init.c +62 -0
  1276. data/modules/mruby/src/kernel.c +1105 -0
  1277. data/modules/mruby/src/keywords +50 -0
  1278. data/modules/mruby/src/lex.def +212 -0
  1279. data/modules/mruby/src/load.c +629 -0
  1280. data/modules/mruby/src/mruby_core.rake +28 -0
  1281. data/modules/mruby/src/node.h +117 -0
  1282. data/modules/mruby/src/numeric.c +1418 -0
  1283. data/modules/mruby/src/object.c +593 -0
  1284. data/modules/mruby/src/opcode.h +160 -0
  1285. data/modules/mruby/src/parse.y +6050 -0
  1286. data/modules/mruby/src/pool.c +190 -0
  1287. data/modules/mruby/src/print.c +71 -0
  1288. data/modules/mruby/src/proc.c +209 -0
  1289. data/modules/mruby/src/range.c +442 -0
  1290. data/modules/mruby/src/re.h +13 -0
  1291. data/modules/mruby/src/state.c +200 -0
  1292. data/modules/mruby/src/string.c +2580 -0
  1293. data/modules/mruby/src/symbol.c +456 -0
  1294. data/modules/mruby/src/value_array.h +27 -0
  1295. data/modules/mruby/src/variable.c +1147 -0
  1296. data/modules/mruby/src/vm.c +2129 -0
  1297. data/modules/mruby/tasks/libmruby.rake +18 -0
  1298. data/modules/mruby/tasks/mrbgem_spec.rake +297 -0
  1299. data/modules/mruby/tasks/mrbgems.rake +85 -0
  1300. data/modules/mruby/tasks/mrbgems_test.rake +88 -0
  1301. data/modules/mruby/tasks/mruby_build.rake +211 -0
  1302. data/modules/mruby/tasks/mruby_build_commands.rake +287 -0
  1303. data/modules/mruby/tasks/mruby_build_gem.rake +67 -0
  1304. data/modules/mruby/tasks/ruby_ext.rake +70 -0
  1305. data/modules/mruby/tasks/toolchains/androideabi.rake +126 -0
  1306. data/modules/mruby/tasks/toolchains/clang.rake +8 -0
  1307. data/modules/mruby/tasks/toolchains/gcc.rake +21 -0
  1308. data/modules/mruby/tasks/toolchains/vs2010.rake +3 -0
  1309. data/modules/mruby/tasks/toolchains/vs2012.rake +44 -0
  1310. data/modules/mruby/test/README.md +7 -0
  1311. data/modules/mruby/test/assert.rb +238 -0
  1312. data/modules/mruby/test/driver.c +118 -0
  1313. data/modules/mruby/test/init_mrbtest.c +24 -0
  1314. data/modules/mruby/test/mrbtest.rake +47 -0
  1315. data/modules/mruby/test/report.rb +4 -0
  1316. data/modules/mruby/test/t/argumenterror.rb +21 -0
  1317. data/modules/mruby/test/t/array.rb +309 -0
  1318. data/modules/mruby/test/t/basicobject.rb +11 -0
  1319. data/modules/mruby/test/t/bs_block.rb +489 -0
  1320. data/modules/mruby/test/t/bs_literal.rb +38 -0
  1321. data/modules/mruby/test/t/class.rb +219 -0
  1322. data/modules/mruby/test/t/comparable.rb +72 -0
  1323. data/modules/mruby/test/t/enumerable.rb +108 -0
  1324. data/modules/mruby/test/t/exception.rb +337 -0
  1325. data/modules/mruby/test/t/false.rb +33 -0
  1326. data/modules/mruby/test/t/float.rb +145 -0
  1327. data/modules/mruby/test/t/gc.rb +45 -0
  1328. data/modules/mruby/test/t/hash.rb +310 -0
  1329. data/modules/mruby/test/t/indexerror.rb +10 -0
  1330. data/modules/mruby/test/t/integer.rb +222 -0
  1331. data/modules/mruby/test/t/kernel.rb +425 -0
  1332. data/modules/mruby/test/t/literals.rb +287 -0
  1333. data/modules/mruby/test/t/localjumperror.rb +13 -0
  1334. data/modules/mruby/test/t/methods.rb +109 -0
  1335. data/modules/mruby/test/t/module.rb +344 -0
  1336. data/modules/mruby/test/t/nameerror.rb +32 -0
  1337. data/modules/mruby/test/t/nil.rb +29 -0
  1338. data/modules/mruby/test/t/nomethoderror.rb +13 -0
  1339. data/modules/mruby/test/t/numeric.rb +29 -0
  1340. data/modules/mruby/test/t/object.rb +11 -0
  1341. data/modules/mruby/test/t/proc.rb +56 -0
  1342. data/modules/mruby/test/t/range.rb +82 -0
  1343. data/modules/mruby/test/t/rangeerror.rb +10 -0
  1344. data/modules/mruby/test/t/regexperror.rb +4 -0
  1345. data/modules/mruby/test/t/runtimeerror.rb +6 -0
  1346. data/modules/mruby/test/t/standarderror.rb +10 -0
  1347. data/modules/mruby/test/t/string.rb +483 -0
  1348. data/modules/mruby/test/t/symbol.rb +27 -0
  1349. data/modules/mruby/test/t/syntax.rb +67 -0
  1350. data/modules/mruby/test/t/true.rb +33 -0
  1351. data/modules/mruby/test/t/typeerror.rb +11 -0
  1352. data/modules/mruby/tools/mrbc/mrbc.c +318 -0
  1353. data/modules/mruby/tools/mrbc/mrbc.rake +14 -0
  1354. data/modules/mruby/travis_config.rb +6 -0
  1355. data/modules/mrubymix/LICENSE +21 -0
  1356. data/modules/mrubymix/README.md +6 -0
  1357. data/modules/mrubymix/bin/mrubymix +29 -0
  1358. data/modules/mrubymix/lib/mrubymix.rb +93 -0
  1359. data/modules/mrubymix/mrubymix.gemspec +13 -0
  1360. data/scripts/gen_gems_config.rb +185 -0
  1361. data/scripts/gen_post.rb +104 -0
  1362. data/templates/minimal/Rakefile +36 -0
  1363. data/templates/minimal/app/app.rb +3 -0
  1364. metadata +1408 -0
@@ -0,0 +1,2580 @@
1
+ /*
2
+ ** string.c - String class
3
+ **
4
+ ** See Copyright Notice in mruby.h
5
+ */
6
+
7
+ #include <ctype.h>
8
+ #ifndef SIZE_MAX
9
+ /* Some versions of VC++
10
+ * has SIZE_MAX in stdint.h
11
+ */
12
+ # include <limits.h>
13
+ #endif
14
+ #include <stddef.h>
15
+ #include <stdlib.h>
16
+ #include <string.h>
17
+ #include "mruby.h"
18
+ #include "mruby/array.h"
19
+ #include "mruby/class.h"
20
+ #include "mruby/range.h"
21
+ #include "mruby/string.h"
22
+ #include "re.h"
23
+
24
+ const char mrb_digitmap[] = "0123456789abcdefghijklmnopqrstuvwxyz";
25
+
26
+ typedef struct mrb_shared_string {
27
+ mrb_bool nofree;
28
+ int refcnt;
29
+ char *ptr;
30
+ mrb_int len;
31
+ } mrb_shared_string;
32
+
33
+ #define MRB_STR_SHARED 1
34
+ #define MRB_STR_NOFREE 2
35
+
36
+ static mrb_value str_replace(mrb_state *mrb, struct RString *s1, struct RString *s2);
37
+ static mrb_value mrb_str_subseq(mrb_state *mrb, mrb_value str, mrb_int beg, mrb_int len);
38
+
39
+ #define RESIZE_CAPA(s,capacity) do {\
40
+ s->ptr = (char *)mrb_realloc(mrb, s->ptr, (capacity)+1);\
41
+ s->aux.capa = capacity;\
42
+ } while(0)
43
+
44
+ static void
45
+ str_decref(mrb_state *mrb, mrb_shared_string *shared)
46
+ {
47
+ shared->refcnt--;
48
+ if (shared->refcnt == 0) {
49
+ if (!shared->nofree) {
50
+ mrb_free(mrb, shared->ptr);
51
+ }
52
+ mrb_free(mrb, shared);
53
+ }
54
+ }
55
+
56
+ void
57
+ mrb_str_modify(mrb_state *mrb, struct RString *s)
58
+ {
59
+ if (s->flags & MRB_STR_SHARED) {
60
+ mrb_shared_string *shared = s->aux.shared;
61
+
62
+ if (shared->refcnt == 1 && s->ptr == shared->ptr) {
63
+ s->ptr = shared->ptr;
64
+ s->aux.capa = shared->len;
65
+ mrb_free(mrb, shared);
66
+ }
67
+ else {
68
+ char *ptr, *p;
69
+ mrb_int len;
70
+
71
+ p = s->ptr;
72
+ len = s->len;
73
+ ptr = (char *)mrb_malloc(mrb, (size_t)len + 1);
74
+ if (p) {
75
+ memcpy(ptr, p, len);
76
+ }
77
+ ptr[len] = '\0';
78
+ s->ptr = ptr;
79
+ s->aux.capa = len;
80
+ str_decref(mrb, shared);
81
+ }
82
+ s->flags &= ~MRB_STR_SHARED;
83
+ return;
84
+ }
85
+ if (s->flags & MRB_STR_NOFREE) {
86
+ char *p = s->ptr;
87
+
88
+ s->ptr = (char *)mrb_malloc(mrb, (size_t)s->len+1);
89
+ if (p) {
90
+ memcpy(s->ptr, p, s->len);
91
+ }
92
+ s->ptr[s->len] = '\0';
93
+ s->aux.capa = s->len;
94
+ return;
95
+ }
96
+ }
97
+
98
+ mrb_value
99
+ mrb_str_resize(mrb_state *mrb, mrb_value str, mrb_int len)
100
+ {
101
+ int slen;
102
+ struct RString *s = mrb_str_ptr(str);
103
+
104
+ mrb_str_modify(mrb, s);
105
+ slen = s->len;
106
+ if (len != slen) {
107
+ if (slen < len || slen - len > 256) {
108
+ RESIZE_CAPA(s, len);
109
+ }
110
+ s->len = len;
111
+ s->ptr[len] = '\0'; /* sentinel */
112
+ }
113
+ return str;
114
+ }
115
+
116
+ static inline void
117
+ str_mod_check(mrb_state *mrb, mrb_value str, char *p, mrb_int len)
118
+ {
119
+ struct RString *s = mrb_str_ptr(str);
120
+
121
+ if (s->ptr != p || s->len != len) {
122
+ mrb_raise(mrb, E_RUNTIME_ERROR, "string modified");
123
+ }
124
+ }
125
+
126
+ #define mrb_obj_alloc_string(mrb) ((struct RString*)mrb_obj_alloc((mrb), MRB_TT_STRING, (mrb)->string_class))
127
+
128
+ /* char offset to byte offset */
129
+ int
130
+ mrb_str_offset(mrb_state *mrb, mrb_value str, int pos)
131
+ {
132
+ return pos;
133
+ }
134
+
135
+ static struct RString*
136
+ str_new(mrb_state *mrb, const char *p, mrb_int len)
137
+ {
138
+ struct RString *s;
139
+
140
+ s = mrb_obj_alloc_string(mrb);
141
+ s->len = len;
142
+ s->aux.capa = len;
143
+ s->ptr = (char *)mrb_malloc(mrb, (size_t)len+1);
144
+ if (p) {
145
+ memcpy(s->ptr, p, len);
146
+ }
147
+ s->ptr[len] = '\0';
148
+ return s;
149
+ }
150
+
151
+ void
152
+ str_with_class(mrb_state *mrb, struct RString *s, mrb_value obj)
153
+ {
154
+ s->c = mrb_str_ptr(obj)->c;
155
+ }
156
+
157
+ static mrb_value
158
+ mrb_str_new_empty(mrb_state *mrb, mrb_value str)
159
+ {
160
+ struct RString *s = str_new(mrb, 0, 0);
161
+
162
+ str_with_class(mrb, s, str);
163
+ return mrb_obj_value(s);
164
+ }
165
+
166
+ #ifndef MRB_STR_BUF_MIN_SIZE
167
+ # define MRB_STR_BUF_MIN_SIZE 128
168
+ #endif
169
+
170
+ mrb_value
171
+ mrb_str_buf_new(mrb_state *mrb, mrb_int capa)
172
+ {
173
+ struct RString *s;
174
+
175
+ s = mrb_obj_alloc_string(mrb);
176
+
177
+ if (capa < MRB_STR_BUF_MIN_SIZE) {
178
+ capa = MRB_STR_BUF_MIN_SIZE;
179
+ }
180
+ s->len = 0;
181
+ s->aux.capa = capa;
182
+ s->ptr = (char *)mrb_malloc(mrb, capa+1);
183
+ s->ptr[0] = '\0';
184
+
185
+ return mrb_obj_value(s);
186
+ }
187
+
188
+ static void
189
+ str_buf_cat(mrb_state *mrb, struct RString *s, const char *ptr, size_t len)
190
+ {
191
+ mrb_int capa;
192
+ mrb_int total;
193
+ ptrdiff_t off = -1;
194
+
195
+ mrb_str_modify(mrb, s);
196
+ if (ptr >= s->ptr && ptr <= s->ptr + s->len) {
197
+ off = ptr - s->ptr;
198
+ }
199
+ if (len == 0) return;
200
+ capa = s->aux.capa;
201
+ if (s->len >= MRB_INT_MAX - (mrb_int)len) {
202
+ mrb_raise(mrb, E_ARGUMENT_ERROR, "string sizes too big");
203
+ }
204
+ total = s->len+len;
205
+ if (capa <= total) {
206
+ while (total > capa) {
207
+ if (capa + 1 >= MRB_INT_MAX / 2) {
208
+ capa = (total + 4095) / 4096;
209
+ break;
210
+ }
211
+ capa = (capa + 1) * 2;
212
+ }
213
+ RESIZE_CAPA(s, capa);
214
+ }
215
+ if (off != -1) {
216
+ ptr = s->ptr + off;
217
+ }
218
+ memcpy(s->ptr + s->len, ptr, len);
219
+ s->len = total;
220
+ s->ptr[total] = '\0'; /* sentinel */
221
+ }
222
+
223
+ mrb_value
224
+ mrb_str_buf_cat(mrb_state *mrb, mrb_value str, const char *ptr, size_t len)
225
+ {
226
+ if (len == 0) return str;
227
+ str_buf_cat(mrb, mrb_str_ptr(str), ptr, len);
228
+ return str;
229
+ }
230
+
231
+ mrb_value
232
+ mrb_str_new(mrb_state *mrb, const char *p, size_t len)
233
+ {
234
+ struct RString *s;
235
+
236
+ s = str_new(mrb, p, len);
237
+ return mrb_obj_value(s);
238
+ }
239
+
240
+ /*
241
+ * call-seq: (Caution! NULL string)
242
+ * String.new(str="") => new_str
243
+ *
244
+ * Returns a new string object containing a copy of <i>str</i>.
245
+ */
246
+
247
+ mrb_value
248
+ mrb_str_new_cstr(mrb_state *mrb, const char *p)
249
+ {
250
+ struct RString *s;
251
+ size_t len;
252
+
253
+ if (p) {
254
+ len = strlen(p);
255
+ if ((mrb_int)len < 0) {
256
+ mrb_raise(mrb, E_ARGUMENT_ERROR, "argument too big");
257
+ }
258
+ }
259
+ else {
260
+ len = 0;
261
+ }
262
+
263
+ s = str_new(mrb, p, len);
264
+
265
+ return mrb_obj_value(s);
266
+ }
267
+
268
+ mrb_value
269
+ mrb_str_new_static(mrb_state *mrb, const char *p, size_t len)
270
+ {
271
+ struct RString *s;
272
+
273
+ s = mrb_obj_alloc_string(mrb);
274
+ s->len = len;
275
+ s->aux.capa = 0; /* nofree */
276
+ s->ptr = (char *)p;
277
+ s->flags = MRB_STR_NOFREE;
278
+ return mrb_obj_value(s);
279
+ }
280
+
281
+ void
282
+ mrb_gc_free_str(mrb_state *mrb, struct RString *str)
283
+ {
284
+ if (str->flags & MRB_STR_SHARED)
285
+ str_decref(mrb, str->aux.shared);
286
+ else if ((str->flags & MRB_STR_NOFREE) == 0)
287
+ mrb_free(mrb, str->ptr);
288
+ }
289
+
290
+ char *
291
+ mrb_str_to_cstr(mrb_state *mrb, mrb_value str0)
292
+ {
293
+ struct RString *s;
294
+
295
+ if (!mrb_string_p(str0)) {
296
+ mrb_raise(mrb, E_TYPE_ERROR, "expected String");
297
+ }
298
+
299
+ s = str_new(mrb, RSTRING_PTR(str0), RSTRING_LEN(str0));
300
+ if ((strlen(s->ptr) ^ s->len) != 0) {
301
+ mrb_raise(mrb, E_ARGUMENT_ERROR, "string contains null byte");
302
+ }
303
+ return s->ptr;
304
+ }
305
+
306
+ static void
307
+ str_make_shared(mrb_state *mrb, struct RString *s)
308
+ {
309
+ if (!(s->flags & MRB_STR_SHARED)) {
310
+ mrb_shared_string *shared = (mrb_shared_string *)mrb_malloc(mrb, sizeof(mrb_shared_string));
311
+
312
+ shared->refcnt = 1;
313
+ if (s->flags & MRB_STR_NOFREE) {
314
+ shared->nofree = TRUE;
315
+ shared->ptr = s->ptr;
316
+ s->flags &= ~MRB_STR_NOFREE;
317
+ }
318
+ else {
319
+ shared->nofree = FALSE;
320
+ if (s->aux.capa > s->len) {
321
+ s->ptr = shared->ptr = (char *)mrb_realloc(mrb, s->ptr, s->len+1);
322
+ }
323
+ else {
324
+ shared->ptr = s->ptr;
325
+ }
326
+ }
327
+ shared->len = s->len;
328
+ s->aux.shared = shared;
329
+ s->flags |= MRB_STR_SHARED;
330
+ }
331
+ }
332
+
333
+ /*
334
+ * call-seq: (Caution! string literal)
335
+ * String.new(str="") => new_str
336
+ *
337
+ * Returns a new string object containing a copy of <i>str</i>.
338
+ */
339
+
340
+ mrb_value
341
+ mrb_str_literal(mrb_state *mrb, mrb_value str)
342
+ {
343
+ struct RString *s, *orig;
344
+ mrb_shared_string *shared;
345
+
346
+ s = mrb_obj_alloc_string(mrb);
347
+ orig = mrb_str_ptr(str);
348
+ if (!(orig->flags & MRB_STR_SHARED)) {
349
+ str_make_shared(mrb, orig);
350
+ }
351
+ shared = orig->aux.shared;
352
+ shared->refcnt++;
353
+ s->ptr = shared->ptr;
354
+ s->len = shared->len;
355
+ s->aux.shared = shared;
356
+ s->flags |= MRB_STR_SHARED;
357
+
358
+ return mrb_obj_value(s);
359
+ }
360
+
361
+ /*
362
+ * call-seq:
363
+ * char* str = String("abcd"), len=strlen("abcd")
364
+ *
365
+ * Returns a new string object containing a copy of <i>str</i>.
366
+ */
367
+ const char*
368
+ mrb_str_body(mrb_value str, int *len_p)
369
+ {
370
+ struct RString *s = mrb_str_ptr(str);
371
+
372
+ *len_p = s->len;
373
+ return s->ptr;
374
+ }
375
+
376
+ /*
377
+ * call-seq: (Caution! String("abcd") change)
378
+ * String("abcdefg") = String("abcd") + String("efg")
379
+ *
380
+ * Returns a new string object containing a copy of <i>str</i>.
381
+ */
382
+ void
383
+ mrb_str_concat(mrb_state *mrb, mrb_value self, mrb_value other)
384
+ {
385
+ struct RString *s1 = mrb_str_ptr(self), *s2;
386
+ mrb_int len;
387
+
388
+ mrb_str_modify(mrb, s1);
389
+ if (!mrb_string_p(other)) {
390
+ other = mrb_str_to_str(mrb, other);
391
+ }
392
+ s2 = mrb_str_ptr(other);
393
+ len = s1->len + s2->len;
394
+
395
+ if (s1->aux.capa < len) {
396
+ s1->aux.capa = len;
397
+ s1->ptr = (char *)mrb_realloc(mrb, s1->ptr, len+1);
398
+ }
399
+ memcpy(s1->ptr+s1->len, s2->ptr, s2->len);
400
+ s1->len = len;
401
+ s1->ptr[len] = '\0';
402
+ }
403
+
404
+ /*
405
+ * call-seq: (Caution! String("abcd") remain)
406
+ * String("abcdefg") = String("abcd") + String("efg")
407
+ *
408
+ * Returns a new string object containing a copy of <i>str</i>.
409
+ */
410
+ mrb_value
411
+ mrb_str_plus(mrb_state *mrb, mrb_value a, mrb_value b)
412
+ {
413
+ struct RString *s = mrb_str_ptr(a);
414
+ struct RString *s2 = mrb_str_ptr(b);
415
+ struct RString *t;
416
+
417
+ t = str_new(mrb, 0, s->len + s2->len);
418
+ memcpy(t->ptr, s->ptr, s->len);
419
+ memcpy(t->ptr + s->len, s2->ptr, s2->len);
420
+
421
+ return mrb_obj_value(t);
422
+ }
423
+
424
+ /* 15.2.10.5.2 */
425
+
426
+ /*
427
+ * call-seq: (Caution! String("abcd") remain) for stack_argument
428
+ * String("abcdefg") = String("abcd") + String("efg")
429
+ *
430
+ * Returns a new string object containing a copy of <i>str</i>.
431
+ */
432
+ static mrb_value
433
+ mrb_str_plus_m(mrb_state *mrb, mrb_value self)
434
+ {
435
+ mrb_value str;
436
+
437
+ mrb_get_args(mrb, "S", &str);
438
+ return mrb_str_plus(mrb, self, str);
439
+ }
440
+
441
+ /*
442
+ * call-seq:
443
+ * len = strlen(String("abcd"))
444
+ *
445
+ * Returns a new string object containing a copy of <i>str</i>.
446
+ */
447
+ static mrb_value
448
+ mrb_str_bytesize(mrb_state *mrb, mrb_value self)
449
+ {
450
+ struct RString *s = mrb_str_ptr(self);
451
+ return mrb_fixnum_value(s->len);
452
+ }
453
+
454
+ /* 15.2.10.5.26 */
455
+ /* 15.2.10.5.33 */
456
+ /*
457
+ * call-seq:
458
+ * len = strlen(String("abcd"))
459
+ *
460
+ * Returns a new string object containing a copy of <i>str</i>.
461
+ */
462
+ mrb_value
463
+ mrb_str_size(mrb_state *mrb, mrb_value self)
464
+ {
465
+ struct RString *s = mrb_str_ptr(self);
466
+ return mrb_fixnum_value(s->len);
467
+ }
468
+
469
+ /* 15.2.10.5.1 */
470
+ /*
471
+ * call-seq:
472
+ * str * integer => new_str
473
+ *
474
+ * Copy---Returns a new <code>String</code> containing <i>integer</i> copies of
475
+ * the receiver.
476
+ *
477
+ * "Ho! " * 3 #=> "Ho! Ho! Ho! "
478
+ */
479
+ static mrb_value
480
+ mrb_str_times(mrb_state *mrb, mrb_value self)
481
+ {
482
+ mrb_int n,len,times;
483
+ struct RString *str2;
484
+ char *p;
485
+
486
+ mrb_get_args(mrb, "i", &times);
487
+ if (times < 0) {
488
+ mrb_raise(mrb, E_ARGUMENT_ERROR, "negative argument");
489
+ }
490
+ if (times && MRB_INT_MAX / times < RSTRING_LEN(self)) {
491
+ mrb_raise(mrb, E_ARGUMENT_ERROR, "argument too big");
492
+ }
493
+
494
+ len = RSTRING_LEN(self)*times;
495
+ str2 = str_new(mrb, 0, len);
496
+ str_with_class(mrb, str2, self);
497
+ p = str2->ptr;
498
+ if (len > 0) {
499
+ n = RSTRING_LEN(self);
500
+ memcpy(p, RSTRING_PTR(self), n);
501
+ while (n <= len/2) {
502
+ memcpy(p + n, p, n);
503
+ n *= 2;
504
+ }
505
+ memcpy(p + n, p, len-n);
506
+ }
507
+ p[str2->len] = '\0';
508
+
509
+ return mrb_obj_value(str2);
510
+ }
511
+ /* -------------------------------------------------------------- */
512
+
513
+ #define lesser(a,b) (((a)>(b))?(b):(a))
514
+
515
+ /* ---------------------------*/
516
+ /*
517
+ * call-seq:
518
+ * mrb_value str1 <=> mrb_value str2 => int
519
+ * > 1
520
+ * = 0
521
+ * < -1
522
+ */
523
+ int
524
+ mrb_str_cmp(mrb_state *mrb, mrb_value str1, mrb_value str2)
525
+ {
526
+ mrb_int len;
527
+ mrb_int retval;
528
+ struct RString *s1 = mrb_str_ptr(str1);
529
+ struct RString *s2 = mrb_str_ptr(str2);
530
+
531
+ len = lesser(s1->len, s2->len);
532
+ retval = memcmp(s1->ptr, s2->ptr, len);
533
+ if (retval == 0) {
534
+ if (s1->len == s2->len) return 0;
535
+ if (s1->len > s2->len) return 1;
536
+ return -1;
537
+ }
538
+ if (retval > 0) return 1;
539
+ return -1;
540
+ }
541
+
542
+ /* 15.2.10.5.3 */
543
+
544
+ /*
545
+ * call-seq:
546
+ * str <=> other_str => -1, 0, +1
547
+ *
548
+ * Comparison---Returns -1 if <i>other_str</i> is less than, 0 if
549
+ * <i>other_str</i> is equal to, and +1 if <i>other_str</i> is greater than
550
+ * <i>str</i>. If the strings are of different lengths, and the strings are
551
+ * equal when compared up to the shortest length, then the longer string is
552
+ * considered greater than the shorter one. If the variable <code>$=</code> is
553
+ * <code>false</code>, the comparison is based on comparing the binary values
554
+ * of each character in the string. In older versions of Ruby, setting
555
+ * <code>$=</code> allowed case-insensitive comparisons; this is now deprecated
556
+ * in favor of using <code>String#casecmp</code>.
557
+ *
558
+ * <code><=></code> is the basis for the methods <code><</code>,
559
+ * <code><=</code>, <code>></code>, <code>>=</code>, and <code>between?</code>,
560
+ * included from module <code>Comparable</code>. The method
561
+ * <code>String#==</code> does not use <code>Comparable#==</code>.
562
+ *
563
+ * "abcdef" <=> "abcde" #=> 1
564
+ * "abcdef" <=> "abcdef" #=> 0
565
+ * "abcdef" <=> "abcdefg" #=> -1
566
+ * "abcdef" <=> "ABCDEF" #=> 1
567
+ */
568
+ static mrb_value
569
+ mrb_str_cmp_m(mrb_state *mrb, mrb_value str1)
570
+ {
571
+ mrb_value str2;
572
+ mrb_int result;
573
+
574
+ mrb_get_args(mrb, "o", &str2);
575
+ if (!mrb_string_p(str2)) {
576
+ if (!mrb_respond_to(mrb, str2, mrb_intern2(mrb, "to_s", 4))) {
577
+ return mrb_nil_value();
578
+ }
579
+ else if (!mrb_respond_to(mrb, str2, mrb_intern2(mrb, "<=>", 3))) {
580
+ return mrb_nil_value();
581
+ }
582
+ else {
583
+ mrb_value tmp = mrb_funcall(mrb, str2, "<=>", 1, str1);
584
+
585
+ if (mrb_nil_p(tmp)) return mrb_nil_value();
586
+ if (!mrb_fixnum(tmp)) {
587
+ return mrb_funcall(mrb, mrb_fixnum_value(0), "-", 1, tmp);
588
+ }
589
+ result = -mrb_fixnum(tmp);
590
+ }
591
+ }
592
+ else {
593
+ result = mrb_str_cmp(mrb, str1, str2);
594
+ }
595
+ return mrb_fixnum_value(result);
596
+ }
597
+
598
+ static mrb_bool
599
+ str_eql(mrb_state *mrb, const mrb_value str1, const mrb_value str2)
600
+ {
601
+ const mrb_int len = RSTRING_LEN(str1);
602
+
603
+ if (len != RSTRING_LEN(str2)) return FALSE;
604
+ if (memcmp(RSTRING_PTR(str1), RSTRING_PTR(str2), (size_t)len) == 0)
605
+ return TRUE;
606
+ return FALSE;
607
+ }
608
+
609
+ mrb_bool
610
+ mrb_str_equal(mrb_state *mrb, mrb_value str1, mrb_value str2)
611
+ {
612
+ if (mrb_obj_equal(mrb, str1, str2)) return TRUE;
613
+ if (!mrb_string_p(str2)) {
614
+ if (mrb_nil_p(str2)) return FALSE;
615
+ if (!mrb_respond_to(mrb, str2, mrb_intern2(mrb, "to_str", 6))) {
616
+ return FALSE;
617
+ }
618
+ str2 = mrb_funcall(mrb, str2, "to_str", 0);
619
+ return mrb_equal(mrb, str2, str1);
620
+ }
621
+ return str_eql(mrb, str1, str2);
622
+ }
623
+
624
+ /* 15.2.10.5.4 */
625
+ /*
626
+ * call-seq:
627
+ * str == obj => true or false
628
+ *
629
+ * Equality---
630
+ * If <i>obj</i> is not a <code>String</code>, returns <code>false</code>.
631
+ * Otherwise, returns <code>false</code> or <code>true</code>
632
+ *
633
+ * caution:if <i>str</i> <code><=></code> <i>obj</i> returns zero.
634
+ */
635
+ static mrb_value
636
+ mrb_str_equal_m(mrb_state *mrb, mrb_value str1)
637
+ {
638
+ mrb_value str2;
639
+ mrb_bool equal_p;
640
+
641
+ mrb_get_args(mrb, "o", &str2);
642
+ equal_p = mrb_str_equal(mrb, str1, str2);
643
+
644
+ return mrb_bool_value(equal_p);
645
+ }
646
+ /* ---------------------------------- */
647
+ mrb_value
648
+ mrb_str_to_str(mrb_state *mrb, mrb_value str)
649
+ {
650
+ mrb_value s;
651
+
652
+ if (!mrb_string_p(str)) {
653
+ s = mrb_check_convert_type(mrb, str, MRB_TT_STRING, "String", "to_str");
654
+ if (mrb_nil_p(s)) {
655
+ s = mrb_convert_type(mrb, str, MRB_TT_STRING, "String", "to_s");
656
+ }
657
+ return s;
658
+ }
659
+ return str;
660
+ }
661
+
662
+ char *
663
+ mrb_string_value_ptr(mrb_state *mrb, mrb_value ptr)
664
+ {
665
+ mrb_value str = mrb_str_to_str(mrb, ptr);
666
+ return RSTRING_PTR(str);
667
+ }
668
+
669
+ static mrb_value
670
+ noregexp(mrb_state *mrb, mrb_value self)
671
+ {
672
+ mrb_raise(mrb, E_NOTIMP_ERROR, "Regexp class not implemented");
673
+ return mrb_nil_value();
674
+ }
675
+
676
+ static void
677
+ regexp_check(mrb_state *mrb, mrb_value obj)
678
+ {
679
+ if (!memcmp(mrb_obj_classname(mrb, obj), REGEXP_CLASS, sizeof(REGEXP_CLASS) - 1)) {
680
+ noregexp(mrb, obj);
681
+ }
682
+ }
683
+
684
+ static inline mrb_int
685
+ mrb_memsearch_qs(const unsigned char *xs, mrb_int m, const unsigned char *ys, mrb_int n)
686
+ {
687
+ const unsigned char *x = xs, *xe = xs + m;
688
+ const unsigned char *y = ys;
689
+ int i, qstable[256];
690
+
691
+ /* Preprocessing */
692
+ for (i = 0; i < 256; ++i)
693
+ qstable[i] = m + 1;
694
+ for (; x < xe; ++x)
695
+ qstable[*x] = xe - x;
696
+ /* Searching */
697
+ for (; y + m <= ys + n; y += *(qstable + y[m])) {
698
+ if (*xs == *y && memcmp(xs, y, m) == 0)
699
+ return y - ys;
700
+ }
701
+ return -1;
702
+ }
703
+
704
+ static mrb_int
705
+ mrb_memsearch(const void *x0, mrb_int m, const void *y0, mrb_int n)
706
+ {
707
+ const unsigned char *x = (const unsigned char *)x0, *y = (const unsigned char *)y0;
708
+
709
+ if (m > n) return -1;
710
+ else if (m == n) {
711
+ return memcmp(x0, y0, m) == 0 ? 0 : -1;
712
+ }
713
+ else if (m < 1) {
714
+ return 0;
715
+ }
716
+ else if (m == 1) {
717
+ const unsigned char *ys = y, *ye = ys + n;
718
+ for (; y < ye; ++y) {
719
+ if (*x == *y)
720
+ return y - ys;
721
+ }
722
+ return -1;
723
+ }
724
+ return mrb_memsearch_qs((const unsigned char *)x0, m, (const unsigned char *)y0, n);
725
+ }
726
+
727
+ static mrb_int
728
+ mrb_str_index(mrb_state *mrb, mrb_value str, mrb_value sub, mrb_int offset)
729
+ {
730
+ mrb_int pos;
731
+ char *s, *sptr;
732
+ mrb_int len, slen;
733
+
734
+ len = RSTRING_LEN(str);
735
+ slen = RSTRING_LEN(sub);
736
+ if (offset < 0) {
737
+ offset += len;
738
+ if (offset < 0) return -1;
739
+ }
740
+ if (len - offset < slen) return -1;
741
+ s = RSTRING_PTR(str);
742
+ if (offset) {
743
+ s += offset;
744
+ }
745
+ if (slen == 0) return offset;
746
+ /* need proceed one character at a time */
747
+ sptr = RSTRING_PTR(sub);
748
+ slen = RSTRING_LEN(sub);
749
+ len = RSTRING_LEN(str) - offset;
750
+ pos = mrb_memsearch(sptr, slen, s, len);
751
+ if (pos < 0) return pos;
752
+ return pos + offset;
753
+ }
754
+
755
+ mrb_value
756
+ mrb_str_dup(mrb_state *mrb, mrb_value str)
757
+ {
758
+ /* should return shared string */
759
+ struct RString *s = mrb_str_ptr(str);
760
+
761
+ return mrb_str_new(mrb, s->ptr, s->len);
762
+ }
763
+
764
+ static mrb_value
765
+ mrb_str_aref(mrb_state *mrb, mrb_value str, mrb_value indx)
766
+ {
767
+ mrb_int idx;
768
+
769
+ regexp_check(mrb, indx);
770
+ switch (mrb_type(indx)) {
771
+ case MRB_TT_FIXNUM:
772
+ idx = mrb_fixnum(indx);
773
+
774
+ num_index:
775
+ str = mrb_str_substr(mrb, str, idx, 1);
776
+ if (!mrb_nil_p(str) && RSTRING_LEN(str) == 0) return mrb_nil_value();
777
+ return str;
778
+
779
+ case MRB_TT_STRING:
780
+ if (mrb_str_index(mrb, str, indx, 0) != -1)
781
+ return mrb_str_dup(mrb, indx);
782
+ return mrb_nil_value();
783
+
784
+ case MRB_TT_RANGE:
785
+ /* check if indx is Range */
786
+ {
787
+ mrb_int beg, len;
788
+ mrb_value tmp;
789
+
790
+ len = RSTRING_LEN(str);
791
+ if (mrb_range_beg_len(mrb, indx, &beg, &len, len)) {
792
+ tmp = mrb_str_subseq(mrb, str, beg, len);
793
+ return tmp;
794
+ }
795
+ else {
796
+ return mrb_nil_value();
797
+ }
798
+ }
799
+ default:
800
+ idx = mrb_fixnum(indx);
801
+ goto num_index;
802
+ }
803
+ return mrb_nil_value(); /* not reached */
804
+ }
805
+
806
+ /* 15.2.10.5.6 */
807
+ /* 15.2.10.5.34 */
808
+ /*
809
+ * call-seq:
810
+ * str[fixnum] => fixnum or nil
811
+ * str[fixnum, fixnum] => new_str or nil
812
+ * str[range] => new_str or nil
813
+ * str[regexp] => new_str or nil
814
+ * str[regexp, fixnum] => new_str or nil
815
+ * str[other_str] => new_str or nil
816
+ * str.slice(fixnum) => fixnum or nil
817
+ * str.slice(fixnum, fixnum) => new_str or nil
818
+ * str.slice(range) => new_str or nil
819
+ * str.slice(regexp) => new_str or nil
820
+ * str.slice(regexp, fixnum) => new_str or nil
821
+ * str.slice(other_str) => new_str or nil
822
+ *
823
+ * Element Reference---If passed a single <code>Fixnum</code>, returns the code
824
+ * of the character at that position. If passed two <code>Fixnum</code>
825
+ * objects, returns a substring starting at the offset given by the first, and
826
+ * a length given by the second. If given a range, a substring containing
827
+ * characters at offsets given by the range is returned. In all three cases, if
828
+ * an offset is negative, it is counted from the end of <i>str</i>. Returns
829
+ * <code>nil</code> if the initial offset falls outside the string, the length
830
+ * is negative, or the beginning of the range is greater than the end.
831
+ *
832
+ * If a <code>Regexp</code> is supplied, the matching portion of <i>str</i> is
833
+ * returned. If a numeric parameter follows the regular expression, that
834
+ * component of the <code>MatchData</code> is returned instead. If a
835
+ * <code>String</code> is given, that string is returned if it occurs in
836
+ * <i>str</i>. In both cases, <code>nil</code> is returned if there is no
837
+ * match.
838
+ *
839
+ * a = "hello there"
840
+ * a[1] #=> 101(1.8.7) "e"(1.9.2)
841
+ * a[1,3] #=> "ell"
842
+ * a[1..3] #=> "ell"
843
+ * a[-3,2] #=> "er"
844
+ * a[-4..-2] #=> "her"
845
+ * a[12..-1] #=> nil
846
+ * a[-2..-4] #=> ""
847
+ * a[/[aeiou](.)\1/] #=> "ell"
848
+ * a[/[aeiou](.)\1/, 0] #=> "ell"
849
+ * a[/[aeiou](.)\1/, 1] #=> "l"
850
+ * a[/[aeiou](.)\1/, 2] #=> nil
851
+ * a["lo"] #=> "lo"
852
+ * a["bye"] #=> nil
853
+ */
854
+ static mrb_value
855
+ mrb_str_aref_m(mrb_state *mrb, mrb_value str)
856
+ {
857
+ mrb_value a1, a2;
858
+ int argc;
859
+
860
+ argc = mrb_get_args(mrb, "o|o", &a1, &a2);
861
+ if (argc == 2) {
862
+ regexp_check(mrb, a1);
863
+ return mrb_str_substr(mrb, str, mrb_fixnum(a1), mrb_fixnum(a2));
864
+ }
865
+ if (argc != 1) {
866
+ mrb_raisef(mrb, E_ARGUMENT_ERROR, "wrong number of arguments (%S for 1)", mrb_fixnum_value(argc));
867
+ }
868
+ return mrb_str_aref(mrb, str, a1);
869
+ }
870
+
871
+ /* 15.2.10.5.8 */
872
+ /*
873
+ * call-seq:
874
+ * str.capitalize! => str or nil
875
+ *
876
+ * Modifies <i>str</i> by converting the first character to uppercase and the
877
+ * remainder to lowercase. Returns <code>nil</code> if no changes are made.
878
+ *
879
+ * a = "hello"
880
+ * a.capitalize! #=> "Hello"
881
+ * a #=> "Hello"
882
+ * a.capitalize! #=> nil
883
+ */
884
+ static mrb_value
885
+ mrb_str_capitalize_bang(mrb_state *mrb, mrb_value str)
886
+ {
887
+ char *p, *pend;
888
+ int modify = 0;
889
+ struct RString *s = mrb_str_ptr(str);
890
+
891
+ mrb_str_modify(mrb, s);
892
+ if (s->len == 0 || !s->ptr) return mrb_nil_value();
893
+ p = s->ptr; pend = s->ptr + s->len;
894
+ if (ISLOWER(*p)) {
895
+ *p = TOUPPER(*p);
896
+ modify = 1;
897
+ }
898
+ while (++p < pend) {
899
+ if (ISUPPER(*p)) {
900
+ *p = TOLOWER(*p);
901
+ modify = 1;
902
+ }
903
+ }
904
+ if (modify) return str;
905
+ return mrb_nil_value();
906
+ }
907
+
908
+ /* 15.2.10.5.7 */
909
+ /*
910
+ * call-seq:
911
+ * str.capitalize => new_str
912
+ *
913
+ * Returns a copy of <i>str</i> with the first character converted to uppercase
914
+ * and the remainder to lowercase.
915
+ *
916
+ * "hello".capitalize #=> "Hello"
917
+ * "HELLO".capitalize #=> "Hello"
918
+ * "123ABC".capitalize #=> "123abc"
919
+ */
920
+ static mrb_value
921
+ mrb_str_capitalize(mrb_state *mrb, mrb_value self)
922
+ {
923
+ mrb_value str;
924
+
925
+ str = mrb_str_dup(mrb, self);
926
+ mrb_str_capitalize_bang(mrb, str);
927
+ return str;
928
+ }
929
+
930
+ /* 15.2.10.5.10 */
931
+ /*
932
+ * call-seq:
933
+ * str.chomp!(separator=$/) => str or nil
934
+ *
935
+ * Modifies <i>str</i> in place as described for <code>String#chomp</code>,
936
+ * returning <i>str</i>, or <code>nil</code> if no modifications were made.
937
+ */
938
+ static mrb_value
939
+ mrb_str_chomp_bang(mrb_state *mrb, mrb_value str)
940
+ {
941
+ mrb_value rs;
942
+ mrb_int newline;
943
+ char *p, *pp;
944
+ mrb_int rslen;
945
+ mrb_int len;
946
+ struct RString *s = mrb_str_ptr(str);
947
+
948
+ mrb_str_modify(mrb, s);
949
+ len = s->len;
950
+ if (mrb_get_args(mrb, "|S", &rs) == 0) {
951
+ if (len == 0) return mrb_nil_value();
952
+ smart_chomp:
953
+ if (s->ptr[len-1] == '\n') {
954
+ s->len--;
955
+ if (s->len > 0 &&
956
+ s->ptr[s->len-1] == '\r') {
957
+ s->len--;
958
+ }
959
+ }
960
+ else if (s->ptr[len-1] == '\r') {
961
+ s->len--;
962
+ }
963
+ else {
964
+ return mrb_nil_value();
965
+ }
966
+ s->ptr[s->len] = '\0';
967
+ return str;
968
+ }
969
+
970
+ if (len == 0 || mrb_nil_p(rs)) return mrb_nil_value();
971
+ p = s->ptr;
972
+ rslen = RSTRING_LEN(rs);
973
+ if (rslen == 0) {
974
+ while (len>0 && p[len-1] == '\n') {
975
+ len--;
976
+ if (len>0 && p[len-1] == '\r')
977
+ len--;
978
+ }
979
+ if (len < s->len) {
980
+ s->len = len;
981
+ p[len] = '\0';
982
+ return str;
983
+ }
984
+ return mrb_nil_value();
985
+ }
986
+ if (rslen > len) return mrb_nil_value();
987
+ newline = RSTRING_PTR(rs)[rslen-1];
988
+ if (rslen == 1 && newline == '\n')
989
+ newline = RSTRING_PTR(rs)[rslen-1];
990
+ if (rslen == 1 && newline == '\n')
991
+ goto smart_chomp;
992
+
993
+ pp = p + len - rslen;
994
+ if (p[len-1] == newline &&
995
+ (rslen <= 1 ||
996
+ memcmp(RSTRING_PTR(rs), pp, rslen) == 0)) {
997
+ s->len = len - rslen;
998
+ p[s->len] = '\0';
999
+ return str;
1000
+ }
1001
+ return mrb_nil_value();
1002
+ }
1003
+
1004
+ /* 15.2.10.5.9 */
1005
+ /*
1006
+ * call-seq:
1007
+ * str.chomp(separator=$/) => new_str
1008
+ *
1009
+ * Returns a new <code>String</code> with the given record separator removed
1010
+ * from the end of <i>str</i> (if present). If <code>$/</code> has not been
1011
+ * changed from the default Ruby record separator, then <code>chomp</code> also
1012
+ * removes carriage return characters (that is it will remove <code>\n</code>,
1013
+ * <code>\r</code>, and <code>\r\n</code>).
1014
+ *
1015
+ * "hello".chomp #=> "hello"
1016
+ * "hello\n".chomp #=> "hello"
1017
+ * "hello\r\n".chomp #=> "hello"
1018
+ * "hello\n\r".chomp #=> "hello\n"
1019
+ * "hello\r".chomp #=> "hello"
1020
+ * "hello \n there".chomp #=> "hello \n there"
1021
+ * "hello".chomp("llo") #=> "he"
1022
+ */
1023
+ static mrb_value
1024
+ mrb_str_chomp(mrb_state *mrb, mrb_value self)
1025
+ {
1026
+ mrb_value str;
1027
+
1028
+ str = mrb_str_dup(mrb, self);
1029
+ mrb_str_chomp_bang(mrb, str);
1030
+ return str;
1031
+ }
1032
+
1033
+ /* 15.2.10.5.12 */
1034
+ /*
1035
+ * call-seq:
1036
+ * str.chop! => str or nil
1037
+ *
1038
+ * Processes <i>str</i> as for <code>String#chop</code>, returning <i>str</i>,
1039
+ * or <code>nil</code> if <i>str</i> is the empty string. See also
1040
+ * <code>String#chomp!</code>.
1041
+ */
1042
+ static mrb_value
1043
+ mrb_str_chop_bang(mrb_state *mrb, mrb_value str)
1044
+ {
1045
+ struct RString *s = mrb_str_ptr(str);
1046
+
1047
+ mrb_str_modify(mrb, s);
1048
+ if (s->len > 0) {
1049
+ int len;
1050
+ len = s->len - 1;
1051
+ if (s->ptr[len] == '\n') {
1052
+ if (len > 0 &&
1053
+ s->ptr[len-1] == '\r') {
1054
+ len--;
1055
+ }
1056
+ }
1057
+ s->len = len;
1058
+ s->ptr[len] = '\0';
1059
+ return str;
1060
+ }
1061
+ return mrb_nil_value();
1062
+ }
1063
+
1064
+ /* 15.2.10.5.11 */
1065
+ /*
1066
+ * call-seq:
1067
+ * str.chop => new_str
1068
+ *
1069
+ * Returns a new <code>String</code> with the last character removed. If the
1070
+ * string ends with <code>\r\n</code>, both characters are removed. Applying
1071
+ * <code>chop</code> to an empty string returns an empty
1072
+ * string. <code>String#chomp</code> is often a safer alternative, as it leaves
1073
+ * the string unchanged if it doesn't end in a record separator.
1074
+ *
1075
+ * "string\r\n".chop #=> "string"
1076
+ * "string\n\r".chop #=> "string\n"
1077
+ * "string\n".chop #=> "string"
1078
+ * "string".chop #=> "strin"
1079
+ * "x".chop #=> ""
1080
+ */
1081
+ static mrb_value
1082
+ mrb_str_chop(mrb_state *mrb, mrb_value self)
1083
+ {
1084
+ mrb_value str;
1085
+ str = mrb_str_dup(mrb, self);
1086
+ mrb_str_chop_bang(mrb, str);
1087
+ return str;
1088
+ }
1089
+
1090
+ /* 15.2.10.5.14 */
1091
+ /*
1092
+ * call-seq:
1093
+ * str.downcase! => str or nil
1094
+ *
1095
+ * Downcases the contents of <i>str</i>, returning <code>nil</code> if no
1096
+ * changes were made.
1097
+ */
1098
+ static mrb_value
1099
+ mrb_str_downcase_bang(mrb_state *mrb, mrb_value str)
1100
+ {
1101
+ char *p, *pend;
1102
+ int modify = 0;
1103
+ struct RString *s = mrb_str_ptr(str);
1104
+
1105
+ mrb_str_modify(mrb, s);
1106
+ p = s->ptr;
1107
+ pend = s->ptr + s->len;
1108
+ while (p < pend) {
1109
+ if (ISUPPER(*p)) {
1110
+ *p = TOLOWER(*p);
1111
+ modify = 1;
1112
+ }
1113
+ p++;
1114
+ }
1115
+
1116
+ if (modify) return str;
1117
+ return mrb_nil_value();
1118
+ }
1119
+
1120
+ /* 15.2.10.5.13 */
1121
+ /*
1122
+ * call-seq:
1123
+ * str.downcase => new_str
1124
+ *
1125
+ * Returns a copy of <i>str</i> with all uppercase letters replaced with their
1126
+ * lowercase counterparts. The operation is locale insensitive---only
1127
+ * characters ``A'' to ``Z'' are affected.
1128
+ *
1129
+ * "hEllO".downcase #=> "hello"
1130
+ */
1131
+ static mrb_value
1132
+ mrb_str_downcase(mrb_state *mrb, mrb_value self)
1133
+ {
1134
+ mrb_value str;
1135
+
1136
+ str = mrb_str_dup(mrb, self);
1137
+ mrb_str_downcase_bang(mrb, str);
1138
+ return str;
1139
+ }
1140
+
1141
+ /* 15.2.10.5.16 */
1142
+ /*
1143
+ * call-seq:
1144
+ * str.empty? => true or false
1145
+ *
1146
+ * Returns <code>true</code> if <i>str</i> has a length of zero.
1147
+ *
1148
+ * "hello".empty? #=> false
1149
+ * "".empty? #=> true
1150
+ */
1151
+ static mrb_value
1152
+ mrb_str_empty_p(mrb_state *mrb, mrb_value self)
1153
+ {
1154
+ struct RString *s = mrb_str_ptr(self);
1155
+
1156
+ return mrb_bool_value(s->len == 0);
1157
+ }
1158
+
1159
+ /* 15.2.10.5.17 */
1160
+ /*
1161
+ * call-seq:
1162
+ * str.eql?(other) => true or false
1163
+ *
1164
+ * Two strings are equal if the have the same length and content.
1165
+ */
1166
+ static mrb_value
1167
+ mrb_str_eql(mrb_state *mrb, mrb_value self)
1168
+ {
1169
+ mrb_value str2;
1170
+ mrb_bool eql_p;
1171
+
1172
+ mrb_get_args(mrb, "o", &str2);
1173
+ eql_p = (mrb_type(str2) == MRB_TT_STRING) && str_eql(mrb, self, str2);
1174
+
1175
+ return mrb_bool_value(eql_p);
1176
+ }
1177
+
1178
+ static mrb_value
1179
+ mrb_str_subseq(mrb_state *mrb, mrb_value str, mrb_int beg, mrb_int len)
1180
+ {
1181
+ struct RString *orig, *s;
1182
+ mrb_shared_string *shared;
1183
+
1184
+ orig = mrb_str_ptr(str);
1185
+ str_make_shared(mrb, orig);
1186
+ shared = orig->aux.shared;
1187
+ s = mrb_obj_alloc_string(mrb);
1188
+ s->ptr = orig->ptr + beg;
1189
+ s->len = len;
1190
+ s->aux.shared = shared;
1191
+ s->flags |= MRB_STR_SHARED;
1192
+ shared->refcnt++;
1193
+
1194
+ return mrb_obj_value(s);
1195
+ }
1196
+
1197
+ mrb_value
1198
+ mrb_str_substr(mrb_state *mrb, mrb_value str, mrb_int beg, mrb_int len)
1199
+ {
1200
+ mrb_value str2;
1201
+
1202
+ if (len < 0) return mrb_nil_value();
1203
+ if (!RSTRING_LEN(str)) {
1204
+ len = 0;
1205
+ }
1206
+ if (beg > RSTRING_LEN(str)) return mrb_nil_value();
1207
+ if (beg < 0) {
1208
+ beg += RSTRING_LEN(str);
1209
+ if (beg < 0) return mrb_nil_value();
1210
+ }
1211
+ if (beg + len > RSTRING_LEN(str))
1212
+ len = RSTRING_LEN(str) - beg;
1213
+ if (len <= 0) {
1214
+ len = 0;
1215
+ }
1216
+ str2 = mrb_str_subseq(mrb, str, beg, len);
1217
+
1218
+ return str2;
1219
+ }
1220
+
1221
+ mrb_value
1222
+ mrb_str_buf_append(mrb_state *mrb, mrb_value str, mrb_value str2)
1223
+ {
1224
+ mrb_str_cat(mrb, str, RSTRING_PTR(str2), RSTRING_LEN(str2));
1225
+ return str;
1226
+ }
1227
+
1228
+ mrb_int
1229
+ mrb_str_hash(mrb_state *mrb, mrb_value str)
1230
+ {
1231
+ /* 1-8-7 */
1232
+ struct RString *s = mrb_str_ptr(str);
1233
+ mrb_int len = s->len;
1234
+ char *p = s->ptr;
1235
+ mrb_int key = 0;
1236
+
1237
+ while (len--) {
1238
+ key = key*65599 + *p;
1239
+ p++;
1240
+ }
1241
+ key = key + (key>>5);
1242
+ return key;
1243
+ }
1244
+
1245
+ /* 15.2.10.5.20 */
1246
+ /*
1247
+ * call-seq:
1248
+ * str.hash => fixnum
1249
+ *
1250
+ * Return a hash based on the string's length and content.
1251
+ */
1252
+ static mrb_value
1253
+ mrb_str_hash_m(mrb_state *mrb, mrb_value self)
1254
+ {
1255
+ mrb_int key = mrb_str_hash(mrb, self);
1256
+ return mrb_fixnum_value(key);
1257
+ }
1258
+
1259
+ /* 15.2.10.5.21 */
1260
+ /*
1261
+ * call-seq:
1262
+ * str.include? other_str => true or false
1263
+ * str.include? fixnum => true or false
1264
+ *
1265
+ * Returns <code>true</code> if <i>str</i> contains the given string or
1266
+ * character.
1267
+ *
1268
+ * "hello".include? "lo" #=> true
1269
+ * "hello".include? "ol" #=> false
1270
+ * "hello".include? ?h #=> true
1271
+ */
1272
+ static mrb_value
1273
+ mrb_str_include(mrb_state *mrb, mrb_value self)
1274
+ {
1275
+ mrb_int i;
1276
+ mrb_value str2;
1277
+ mrb_bool include_p;
1278
+
1279
+ mrb_get_args(mrb, "o", &str2);
1280
+ if (mrb_type(str2) == MRB_TT_FIXNUM) {
1281
+ include_p = (memchr(RSTRING_PTR(self), mrb_fixnum(str2), RSTRING_LEN(self)) != NULL);
1282
+ }
1283
+ else {
1284
+ str2 = mrb_str_to_str(mrb, str2);
1285
+ i = mrb_str_index(mrb, self, str2, 0);
1286
+
1287
+ include_p = (i != -1);
1288
+ }
1289
+
1290
+ return mrb_bool_value(include_p);
1291
+ }
1292
+
1293
+ /* 15.2.10.5.22 */
1294
+ /*
1295
+ * call-seq:
1296
+ * str.index(substring [, offset]) => fixnum or nil
1297
+ * str.index(fixnum [, offset]) => fixnum or nil
1298
+ * str.index(regexp [, offset]) => fixnum or nil
1299
+ *
1300
+ * Returns the index of the first occurrence of the given
1301
+ * <i>substring</i>,
1302
+ * character (<i>fixnum</i>), or pattern (<i>regexp</i>) in <i>str</i>.
1303
+ * Returns
1304
+ * <code>nil</code> if not found.
1305
+ * If the second parameter is present, it
1306
+ * specifies the position in the string to begin the search.
1307
+ *
1308
+ * "hello".index('e') #=> 1
1309
+ * "hello".index('lo') #=> 3
1310
+ * "hello".index('a') #=> nil
1311
+ * "hello".index(101) #=> 1(101=0x65='e')
1312
+ * "hello".index(/[aeiou]/, -3) #=> 4
1313
+ */
1314
+ static mrb_value
1315
+ mrb_str_index_m(mrb_state *mrb, mrb_value str)
1316
+ {
1317
+ mrb_value *argv;
1318
+ int argc;
1319
+
1320
+ mrb_value sub;
1321
+ mrb_int pos;
1322
+
1323
+ mrb_get_args(mrb, "*", &argv, &argc);
1324
+ if (argc == 2) {
1325
+ pos = mrb_fixnum(argv[1]);
1326
+ sub = argv[0];
1327
+ }
1328
+ else {
1329
+ pos = 0;
1330
+ if (argc > 0)
1331
+ sub = argv[0];
1332
+ else
1333
+ sub = mrb_nil_value();
1334
+
1335
+ }
1336
+ regexp_check(mrb, sub);
1337
+ if (pos < 0) {
1338
+ pos += RSTRING_LEN(str);
1339
+ if (pos < 0) {
1340
+ return mrb_nil_value();
1341
+ }
1342
+ }
1343
+
1344
+ switch (mrb_type(sub)) {
1345
+ case MRB_TT_FIXNUM: {
1346
+ int c = mrb_fixnum(sub);
1347
+ mrb_int len = RSTRING_LEN(str);
1348
+ unsigned char *p = (unsigned char*)RSTRING_PTR(str);
1349
+
1350
+ for (;pos<len;pos++) {
1351
+ if (p[pos] == c) return mrb_fixnum_value(pos);
1352
+ }
1353
+ return mrb_nil_value();
1354
+ }
1355
+
1356
+ default: {
1357
+ mrb_value tmp;
1358
+
1359
+ tmp = mrb_check_string_type(mrb, sub);
1360
+ if (mrb_nil_p(tmp)) {
1361
+ mrb_raisef(mrb, E_TYPE_ERROR, "type mismatch: %S given", sub);
1362
+ }
1363
+ sub = tmp;
1364
+ }
1365
+ /* fall through */
1366
+ case MRB_TT_STRING:
1367
+ pos = mrb_str_index(mrb, str, sub, pos);
1368
+ break;
1369
+ }
1370
+
1371
+ if (pos == -1) return mrb_nil_value();
1372
+ return mrb_fixnum_value(pos);
1373
+ }
1374
+
1375
+ #define STR_REPLACE_SHARED_MIN 10
1376
+
1377
+ static mrb_value
1378
+ str_replace(mrb_state *mrb, struct RString *s1, struct RString *s2)
1379
+ {
1380
+ if (s2->flags & MRB_STR_SHARED) {
1381
+ L_SHARE:
1382
+ if (s1->flags & MRB_STR_SHARED){
1383
+ str_decref(mrb, s1->aux.shared);
1384
+ }
1385
+ else {
1386
+ mrb_free(mrb, s1->ptr);
1387
+ }
1388
+ s1->ptr = s2->ptr;
1389
+ s1->len = s2->len;
1390
+ s1->aux.shared = s2->aux.shared;
1391
+ s1->flags |= MRB_STR_SHARED;
1392
+ s1->aux.shared->refcnt++;
1393
+ }
1394
+ else if (s2->len > STR_REPLACE_SHARED_MIN) {
1395
+ str_make_shared(mrb, s2);
1396
+ goto L_SHARE;
1397
+ }
1398
+ else {
1399
+ if (s1->flags & MRB_STR_SHARED) {
1400
+ str_decref(mrb, s1->aux.shared);
1401
+ s1->flags &= ~MRB_STR_SHARED;
1402
+ s1->ptr = (char *)mrb_malloc(mrb, s2->len+1);
1403
+ }
1404
+ else {
1405
+ s1->ptr = (char *)mrb_realloc(mrb, s1->ptr, s2->len+1);
1406
+ }
1407
+ memcpy(s1->ptr, s2->ptr, s2->len);
1408
+ s1->ptr[s2->len] = 0;
1409
+ s1->len = s2->len;
1410
+ s1->aux.capa = s2->len;
1411
+ }
1412
+ return mrb_obj_value(s1);
1413
+ }
1414
+
1415
+ /* 15.2.10.5.24 */
1416
+ /* 15.2.10.5.28 */
1417
+ /*
1418
+ * call-seq:
1419
+ * str.replace(other_str) => str
1420
+ *
1421
+ * s = "hello" #=> "hello"
1422
+ * s.replace "world" #=> "world"
1423
+ */
1424
+ static mrb_value
1425
+ mrb_str_replace(mrb_state *mrb, mrb_value str)
1426
+ {
1427
+ mrb_value str2;
1428
+
1429
+ mrb_get_args(mrb, "S", &str2);
1430
+ return str_replace(mrb, mrb_str_ptr(str), mrb_str_ptr(str2));
1431
+ }
1432
+
1433
+ /* 15.2.10.5.23 */
1434
+ /*
1435
+ * call-seq:
1436
+ * String.new(str="") => new_str
1437
+ *
1438
+ * Returns a new string object containing a copy of <i>str</i>.
1439
+ */
1440
+ static mrb_value
1441
+ mrb_str_init(mrb_state *mrb, mrb_value self)
1442
+ {
1443
+ mrb_value str2;
1444
+
1445
+ if (mrb_get_args(mrb, "|S", &str2) == 1) {
1446
+ str_replace(mrb, mrb_str_ptr(self), mrb_str_ptr(str2));
1447
+ }
1448
+ return self;
1449
+ }
1450
+
1451
+ /* 15.2.10.5.25 */
1452
+ /* 15.2.10.5.41 */
1453
+ /*
1454
+ * call-seq:
1455
+ * str.intern => symbol
1456
+ * str.to_sym => symbol
1457
+ *
1458
+ * Returns the <code>Symbol</code> corresponding to <i>str</i>, creating the
1459
+ * symbol if it did not previously exist. See <code>Symbol#id2name</code>.
1460
+ *
1461
+ * "Koala".intern #=> :Koala
1462
+ * s = 'cat'.to_sym #=> :cat
1463
+ * s == :cat #=> true
1464
+ * s = '@cat'.to_sym #=> :@cat
1465
+ * s == :@cat #=> true
1466
+ *
1467
+ * This can also be used to create symbols that cannot be represented using the
1468
+ * <code>:xxx</code> notation.
1469
+ *
1470
+ * 'cat and dog'.to_sym #=> :"cat and dog"
1471
+ */
1472
+ mrb_value
1473
+ mrb_str_intern(mrb_state *mrb, mrb_value self)
1474
+ {
1475
+ mrb_sym id;
1476
+
1477
+ id = mrb_intern_str(mrb, self);
1478
+ return mrb_symbol_value(id);
1479
+
1480
+ }
1481
+ /* ---------------------------------- */
1482
+ mrb_value
1483
+ mrb_obj_as_string(mrb_state *mrb, mrb_value obj)
1484
+ {
1485
+ mrb_value str;
1486
+
1487
+ if (mrb_string_p(obj)) {
1488
+ return obj;
1489
+ }
1490
+ str = mrb_funcall(mrb, obj, "to_s", 0);
1491
+ if (!mrb_string_p(str))
1492
+ return mrb_any_to_s(mrb, obj);
1493
+ return str;
1494
+ }
1495
+
1496
+ mrb_value
1497
+ mrb_ptr_to_str(mrb_state *mrb, void *p)
1498
+ {
1499
+ struct RString *p_str;
1500
+ char *p1;
1501
+ char *p2;
1502
+ intptr_t n = (intptr_t)p;
1503
+
1504
+ p_str = str_new(mrb, NULL, 2 + sizeof(uintptr_t) * CHAR_BIT / 4);
1505
+ p1 = p_str->ptr;
1506
+ *p1++ = '0';
1507
+ *p1++ = 'x';
1508
+ p2 = p1;
1509
+
1510
+ do {
1511
+ *p2++ = mrb_digitmap[n % 16];
1512
+ n /= 16;
1513
+ } while (n > 0);
1514
+ *p2 = '\0';
1515
+ p_str->len = (mrb_int)(p2 - p_str->ptr);
1516
+
1517
+ while (p1 < p2) {
1518
+ const char c = *p1;
1519
+ *p1++ = *--p2;
1520
+ *p2 = c;
1521
+ }
1522
+
1523
+ return mrb_obj_value(p_str);
1524
+ }
1525
+
1526
+ mrb_value
1527
+ mrb_check_string_type(mrb_state *mrb, mrb_value str)
1528
+ {
1529
+ return mrb_check_convert_type(mrb, str, MRB_TT_STRING, "String", "to_str");
1530
+ }
1531
+
1532
+ /* ---------------------------------- */
1533
+ /* 15.2.10.5.29 */
1534
+ /*
1535
+ * call-seq:
1536
+ * str.reverse => new_str
1537
+ *
1538
+ * Returns a new string with the characters from <i>str</i> in reverse order.
1539
+ *
1540
+ * "stressed".reverse #=> "desserts"
1541
+ */
1542
+ static mrb_value
1543
+ mrb_str_reverse(mrb_state *mrb, mrb_value str)
1544
+ {
1545
+ struct RString *s2;
1546
+ char *s, *e, *p;
1547
+
1548
+ if (RSTRING(str)->len <= 1) return mrb_str_dup(mrb, str);
1549
+
1550
+ s2 = str_new(mrb, 0, RSTRING(str)->len);
1551
+ str_with_class(mrb, s2, str);
1552
+ s = RSTRING_PTR(str); e = RSTRING_END(str) - 1;
1553
+ p = s2->ptr;
1554
+
1555
+ while (e >= s) {
1556
+ *p++ = *e--;
1557
+ }
1558
+ return mrb_obj_value(s2);
1559
+ }
1560
+
1561
+ /* 15.2.10.5.30 */
1562
+ /*
1563
+ * call-seq:
1564
+ * str.reverse! => str
1565
+ *
1566
+ * Reverses <i>str</i> in place.
1567
+ */
1568
+ static mrb_value
1569
+ mrb_str_reverse_bang(mrb_state *mrb, mrb_value str)
1570
+ {
1571
+ struct RString *s = mrb_str_ptr(str);
1572
+ char *p, *e;
1573
+ char c;
1574
+
1575
+ mrb_str_modify(mrb, s);
1576
+ if (s->len > 1) {
1577
+ p = s->ptr;
1578
+ e = p + s->len - 1;
1579
+ while (p < e) {
1580
+ c = *p;
1581
+ *p++ = *e;
1582
+ *e-- = c;
1583
+ }
1584
+ }
1585
+ return str;
1586
+ }
1587
+
1588
+ /*
1589
+ * call-seq:
1590
+ * str.rindex(substring [, fixnum]) => fixnum or nil
1591
+ * str.rindex(fixnum [, fixnum]) => fixnum or nil
1592
+ * str.rindex(regexp [, fixnum]) => fixnum or nil
1593
+ *
1594
+ * Returns the index of the last occurrence of the given <i>substring</i>,
1595
+ * character (<i>fixnum</i>), or pattern (<i>regexp</i>) in <i>str</i>. Returns
1596
+ * <code>nil</code> if not found. If the second parameter is present, it
1597
+ * specifies the position in the string to end the search---characters beyond
1598
+ * this point will not be considered.
1599
+ *
1600
+ * "hello".rindex('e') #=> 1
1601
+ * "hello".rindex('l') #=> 3
1602
+ * "hello".rindex('a') #=> nil
1603
+ * "hello".rindex(101) #=> 1
1604
+ * "hello".rindex(/[aeiou]/, -2) #=> 1
1605
+ */
1606
+ static mrb_int
1607
+ mrb_str_rindex(mrb_state *mrb, mrb_value str, mrb_value sub, mrb_int pos)
1608
+ {
1609
+ char *s, *sbeg, *t;
1610
+ struct RString *ps = mrb_str_ptr(str);
1611
+ struct RString *psub = mrb_str_ptr(sub);
1612
+ mrb_int len = psub->len;
1613
+
1614
+ /* substring longer than string */
1615
+ if (ps->len < len) return -1;
1616
+ if (ps->len - pos < len) {
1617
+ pos = ps->len - len;
1618
+ }
1619
+ sbeg = ps->ptr;
1620
+ s = ps->ptr + pos;
1621
+ t = psub->ptr;
1622
+ if (len) {
1623
+ while (sbeg <= s) {
1624
+ if (memcmp(s, t, len) == 0) {
1625
+ return s - ps->ptr;
1626
+ }
1627
+ s--;
1628
+ }
1629
+ return -1;
1630
+ }
1631
+ else {
1632
+ return pos;
1633
+ }
1634
+ }
1635
+
1636
+ /* 15.2.10.5.31 */
1637
+ /*
1638
+ * call-seq:
1639
+ * str.rindex(substring [, fixnum]) => fixnum or nil
1640
+ * str.rindex(fixnum [, fixnum]) => fixnum or nil
1641
+ * str.rindex(regexp [, fixnum]) => fixnum or nil
1642
+ *
1643
+ * Returns the index of the last occurrence of the given <i>substring</i>,
1644
+ * character (<i>fixnum</i>), or pattern (<i>regexp</i>) in <i>str</i>. Returns
1645
+ * <code>nil</code> if not found. If the second parameter is present, it
1646
+ * specifies the position in the string to end the search---characters beyond
1647
+ * this point will not be considered.
1648
+ *
1649
+ * "hello".rindex('e') #=> 1
1650
+ * "hello".rindex('l') #=> 3
1651
+ * "hello".rindex('a') #=> nil
1652
+ * "hello".rindex(101) #=> 1
1653
+ * "hello".rindex(/[aeiou]/, -2) #=> 1
1654
+ */
1655
+ static mrb_value
1656
+ mrb_str_rindex_m(mrb_state *mrb, mrb_value str)
1657
+ {
1658
+ mrb_value *argv;
1659
+ int argc;
1660
+ mrb_value sub;
1661
+ mrb_value vpos;
1662
+ int pos, len = RSTRING_LEN(str);
1663
+
1664
+ mrb_get_args(mrb, "*", &argv, &argc);
1665
+ if (argc == 2) {
1666
+ sub = argv[0];
1667
+ vpos = argv[1];
1668
+ pos = mrb_fixnum(vpos);
1669
+ if (pos < 0) {
1670
+ pos += len;
1671
+ if (pos < 0) {
1672
+ regexp_check(mrb, sub);
1673
+ return mrb_nil_value();
1674
+ }
1675
+ }
1676
+ if (pos > len) pos = len;
1677
+ }
1678
+ else {
1679
+ pos = len;
1680
+ if (argc > 0)
1681
+ sub = argv[0];
1682
+ else
1683
+ sub = mrb_nil_value();
1684
+ }
1685
+ regexp_check(mrb, sub);
1686
+
1687
+ switch (mrb_type(sub)) {
1688
+ case MRB_TT_FIXNUM: {
1689
+ int c = mrb_fixnum(sub);
1690
+ mrb_int len = RSTRING_LEN(str);
1691
+ unsigned char *p = (unsigned char*)RSTRING_PTR(str);
1692
+
1693
+ for (pos=len;pos>=0;pos--) {
1694
+ if (p[pos] == c) return mrb_fixnum_value(pos);
1695
+ }
1696
+ return mrb_nil_value();
1697
+ }
1698
+
1699
+ default: {
1700
+ mrb_value tmp;
1701
+
1702
+ tmp = mrb_check_string_type(mrb, sub);
1703
+ if (mrb_nil_p(tmp)) {
1704
+ mrb_raisef(mrb, E_TYPE_ERROR, "type mismatch: %S given", sub);
1705
+ }
1706
+ sub = tmp;
1707
+ }
1708
+ /* fall through */
1709
+ case MRB_TT_STRING:
1710
+ pos = mrb_str_rindex(mrb, str, sub, pos);
1711
+ if (pos >= 0) return mrb_fixnum_value(pos);
1712
+ break;
1713
+
1714
+ } /* end of switch (TYPE(sub)) */
1715
+ return mrb_nil_value();
1716
+ }
1717
+
1718
+ static const char isspacetable[256] = {
1719
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0,
1720
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1721
+ 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1722
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1723
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1724
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1725
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1726
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1727
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1728
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1729
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1730
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1731
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1732
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1733
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1734
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
1735
+ };
1736
+
1737
+ #define ascii_isspace(c) isspacetable[(unsigned char)(c)]
1738
+
1739
+ /* 15.2.10.5.35 */
1740
+
1741
+ /*
1742
+ * call-seq:
1743
+ * str.split(pattern=$;, [limit]) => anArray
1744
+ *
1745
+ * Divides <i>str</i> into substrings based on a delimiter, returning an array
1746
+ * of these substrings.
1747
+ *
1748
+ * If <i>pattern</i> is a <code>String</code>, then its contents are used as
1749
+ * the delimiter when splitting <i>str</i>. If <i>pattern</i> is a single
1750
+ * space, <i>str</i> is split on whitespace, with leading whitespace and runs
1751
+ * of contiguous whitespace characters ignored.
1752
+ *
1753
+ * If <i>pattern</i> is a <code>Regexp</code>, <i>str</i> is divided where the
1754
+ * pattern matches. Whenever the pattern matches a zero-length string,
1755
+ * <i>str</i> is split into individual characters.
1756
+ *
1757
+ * If <i>pattern</i> is omitted, the value of <code>$;</code> is used. If
1758
+ * <code>$;</code> is <code>nil</code> (which is the default), <i>str</i> is
1759
+ * split on whitespace as if ` ' were specified.
1760
+ *
1761
+ * If the <i>limit</i> parameter is omitted, trailing null fields are
1762
+ * suppressed. If <i>limit</i> is a positive number, at most that number of
1763
+ * fields will be returned (if <i>limit</i> is <code>1</code>, the entire
1764
+ * string is returned as the only entry in an array). If negative, there is no
1765
+ * limit to the number of fields returned, and trailing null fields are not
1766
+ * suppressed.
1767
+ *
1768
+ * " now's the time".split #=> ["now's", "the", "time"]
1769
+ * " now's the time".split(' ') #=> ["now's", "the", "time"]
1770
+ * " now's the time".split(/ /) #=> ["", "now's", "", "the", "time"]
1771
+ * "1, 2.34,56, 7".split(%r{,\s*}) #=> ["1", "2.34", "56", "7"]
1772
+ * "hello".split(//) #=> ["h", "e", "l", "l", "o"]
1773
+ * "hello".split(//, 3) #=> ["h", "e", "llo"]
1774
+ * "hi mom".split(%r{\s*}) #=> ["h", "i", "m", "o", "m"]
1775
+ *
1776
+ * "mellow yellow".split("ello") #=> ["m", "w y", "w"]
1777
+ * "1,2,,3,4,,".split(',') #=> ["1", "2", "", "3", "4"]
1778
+ * "1,2,,3,4,,".split(',', 4) #=> ["1", "2", "", "3,4,,"]
1779
+ * "1,2,,3,4,,".split(',', -4) #=> ["1", "2", "", "3", "4", "", ""]
1780
+ */
1781
+
1782
+ static mrb_value
1783
+ mrb_str_split_m(mrb_state *mrb, mrb_value str)
1784
+ {
1785
+ int argc;
1786
+ mrb_value spat = mrb_nil_value();
1787
+ enum {awk, string, regexp} split_type = string;
1788
+ long i = 0, lim_p;
1789
+ mrb_int beg;
1790
+ mrb_int end;
1791
+ mrb_int lim = 0;
1792
+ mrb_value result, tmp;
1793
+
1794
+ argc = mrb_get_args(mrb, "|oi", &spat, &lim);
1795
+ lim_p = (lim > 0 && argc == 2);
1796
+ if (argc == 2) {
1797
+ if (lim == 1) {
1798
+ if (RSTRING_LEN(str) == 0)
1799
+ return mrb_ary_new_capa(mrb, 0);
1800
+ return mrb_ary_new_from_values(mrb, 1, &str);
1801
+ }
1802
+ i = 1;
1803
+ }
1804
+
1805
+ if (argc == 0 || mrb_nil_p(spat)) {
1806
+ split_type = awk;
1807
+ }
1808
+ else {
1809
+ if (mrb_string_p(spat)) {
1810
+ split_type = string;
1811
+ if (RSTRING_LEN(spat) == 1 && RSTRING_PTR(spat)[0] == ' '){
1812
+ split_type = awk;
1813
+ }
1814
+ }
1815
+ else {
1816
+ noregexp(mrb, str);
1817
+ }
1818
+ }
1819
+
1820
+ result = mrb_ary_new(mrb);
1821
+ beg = 0;
1822
+ if (split_type == awk) {
1823
+ char *ptr = RSTRING_PTR(str);
1824
+ char *eptr = RSTRING_END(str);
1825
+ char *bptr = ptr;
1826
+ int skip = 1;
1827
+ unsigned int c;
1828
+
1829
+ end = beg;
1830
+ while (ptr < eptr) {
1831
+ int ai = mrb_gc_arena_save(mrb);
1832
+ c = (unsigned char)*ptr++;
1833
+ if (skip) {
1834
+ if (ascii_isspace(c)) {
1835
+ beg = ptr - bptr;
1836
+ }
1837
+ else {
1838
+ end = ptr - bptr;
1839
+ skip = 0;
1840
+ if (lim_p && lim <= i) break;
1841
+ }
1842
+ }
1843
+ else if (ascii_isspace(c)) {
1844
+ mrb_ary_push(mrb, result, mrb_str_subseq(mrb, str, beg, end-beg));
1845
+ mrb_gc_arena_restore(mrb, ai);
1846
+ skip = 1;
1847
+ beg = ptr - bptr;
1848
+ if (lim_p) ++i;
1849
+ }
1850
+ else {
1851
+ end = ptr - bptr;
1852
+ }
1853
+ }
1854
+ }
1855
+ else if (split_type == string) {
1856
+ char *ptr = RSTRING_PTR(str);
1857
+ char *temp = ptr;
1858
+ char *eptr = RSTRING_END(str);
1859
+ mrb_int slen = RSTRING_LEN(spat);
1860
+
1861
+ if (slen == 0) {
1862
+ int ai = mrb_gc_arena_save(mrb);
1863
+ while (ptr < eptr) {
1864
+ mrb_ary_push(mrb, result, mrb_str_subseq(mrb, str, ptr-temp, 1));
1865
+ mrb_gc_arena_restore(mrb, ai);
1866
+ ptr++;
1867
+ if (lim_p && lim <= ++i) break;
1868
+ }
1869
+ }
1870
+ else {
1871
+ char *sptr = RSTRING_PTR(spat);
1872
+ int ai = mrb_gc_arena_save(mrb);
1873
+
1874
+ while (ptr < eptr &&
1875
+ (end = mrb_memsearch(sptr, slen, ptr, eptr - ptr)) >= 0) {
1876
+ mrb_ary_push(mrb, result, mrb_str_subseq(mrb, str, ptr - temp, end));
1877
+ mrb_gc_arena_restore(mrb, ai);
1878
+ ptr += end + slen;
1879
+ if (lim_p && lim <= ++i) break;
1880
+ }
1881
+ }
1882
+ beg = ptr - temp;
1883
+ }
1884
+ else {
1885
+ noregexp(mrb, str);
1886
+ }
1887
+ if (RSTRING_LEN(str) > 0 && (lim_p || RSTRING_LEN(str) > beg || lim < 0)) {
1888
+ if (RSTRING_LEN(str) == beg) {
1889
+ tmp = mrb_str_new_empty(mrb, str);
1890
+ }
1891
+ else {
1892
+ tmp = mrb_str_subseq(mrb, str, beg, RSTRING_LEN(str)-beg);
1893
+ }
1894
+ mrb_ary_push(mrb, result, tmp);
1895
+ }
1896
+ if (!lim_p && lim == 0) {
1897
+ mrb_int len;
1898
+ while ((len = RARRAY_LEN(result)) > 0 &&
1899
+ (tmp = RARRAY_PTR(result)[len-1], RSTRING_LEN(tmp) == 0))
1900
+ mrb_ary_pop(mrb, result);
1901
+ }
1902
+
1903
+ return result;
1904
+ }
1905
+
1906
+ mrb_value
1907
+ mrb_cstr_to_inum(mrb_state *mrb, const char *str, int base, int badcheck)
1908
+ {
1909
+ char *end;
1910
+ char sign = 1;
1911
+ int c;
1912
+ unsigned long n;
1913
+ mrb_int val;
1914
+
1915
+ #undef ISDIGIT
1916
+ #define ISDIGIT(c) ('0' <= (c) && (c) <= '9')
1917
+ #define conv_digit(c) \
1918
+ (!ISASCII(c) ? -1 : \
1919
+ isdigit(c) ? ((c) - '0') : \
1920
+ islower(c) ? ((c) - 'a' + 10) : \
1921
+ isupper(c) ? ((c) - 'A' + 10) : \
1922
+ -1)
1923
+
1924
+ if (!str) {
1925
+ if (badcheck) goto bad;
1926
+ return mrb_fixnum_value(0);
1927
+ }
1928
+ while (ISSPACE(*str)) str++;
1929
+
1930
+ if (str[0] == '+') {
1931
+ str++;
1932
+ }
1933
+ else if (str[0] == '-') {
1934
+ str++;
1935
+ sign = 0;
1936
+ }
1937
+ if (str[0] == '+' || str[0] == '-') {
1938
+ if (badcheck) goto bad;
1939
+ return mrb_fixnum_value(0);
1940
+ }
1941
+ if (base <= 0) {
1942
+ if (str[0] == '0') {
1943
+ switch (str[1]) {
1944
+ case 'x': case 'X':
1945
+ base = 16;
1946
+ break;
1947
+ case 'b': case 'B':
1948
+ base = 2;
1949
+ break;
1950
+ case 'o': case 'O':
1951
+ base = 8;
1952
+ break;
1953
+ case 'd': case 'D':
1954
+ base = 10;
1955
+ break;
1956
+ default:
1957
+ base = 8;
1958
+ }
1959
+ }
1960
+ else if (base < -1) {
1961
+ base = -base;
1962
+ }
1963
+ else {
1964
+ base = 10;
1965
+ }
1966
+ }
1967
+ switch (base) {
1968
+ case 2:
1969
+ if (str[0] == '0' && (str[1] == 'b'||str[1] == 'B')) {
1970
+ str += 2;
1971
+ }
1972
+ break;
1973
+ case 3:
1974
+ break;
1975
+ case 8:
1976
+ if (str[0] == '0' && (str[1] == 'o'||str[1] == 'O')) {
1977
+ str += 2;
1978
+ }
1979
+ case 4: case 5: case 6: case 7:
1980
+ break;
1981
+ case 10:
1982
+ if (str[0] == '0' && (str[1] == 'd'||str[1] == 'D')) {
1983
+ str += 2;
1984
+ }
1985
+ case 9: case 11: case 12: case 13: case 14: case 15:
1986
+ break;
1987
+ case 16:
1988
+ if (str[0] == '0' && (str[1] == 'x'||str[1] == 'X')) {
1989
+ str += 2;
1990
+ }
1991
+ break;
1992
+ default:
1993
+ if (base < 2 || 36 < base) {
1994
+ mrb_raisef(mrb, E_ARGUMENT_ERROR, "illegal radix %S", mrb_fixnum_value(base));
1995
+ }
1996
+ break;
1997
+ } /* end of switch (base) { */
1998
+ if (*str == '0') { /* squeeze preceeding 0s */
1999
+ int us = 0;
2000
+ while ((c = *++str) == '0' || c == '_') {
2001
+ if (c == '_') {
2002
+ if (++us >= 2)
2003
+ break;
2004
+ }
2005
+ else
2006
+ us = 0;
2007
+ }
2008
+ if (!(c = *str) || ISSPACE(c)) --str;
2009
+ }
2010
+ c = *str;
2011
+ c = conv_digit(c);
2012
+ if (c < 0 || c >= base) {
2013
+ if (badcheck) goto bad;
2014
+ return mrb_fixnum_value(0);
2015
+ }
2016
+
2017
+ n = strtoul((char*)str, &end, base);
2018
+ if (n > MRB_INT_MAX) {
2019
+ mrb_raisef(mrb, E_ARGUMENT_ERROR, "string (%S) too big for integer", mrb_str_new_cstr(mrb, str));
2020
+ }
2021
+ val = n;
2022
+ if (badcheck) {
2023
+ if (end == str) goto bad; /* no number */
2024
+ while (*end && ISSPACE(*end)) end++;
2025
+ if (*end) goto bad; /* trailing garbage */
2026
+ }
2027
+
2028
+ return mrb_fixnum_value(sign ? val : -val);
2029
+ bad:
2030
+ mrb_raisef(mrb, E_ARGUMENT_ERROR, "invalid string for number(%S)", mrb_str_new_cstr(mrb, str));
2031
+ /* not reached */
2032
+ return mrb_fixnum_value(0);
2033
+ }
2034
+
2035
+ char *
2036
+ mrb_string_value_cstr(mrb_state *mrb, mrb_value *ptr)
2037
+ {
2038
+ struct RString *ps = mrb_str_ptr(*ptr);
2039
+ char *s = ps->ptr;
2040
+
2041
+ if (!s || ps->len != strlen(s)) {
2042
+ mrb_raise(mrb, E_ARGUMENT_ERROR, "string contains null byte");
2043
+ }
2044
+ return s;
2045
+ }
2046
+
2047
+ mrb_value
2048
+ mrb_str_to_inum(mrb_state *mrb, mrb_value str, int base, int badcheck)
2049
+ {
2050
+ char *s;
2051
+ int len;
2052
+
2053
+ str = mrb_str_to_str(mrb, str);
2054
+ if (badcheck) {
2055
+ s = mrb_string_value_cstr(mrb, &str);
2056
+ }
2057
+ else {
2058
+ s = RSTRING_PTR(str);
2059
+ }
2060
+ if (s) {
2061
+ len = RSTRING_LEN(str);
2062
+ if (s[len]) { /* no sentinel somehow */
2063
+ struct RString *temp_str = str_new(mrb, s, len);
2064
+ s = temp_str->ptr;
2065
+ }
2066
+ }
2067
+ return mrb_cstr_to_inum(mrb, s, base, badcheck);
2068
+ }
2069
+
2070
+ /* 15.2.10.5.38 */
2071
+ /*
2072
+ * call-seq:
2073
+ * str.to_i(base=10) => integer
2074
+ *
2075
+ * Returns the result of interpreting leading characters in <i>str</i> as an
2076
+ * integer base <i>base</i> (between 2 and 36). Extraneous characters past the
2077
+ * end of a valid number are ignored. If there is not a valid number at the
2078
+ * start of <i>str</i>, <code>0</code> is returned. This method never raises an
2079
+ * exception.
2080
+ *
2081
+ * "12345".to_i #=> 12345
2082
+ * "99 red balloons".to_i #=> 99
2083
+ * "0a".to_i #=> 0
2084
+ * "0a".to_i(16) #=> 10
2085
+ * "hello".to_i #=> 0
2086
+ * "1100101".to_i(2) #=> 101
2087
+ * "1100101".to_i(8) #=> 294977
2088
+ * "1100101".to_i(10) #=> 1100101
2089
+ * "1100101".to_i(16) #=> 17826049
2090
+ */
2091
+ static mrb_value
2092
+ mrb_str_to_i(mrb_state *mrb, mrb_value self)
2093
+ {
2094
+ mrb_value *argv;
2095
+ int argc;
2096
+ int base;
2097
+
2098
+ mrb_get_args(mrb, "*", &argv, &argc);
2099
+ if (argc == 0)
2100
+ base = 10;
2101
+ else
2102
+ base = mrb_fixnum(argv[0]);
2103
+
2104
+ if (base < 0) {
2105
+ mrb_raisef(mrb, E_ARGUMENT_ERROR, "illegal radix %S", mrb_fixnum_value(base));
2106
+ }
2107
+ return mrb_str_to_inum(mrb, self, base, 0/*Qfalse*/);
2108
+ }
2109
+
2110
+ double
2111
+ mrb_cstr_to_dbl(mrb_state *mrb, const char * p, int badcheck)
2112
+ {
2113
+ char *end;
2114
+ double d;
2115
+ #if !defined(DBL_DIG)
2116
+ # define DBL_DIG 16
2117
+ #endif
2118
+
2119
+ enum {max_width = 20};
2120
+ #define OutOfRange() (((w = end - p) > max_width) ? \
2121
+ (w = max_width, ellipsis = "...") : \
2122
+ (w = (int)(end - p), ellipsis = ""))
2123
+
2124
+ if (!p) return 0.0;
2125
+ while (ISSPACE(*p)) p++;
2126
+
2127
+ if (!badcheck && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) {
2128
+ return 0.0;
2129
+ }
2130
+ d = strtod(p, &end);
2131
+ if (p == end) {
2132
+ if (badcheck) {
2133
+ bad:
2134
+ mrb_raisef(mrb, E_ARGUMENT_ERROR, "invalid string for float(%S)", mrb_str_new_cstr(mrb, p));
2135
+ /* not reached */
2136
+ }
2137
+ return d;
2138
+ }
2139
+ if (*end) {
2140
+ char buf[DBL_DIG * 4 + 10];
2141
+ char *n = buf;
2142
+ char *e = buf + sizeof(buf) - 1;
2143
+ char prev = 0;
2144
+
2145
+ while (p < end && n < e) prev = *n++ = *p++;
2146
+ while (*p) {
2147
+ if (*p == '_') {
2148
+ /* remove underscores between digits */
2149
+ if (badcheck) {
2150
+ if (n == buf || !ISDIGIT(prev)) goto bad;
2151
+ ++p;
2152
+ if (!ISDIGIT(*p)) goto bad;
2153
+ }
2154
+ else {
2155
+ while (*++p == '_');
2156
+ continue;
2157
+ }
2158
+ }
2159
+ prev = *p++;
2160
+ if (n < e) *n++ = prev;
2161
+ }
2162
+ *n = '\0';
2163
+ p = buf;
2164
+
2165
+ if (!badcheck && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) {
2166
+ return 0.0;
2167
+ }
2168
+
2169
+ d = strtod(p, &end);
2170
+ if (badcheck) {
2171
+ if (!end || p == end) goto bad;
2172
+ while (*end && ISSPACE(*end)) end++;
2173
+ if (*end) goto bad;
2174
+ }
2175
+ }
2176
+ return d;
2177
+ }
2178
+
2179
+ double
2180
+ mrb_str_to_dbl(mrb_state *mrb, mrb_value str, int badcheck)
2181
+ {
2182
+ char *s;
2183
+ int len;
2184
+
2185
+ str = mrb_str_to_str(mrb, str);
2186
+ s = RSTRING_PTR(str);
2187
+ len = RSTRING_LEN(str);
2188
+ if (s) {
2189
+ if (badcheck && memchr(s, '\0', len)) {
2190
+ mrb_raise(mrb, E_ARGUMENT_ERROR, "string for Float contains null byte");
2191
+ }
2192
+ if (s[len]) { /* no sentinel somehow */
2193
+ struct RString *temp_str = str_new(mrb, s, len);
2194
+ s = temp_str->ptr;
2195
+ }
2196
+ }
2197
+ return mrb_cstr_to_dbl(mrb, s, badcheck);
2198
+ }
2199
+
2200
+ /* 15.2.10.5.39 */
2201
+ /*
2202
+ * call-seq:
2203
+ * str.to_f => float
2204
+ *
2205
+ * Returns the result of interpreting leading characters in <i>str</i> as a
2206
+ * floating point number. Extraneous characters past the end of a valid number
2207
+ * are ignored. If there is not a valid number at the start of <i>str</i>,
2208
+ * <code>0.0</code> is returned. This method never raises an exception.
2209
+ *
2210
+ * "123.45e1".to_f #=> 1234.5
2211
+ * "45.67 degrees".to_f #=> 45.67
2212
+ * "thx1138".to_f #=> 0.0
2213
+ */
2214
+ static mrb_value
2215
+ mrb_str_to_f(mrb_state *mrb, mrb_value self)
2216
+ {
2217
+ return mrb_float_value(mrb, mrb_str_to_dbl(mrb, self, 0/*Qfalse*/));
2218
+ }
2219
+
2220
+ /* 15.2.10.5.40 */
2221
+ /*
2222
+ * call-seq:
2223
+ * str.to_s => str
2224
+ * str.to_str => str
2225
+ *
2226
+ * Returns the receiver.
2227
+ */
2228
+ static mrb_value
2229
+ mrb_str_to_s(mrb_state *mrb, mrb_value self)
2230
+ {
2231
+ if (mrb_obj_class(mrb, self) != mrb->string_class) {
2232
+ return mrb_str_dup(mrb, self);
2233
+ }
2234
+ return self;
2235
+ }
2236
+
2237
+ /* 15.2.10.5.43 */
2238
+ /*
2239
+ * call-seq:
2240
+ * str.upcase! => str or nil
2241
+ *
2242
+ * Upcases the contents of <i>str</i>, returning <code>nil</code> if no changes
2243
+ * were made.
2244
+ */
2245
+ static mrb_value
2246
+ mrb_str_upcase_bang(mrb_state *mrb, mrb_value str)
2247
+ {
2248
+ struct RString *s = mrb_str_ptr(str);
2249
+ char *p, *pend;
2250
+ int modify = 0;
2251
+
2252
+ mrb_str_modify(mrb, s);
2253
+ p = RSTRING_PTR(str);
2254
+ pend = RSTRING_END(str);
2255
+ while (p < pend) {
2256
+ if (ISLOWER(*p)) {
2257
+ *p = TOUPPER(*p);
2258
+ modify = 1;
2259
+ }
2260
+ p++;
2261
+ }
2262
+
2263
+ if (modify) return str;
2264
+ return mrb_nil_value();
2265
+ }
2266
+
2267
+ /* 15.2.10.5.42 */
2268
+ /*
2269
+ * call-seq:
2270
+ * str.upcase => new_str
2271
+ *
2272
+ * Returns a copy of <i>str</i> with all lowercase letters replaced with their
2273
+ * uppercase counterparts. The operation is locale insensitive---only
2274
+ * characters ``a'' to ``z'' are affected.
2275
+ *
2276
+ * "hEllO".upcase #=> "HELLO"
2277
+ */
2278
+ static mrb_value
2279
+ mrb_str_upcase(mrb_state *mrb, mrb_value self)
2280
+ {
2281
+ mrb_value str;
2282
+
2283
+ str = mrb_str_dup(mrb, self);
2284
+ mrb_str_upcase_bang(mrb, str);
2285
+ return str;
2286
+ }
2287
+
2288
+ /*
2289
+ * call-seq:
2290
+ * str.dump -> new_str
2291
+ *
2292
+ * Produces a version of <i>str</i> with all nonprinting characters replaced by
2293
+ * <code>\nnn</code> notation and all special characters escaped.
2294
+ */
2295
+ mrb_value
2296
+ mrb_str_dump(mrb_state *mrb, mrb_value str)
2297
+ {
2298
+ mrb_int len;
2299
+ const char *p, *pend;
2300
+ char *q;
2301
+ struct RString *result;
2302
+
2303
+ len = 2; /* "" */
2304
+ p = RSTRING_PTR(str); pend = p + RSTRING_LEN(str);
2305
+ while (p < pend) {
2306
+ unsigned char c = *p++;
2307
+ switch (c) {
2308
+ case '"': case '\\':
2309
+ case '\n': case '\r':
2310
+ case '\t': case '\f':
2311
+ case '\013': case '\010': case '\007': case '\033':
2312
+ len += 2;
2313
+ break;
2314
+
2315
+ case '#':
2316
+ len += IS_EVSTR(p, pend) ? 2 : 1;
2317
+ break;
2318
+
2319
+ default:
2320
+ if (ISPRINT(c)) {
2321
+ len++;
2322
+ }
2323
+ else {
2324
+ len += 4; /* \NNN */
2325
+ }
2326
+ break;
2327
+ }
2328
+ }
2329
+
2330
+ result = str_new(mrb, 0, len);
2331
+ str_with_class(mrb, result, str);
2332
+ p = RSTRING_PTR(str); pend = p + RSTRING_LEN(str);
2333
+ q = result->ptr;
2334
+
2335
+ *q++ = '"';
2336
+ while (p < pend) {
2337
+ unsigned char c = *p++;
2338
+
2339
+ switch (c) {
2340
+ case '"':
2341
+ case '\\':
2342
+ *q++ = '\\';
2343
+ *q++ = c;
2344
+ break;
2345
+
2346
+ case '\n':
2347
+ *q++ = '\\';
2348
+ *q++ = 'n';
2349
+ break;
2350
+
2351
+ case '\r':
2352
+ *q++ = '\\';
2353
+ *q++ = 'r';
2354
+ break;
2355
+
2356
+ case '\t':
2357
+ *q++ = '\\';
2358
+ *q++ = 't';
2359
+ break;
2360
+
2361
+ case '\f':
2362
+ *q++ = '\\';
2363
+ *q++ = 'f';
2364
+ break;
2365
+
2366
+ case '\013':
2367
+ *q++ = '\\';
2368
+ *q++ = 'v';
2369
+ break;
2370
+
2371
+ case '\010':
2372
+ *q++ = '\\';
2373
+ *q++ = 'b';
2374
+ break;
2375
+
2376
+ case '\007':
2377
+ *q++ = '\\';
2378
+ *q++ = 'a';
2379
+ break;
2380
+
2381
+ case '\033':
2382
+ *q++ = '\\';
2383
+ *q++ = 'e';
2384
+ break;
2385
+
2386
+ case '#':
2387
+ if (IS_EVSTR(p, pend)) *q++ = '\\';
2388
+ *q++ = '#';
2389
+ break;
2390
+
2391
+ default:
2392
+ if (ISPRINT(c)) {
2393
+ *q++ = c;
2394
+ }
2395
+ else {
2396
+ *q++ = '\\';
2397
+ q[2] = '0' + c % 8; c /= 8;
2398
+ q[1] = '0' + c % 8; c /= 8;
2399
+ q[0] = '0' + c % 8;
2400
+ q += 3;
2401
+ }
2402
+ }
2403
+ }
2404
+ *q++ = '"';
2405
+ return mrb_obj_value(result);
2406
+ }
2407
+
2408
+ mrb_value
2409
+ mrb_str_cat(mrb_state *mrb, mrb_value str, const char *ptr, size_t len)
2410
+ {
2411
+ if ((mrb_int)len < 0) {
2412
+ mrb_raise(mrb, E_ARGUMENT_ERROR, "negative string size (or size too big)");
2413
+ }
2414
+ str_buf_cat(mrb, mrb_str_ptr(str), ptr, len);
2415
+ return str;
2416
+ }
2417
+
2418
+ mrb_value
2419
+ mrb_str_cat_cstr(mrb_state *mrb, mrb_value str, const char *ptr)
2420
+ {
2421
+ return mrb_str_cat(mrb, str, ptr, strlen(ptr));
2422
+ }
2423
+
2424
+ mrb_value
2425
+ mrb_str_append(mrb_state *mrb, mrb_value str, mrb_value str2)
2426
+ {
2427
+ str2 = mrb_str_to_str(mrb, str2);
2428
+ return mrb_str_buf_append(mrb, str, str2);
2429
+ }
2430
+
2431
+ #define CHAR_ESC_LEN 13 /* sizeof(\x{ hex of 32bit unsigned int } \0) */
2432
+
2433
+ /*
2434
+ * call-seq:
2435
+ * str.inspect -> string
2436
+ *
2437
+ * Returns a printable version of _str_, surrounded by quote marks,
2438
+ * with special characters escaped.
2439
+ *
2440
+ * str = "hello"
2441
+ * str[3] = "\b"
2442
+ * str.inspect #=> "\"hel\\bo\""
2443
+ */
2444
+ mrb_value
2445
+ mrb_str_inspect(mrb_state *mrb, mrb_value str)
2446
+ {
2447
+ const char *p, *pend;
2448
+ char buf[CHAR_ESC_LEN + 1];
2449
+ mrb_value result = mrb_str_new(mrb, "\"", 1);
2450
+
2451
+ p = RSTRING_PTR(str); pend = RSTRING_END(str);
2452
+ for (;p < pend; p++) {
2453
+ unsigned int c, cc;
2454
+
2455
+ c = *p;
2456
+ if (c == '"'|| c == '\\' || (c == '#' && IS_EVSTR(p, pend))) {
2457
+ buf[0] = '\\'; buf[1] = c;
2458
+ mrb_str_buf_cat(mrb, result, buf, 2);
2459
+ continue;
2460
+ }
2461
+ if (ISPRINT(c)) {
2462
+ buf[0] = c;
2463
+ mrb_str_buf_cat(mrb, result, buf, 1);
2464
+ continue;
2465
+ }
2466
+ switch (c) {
2467
+ case '\n': cc = 'n'; break;
2468
+ case '\r': cc = 'r'; break;
2469
+ case '\t': cc = 't'; break;
2470
+ case '\f': cc = 'f'; break;
2471
+ case '\013': cc = 'v'; break;
2472
+ case '\010': cc = 'b'; break;
2473
+ case '\007': cc = 'a'; break;
2474
+ case 033: cc = 'e'; break;
2475
+ default: cc = 0; break;
2476
+ }
2477
+ if (cc) {
2478
+ buf[0] = '\\';
2479
+ buf[1] = (char)cc;
2480
+ mrb_str_buf_cat(mrb, result, buf, 2);
2481
+ continue;
2482
+ }
2483
+ else {
2484
+ buf[0] = '\\';
2485
+ buf[3] = '0' + c % 8; c /= 8;
2486
+ buf[2] = '0' + c % 8; c /= 8;
2487
+ buf[1] = '0' + c % 8;
2488
+ mrb_str_buf_cat(mrb, result, buf, 4);
2489
+ continue;
2490
+ }
2491
+ }
2492
+ mrb_str_buf_cat(mrb, result, "\"", 1);
2493
+
2494
+ return result;
2495
+ }
2496
+
2497
+ /*
2498
+ * call-seq:
2499
+ * str.bytes -> array of fixnums
2500
+ *
2501
+ * Returns an array of bytes in _str_.
2502
+ *
2503
+ * str = "hello"
2504
+ * str.bytes #=> [104, 101, 108, 108, 111]
2505
+ */
2506
+ static mrb_value
2507
+ mrb_str_bytes(mrb_state *mrb, mrb_value str)
2508
+ {
2509
+ struct RString *s = mrb_str_ptr(str);
2510
+ mrb_value a = mrb_ary_new_capa(mrb, s->len);
2511
+ unsigned char *p = (unsigned char *)(s->ptr), *pend = p + s->len;
2512
+
2513
+ while (p < pend) {
2514
+ mrb_ary_push(mrb, a, mrb_fixnum_value(p[0]));
2515
+ p++;
2516
+ }
2517
+ return a;
2518
+ }
2519
+
2520
+ /* ---------------------------*/
2521
+ void
2522
+ mrb_init_string(mrb_state *mrb)
2523
+ {
2524
+ struct RClass *s;
2525
+
2526
+ s = mrb->string_class = mrb_define_class(mrb, "String", mrb->object_class);
2527
+ MRB_SET_INSTANCE_TT(s, MRB_TT_STRING);
2528
+ mrb_include_module(mrb, s, mrb_class_get(mrb, "Comparable"));
2529
+
2530
+ mrb_define_method(mrb, s, "+", mrb_str_plus_m, MRB_ARGS_REQ(1)); /* 15.2.10.5.2 */
2531
+ mrb_define_method(mrb, s, "bytesize", mrb_str_bytesize, MRB_ARGS_NONE());
2532
+ mrb_define_method(mrb, s, "size", mrb_str_size, MRB_ARGS_NONE()); /* 15.2.10.5.33 */
2533
+ mrb_define_method(mrb, s, "length", mrb_str_size, MRB_ARGS_NONE()); /* 15.2.10.5.26 */
2534
+ mrb_define_method(mrb, s, "*", mrb_str_times, MRB_ARGS_REQ(1)); /* 15.2.10.5.1 */
2535
+ mrb_define_method(mrb, s, "<=>", mrb_str_cmp_m, MRB_ARGS_REQ(1)); /* 15.2.10.5.3 */
2536
+ mrb_define_method(mrb, s, "==", mrb_str_equal_m, MRB_ARGS_REQ(1)); /* 15.2.10.5.4 */
2537
+ mrb_define_method(mrb, s, "=~", noregexp, MRB_ARGS_REQ(1)); /* 15.2.10.5.5 */
2538
+ mrb_define_method(mrb, s, "[]", mrb_str_aref_m, MRB_ARGS_ANY()); /* 15.2.10.5.6 */
2539
+ mrb_define_method(mrb, s, "capitalize", mrb_str_capitalize, MRB_ARGS_NONE()); /* 15.2.10.5.7 */
2540
+ mrb_define_method(mrb, s, "capitalize!", mrb_str_capitalize_bang, MRB_ARGS_REQ(1)); /* 15.2.10.5.8 */
2541
+ mrb_define_method(mrb, s, "chomp", mrb_str_chomp, MRB_ARGS_ANY()); /* 15.2.10.5.9 */
2542
+ mrb_define_method(mrb, s, "chomp!", mrb_str_chomp_bang, MRB_ARGS_ANY()); /* 15.2.10.5.10 */
2543
+ mrb_define_method(mrb, s, "chop", mrb_str_chop, MRB_ARGS_REQ(1)); /* 15.2.10.5.11 */
2544
+ mrb_define_method(mrb, s, "chop!", mrb_str_chop_bang, MRB_ARGS_REQ(1)); /* 15.2.10.5.12 */
2545
+ mrb_define_method(mrb, s, "downcase", mrb_str_downcase, MRB_ARGS_NONE()); /* 15.2.10.5.13 */
2546
+ mrb_define_method(mrb, s, "downcase!", mrb_str_downcase_bang, MRB_ARGS_NONE()); /* 15.2.10.5.14 */
2547
+ mrb_define_method(mrb, s, "empty?", mrb_str_empty_p, MRB_ARGS_NONE()); /* 15.2.10.5.16 */
2548
+ mrb_define_method(mrb, s, "eql?", mrb_str_eql, MRB_ARGS_REQ(1)); /* 15.2.10.5.17 */
2549
+
2550
+ // NOTE: Regexp not implemented
2551
+ mrb_define_method(mrb, s, "gsub", noregexp, MRB_ARGS_REQ(1)); /* 15.2.10.5.18 */
2552
+ mrb_define_method(mrb, s, "gsub!", noregexp, MRB_ARGS_REQ(1)); /* 15.2.10.5.19 */
2553
+
2554
+ mrb_define_method(mrb, s, "hash", mrb_str_hash_m, MRB_ARGS_REQ(1)); /* 15.2.10.5.20 */
2555
+ mrb_define_method(mrb, s, "include?", mrb_str_include, MRB_ARGS_REQ(1)); /* 15.2.10.5.21 */
2556
+ mrb_define_method(mrb, s, "index", mrb_str_index_m, MRB_ARGS_ANY()); /* 15.2.10.5.22 */
2557
+ mrb_define_method(mrb, s, "initialize", mrb_str_init, MRB_ARGS_REQ(1)); /* 15.2.10.5.23 */
2558
+ mrb_define_method(mrb, s, "initialize_copy", mrb_str_replace, MRB_ARGS_REQ(1)); /* 15.2.10.5.24 */
2559
+ mrb_define_method(mrb, s, "intern", mrb_str_intern, MRB_ARGS_NONE()); /* 15.2.10.5.25 */
2560
+ mrb_define_method(mrb, s, "match", noregexp, MRB_ARGS_REQ(1)); /* 15.2.10.5.27 */
2561
+ mrb_define_method(mrb, s, "replace", mrb_str_replace, MRB_ARGS_REQ(1)); /* 15.2.10.5.28 */
2562
+ mrb_define_method(mrb, s, "reverse", mrb_str_reverse, MRB_ARGS_NONE()); /* 15.2.10.5.29 */
2563
+ mrb_define_method(mrb, s, "reverse!", mrb_str_reverse_bang, MRB_ARGS_NONE()); /* 15.2.10.5.30 */
2564
+ mrb_define_method(mrb, s, "rindex", mrb_str_rindex_m, MRB_ARGS_ANY()); /* 15.2.10.5.31 */
2565
+ mrb_define_method(mrb, s, "scan", noregexp, MRB_ARGS_REQ(1)); /* 15.2.10.5.32 */
2566
+ mrb_define_method(mrb, s, "slice", mrb_str_aref_m, MRB_ARGS_ANY()); /* 15.2.10.5.34 */
2567
+ mrb_define_method(mrb, s, "split", mrb_str_split_m, MRB_ARGS_ANY()); /* 15.2.10.5.35 */
2568
+ mrb_define_method(mrb, s, "sub", noregexp, MRB_ARGS_REQ(1)); /* 15.2.10.5.36 */
2569
+ mrb_define_method(mrb, s, "sub!", noregexp, MRB_ARGS_REQ(1)); /* 15.2.10.5.37 */
2570
+
2571
+ mrb_define_method(mrb, s, "to_i", mrb_str_to_i, MRB_ARGS_ANY()); /* 15.2.10.5.38 */
2572
+ mrb_define_method(mrb, s, "to_f", mrb_str_to_f, MRB_ARGS_NONE()); /* 15.2.10.5.39 */
2573
+ mrb_define_method(mrb, s, "to_s", mrb_str_to_s, MRB_ARGS_NONE()); /* 15.2.10.5.40 */
2574
+ mrb_define_method(mrb, s, "to_str", mrb_str_to_s, MRB_ARGS_NONE()); /* 15.2.10.5.40 */
2575
+ mrb_define_method(mrb, s, "to_sym", mrb_str_intern, MRB_ARGS_NONE()); /* 15.2.10.5.41 */
2576
+ mrb_define_method(mrb, s, "upcase", mrb_str_upcase, MRB_ARGS_REQ(1)); /* 15.2.10.5.42 */
2577
+ mrb_define_method(mrb, s, "upcase!", mrb_str_upcase_bang, MRB_ARGS_REQ(1)); /* 15.2.10.5.43 */
2578
+ mrb_define_method(mrb, s, "inspect", mrb_str_inspect, MRB_ARGS_NONE()); /* 15.2.10.5.46(x) */
2579
+ mrb_define_method(mrb, s, "bytes", mrb_str_bytes, MRB_ARGS_NONE());
2580
+ }