{"id":5162,"date":"2013-03-07T23:22:06","date_gmt":"2013-03-07T14:22:06","guid":{"rendered":"http:\/\/rentan.org\/blog\/?p=5162"},"modified":"2013-03-08T04:42:18","modified_gmt":"2013-03-07T19:42:18","slug":"dmonkey-iconv-dll","status":"publish","type":"post","link":"https:\/\/rentan.org\/blog\/2013\/03\/07\/dmonkey-iconv-dll\/","title":{"rendered":"DMonkey: iconv.dll \u306b\u3088\u308b\u6587\u5b57\u5217\u5909\u63db"},"content":{"rendered":"<p><a href=\"http:\/\/www.kaoriya.net\/\">KaoriYa<\/a> \u3055\u3093\u304c\u914d\u5e03\u3057\u3066\u3044\u308b Vim \u306b\u540c\u68b1\u3055\u308c\u3066\u3044\u308b iconv.dll \u3092\u4f7f\u3063\u3066\u3001Irvine \u306e\u30b9\u30af\u30ea\u30d7\u30c8\u3067 UTF-8 \u6587\u5b57\u5217\u3092 Shift_JIS \u306b\u5909\u63db\u3059\u308b\u30c6\u30b9\u30c8\u3002<\/p>\n<pre class=\"prog_code javascript\">\r\nfunction iconvUtf8ToSjis (text) {\r\n\tvar Dorothy = { path: 'C:\\bin\\Irvine\\Dorothy2\\' };\r\n\r\n\tvar dll = Dorothy.path + 'bin\\iconv.dll';\r\n\r\n\tvar d = new DynaCall ();\r\n\td.register (dll, 'libiconv_open',\t'i=ss',\t\t'r=l');\r\n\td.register (dll, 'libiconv_close',\t'i=l',\t\t'r=l');\r\n\td.register (dll, 'libiconv',\t\t'i=lssss',\t'r=l');\r\n\r\n\tvar n;\r\n\r\n\tvar iconv = d.libiconv_open ('Shift_JIS\/\/IGNORE', 'UTF-8');\r\n\t\/\/ alert ('libiconv_open: ' + iconv);\r\n\r\n\tvar insb = new StringBuffer (text);\r\n\tvar inbufp = new Struct ('inbuf:s');\r\n\tinbufp.inbuf = insb;\r\n\r\n\tvar inbytesleftp = new Struct ('inbytesleft:l');\r\n\tinbytesleftp.inbytesleft = new Number (insb.length);\r\n\r\n\tvar outsb = new StringBuffer (100);\r\n\tvar outbufp = new Struct ('outbuf:s');\r\n\toutbufp.outbuf = outsb;\r\n\r\n\tvar outbytesleftp = new Struct ('outbytesleft:l');\r\n\toutbytesleftp.outbytesleft = new Number (outsb.length);\r\n\r\n\tn = d.libiconv (iconv, inbufp, inbytesleftp, outbufp, outbytesleftp);\r\n\t\/\/ alert (n + \"\\n\\n\" + outbytesleftp.outbytesleft + \"\\n\\n\" + outsb.text);\r\n\r\n\tn = d.libiconv_close (iconv);\r\n\t\/\/ alert ('libiconv_close: ' + n);\r\n\r\n\treturn outsb.text;\r\n}\r\n\r\nvar t = String.fromCharCode (0x61, 0xF0, 0xA0, 0xAE, 0xB7, 0x7a);\r\nalert (iconvUtf8ToSjis (t));\r\n<\/pre>\n<p>\u3066\u304d\u3068\u3046\u306b\u66f8\u3044\u305f\u306e\u3067\u30d0\u30c3\u30d5\u30a1\u306e\u6271\u3044\u3068\u304b\u9593\u9055\u3063\u3066\u3044\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002Irvine \u306e\u52d5\u4f5c\u81ea\u4f53\u304c\u304a\u304b\u3057\u304f\u306a\u308b\u6050\u308c\u3082\u3042\u308b\u306e\u3067\u3001\u3053\u306e\u30b3\u30fc\u30c9\u306f\u5b9f\u884c\u3057\u306a\u3044\u3067\u4e0b\u3055\u3044\u3002<\/p>\n<p>\u5909\u63db\u3067\u304d\u306a\u3044\u6587\u5b57\u3092\u7c73\u5370\u203b\u3068\u304b\u30b2\u30bf\u3013\u306e\u3088\u3046\u306a\u4efb\u610f\u306e\u6587\u5b57\u306b\u5909\u63db\u3067\u304d\u308c\u3070\u3088\u304b\u3063\u305f\u3093\u3067\u3059\u304c\u3001\u5909\u63db\u81ea\u4f53\u3092\u30a8\u30e9\u30fc\u306b\u3059\u308b\u304b\u6587\u5b57\u3092\u7121\u8996\u3059\u308b\u304b\u3057\u304b\u9078\u3079\u306a\u3044\u3088\u3046\u3067\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>KaoriYa \u3055\u3093\u304c\u914d\u5e03\u3057\u3066\u3044\u308b Vim \u306b\u540c\u68b1\u3055\u308c\u3066\u3044\u308b iconv.dll \u3092\u4f7f\u3063\u3066\u3001Irvine \u306e\u30b9\u30af\u30ea\u30d7\u30c8\u3067 UTF-8 \u6587\u5b57\u5217\u3092 Shift_JIS \u306b\u5909\u63db\u3059\u308b\u30c6\u30b9\u30c8\u3002 function iconvUtf8 [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[640],"tags":[1191,2111,1569,1568],"class_list":["post-5162","post","type-post","status-publish","format-standard","hentry","category-irvine","tag-dmonkey","tag-iconv","tag-shift_jis","tag-utf-8"],"_links":{"self":[{"href":"https:\/\/rentan.org\/blog\/wp-json\/wp\/v2\/posts\/5162","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rentan.org\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/rentan.org\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/rentan.org\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/rentan.org\/blog\/wp-json\/wp\/v2\/comments?post=5162"}],"version-history":[{"count":4,"href":"https:\/\/rentan.org\/blog\/wp-json\/wp\/v2\/posts\/5162\/revisions"}],"predecessor-version":[{"id":5169,"href":"https:\/\/rentan.org\/blog\/wp-json\/wp\/v2\/posts\/5162\/revisions\/5169"}],"wp:attachment":[{"href":"https:\/\/rentan.org\/blog\/wp-json\/wp\/v2\/media?parent=5162"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rentan.org\/blog\/wp-json\/wp\/v2\/categories?post=5162"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rentan.org\/blog\/wp-json\/wp\/v2\/tags?post=5162"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}