ires 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +32 -45
- data/ext/Gopkg.lock +31 -1
- data/ext/ires/image.go +227 -0
- data/ext/ires/ires.go +47 -59
- data/ext/ires/uri.go +143 -0
- data/ext/main.go +18 -9
- data/ext/vendor/github.com/PuerkitoBio/purell/LICENSE +12 -0
- data/ext/vendor/github.com/PuerkitoBio/purell/README.md +187 -0
- data/ext/vendor/github.com/PuerkitoBio/purell/bench_test.go +57 -0
- data/ext/vendor/github.com/PuerkitoBio/purell/benchmarks/v0.1.0 +9 -0
- data/ext/vendor/github.com/PuerkitoBio/purell/example_test.go +35 -0
- data/ext/vendor/github.com/PuerkitoBio/purell/purell.go +379 -0
- data/ext/vendor/github.com/PuerkitoBio/purell/purell_test.go +768 -0
- data/ext/vendor/github.com/PuerkitoBio/purell/urlnorm_test.go +53 -0
- data/ext/vendor/github.com/PuerkitoBio/urlesc/LICENSE +27 -0
- data/ext/vendor/github.com/PuerkitoBio/urlesc/README.md +16 -0
- data/ext/vendor/github.com/PuerkitoBio/urlesc/urlesc.go +180 -0
- data/ext/vendor/github.com/PuerkitoBio/urlesc/urlesc_test.go +641 -0
- data/ext/vendor/github.com/{satori/go.uuid → goware/urlx}/LICENSE +3 -1
- data/ext/vendor/github.com/goware/urlx/README.md +172 -0
- data/ext/vendor/github.com/goware/urlx/urlx.go +196 -0
- data/ext/vendor/github.com/goware/urlx/urlx_test.go +232 -0
- data/ext/vendor/golang.org/x/net/AUTHORS +3 -0
- data/ext/vendor/golang.org/x/net/CONTRIBUTING.md +31 -0
- data/ext/vendor/golang.org/x/net/CONTRIBUTORS +3 -0
- data/ext/vendor/golang.org/x/net/LICENSE +27 -0
- data/ext/vendor/golang.org/x/net/PATENTS +22 -0
- data/ext/vendor/golang.org/x/net/README.md +16 -0
- data/ext/vendor/golang.org/x/net/bpf/asm.go +41 -0
- data/ext/vendor/golang.org/x/net/bpf/constants.go +218 -0
- data/ext/vendor/golang.org/x/net/bpf/doc.go +82 -0
- data/ext/vendor/golang.org/x/net/bpf/instructions.go +704 -0
- data/ext/vendor/golang.org/x/net/bpf/instructions_test.go +525 -0
- data/ext/vendor/golang.org/x/net/bpf/setter.go +10 -0
- data/ext/vendor/golang.org/x/net/bpf/testdata/all_instructions.bpf +1 -0
- data/ext/vendor/golang.org/x/net/bpf/testdata/all_instructions.txt +79 -0
- data/ext/vendor/golang.org/x/net/bpf/vm.go +140 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_aluop_test.go +512 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_bpf_test.go +192 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_extension_test.go +49 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_instructions.go +174 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_jump_test.go +380 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_load_test.go +246 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_ret_test.go +115 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_scratch_test.go +247 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_test.go +144 -0
- data/ext/vendor/golang.org/x/net/codereview.cfg +1 -0
- data/ext/vendor/golang.org/x/net/context/context.go +54 -0
- data/ext/vendor/golang.org/x/net/context/context_test.go +583 -0
- data/ext/vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go +74 -0
- data/ext/vendor/golang.org/x/net/context/ctxhttp/ctxhttp_17_test.go +29 -0
- data/ext/vendor/golang.org/x/net/context/ctxhttp/ctxhttp_pre17.go +147 -0
- data/ext/vendor/golang.org/x/net/context/ctxhttp/ctxhttp_pre17_test.go +79 -0
- data/ext/vendor/golang.org/x/net/context/ctxhttp/ctxhttp_test.go +105 -0
- data/ext/vendor/golang.org/x/net/context/go17.go +72 -0
- data/ext/vendor/golang.org/x/net/context/go19.go +20 -0
- data/ext/vendor/golang.org/x/net/context/pre_go17.go +300 -0
- data/ext/vendor/golang.org/x/net/context/pre_go19.go +109 -0
- data/ext/vendor/golang.org/x/net/context/withtimeout_test.go +31 -0
- data/ext/vendor/golang.org/x/net/dict/dict.go +210 -0
- data/ext/vendor/golang.org/x/net/dns/dnsmessage/example_test.go +132 -0
- data/ext/vendor/golang.org/x/net/dns/dnsmessage/message.go +1997 -0
- data/ext/vendor/golang.org/x/net/dns/dnsmessage/message_test.go +1116 -0
- data/ext/vendor/golang.org/x/net/html/atom/atom.go +78 -0
- data/ext/vendor/golang.org/x/net/html/atom/atom_test.go +109 -0
- data/ext/vendor/golang.org/x/net/html/atom/gen.go +709 -0
- data/ext/vendor/golang.org/x/net/html/atom/table.go +777 -0
- data/ext/vendor/golang.org/x/net/html/atom/table_test.go +373 -0
- data/ext/vendor/golang.org/x/net/html/charset/charset.go +257 -0
- data/ext/vendor/golang.org/x/net/html/charset/charset_test.go +237 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/HTTP-charset.html +48 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-UTF-8-BOM.html +48 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-meta-charset.html +49 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-meta-content.html +49 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/No-encoding-declaration.html +47 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/README +9 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html +0 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html +0 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/UTF-8-BOM-vs-meta-charset.html +49 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/UTF-8-BOM-vs-meta-content.html +48 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/meta-charset-attribute.html +48 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/meta-content-attribute.html +48 -0
- data/ext/vendor/golang.org/x/net/html/const.go +104 -0
- data/ext/vendor/golang.org/x/net/html/doc.go +106 -0
- data/ext/vendor/golang.org/x/net/html/doctype.go +156 -0
- data/ext/vendor/golang.org/x/net/html/entity.go +2253 -0
- data/ext/vendor/golang.org/x/net/html/entity_test.go +29 -0
- data/ext/vendor/golang.org/x/net/html/escape.go +258 -0
- data/ext/vendor/golang.org/x/net/html/escape_test.go +97 -0
- data/ext/vendor/golang.org/x/net/html/example_test.go +40 -0
- data/ext/vendor/golang.org/x/net/html/foreign.go +226 -0
- data/ext/vendor/golang.org/x/net/html/node.go +193 -0
- data/ext/vendor/golang.org/x/net/html/node_test.go +146 -0
- data/ext/vendor/golang.org/x/net/html/parse.go +2094 -0
- data/ext/vendor/golang.org/x/net/html/parse_test.go +388 -0
- data/ext/vendor/golang.org/x/net/html/render.go +271 -0
- data/ext/vendor/golang.org/x/net/html/render_test.go +156 -0
- data/ext/vendor/golang.org/x/net/html/testdata/go1.html +2237 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/README +28 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/adoption01.dat +194 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/adoption02.dat +31 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/comments01.dat +135 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/doctype01.dat +370 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/entities01.dat +603 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/entities02.dat +249 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/html5test-com.dat +246 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/inbody01.dat +43 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/isindex.dat +40 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat +0 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes.dat +52 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/plain-text-unsafe.dat +0 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/scriptdata01.dat +308 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/scripted/adoption01.dat +15 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/scripted/webkit01.dat +28 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tables01.dat +212 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests1.dat +1952 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests10.dat +799 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests11.dat +482 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests12.dat +62 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests14.dat +74 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests15.dat +208 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests16.dat +2299 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests17.dat +153 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests18.dat +269 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests19.dat +1237 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests2.dat +763 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests20.dat +455 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests21.dat +221 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests22.dat +157 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests23.dat +155 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests24.dat +79 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests25.dat +219 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests26.dat +313 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests3.dat +305 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests4.dat +59 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests5.dat +191 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests6.dat +663 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests7.dat +390 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests8.dat +148 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests9.dat +457 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests_innerHTML_1.dat +741 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tricky01.dat +261 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/webkit01.dat +610 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/webkit02.dat +159 -0
- data/ext/vendor/golang.org/x/net/html/token.go +1219 -0
- data/ext/vendor/golang.org/x/net/html/token_test.go +748 -0
- data/ext/vendor/golang.org/x/net/http2/Dockerfile +51 -0
- data/ext/vendor/golang.org/x/net/http2/Makefile +3 -0
- data/ext/vendor/golang.org/x/net/http2/README +20 -0
- data/ext/vendor/golang.org/x/net/http2/ciphers.go +641 -0
- data/ext/vendor/golang.org/x/net/http2/ciphers_test.go +309 -0
- data/ext/vendor/golang.org/x/net/http2/client_conn_pool.go +256 -0
- data/ext/vendor/golang.org/x/net/http2/configure_transport.go +80 -0
- data/ext/vendor/golang.org/x/net/http2/databuffer.go +146 -0
- data/ext/vendor/golang.org/x/net/http2/databuffer_test.go +157 -0
- data/ext/vendor/golang.org/x/net/http2/errors.go +133 -0
- data/ext/vendor/golang.org/x/net/http2/errors_test.go +24 -0
- data/ext/vendor/golang.org/x/net/http2/flow.go +50 -0
- data/ext/vendor/golang.org/x/net/http2/flow_test.go +53 -0
- data/ext/vendor/golang.org/x/net/http2/frame.go +1579 -0
- data/ext/vendor/golang.org/x/net/http2/frame_test.go +1191 -0
- data/ext/vendor/golang.org/x/net/http2/go16.go +16 -0
- data/ext/vendor/golang.org/x/net/http2/go17.go +106 -0
- data/ext/vendor/golang.org/x/net/http2/go17_not18.go +36 -0
- data/ext/vendor/golang.org/x/net/http2/go18.go +56 -0
- data/ext/vendor/golang.org/x/net/http2/go18_test.go +79 -0
- data/ext/vendor/golang.org/x/net/http2/go19.go +16 -0
- data/ext/vendor/golang.org/x/net/http2/go19_test.go +60 -0
- data/ext/vendor/golang.org/x/net/http2/gotrack.go +170 -0
- data/ext/vendor/golang.org/x/net/http2/gotrack_test.go +33 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/Makefile +8 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/README +16 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/h2demo.go +538 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/launch.go +302 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/rootCA.key +27 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/rootCA.pem +26 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/rootCA.srl +1 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/server.crt +20 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/server.key +27 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/tmpl.go +1991 -0
- data/ext/vendor/golang.org/x/net/http2/h2i/README.md +97 -0
- data/ext/vendor/golang.org/x/net/http2/h2i/h2i.go +522 -0
- data/ext/vendor/golang.org/x/net/http2/headermap.go +78 -0
- data/ext/vendor/golang.org/x/net/http2/hpack/encode.go +240 -0
- data/ext/vendor/golang.org/x/net/http2/hpack/encode_test.go +386 -0
- data/ext/vendor/golang.org/x/net/http2/hpack/hpack.go +490 -0
- data/ext/vendor/golang.org/x/net/http2/hpack/hpack_test.go +722 -0
- data/ext/vendor/golang.org/x/net/http2/hpack/huffman.go +212 -0
- data/ext/vendor/golang.org/x/net/http2/hpack/tables.go +479 -0
- data/ext/vendor/golang.org/x/net/http2/hpack/tables_test.go +214 -0
- data/ext/vendor/golang.org/x/net/http2/http2.go +391 -0
- data/ext/vendor/golang.org/x/net/http2/http2_test.go +199 -0
- data/ext/vendor/golang.org/x/net/http2/not_go16.go +21 -0
- data/ext/vendor/golang.org/x/net/http2/not_go17.go +87 -0
- data/ext/vendor/golang.org/x/net/http2/not_go18.go +29 -0
- data/ext/vendor/golang.org/x/net/http2/not_go19.go +16 -0
- data/ext/vendor/golang.org/x/net/http2/pipe.go +163 -0
- data/ext/vendor/golang.org/x/net/http2/pipe_test.go +130 -0
- data/ext/vendor/golang.org/x/net/http2/server.go +2857 -0
- data/ext/vendor/golang.org/x/net/http2/server_push_test.go +521 -0
- data/ext/vendor/golang.org/x/net/http2/server_test.go +3721 -0
- data/ext/vendor/golang.org/x/net/http2/testdata/draft-ietf-httpbis-http2.xml +5021 -0
- data/ext/vendor/golang.org/x/net/http2/transport.go +2285 -0
- data/ext/vendor/golang.org/x/net/http2/transport_test.go +3714 -0
- data/ext/vendor/golang.org/x/net/http2/write.go +370 -0
- data/ext/vendor/golang.org/x/net/http2/writesched.go +242 -0
- data/ext/vendor/golang.org/x/net/http2/writesched_priority.go +452 -0
- data/ext/vendor/golang.org/x/net/http2/writesched_priority_test.go +541 -0
- data/ext/vendor/golang.org/x/net/http2/writesched_random.go +72 -0
- data/ext/vendor/golang.org/x/net/http2/writesched_random_test.go +44 -0
- data/ext/vendor/golang.org/x/net/http2/writesched_test.go +125 -0
- data/ext/vendor/golang.org/x/net/http2/z_spec_test.go +356 -0
- data/ext/vendor/golang.org/x/net/icmp/dstunreach.go +41 -0
- data/ext/vendor/golang.org/x/net/icmp/echo.go +45 -0
- data/ext/vendor/golang.org/x/net/icmp/endpoint.go +113 -0
- data/ext/vendor/golang.org/x/net/icmp/example_test.go +63 -0
- data/ext/vendor/golang.org/x/net/icmp/extension.go +89 -0
- data/ext/vendor/golang.org/x/net/icmp/extension_test.go +259 -0
- data/ext/vendor/golang.org/x/net/icmp/helper_posix.go +75 -0
- data/ext/vendor/golang.org/x/net/icmp/interface.go +236 -0
- data/ext/vendor/golang.org/x/net/icmp/ipv4.go +61 -0
- data/ext/vendor/golang.org/x/net/icmp/ipv4_test.go +83 -0
- data/ext/vendor/golang.org/x/net/icmp/ipv6.go +23 -0
- data/ext/vendor/golang.org/x/net/icmp/listen_posix.go +100 -0
- data/ext/vendor/golang.org/x/net/icmp/listen_stub.go +33 -0
- data/ext/vendor/golang.org/x/net/icmp/message.go +152 -0
- data/ext/vendor/golang.org/x/net/icmp/message_test.go +134 -0
- data/ext/vendor/golang.org/x/net/icmp/messagebody.go +41 -0
- data/ext/vendor/golang.org/x/net/icmp/mpls.go +77 -0
- data/ext/vendor/golang.org/x/net/icmp/multipart.go +109 -0
- data/ext/vendor/golang.org/x/net/icmp/multipart_test.go +442 -0
- data/ext/vendor/golang.org/x/net/icmp/packettoobig.go +43 -0
- data/ext/vendor/golang.org/x/net/icmp/paramprob.go +63 -0
- data/ext/vendor/golang.org/x/net/icmp/ping_test.go +200 -0
- data/ext/vendor/golang.org/x/net/icmp/sys_freebsd.go +11 -0
- data/ext/vendor/golang.org/x/net/icmp/timeexceeded.go +39 -0
- data/ext/vendor/golang.org/x/net/idna/example_test.go +70 -0
- data/ext/vendor/golang.org/x/net/idna/idna.go +680 -0
- data/ext/vendor/golang.org/x/net/idna/idna_test.go +108 -0
- data/ext/vendor/golang.org/x/net/idna/punycode.go +203 -0
- data/ext/vendor/golang.org/x/net/idna/punycode_test.go +198 -0
- data/ext/vendor/golang.org/x/net/idna/tables.go +4477 -0
- data/ext/vendor/golang.org/x/net/idna/trie.go +72 -0
- data/ext/vendor/golang.org/x/net/idna/trieval.go +114 -0
- data/ext/vendor/golang.org/x/net/internal/iana/const.go +180 -0
- data/ext/vendor/golang.org/x/net/internal/iana/gen.go +293 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/helper_bsd.go +53 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/helper_nobsd.go +15 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/helper_posix.go +31 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/helper_stub.go +32 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/helper_unix.go +29 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/helper_windows.go +42 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/interface.go +94 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/rlimit.go +11 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/stack.go +147 -0
- data/ext/vendor/golang.org/x/net/internal/socket/cmsghdr.go +11 -0
- data/ext/vendor/golang.org/x/net/internal/socket/cmsghdr_bsd.go +13 -0
- data/ext/vendor/golang.org/x/net/internal/socket/cmsghdr_linux_32bit.go +14 -0
- data/ext/vendor/golang.org/x/net/internal/socket/cmsghdr_linux_64bit.go +14 -0
- data/ext/vendor/golang.org/x/net/internal/socket/cmsghdr_solaris_64bit.go +14 -0
- data/ext/vendor/golang.org/x/net/internal/socket/cmsghdr_stub.go +17 -0
- data/ext/vendor/golang.org/x/net/internal/socket/defs_darwin.go +44 -0
- data/ext/vendor/golang.org/x/net/internal/socket/defs_dragonfly.go +44 -0
- data/ext/vendor/golang.org/x/net/internal/socket/defs_freebsd.go +44 -0
- data/ext/vendor/golang.org/x/net/internal/socket/defs_linux.go +49 -0
- data/ext/vendor/golang.org/x/net/internal/socket/defs_netbsd.go +47 -0
- data/ext/vendor/golang.org/x/net/internal/socket/defs_openbsd.go +44 -0
- data/ext/vendor/golang.org/x/net/internal/socket/defs_solaris.go +44 -0
- data/ext/vendor/golang.org/x/net/internal/socket/error_unix.go +31 -0
- data/ext/vendor/golang.org/x/net/internal/socket/error_windows.go +26 -0
- data/ext/vendor/golang.org/x/net/internal/socket/iovec_32bit.go +19 -0
- data/ext/vendor/golang.org/x/net/internal/socket/iovec_64bit.go +19 -0
- data/ext/vendor/golang.org/x/net/internal/socket/iovec_solaris_64bit.go +19 -0
- data/ext/vendor/golang.org/x/net/internal/socket/iovec_stub.go +11 -0
- data/ext/vendor/golang.org/x/net/internal/socket/mmsghdr_stub.go +21 -0
- data/ext/vendor/golang.org/x/net/internal/socket/mmsghdr_unix.go +42 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_bsd.go +39 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_bsdvar.go +16 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_linux.go +36 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_linux_32bit.go +24 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_linux_64bit.go +24 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_openbsd.go +14 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_solaris_64bit.go +36 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_stub.go +14 -0
- data/ext/vendor/golang.org/x/net/internal/socket/rawconn.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/rawconn_mmsg.go +74 -0
- data/ext/vendor/golang.org/x/net/internal/socket/rawconn_msg.go +77 -0
- data/ext/vendor/golang.org/x/net/internal/socket/rawconn_nommsg.go +18 -0
- data/ext/vendor/golang.org/x/net/internal/socket/rawconn_nomsg.go +18 -0
- data/ext/vendor/golang.org/x/net/internal/socket/rawconn_stub.go +25 -0
- data/ext/vendor/golang.org/x/net/internal/socket/reflect.go +62 -0
- data/ext/vendor/golang.org/x/net/internal/socket/socket.go +285 -0
- data/ext/vendor/golang.org/x/net/internal/socket/socket_go1_9_test.go +259 -0
- data/ext/vendor/golang.org/x/net/internal/socket/socket_test.go +46 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys.go +33 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_bsd.go +17 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_bsdvar.go +14 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_darwin.go +7 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_dragonfly.go +7 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux.go +27 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_386.go +55 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_386.s +11 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_amd64.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_arm.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_arm64.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_mips.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_mips64.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_mips64le.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_mipsle.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_ppc64.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_ppc64le.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_s390x.go +55 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_s390x.s +11 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_netbsd.go +25 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_posix.go +168 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_solaris.go +71 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_solaris_amd64.s +11 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_stub.go +64 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_unix.go +33 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_windows.go +70 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_darwin_386.go +59 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_darwin_amd64.go +61 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_darwin_arm.go +59 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_dragonfly_amd64.go +61 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_freebsd_386.go +59 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_freebsd_amd64.go +61 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_freebsd_arm.go +59 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_386.go +63 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_amd64.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_arm.go +63 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_arm64.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_mips.go +63 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_mips64.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_mips64le.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_mipsle.go +63 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_ppc64.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_ppc64le.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_s390x.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_netbsd_386.go +65 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_netbsd_amd64.go +68 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_netbsd_arm.go +59 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_openbsd_386.go +59 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_openbsd_amd64.go +61 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_openbsd_arm.go +59 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_solaris_amd64.go +60 -0
- data/ext/vendor/golang.org/x/net/internal/timeseries/timeseries.go +525 -0
- data/ext/vendor/golang.org/x/net/internal/timeseries/timeseries_test.go +170 -0
- data/ext/vendor/golang.org/x/net/ipv4/batch.go +191 -0
- data/ext/vendor/golang.org/x/net/ipv4/bpf_test.go +93 -0
- data/ext/vendor/golang.org/x/net/ipv4/control.go +144 -0
- data/ext/vendor/golang.org/x/net/ipv4/control_bsd.go +40 -0
- data/ext/vendor/golang.org/x/net/ipv4/control_pktinfo.go +39 -0
- data/ext/vendor/golang.org/x/net/ipv4/control_stub.go +13 -0
- data/ext/vendor/golang.org/x/net/ipv4/control_test.go +21 -0
- data/ext/vendor/golang.org/x/net/ipv4/control_unix.go +73 -0
- data/ext/vendor/golang.org/x/net/ipv4/control_windows.go +16 -0
- data/ext/vendor/golang.org/x/net/ipv4/defs_darwin.go +77 -0
- data/ext/vendor/golang.org/x/net/ipv4/defs_dragonfly.go +38 -0
- data/ext/vendor/golang.org/x/net/ipv4/defs_freebsd.go +75 -0
- data/ext/vendor/golang.org/x/net/ipv4/defs_linux.go +122 -0
- data/ext/vendor/golang.org/x/net/ipv4/defs_netbsd.go +37 -0
- data/ext/vendor/golang.org/x/net/ipv4/defs_openbsd.go +37 -0
- data/ext/vendor/golang.org/x/net/ipv4/defs_solaris.go +84 -0
- data/ext/vendor/golang.org/x/net/ipv4/dgramopt.go +265 -0
- data/ext/vendor/golang.org/x/net/ipv4/doc.go +244 -0
- data/ext/vendor/golang.org/x/net/ipv4/endpoint.go +187 -0
- data/ext/vendor/golang.org/x/net/ipv4/example_test.go +224 -0
- data/ext/vendor/golang.org/x/net/ipv4/gen.go +199 -0
- data/ext/vendor/golang.org/x/net/ipv4/genericopt.go +57 -0
- data/ext/vendor/golang.org/x/net/ipv4/header.go +159 -0
- data/ext/vendor/golang.org/x/net/ipv4/header_test.go +228 -0
- data/ext/vendor/golang.org/x/net/ipv4/helper.go +63 -0
- data/ext/vendor/golang.org/x/net/ipv4/iana.go +34 -0
- data/ext/vendor/golang.org/x/net/ipv4/icmp.go +57 -0
- data/ext/vendor/golang.org/x/net/ipv4/icmp_linux.go +25 -0
- data/ext/vendor/golang.org/x/net/ipv4/icmp_stub.go +25 -0
- data/ext/vendor/golang.org/x/net/ipv4/icmp_test.go +95 -0
- data/ext/vendor/golang.org/x/net/ipv4/multicast_test.go +334 -0
- data/ext/vendor/golang.org/x/net/ipv4/multicastlistener_test.go +265 -0
- data/ext/vendor/golang.org/x/net/ipv4/multicastsockopt_test.go +195 -0
- data/ext/vendor/golang.org/x/net/ipv4/packet.go +69 -0
- data/ext/vendor/golang.org/x/net/ipv4/packet_go1_8.go +56 -0
- data/ext/vendor/golang.org/x/net/ipv4/packet_go1_9.go +67 -0
- data/ext/vendor/golang.org/x/net/ipv4/payload.go +23 -0
- data/ext/vendor/golang.org/x/net/ipv4/payload_cmsg.go +36 -0
- data/ext/vendor/golang.org/x/net/ipv4/payload_cmsg_go1_8.go +59 -0
- data/ext/vendor/golang.org/x/net/ipv4/payload_cmsg_go1_9.go +67 -0
- data/ext/vendor/golang.org/x/net/ipv4/payload_nocmsg.go +42 -0
- data/ext/vendor/golang.org/x/net/ipv4/readwrite_go1_8_test.go +248 -0
- data/ext/vendor/golang.org/x/net/ipv4/readwrite_go1_9_test.go +388 -0
- data/ext/vendor/golang.org/x/net/ipv4/readwrite_test.go +140 -0
- data/ext/vendor/golang.org/x/net/ipv4/sockopt.go +44 -0
- data/ext/vendor/golang.org/x/net/ipv4/sockopt_posix.go +71 -0
- data/ext/vendor/golang.org/x/net/ipv4/sockopt_stub.go +42 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_asmreq.go +119 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_asmreq_stub.go +25 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_asmreqn.go +42 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_asmreqn_stub.go +21 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_bpf.go +23 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_bpf_stub.go +16 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_bsd.go +37 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_darwin.go +93 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_dragonfly.go +35 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_freebsd.go +76 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_linux.go +59 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_solaris.go +57 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_ssmreq.go +54 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_ssmreq_stub.go +21 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_stub.go +13 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_windows.go +67 -0
- data/ext/vendor/golang.org/x/net/ipv4/unicast_test.go +247 -0
- data/ext/vendor/golang.org/x/net/ipv4/unicastsockopt_test.go +148 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_darwin.go +99 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_dragonfly.go +31 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_freebsd_386.go +93 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_freebsd_amd64.go +95 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_freebsd_arm.go +95 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_386.go +148 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_amd64.go +150 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_arm.go +148 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_arm64.go +150 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_mips.go +148 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_mips64.go +150 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_mips64le.go +150 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_mipsle.go +148 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_ppc.go +148 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64.go +150 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64le.go +150 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_s390x.go +150 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_netbsd.go +30 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_openbsd.go +30 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_solaris.go +100 -0
- data/ext/vendor/golang.org/x/net/ipv6/batch.go +119 -0
- data/ext/vendor/golang.org/x/net/ipv6/bpf_test.go +96 -0
- data/ext/vendor/golang.org/x/net/ipv6/control.go +187 -0
- data/ext/vendor/golang.org/x/net/ipv6/control_rfc2292_unix.go +48 -0
- data/ext/vendor/golang.org/x/net/ipv6/control_rfc3542_unix.go +94 -0
- data/ext/vendor/golang.org/x/net/ipv6/control_stub.go +13 -0
- data/ext/vendor/golang.org/x/net/ipv6/control_test.go +21 -0
- data/ext/vendor/golang.org/x/net/ipv6/control_unix.go +55 -0
- data/ext/vendor/golang.org/x/net/ipv6/control_windows.go +16 -0
- data/ext/vendor/golang.org/x/net/ipv6/defs_darwin.go +112 -0
- data/ext/vendor/golang.org/x/net/ipv6/defs_dragonfly.go +84 -0
- data/ext/vendor/golang.org/x/net/ipv6/defs_freebsd.go +105 -0
- data/ext/vendor/golang.org/x/net/ipv6/defs_linux.go +147 -0
- data/ext/vendor/golang.org/x/net/ipv6/defs_netbsd.go +80 -0
- data/ext/vendor/golang.org/x/net/ipv6/defs_openbsd.go +89 -0
- data/ext/vendor/golang.org/x/net/ipv6/defs_solaris.go +114 -0
- data/ext/vendor/golang.org/x/net/ipv6/dgramopt.go +302 -0
- data/ext/vendor/golang.org/x/net/ipv6/doc.go +243 -0
- data/ext/vendor/golang.org/x/net/ipv6/endpoint.go +128 -0
- data/ext/vendor/golang.org/x/net/ipv6/example_test.go +216 -0
- data/ext/vendor/golang.org/x/net/ipv6/gen.go +199 -0
- data/ext/vendor/golang.org/x/net/ipv6/genericopt.go +58 -0
- data/ext/vendor/golang.org/x/net/ipv6/header.go +55 -0
- data/ext/vendor/golang.org/x/net/ipv6/header_test.go +55 -0
- data/ext/vendor/golang.org/x/net/ipv6/helper.go +57 -0
- data/ext/vendor/golang.org/x/net/ipv6/iana.go +82 -0
- data/ext/vendor/golang.org/x/net/ipv6/icmp.go +60 -0
- data/ext/vendor/golang.org/x/net/ipv6/icmp_bsd.go +29 -0
- data/ext/vendor/golang.org/x/net/ipv6/icmp_linux.go +27 -0
- data/ext/vendor/golang.org/x/net/ipv6/icmp_solaris.go +27 -0
- data/ext/vendor/golang.org/x/net/ipv6/icmp_stub.go +23 -0
- data/ext/vendor/golang.org/x/net/ipv6/icmp_test.go +96 -0
- data/ext/vendor/golang.org/x/net/ipv6/icmp_windows.go +22 -0
- data/ext/vendor/golang.org/x/net/ipv6/mocktransponder_test.go +32 -0
- data/ext/vendor/golang.org/x/net/ipv6/multicast_test.go +264 -0
- data/ext/vendor/golang.org/x/net/ipv6/multicastlistener_test.go +261 -0
- data/ext/vendor/golang.org/x/net/ipv6/multicastsockopt_test.go +157 -0
- data/ext/vendor/golang.org/x/net/ipv6/payload.go +23 -0
- data/ext/vendor/golang.org/x/net/ipv6/payload_cmsg.go +35 -0
- data/ext/vendor/golang.org/x/net/ipv6/payload_cmsg_go1_8.go +55 -0
- data/ext/vendor/golang.org/x/net/ipv6/payload_cmsg_go1_9.go +57 -0
- data/ext/vendor/golang.org/x/net/ipv6/payload_nocmsg.go +41 -0
- data/ext/vendor/golang.org/x/net/ipv6/readwrite_go1_8_test.go +242 -0
- data/ext/vendor/golang.org/x/net/ipv6/readwrite_go1_9_test.go +373 -0
- data/ext/vendor/golang.org/x/net/ipv6/readwrite_test.go +148 -0
- data/ext/vendor/golang.org/x/net/ipv6/sockopt.go +43 -0
- data/ext/vendor/golang.org/x/net/ipv6/sockopt_posix.go +87 -0
- data/ext/vendor/golang.org/x/net/ipv6/sockopt_stub.go +46 -0
- data/ext/vendor/golang.org/x/net/ipv6/sockopt_test.go +133 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_asmreq.go +24 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_asmreq_stub.go +17 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_bpf.go +23 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_bpf_stub.go +16 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_bsd.go +57 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_darwin.go +106 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_freebsd.go +92 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_linux.go +74 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_solaris.go +74 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_ssmreq.go +54 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_ssmreq_stub.go +21 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_stub.go +13 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_windows.go +75 -0
- data/ext/vendor/golang.org/x/net/ipv6/unicast_test.go +184 -0
- data/ext/vendor/golang.org/x/net/ipv6/unicastsockopt_test.go +120 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_darwin.go +131 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_dragonfly.go +88 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_freebsd_386.go +122 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_freebsd_amd64.go +124 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_freebsd_arm.go +124 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_386.go +170 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_amd64.go +172 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_arm.go +170 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_arm64.go +172 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_mips.go +170 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_mips64.go +172 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_mips64le.go +172 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_mipsle.go +170 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_ppc.go +170 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64.go +172 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64le.go +172 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_s390x.go +172 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_netbsd.go +84 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_openbsd.go +93 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_solaris.go +131 -0
- data/ext/vendor/golang.org/x/net/lex/httplex/httplex.go +351 -0
- data/ext/vendor/golang.org/x/net/lex/httplex/httplex_test.go +119 -0
- data/ext/vendor/golang.org/x/net/lif/address.go +105 -0
- data/ext/vendor/golang.org/x/net/lif/address_test.go +123 -0
- data/ext/vendor/golang.org/x/net/lif/binary.go +115 -0
- data/ext/vendor/golang.org/x/net/lif/defs_solaris.go +90 -0
- data/ext/vendor/golang.org/x/net/lif/lif.go +43 -0
- data/ext/vendor/golang.org/x/net/lif/link.go +126 -0
- data/ext/vendor/golang.org/x/net/lif/link_test.go +63 -0
- data/ext/vendor/golang.org/x/net/lif/sys.go +21 -0
- data/ext/vendor/golang.org/x/net/lif/sys_solaris_amd64.s +8 -0
- data/ext/vendor/golang.org/x/net/lif/syscall.go +28 -0
- data/ext/vendor/golang.org/x/net/lif/zsys_solaris_amd64.go +103 -0
- data/ext/vendor/golang.org/x/net/nettest/conntest.go +456 -0
- data/ext/vendor/golang.org/x/net/nettest/conntest_go16.go +24 -0
- data/ext/vendor/golang.org/x/net/nettest/conntest_go17.go +24 -0
- data/ext/vendor/golang.org/x/net/nettest/conntest_test.go +76 -0
- data/ext/vendor/golang.org/x/net/netutil/listen.go +48 -0
- data/ext/vendor/golang.org/x/net/netutil/listen_test.go +101 -0
- data/ext/vendor/golang.org/x/net/proxy/direct.go +18 -0
- data/ext/vendor/golang.org/x/net/proxy/per_host.go +140 -0
- data/ext/vendor/golang.org/x/net/proxy/per_host_test.go +55 -0
- data/ext/vendor/golang.org/x/net/proxy/proxy.go +134 -0
- data/ext/vendor/golang.org/x/net/proxy/proxy_test.go +215 -0
- data/ext/vendor/golang.org/x/net/proxy/socks5.go +214 -0
- data/ext/vendor/golang.org/x/net/publicsuffix/gen.go +713 -0
- data/ext/vendor/golang.org/x/net/publicsuffix/list.go +135 -0
- data/ext/vendor/golang.org/x/net/publicsuffix/list_test.go +416 -0
- data/ext/vendor/golang.org/x/net/publicsuffix/table.go +9419 -0
- data/ext/vendor/golang.org/x/net/publicsuffix/table_test.go +16756 -0
- data/ext/vendor/golang.org/x/net/route/address.go +425 -0
- data/ext/vendor/golang.org/x/net/route/address_darwin_test.go +63 -0
- data/ext/vendor/golang.org/x/net/route/address_test.go +103 -0
- data/ext/vendor/golang.org/x/net/route/binary.go +90 -0
- data/ext/vendor/golang.org/x/net/route/defs_darwin.go +114 -0
- data/ext/vendor/golang.org/x/net/route/defs_dragonfly.go +113 -0
- data/ext/vendor/golang.org/x/net/route/defs_freebsd.go +337 -0
- data/ext/vendor/golang.org/x/net/route/defs_netbsd.go +112 -0
- data/ext/vendor/golang.org/x/net/route/defs_openbsd.go +116 -0
- data/ext/vendor/golang.org/x/net/route/interface.go +64 -0
- data/ext/vendor/golang.org/x/net/route/interface_announce.go +32 -0
- data/ext/vendor/golang.org/x/net/route/interface_classic.go +66 -0
- data/ext/vendor/golang.org/x/net/route/interface_freebsd.go +78 -0
- data/ext/vendor/golang.org/x/net/route/interface_multicast.go +30 -0
- data/ext/vendor/golang.org/x/net/route/interface_openbsd.go +90 -0
- data/ext/vendor/golang.org/x/net/route/message.go +72 -0
- data/ext/vendor/golang.org/x/net/route/message_darwin_test.go +34 -0
- data/ext/vendor/golang.org/x/net/route/message_freebsd_test.go +92 -0
- data/ext/vendor/golang.org/x/net/route/message_test.go +239 -0
- data/ext/vendor/golang.org/x/net/route/route.go +123 -0
- data/ext/vendor/golang.org/x/net/route/route_classic.go +67 -0
- data/ext/vendor/golang.org/x/net/route/route_openbsd.go +65 -0
- data/ext/vendor/golang.org/x/net/route/route_test.go +390 -0
- data/ext/vendor/golang.org/x/net/route/sys.go +39 -0
- data/ext/vendor/golang.org/x/net/route/sys_darwin.go +87 -0
- data/ext/vendor/golang.org/x/net/route/sys_dragonfly.go +76 -0
- data/ext/vendor/golang.org/x/net/route/sys_freebsd.go +155 -0
- data/ext/vendor/golang.org/x/net/route/sys_netbsd.go +71 -0
- data/ext/vendor/golang.org/x/net/route/sys_openbsd.go +80 -0
- data/ext/vendor/golang.org/x/net/route/syscall.go +28 -0
- data/ext/vendor/golang.org/x/net/route/zsys_darwin.go +99 -0
- data/ext/vendor/golang.org/x/net/route/zsys_dragonfly.go +98 -0
- data/ext/vendor/golang.org/x/net/route/zsys_freebsd_386.go +126 -0
- data/ext/vendor/golang.org/x/net/route/zsys_freebsd_amd64.go +123 -0
- data/ext/vendor/golang.org/x/net/route/zsys_freebsd_arm.go +123 -0
- data/ext/vendor/golang.org/x/net/route/zsys_netbsd.go +97 -0
- data/ext/vendor/golang.org/x/net/route/zsys_openbsd.go +101 -0
- data/ext/vendor/golang.org/x/net/trace/events.go +532 -0
- data/ext/vendor/golang.org/x/net/trace/histogram.go +365 -0
- data/ext/vendor/golang.org/x/net/trace/histogram_test.go +325 -0
- data/ext/vendor/golang.org/x/net/trace/trace.go +1082 -0
- data/ext/vendor/golang.org/x/net/trace/trace_go16.go +21 -0
- data/ext/vendor/golang.org/x/net/trace/trace_go17.go +21 -0
- data/ext/vendor/golang.org/x/net/trace/trace_test.go +178 -0
- data/ext/vendor/golang.org/x/net/webdav/file.go +796 -0
- data/ext/vendor/golang.org/x/net/webdav/file_go1.6.go +17 -0
- data/ext/vendor/golang.org/x/net/webdav/file_go1.7.go +16 -0
- data/ext/vendor/golang.org/x/net/webdav/file_test.go +1184 -0
- data/ext/vendor/golang.org/x/net/webdav/if.go +173 -0
- data/ext/vendor/golang.org/x/net/webdav/if_test.go +322 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/README +11 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/atom_test.go +56 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/example_test.go +151 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/marshal.go +1223 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/marshal_test.go +1939 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/read.go +692 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/read_test.go +744 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/typeinfo.go +371 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/xml.go +1998 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/xml_test.go +752 -0
- data/ext/vendor/golang.org/x/net/webdav/litmus_test_server.go +94 -0
- data/ext/vendor/golang.org/x/net/webdav/lock.go +445 -0
- data/ext/vendor/golang.org/x/net/webdav/lock_test.go +731 -0
- data/ext/vendor/golang.org/x/net/webdav/prop.go +418 -0
- data/ext/vendor/golang.org/x/net/webdav/prop_test.go +613 -0
- data/ext/vendor/golang.org/x/net/webdav/webdav.go +702 -0
- data/ext/vendor/golang.org/x/net/webdav/webdav_test.go +344 -0
- data/ext/vendor/golang.org/x/net/webdav/xml.go +519 -0
- data/ext/vendor/golang.org/x/net/webdav/xml_test.go +906 -0
- data/ext/vendor/golang.org/x/net/websocket/client.go +106 -0
- data/ext/vendor/golang.org/x/net/websocket/dial.go +24 -0
- data/ext/vendor/golang.org/x/net/websocket/dial_test.go +43 -0
- data/ext/vendor/golang.org/x/net/websocket/exampledial_test.go +31 -0
- data/ext/vendor/golang.org/x/net/websocket/examplehandler_test.go +26 -0
- data/ext/vendor/golang.org/x/net/websocket/hybi.go +583 -0
- data/ext/vendor/golang.org/x/net/websocket/hybi_test.go +608 -0
- data/ext/vendor/golang.org/x/net/websocket/server.go +113 -0
- data/ext/vendor/golang.org/x/net/websocket/websocket.go +448 -0
- data/ext/vendor/golang.org/x/net/websocket/websocket_test.go +665 -0
- data/ext/vendor/golang.org/x/net/xsrftoken/xsrf.go +94 -0
- data/ext/vendor/golang.org/x/net/xsrftoken/xsrf_test.go +83 -0
- data/ext/vendor/golang.org/x/text/AUTHORS +3 -0
- data/ext/vendor/golang.org/x/text/CONTRIBUTING.md +31 -0
- data/ext/vendor/golang.org/x/text/CONTRIBUTORS +3 -0
- data/ext/vendor/golang.org/x/text/LICENSE +27 -0
- data/ext/vendor/golang.org/x/text/PATENTS +22 -0
- data/ext/vendor/golang.org/x/text/README.md +91 -0
- data/ext/vendor/golang.org/x/text/cases/cases.go +162 -0
- data/ext/vendor/golang.org/x/text/cases/context.go +376 -0
- data/ext/vendor/golang.org/x/text/cases/context_test.go +438 -0
- data/ext/vendor/golang.org/x/text/cases/example_test.go +53 -0
- data/ext/vendor/golang.org/x/text/cases/fold.go +34 -0
- data/ext/vendor/golang.org/x/text/cases/fold_test.go +51 -0
- data/ext/vendor/golang.org/x/text/cases/gen.go +839 -0
- data/ext/vendor/golang.org/x/text/cases/gen_trieval.go +219 -0
- data/ext/vendor/golang.org/x/text/cases/icu.go +61 -0
- data/ext/vendor/golang.org/x/text/cases/icu_test.go +210 -0
- data/ext/vendor/golang.org/x/text/cases/info.go +82 -0
- data/ext/vendor/golang.org/x/text/cases/map.go +816 -0
- data/ext/vendor/golang.org/x/text/cases/map_test.go +950 -0
- data/ext/vendor/golang.org/x/text/cases/tables.go +2251 -0
- data/ext/vendor/golang.org/x/text/cases/tables_test.go +1158 -0
- data/ext/vendor/golang.org/x/text/cases/trieval.go +215 -0
- data/ext/vendor/golang.org/x/text/cmd/gotext/doc.go +35 -0
- data/ext/vendor/golang.org/x/text/cmd/gotext/extract.go +195 -0
- data/ext/vendor/golang.org/x/text/cmd/gotext/main.go +356 -0
- data/ext/vendor/golang.org/x/text/cmd/gotext/message.go +127 -0
- data/ext/vendor/golang.org/x/text/codereview.cfg +1 -0
- data/ext/vendor/golang.org/x/text/collate/build/builder.go +702 -0
- data/ext/vendor/golang.org/x/text/collate/build/builder_test.go +290 -0
- data/ext/vendor/golang.org/x/text/collate/build/colelem.go +294 -0
- data/ext/vendor/golang.org/x/text/collate/build/colelem_test.go +215 -0
- data/ext/vendor/golang.org/x/text/collate/build/contract.go +309 -0
- data/ext/vendor/golang.org/x/text/collate/build/contract_test.go +266 -0
- data/ext/vendor/golang.org/x/text/collate/build/order.go +393 -0
- data/ext/vendor/golang.org/x/text/collate/build/order_test.go +229 -0
- data/ext/vendor/golang.org/x/text/collate/build/table.go +81 -0
- data/ext/vendor/golang.org/x/text/collate/build/trie.go +290 -0
- data/ext/vendor/golang.org/x/text/collate/build/trie_test.go +107 -0
- data/ext/vendor/golang.org/x/text/collate/collate.go +403 -0
- data/ext/vendor/golang.org/x/text/collate/collate_test.go +482 -0
- data/ext/vendor/golang.org/x/text/collate/export_test.go +51 -0
- data/ext/vendor/golang.org/x/text/collate/index.go +32 -0
- data/ext/vendor/golang.org/x/text/collate/maketables.go +553 -0
- data/ext/vendor/golang.org/x/text/collate/option.go +239 -0
- data/ext/vendor/golang.org/x/text/collate/option_test.go +209 -0
- data/ext/vendor/golang.org/x/text/collate/reg_test.go +230 -0
- data/ext/vendor/golang.org/x/text/collate/sort.go +81 -0
- data/ext/vendor/golang.org/x/text/collate/sort_test.go +55 -0
- data/ext/vendor/golang.org/x/text/collate/table_test.go +291 -0
- data/ext/vendor/golang.org/x/text/collate/tables.go +73789 -0
- data/ext/vendor/golang.org/x/text/collate/tools/colcmp/Makefile +7 -0
- data/ext/vendor/golang.org/x/text/collate/tools/colcmp/chars.go +1156 -0
- data/ext/vendor/golang.org/x/text/collate/tools/colcmp/col.go +97 -0
- data/ext/vendor/golang.org/x/text/collate/tools/colcmp/colcmp.go +529 -0
- data/ext/vendor/golang.org/x/text/collate/tools/colcmp/darwin.go +111 -0
- data/ext/vendor/golang.org/x/text/collate/tools/colcmp/gen.go +183 -0
- data/ext/vendor/golang.org/x/text/collate/tools/colcmp/icu.go +209 -0
- data/ext/vendor/golang.org/x/text/currency/common.go +66 -0
- data/ext/vendor/golang.org/x/text/currency/currency.go +185 -0
- data/ext/vendor/golang.org/x/text/currency/currency_test.go +171 -0
- data/ext/vendor/golang.org/x/text/currency/example_test.go +27 -0
- data/ext/vendor/golang.org/x/text/currency/format.go +215 -0
- data/ext/vendor/golang.org/x/text/currency/format_test.go +70 -0
- data/ext/vendor/golang.org/x/text/currency/gen.go +400 -0
- data/ext/vendor/golang.org/x/text/currency/gen_common.go +70 -0
- data/ext/vendor/golang.org/x/text/currency/query.go +152 -0
- data/ext/vendor/golang.org/x/text/currency/query_test.go +107 -0
- data/ext/vendor/golang.org/x/text/currency/tables.go +2574 -0
- data/ext/vendor/golang.org/x/text/currency/tables_test.go +93 -0
- data/ext/vendor/golang.org/x/text/doc.go +13 -0
- data/ext/vendor/golang.org/x/text/encoding/charmap/charmap.go +249 -0
- data/ext/vendor/golang.org/x/text/encoding/charmap/charmap_test.go +258 -0
- data/ext/vendor/golang.org/x/text/encoding/charmap/maketables.go +556 -0
- data/ext/vendor/golang.org/x/text/encoding/charmap/tables.go +7410 -0
- data/ext/vendor/golang.org/x/text/encoding/encoding.go +335 -0
- data/ext/vendor/golang.org/x/text/encoding/encoding_test.go +290 -0
- data/ext/vendor/golang.org/x/text/encoding/example_test.go +42 -0
- data/ext/vendor/golang.org/x/text/encoding/htmlindex/gen.go +173 -0
- data/ext/vendor/golang.org/x/text/encoding/htmlindex/htmlindex.go +86 -0
- data/ext/vendor/golang.org/x/text/encoding/htmlindex/htmlindex_test.go +144 -0
- data/ext/vendor/golang.org/x/text/encoding/htmlindex/map.go +105 -0
- data/ext/vendor/golang.org/x/text/encoding/htmlindex/tables.go +352 -0
- data/ext/vendor/golang.org/x/text/encoding/ianaindex/example_test.go +27 -0
- data/ext/vendor/golang.org/x/text/encoding/ianaindex/gen.go +192 -0
- data/ext/vendor/golang.org/x/text/encoding/ianaindex/ianaindex.go +209 -0
- data/ext/vendor/golang.org/x/text/encoding/ianaindex/ianaindex_test.go +192 -0
- data/ext/vendor/golang.org/x/text/encoding/ianaindex/tables.go +2348 -0
- data/ext/vendor/golang.org/x/text/encoding/internal/enctest/enctest.go +180 -0
- data/ext/vendor/golang.org/x/text/encoding/internal/identifier/gen.go +137 -0
- data/ext/vendor/golang.org/x/text/encoding/internal/identifier/identifier.go +81 -0
- data/ext/vendor/golang.org/x/text/encoding/internal/identifier/mib.go +1621 -0
- data/ext/vendor/golang.org/x/text/encoding/internal/internal.go +75 -0
- data/ext/vendor/golang.org/x/text/encoding/japanese/all.go +12 -0
- data/ext/vendor/golang.org/x/text/encoding/japanese/all_test.go +248 -0
- data/ext/vendor/golang.org/x/text/encoding/japanese/eucjp.go +225 -0
- data/ext/vendor/golang.org/x/text/encoding/japanese/iso2022jp.go +299 -0
- data/ext/vendor/golang.org/x/text/encoding/japanese/maketables.go +161 -0
- data/ext/vendor/golang.org/x/text/encoding/japanese/shiftjis.go +189 -0
- data/ext/vendor/golang.org/x/text/encoding/japanese/tables.go +26971 -0
- data/ext/vendor/golang.org/x/text/encoding/korean/all_test.go +94 -0
- data/ext/vendor/golang.org/x/text/encoding/korean/euckr.go +177 -0
- data/ext/vendor/golang.org/x/text/encoding/korean/maketables.go +143 -0
- data/ext/vendor/golang.org/x/text/encoding/korean/tables.go +34152 -0
- data/ext/vendor/golang.org/x/text/encoding/simplifiedchinese/all.go +12 -0
- data/ext/vendor/golang.org/x/text/encoding/simplifiedchinese/all_test.go +143 -0
- data/ext/vendor/golang.org/x/text/encoding/simplifiedchinese/gbk.go +269 -0
- data/ext/vendor/golang.org/x/text/encoding/simplifiedchinese/hzgb2312.go +245 -0
- data/ext/vendor/golang.org/x/text/encoding/simplifiedchinese/maketables.go +161 -0
- data/ext/vendor/golang.org/x/text/encoding/simplifiedchinese/tables.go +43999 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt +510 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt +0 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/candide-utf-32be.txt +0 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/candide-utf-8.txt +510 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt +510 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt +178 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/rashomon-iso-2022-jp.txt +178 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt +178 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/rashomon-utf-8.txt +178 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt +107 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-gb-levels-1-and-2-utf-8.txt +107 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt +107 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-utf-8.txt +107 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt +106 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-utf-8.txt +106 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt +175 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-utf-8.txt +175 -0
- data/ext/vendor/golang.org/x/text/encoding/traditionalchinese/all_test.go +114 -0
- data/ext/vendor/golang.org/x/text/encoding/traditionalchinese/big5.go +199 -0
- data/ext/vendor/golang.org/x/text/encoding/traditionalchinese/maketables.go +140 -0
- data/ext/vendor/golang.org/x/text/encoding/traditionalchinese/tables.go +37142 -0
- data/ext/vendor/golang.org/x/text/encoding/unicode/override.go +82 -0
- data/ext/vendor/golang.org/x/text/encoding/unicode/unicode.go +434 -0
- data/ext/vendor/golang.org/x/text/encoding/unicode/unicode_test.go +499 -0
- data/ext/vendor/golang.org/x/text/encoding/unicode/utf32/utf32.go +296 -0
- data/ext/vendor/golang.org/x/text/encoding/unicode/utf32/utf32_test.go +248 -0
- data/ext/vendor/golang.org/x/text/feature/plural/common.go +70 -0
- data/ext/vendor/golang.org/x/text/feature/plural/data_test.go +190 -0
- data/ext/vendor/golang.org/x/text/feature/plural/example_test.go +46 -0
- data/ext/vendor/golang.org/x/text/feature/plural/gen.go +513 -0
- data/ext/vendor/golang.org/x/text/feature/plural/gen_common.go +74 -0
- data/ext/vendor/golang.org/x/text/feature/plural/message.go +244 -0
- data/ext/vendor/golang.org/x/text/feature/plural/message_test.go +197 -0
- data/ext/vendor/golang.org/x/text/feature/plural/plural.go +258 -0
- data/ext/vendor/golang.org/x/text/feature/plural/plural_test.go +216 -0
- data/ext/vendor/golang.org/x/text/feature/plural/tables.go +540 -0
- data/ext/vendor/golang.org/x/text/gen.go +318 -0
- data/ext/vendor/golang.org/x/text/internal/catmsg/catmsg.go +366 -0
- data/ext/vendor/golang.org/x/text/internal/catmsg/catmsg_test.go +316 -0
- data/ext/vendor/golang.org/x/text/internal/catmsg/codec.go +407 -0
- data/ext/vendor/golang.org/x/text/internal/catmsg/varint.go +62 -0
- data/ext/vendor/golang.org/x/text/internal/catmsg/varint_test.go +123 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/collate_test.go +121 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/collelem.go +371 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/collelem_test.go +183 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/colltab.go +105 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/colltab_test.go +64 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/contract.go +145 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/contract_test.go +131 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/iter.go +178 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/iter_test.go +63 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/numeric.go +236 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/numeric_test.go +159 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/table.go +275 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/trie.go +159 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/trie_test.go +106 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/weighter.go +31 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/weighter_test.go +42 -0
- data/ext/vendor/golang.org/x/text/internal/export/README +4 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/common_test.go +55 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/example_test.go +68 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/gen.go +276 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/gen_common.go +59 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/gen_test.go +91 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/gen_trieval.go +123 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/idna.go +717 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/idna_test.go +308 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/punycode.go +201 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/punycode_test.go +198 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/tables.go +4557 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/trie.go +70 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/trieval.go +119 -0
- data/ext/vendor/golang.org/x/text/internal/format/format.go +41 -0
- data/ext/vendor/golang.org/x/text/internal/gen.go +52 -0
- data/ext/vendor/golang.org/x/text/internal/gen/code.go +351 -0
- data/ext/vendor/golang.org/x/text/internal/gen/gen.go +281 -0
- data/ext/vendor/golang.org/x/text/internal/gen_test.go +38 -0
- data/ext/vendor/golang.org/x/text/internal/internal.go +51 -0
- data/ext/vendor/golang.org/x/text/internal/internal_test.go +38 -0
- data/ext/vendor/golang.org/x/text/internal/match.go +67 -0
- data/ext/vendor/golang.org/x/text/internal/match_test.go +56 -0
- data/ext/vendor/golang.org/x/text/internal/number/common.go +40 -0
- data/ext/vendor/golang.org/x/text/internal/number/decimal.go +498 -0
- data/ext/vendor/golang.org/x/text/internal/number/decimal_test.go +329 -0
- data/ext/vendor/golang.org/x/text/internal/number/format.go +540 -0
- data/ext/vendor/golang.org/x/text/internal/number/format_test.go +522 -0
- data/ext/vendor/golang.org/x/text/internal/number/gen.go +458 -0
- data/ext/vendor/golang.org/x/text/internal/number/gen_common.go +44 -0
- data/ext/vendor/golang.org/x/text/internal/number/number.go +154 -0
- data/ext/vendor/golang.org/x/text/internal/number/number_test.go +100 -0
- data/ext/vendor/golang.org/x/text/internal/number/pattern.go +485 -0
- data/ext/vendor/golang.org/x/text/internal/number/pattern_test.go +438 -0
- data/ext/vendor/golang.org/x/text/internal/number/roundingmode_string.go +16 -0
- data/ext/vendor/golang.org/x/text/internal/number/tables.go +1154 -0
- data/ext/vendor/golang.org/x/text/internal/number/tables_test.go +125 -0
- data/ext/vendor/golang.org/x/text/internal/stringset/set.go +86 -0
- data/ext/vendor/golang.org/x/text/internal/stringset/set_test.go +53 -0
- data/ext/vendor/golang.org/x/text/internal/tables.go +117 -0
- data/ext/vendor/golang.org/x/text/internal/tag/tag.go +100 -0
- data/ext/vendor/golang.org/x/text/internal/tag/tag_test.go +67 -0
- data/ext/vendor/golang.org/x/text/internal/testtext/codesize.go +53 -0
- data/ext/vendor/golang.org/x/text/internal/testtext/flag.go +22 -0
- data/ext/vendor/golang.org/x/text/internal/testtext/gc.go +14 -0
- data/ext/vendor/golang.org/x/text/internal/testtext/gccgo.go +11 -0
- data/ext/vendor/golang.org/x/text/internal/testtext/go1_6.go +23 -0
- data/ext/vendor/golang.org/x/text/internal/testtext/go1_7.go +17 -0
- data/ext/vendor/golang.org/x/text/internal/testtext/text.go +105 -0
- data/ext/vendor/golang.org/x/text/internal/triegen/compact.go +58 -0
- data/ext/vendor/golang.org/x/text/internal/triegen/data_test.go +875 -0
- data/ext/vendor/golang.org/x/text/internal/triegen/example_compact_test.go +71 -0
- data/ext/vendor/golang.org/x/text/internal/triegen/example_test.go +148 -0
- data/ext/vendor/golang.org/x/text/internal/triegen/gen_test.go +68 -0
- data/ext/vendor/golang.org/x/text/internal/triegen/print.go +251 -0
- data/ext/vendor/golang.org/x/text/internal/triegen/triegen.go +494 -0
- data/ext/vendor/golang.org/x/text/internal/ucd/example_test.go +81 -0
- data/ext/vendor/golang.org/x/text/internal/ucd/ucd.go +371 -0
- data/ext/vendor/golang.org/x/text/internal/ucd/ucd_test.go +105 -0
- data/ext/vendor/golang.org/x/text/internal/utf8internal/utf8internal.go +87 -0
- data/ext/vendor/golang.org/x/text/language/Makefile +16 -0
- data/ext/vendor/golang.org/x/text/language/common.go +16 -0
- data/ext/vendor/golang.org/x/text/language/coverage.go +197 -0
- data/ext/vendor/golang.org/x/text/language/coverage_test.go +154 -0
- data/ext/vendor/golang.org/x/text/language/display/dict.go +92 -0
- data/ext/vendor/golang.org/x/text/language/display/dict_test.go +39 -0
- data/ext/vendor/golang.org/x/text/language/display/display.go +420 -0
- data/ext/vendor/golang.org/x/text/language/display/display_test.go +705 -0
- data/ext/vendor/golang.org/x/text/language/display/examples_test.go +116 -0
- data/ext/vendor/golang.org/x/text/language/display/lookup.go +251 -0
- data/ext/vendor/golang.org/x/text/language/display/maketables.go +602 -0
- data/ext/vendor/golang.org/x/text/language/display/tables.go +50344 -0
- data/ext/vendor/golang.org/x/text/language/doc.go +102 -0
- data/ext/vendor/golang.org/x/text/language/examples_test.go +413 -0
- data/ext/vendor/golang.org/x/text/language/gen.go +1706 -0
- data/ext/vendor/golang.org/x/text/language/gen_common.go +20 -0
- data/ext/vendor/golang.org/x/text/language/gen_index.go +162 -0
- data/ext/vendor/golang.org/x/text/language/go1_1.go +38 -0
- data/ext/vendor/golang.org/x/text/language/go1_2.go +11 -0
- data/ext/vendor/golang.org/x/text/language/httpexample_test.go +48 -0
- data/ext/vendor/golang.org/x/text/language/index.go +769 -0
- data/ext/vendor/golang.org/x/text/language/language.go +887 -0
- data/ext/vendor/golang.org/x/text/language/language_test.go +878 -0
- data/ext/vendor/golang.org/x/text/language/lookup.go +396 -0
- data/ext/vendor/golang.org/x/text/language/lookup_test.go +457 -0
- data/ext/vendor/golang.org/x/text/language/match.go +933 -0
- data/ext/vendor/golang.org/x/text/language/match_test.go +505 -0
- data/ext/vendor/golang.org/x/text/language/parse.go +859 -0
- data/ext/vendor/golang.org/x/text/language/parse_test.go +517 -0
- data/ext/vendor/golang.org/x/text/language/tables.go +3675 -0
- data/ext/vendor/golang.org/x/text/language/tags.go +143 -0
- data/ext/vendor/golang.org/x/text/language/testdata/CLDRLocaleMatcherTest.txt +389 -0
- data/ext/vendor/golang.org/x/text/language/testdata/GoLocaleMatcherTest.txt +226 -0
- data/ext/vendor/golang.org/x/text/message/catalog.go +28 -0
- data/ext/vendor/golang.org/x/text/message/catalog/catalog.go +292 -0
- data/ext/vendor/golang.org/x/text/message/catalog/catalog_test.go +194 -0
- data/ext/vendor/golang.org/x/text/message/catalog/dict.go +90 -0
- data/ext/vendor/golang.org/x/text/message/doc.go +100 -0
- data/ext/vendor/golang.org/x/text/message/examples_test.go +42 -0
- data/ext/vendor/golang.org/x/text/message/fmt_test.go +1889 -0
- data/ext/vendor/golang.org/x/text/message/format.go +532 -0
- data/ext/vendor/golang.org/x/text/message/message.go +169 -0
- data/ext/vendor/golang.org/x/text/message/message_test.go +181 -0
- data/ext/vendor/golang.org/x/text/message/print.go +1194 -0
- data/ext/vendor/golang.org/x/text/number/doc.go +28 -0
- data/ext/vendor/golang.org/x/text/number/examples_test.go +28 -0
- data/ext/vendor/golang.org/x/text/number/format.go +122 -0
- data/ext/vendor/golang.org/x/text/number/format_test.go +107 -0
- data/ext/vendor/golang.org/x/text/number/number.go +77 -0
- data/ext/vendor/golang.org/x/text/number/number_test.go +190 -0
- data/ext/vendor/golang.org/x/text/number/option.go +177 -0
- data/ext/vendor/golang.org/x/text/runes/cond.go +187 -0
- data/ext/vendor/golang.org/x/text/runes/cond_test.go +282 -0
- data/ext/vendor/golang.org/x/text/runes/example_test.go +60 -0
- data/ext/vendor/golang.org/x/text/runes/runes.go +355 -0
- data/ext/vendor/golang.org/x/text/runes/runes_test.go +664 -0
- data/ext/vendor/golang.org/x/text/search/index.go +35 -0
- data/ext/vendor/golang.org/x/text/search/pattern.go +155 -0
- data/ext/vendor/golang.org/x/text/search/pattern_test.go +357 -0
- data/ext/vendor/golang.org/x/text/search/search.go +237 -0
- data/ext/vendor/golang.org/x/text/search/tables.go +12448 -0
- data/ext/vendor/golang.org/x/text/secure/bidirule/bench_test.go +54 -0
- data/ext/vendor/golang.org/x/text/secure/bidirule/bidirule.go +340 -0
- data/ext/vendor/golang.org/x/text/secure/bidirule/bidirule_test.go +851 -0
- data/ext/vendor/golang.org/x/text/secure/doc.go +6 -0
- data/ext/vendor/golang.org/x/text/secure/precis/benchmark_test.go +82 -0
- data/ext/vendor/golang.org/x/text/secure/precis/class.go +36 -0
- data/ext/vendor/golang.org/x/text/secure/precis/class_test.go +50 -0
- data/ext/vendor/golang.org/x/text/secure/precis/context.go +139 -0
- data/ext/vendor/golang.org/x/text/secure/precis/doc.go +14 -0
- data/ext/vendor/golang.org/x/text/secure/precis/enforce_test.go +396 -0
- data/ext/vendor/golang.org/x/text/secure/precis/gen.go +310 -0
- data/ext/vendor/golang.org/x/text/secure/precis/gen_trieval.go +68 -0
- data/ext/vendor/golang.org/x/text/secure/precis/nickname.go +72 -0
- data/ext/vendor/golang.org/x/text/secure/precis/options.go +157 -0
- data/ext/vendor/golang.org/x/text/secure/precis/profile.go +402 -0
- data/ext/vendor/golang.org/x/text/secure/precis/profile_test.go +149 -0
- data/ext/vendor/golang.org/x/text/secure/precis/profiles.go +78 -0
- data/ext/vendor/golang.org/x/text/secure/precis/tables.go +3887 -0
- data/ext/vendor/golang.org/x/text/secure/precis/tables_test.go +69 -0
- data/ext/vendor/golang.org/x/text/secure/precis/transformer.go +32 -0
- data/ext/vendor/golang.org/x/text/secure/precis/trieval.go +64 -0
- data/ext/vendor/golang.org/x/text/transform/examples_test.go +37 -0
- data/ext/vendor/golang.org/x/text/transform/transform.go +705 -0
- data/ext/vendor/golang.org/x/text/transform/transform_test.go +1317 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/bidi.go +198 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/bracket.go +335 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/core.go +1058 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/core_test.go +224 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/gen.go +133 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/gen_ranges.go +57 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/gen_trieval.go +64 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/prop.go +206 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/ranges_test.go +53 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/tables.go +1813 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/tables_test.go +82 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/trieval.go +60 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/base.go +100 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/cldr.go +130 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/cldr_test.go +27 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/collate.go +359 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/collate_test.go +275 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/data_test.go +186 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/decode.go +171 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/examples_test.go +21 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/makexml.go +400 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/resolve.go +602 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/resolve_test.go +368 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/slice.go +144 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/slice_test.go +175 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/xml.go +1487 -0
- data/ext/vendor/golang.org/x/text/unicode/doc.go +8 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/composition.go +508 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/composition_test.go +130 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/example_iter_test.go +82 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/example_test.go +27 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/forminfo.go +259 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/forminfo_test.go +54 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/input.go +109 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/iter.go +457 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/iter_test.go +98 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/maketables.go +976 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/norm_test.go +14 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/normalize.go +609 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/normalize_test.go +1287 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/readwriter.go +125 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/readwriter_test.go +56 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/tables.go +7651 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/transform.go +88 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/transform_test.go +101 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/trie.go +54 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/triegen.go +117 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/ucd_test.go +275 -0
- data/ext/vendor/golang.org/x/text/unicode/rangetable/gen.go +115 -0
- data/ext/vendor/golang.org/x/text/unicode/rangetable/merge.go +260 -0
- data/ext/vendor/golang.org/x/text/unicode/rangetable/merge_test.go +184 -0
- data/ext/vendor/golang.org/x/text/unicode/rangetable/rangetable.go +70 -0
- data/ext/vendor/golang.org/x/text/unicode/rangetable/rangetable_test.go +55 -0
- data/ext/vendor/golang.org/x/text/unicode/rangetable/tables.go +6376 -0
- data/ext/vendor/golang.org/x/text/unicode/runenames/bits.go +59 -0
- data/ext/vendor/golang.org/x/text/unicode/runenames/example_test.go +118 -0
- data/ext/vendor/golang.org/x/text/unicode/runenames/gen.go +195 -0
- data/ext/vendor/golang.org/x/text/unicode/runenames/gen_bits.go +63 -0
- data/ext/vendor/golang.org/x/text/unicode/runenames/runenames.go +48 -0
- data/ext/vendor/golang.org/x/text/unicode/runenames/runenames_test.go +46 -0
- data/ext/vendor/golang.org/x/text/unicode/runenames/tables.go +15514 -0
- data/ext/vendor/golang.org/x/text/width/common_test.go +92 -0
- data/ext/vendor/golang.org/x/text/width/example_test.go +52 -0
- data/ext/vendor/golang.org/x/text/width/gen.go +115 -0
- data/ext/vendor/golang.org/x/text/width/gen_common.go +96 -0
- data/ext/vendor/golang.org/x/text/width/gen_trieval.go +34 -0
- data/ext/vendor/golang.org/x/text/width/kind_string.go +16 -0
- data/ext/vendor/golang.org/x/text/width/runes_test.go +461 -0
- data/ext/vendor/golang.org/x/text/width/tables.go +1316 -0
- data/ext/vendor/golang.org/x/text/width/tables_test.go +59 -0
- data/ext/vendor/golang.org/x/text/width/transform.go +239 -0
- data/ext/vendor/golang.org/x/text/width/transform_test.go +701 -0
- data/ext/vendor/golang.org/x/text/width/trieval.go +30 -0
- data/ext/vendor/golang.org/x/text/width/width.go +206 -0
- data/lib/ires/version.rb +1 -1
- data/shared/darwin/ires.so +0 -0
- data/shared/linux/ires.so +0 -0
- metadata +1011 -23
- data/ext/operate/image.go +0 -176
- data/ext/util/uri/uri.go +0 -105
- data/ext/vendor/github.com/satori/go.uuid/README.md +0 -65
- data/ext/vendor/github.com/satori/go.uuid/benchmarks_test.go +0 -121
- data/ext/vendor/github.com/satori/go.uuid/uuid.go +0 -488
- data/ext/vendor/github.com/satori/go.uuid/uuid_test.go +0 -633
@@ -0,0 +1,69 @@
|
|
1
|
+
// Copyright 2015 The Go Authors. All rights reserved.
|
2
|
+
// Use of this source code is governed by a BSD-style
|
3
|
+
// license that can be found in the LICENSE file.
|
4
|
+
|
5
|
+
package precis
|
6
|
+
|
7
|
+
import (
|
8
|
+
"testing"
|
9
|
+
"unicode"
|
10
|
+
"unicode/utf8"
|
11
|
+
|
12
|
+
"golang.org/x/text/runes"
|
13
|
+
"golang.org/x/text/unicode/rangetable"
|
14
|
+
)
|
15
|
+
|
16
|
+
type tableTest struct {
|
17
|
+
rangeTable *unicode.RangeTable
|
18
|
+
prop property
|
19
|
+
}
|
20
|
+
|
21
|
+
var exceptions = runes.Predicate(func(r rune) bool {
|
22
|
+
switch uint32(r) {
|
23
|
+
case 0x00DF, 0x03C2, 0x06FD, 0x06FE, 0x0F0B, 0x3007, 0x00B7, 0x0375, 0x05F3,
|
24
|
+
0x05F4, 0x30FB, 0x0660, 0x0661, 0x0662, 0x0663, 0x0664, 0x0665, 0x0666,
|
25
|
+
0x0667, 0x0668, 0x0669, 0x06F0, 0x06F1, 0x06F2, 0x06F3, 0x06F4, 0x06F5,
|
26
|
+
0x06F6, 0x06F7, 0x06F8, 0x06F9, 0x0640, 0x07FA, 0x302E, 0x302F, 0x3031,
|
27
|
+
0x3032, 0x3033, 0x3034, 0x3035, 0x303B:
|
28
|
+
return true
|
29
|
+
default:
|
30
|
+
return false
|
31
|
+
}
|
32
|
+
})
|
33
|
+
|
34
|
+
// Ensure that certain properties were generated correctly.
|
35
|
+
func TestTable(t *testing.T) {
|
36
|
+
tests := []tableTest{
|
37
|
+
tableTest{
|
38
|
+
rangetable.Merge(
|
39
|
+
unicode.Lt, unicode.Nl, unicode.No, // Other letter digits
|
40
|
+
unicode.Me, // Modifiers
|
41
|
+
unicode.Zs, // Spaces
|
42
|
+
unicode.So, // Symbols
|
43
|
+
unicode.Pi, unicode.Pf, // Punctuation
|
44
|
+
),
|
45
|
+
idDisOrFreePVal,
|
46
|
+
},
|
47
|
+
tableTest{
|
48
|
+
rangetable.New(0x30000, 0x30101, 0xDFFFF),
|
49
|
+
unassigned,
|
50
|
+
},
|
51
|
+
}
|
52
|
+
|
53
|
+
assigned := rangetable.Assigned(UnicodeVersion)
|
54
|
+
|
55
|
+
for _, test := range tests {
|
56
|
+
rangetable.Visit(test.rangeTable, func(r rune) {
|
57
|
+
if !unicode.In(r, assigned) {
|
58
|
+
return
|
59
|
+
}
|
60
|
+
b := make([]byte, 4)
|
61
|
+
n := utf8.EncodeRune(b, r)
|
62
|
+
trieval, _ := dpTrie.lookup(b[:n])
|
63
|
+
p := entry(trieval).property()
|
64
|
+
if p != test.prop && !exceptions.Contains(r) {
|
65
|
+
t.Errorf("%U: got %+x; want %+x", r, test.prop, p)
|
66
|
+
}
|
67
|
+
})
|
68
|
+
}
|
69
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
// Copyright 2015 The Go Authors. All rights reserved.
|
2
|
+
// Use of this source code is governed by a BSD-style
|
3
|
+
// license that can be found in the LICENSE file.
|
4
|
+
|
5
|
+
package precis
|
6
|
+
|
7
|
+
import "golang.org/x/text/transform"
|
8
|
+
|
9
|
+
// Transformer implements the transform.Transformer interface.
|
10
|
+
type Transformer struct {
|
11
|
+
t transform.Transformer
|
12
|
+
}
|
13
|
+
|
14
|
+
// Reset implements the transform.Transformer interface.
|
15
|
+
func (t Transformer) Reset() { t.t.Reset() }
|
16
|
+
|
17
|
+
// Transform implements the transform.Transformer interface.
|
18
|
+
func (t Transformer) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
|
19
|
+
return t.t.Transform(dst, src, atEOF)
|
20
|
+
}
|
21
|
+
|
22
|
+
// Bytes returns a new byte slice with the result of applying t to b.
|
23
|
+
func (t Transformer) Bytes(b []byte) []byte {
|
24
|
+
b, _, _ = transform.Bytes(t, b)
|
25
|
+
return b
|
26
|
+
}
|
27
|
+
|
28
|
+
// String returns a string with the result of applying t to s.
|
29
|
+
func (t Transformer) String(s string) string {
|
30
|
+
s, _, _ = transform.String(t, s)
|
31
|
+
return s
|
32
|
+
}
|
@@ -0,0 +1,64 @@
|
|
1
|
+
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
|
2
|
+
|
3
|
+
package precis
|
4
|
+
|
5
|
+
// entry is the entry of a trie table
|
6
|
+
// 7..6 property (unassigned, disallowed, maybe, valid)
|
7
|
+
// 5..0 category
|
8
|
+
type entry uint8
|
9
|
+
|
10
|
+
const (
|
11
|
+
propShift = 6
|
12
|
+
propMask = 0xc0
|
13
|
+
catMask = 0x3f
|
14
|
+
)
|
15
|
+
|
16
|
+
func (e entry) property() property { return property(e & propMask) }
|
17
|
+
func (e entry) category() category { return category(e & catMask) }
|
18
|
+
|
19
|
+
type property uint8
|
20
|
+
|
21
|
+
// The order of these constants matter. A Profile may consider runes to be
|
22
|
+
// allowed either from pValid or idDisOrFreePVal.
|
23
|
+
const (
|
24
|
+
unassigned property = iota << propShift
|
25
|
+
disallowed
|
26
|
+
idDisOrFreePVal // disallowed for Identifier, pValid for FreeForm
|
27
|
+
pValid
|
28
|
+
)
|
29
|
+
|
30
|
+
// compute permutations of all properties and specialCategories.
|
31
|
+
type category uint8
|
32
|
+
|
33
|
+
const (
|
34
|
+
other category = iota
|
35
|
+
|
36
|
+
// Special rune types
|
37
|
+
joiningL
|
38
|
+
joiningD
|
39
|
+
joiningT
|
40
|
+
joiningR
|
41
|
+
viramaModifier
|
42
|
+
viramaJoinT // Virama + JoiningT
|
43
|
+
latinSmallL // U+006c
|
44
|
+
greek
|
45
|
+
greekJoinT // Greek + JoiningT
|
46
|
+
hebrew
|
47
|
+
hebrewJoinT // Hebrew + JoiningT
|
48
|
+
japanese // hirigana, katakana, han
|
49
|
+
|
50
|
+
// Special rune types associated with contextual rules defined in
|
51
|
+
// https://tools.ietf.org/html/rfc5892#appendix-A.
|
52
|
+
// ContextO
|
53
|
+
zeroWidthNonJoiner // rule 1
|
54
|
+
zeroWidthJoiner // rule 2
|
55
|
+
// ContextJ
|
56
|
+
middleDot // rule 3
|
57
|
+
greekLowerNumeralSign // rule 4
|
58
|
+
hebrewPreceding // rule 5 and 6
|
59
|
+
katakanaMiddleDot // rule 7
|
60
|
+
arabicIndicDigit // rule 8
|
61
|
+
extendedArabicIndicDigit // rule 9
|
62
|
+
|
63
|
+
numCategories
|
64
|
+
)
|
@@ -0,0 +1,37 @@
|
|
1
|
+
// Copyright 2013 The Go Authors. All rights reserved.
|
2
|
+
// Use of this source code is governed by a BSD-style
|
3
|
+
// license that can be found in the LICENSE file.
|
4
|
+
|
5
|
+
package transform_test
|
6
|
+
|
7
|
+
import (
|
8
|
+
"fmt"
|
9
|
+
"unicode"
|
10
|
+
|
11
|
+
"golang.org/x/text/transform"
|
12
|
+
"golang.org/x/text/unicode/norm"
|
13
|
+
)
|
14
|
+
|
15
|
+
func ExampleRemoveFunc() {
|
16
|
+
input := []byte(`tschüß; до свидания`)
|
17
|
+
|
18
|
+
b := make([]byte, len(input))
|
19
|
+
|
20
|
+
t := transform.RemoveFunc(unicode.IsSpace)
|
21
|
+
n, _, _ := t.Transform(b, input, true)
|
22
|
+
fmt.Println(string(b[:n]))
|
23
|
+
|
24
|
+
t = transform.RemoveFunc(func(r rune) bool {
|
25
|
+
return !unicode.Is(unicode.Latin, r)
|
26
|
+
})
|
27
|
+
n, _, _ = t.Transform(b, input, true)
|
28
|
+
fmt.Println(string(b[:n]))
|
29
|
+
|
30
|
+
n, _, _ = t.Transform(b, norm.NFD.Bytes(input), true)
|
31
|
+
fmt.Println(string(b[:n]))
|
32
|
+
|
33
|
+
// Output:
|
34
|
+
// tschüß;досвидания
|
35
|
+
// tschüß
|
36
|
+
// tschuß
|
37
|
+
}
|
@@ -0,0 +1,705 @@
|
|
1
|
+
// Copyright 2013 The Go Authors. All rights reserved.
|
2
|
+
// Use of this source code is governed by a BSD-style
|
3
|
+
// license that can be found in the LICENSE file.
|
4
|
+
|
5
|
+
// Package transform provides reader and writer wrappers that transform the
|
6
|
+
// bytes passing through as well as various transformations. Example
|
7
|
+
// transformations provided by other packages include normalization and
|
8
|
+
// conversion between character sets.
|
9
|
+
package transform // import "golang.org/x/text/transform"
|
10
|
+
|
11
|
+
import (
|
12
|
+
"bytes"
|
13
|
+
"errors"
|
14
|
+
"io"
|
15
|
+
"unicode/utf8"
|
16
|
+
)
|
17
|
+
|
18
|
+
var (
|
19
|
+
// ErrShortDst means that the destination buffer was too short to
|
20
|
+
// receive all of the transformed bytes.
|
21
|
+
ErrShortDst = errors.New("transform: short destination buffer")
|
22
|
+
|
23
|
+
// ErrShortSrc means that the source buffer has insufficient data to
|
24
|
+
// complete the transformation.
|
25
|
+
ErrShortSrc = errors.New("transform: short source buffer")
|
26
|
+
|
27
|
+
// ErrEndOfSpan means that the input and output (the transformed input)
|
28
|
+
// are not identical.
|
29
|
+
ErrEndOfSpan = errors.New("transform: input and output are not identical")
|
30
|
+
|
31
|
+
// errInconsistentByteCount means that Transform returned success (nil
|
32
|
+
// error) but also returned nSrc inconsistent with the src argument.
|
33
|
+
errInconsistentByteCount = errors.New("transform: inconsistent byte count returned")
|
34
|
+
|
35
|
+
// errShortInternal means that an internal buffer is not large enough
|
36
|
+
// to make progress and the Transform operation must be aborted.
|
37
|
+
errShortInternal = errors.New("transform: short internal buffer")
|
38
|
+
)
|
39
|
+
|
40
|
+
// Transformer transforms bytes.
|
41
|
+
type Transformer interface {
|
42
|
+
// Transform writes to dst the transformed bytes read from src, and
|
43
|
+
// returns the number of dst bytes written and src bytes read. The
|
44
|
+
// atEOF argument tells whether src represents the last bytes of the
|
45
|
+
// input.
|
46
|
+
//
|
47
|
+
// Callers should always process the nDst bytes produced and account
|
48
|
+
// for the nSrc bytes consumed before considering the error err.
|
49
|
+
//
|
50
|
+
// A nil error means that all of the transformed bytes (whether freshly
|
51
|
+
// transformed from src or left over from previous Transform calls)
|
52
|
+
// were written to dst. A nil error can be returned regardless of
|
53
|
+
// whether atEOF is true. If err is nil then nSrc must equal len(src);
|
54
|
+
// the converse is not necessarily true.
|
55
|
+
//
|
56
|
+
// ErrShortDst means that dst was too short to receive all of the
|
57
|
+
// transformed bytes. ErrShortSrc means that src had insufficient data
|
58
|
+
// to complete the transformation. If both conditions apply, then
|
59
|
+
// either error may be returned. Other than the error conditions listed
|
60
|
+
// here, implementations are free to report other errors that arise.
|
61
|
+
Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error)
|
62
|
+
|
63
|
+
// Reset resets the state and allows a Transformer to be reused.
|
64
|
+
Reset()
|
65
|
+
}
|
66
|
+
|
67
|
+
// SpanningTransformer extends the Transformer interface with a Span method
|
68
|
+
// that determines how much of the input already conforms to the Transformer.
|
69
|
+
type SpanningTransformer interface {
|
70
|
+
Transformer
|
71
|
+
|
72
|
+
// Span returns a position in src such that transforming src[:n] results in
|
73
|
+
// identical output src[:n] for these bytes. It does not necessarily return
|
74
|
+
// the largest such n. The atEOF argument tells whether src represents the
|
75
|
+
// last bytes of the input.
|
76
|
+
//
|
77
|
+
// Callers should always account for the n bytes consumed before
|
78
|
+
// considering the error err.
|
79
|
+
//
|
80
|
+
// A nil error means that all input bytes are known to be identical to the
|
81
|
+
// output produced by the Transformer. A nil error can be be returned
|
82
|
+
// regardless of whether atEOF is true. If err is nil, then then n must
|
83
|
+
// equal len(src); the converse is not necessarily true.
|
84
|
+
//
|
85
|
+
// ErrEndOfSpan means that the Transformer output may differ from the
|
86
|
+
// input after n bytes. Note that n may be len(src), meaning that the output
|
87
|
+
// would contain additional bytes after otherwise identical output.
|
88
|
+
// ErrShortSrc means that src had insufficient data to determine whether the
|
89
|
+
// remaining bytes would change. Other than the error conditions listed
|
90
|
+
// here, implementations are free to report other errors that arise.
|
91
|
+
//
|
92
|
+
// Calling Span can modify the Transformer state as a side effect. In
|
93
|
+
// effect, it does the transformation just as calling Transform would, only
|
94
|
+
// without copying to a destination buffer and only up to a point it can
|
95
|
+
// determine the input and output bytes are the same. This is obviously more
|
96
|
+
// limited than calling Transform, but can be more efficient in terms of
|
97
|
+
// copying and allocating buffers. Calls to Span and Transform may be
|
98
|
+
// interleaved.
|
99
|
+
Span(src []byte, atEOF bool) (n int, err error)
|
100
|
+
}
|
101
|
+
|
102
|
+
// NopResetter can be embedded by implementations of Transformer to add a nop
|
103
|
+
// Reset method.
|
104
|
+
type NopResetter struct{}
|
105
|
+
|
106
|
+
// Reset implements the Reset method of the Transformer interface.
|
107
|
+
func (NopResetter) Reset() {}
|
108
|
+
|
109
|
+
// Reader wraps another io.Reader by transforming the bytes read.
|
110
|
+
type Reader struct {
|
111
|
+
r io.Reader
|
112
|
+
t Transformer
|
113
|
+
err error
|
114
|
+
|
115
|
+
// dst[dst0:dst1] contains bytes that have been transformed by t but
|
116
|
+
// not yet copied out via Read.
|
117
|
+
dst []byte
|
118
|
+
dst0, dst1 int
|
119
|
+
|
120
|
+
// src[src0:src1] contains bytes that have been read from r but not
|
121
|
+
// yet transformed through t.
|
122
|
+
src []byte
|
123
|
+
src0, src1 int
|
124
|
+
|
125
|
+
// transformComplete is whether the transformation is complete,
|
126
|
+
// regardless of whether or not it was successful.
|
127
|
+
transformComplete bool
|
128
|
+
}
|
129
|
+
|
130
|
+
const defaultBufSize = 4096
|
131
|
+
|
132
|
+
// NewReader returns a new Reader that wraps r by transforming the bytes read
|
133
|
+
// via t. It calls Reset on t.
|
134
|
+
func NewReader(r io.Reader, t Transformer) *Reader {
|
135
|
+
t.Reset()
|
136
|
+
return &Reader{
|
137
|
+
r: r,
|
138
|
+
t: t,
|
139
|
+
dst: make([]byte, defaultBufSize),
|
140
|
+
src: make([]byte, defaultBufSize),
|
141
|
+
}
|
142
|
+
}
|
143
|
+
|
144
|
+
// Read implements the io.Reader interface.
|
145
|
+
func (r *Reader) Read(p []byte) (int, error) {
|
146
|
+
n, err := 0, error(nil)
|
147
|
+
for {
|
148
|
+
// Copy out any transformed bytes and return the final error if we are done.
|
149
|
+
if r.dst0 != r.dst1 {
|
150
|
+
n = copy(p, r.dst[r.dst0:r.dst1])
|
151
|
+
r.dst0 += n
|
152
|
+
if r.dst0 == r.dst1 && r.transformComplete {
|
153
|
+
return n, r.err
|
154
|
+
}
|
155
|
+
return n, nil
|
156
|
+
} else if r.transformComplete {
|
157
|
+
return 0, r.err
|
158
|
+
}
|
159
|
+
|
160
|
+
// Try to transform some source bytes, or to flush the transformer if we
|
161
|
+
// are out of source bytes. We do this even if r.r.Read returned an error.
|
162
|
+
// As the io.Reader documentation says, "process the n > 0 bytes returned
|
163
|
+
// before considering the error".
|
164
|
+
if r.src0 != r.src1 || r.err != nil {
|
165
|
+
r.dst0 = 0
|
166
|
+
r.dst1, n, err = r.t.Transform(r.dst, r.src[r.src0:r.src1], r.err == io.EOF)
|
167
|
+
r.src0 += n
|
168
|
+
|
169
|
+
switch {
|
170
|
+
case err == nil:
|
171
|
+
if r.src0 != r.src1 {
|
172
|
+
r.err = errInconsistentByteCount
|
173
|
+
}
|
174
|
+
// The Transform call was successful; we are complete if we
|
175
|
+
// cannot read more bytes into src.
|
176
|
+
r.transformComplete = r.err != nil
|
177
|
+
continue
|
178
|
+
case err == ErrShortDst && (r.dst1 != 0 || n != 0):
|
179
|
+
// Make room in dst by copying out, and try again.
|
180
|
+
continue
|
181
|
+
case err == ErrShortSrc && r.src1-r.src0 != len(r.src) && r.err == nil:
|
182
|
+
// Read more bytes into src via the code below, and try again.
|
183
|
+
default:
|
184
|
+
r.transformComplete = true
|
185
|
+
// The reader error (r.err) takes precedence over the
|
186
|
+
// transformer error (err) unless r.err is nil or io.EOF.
|
187
|
+
if r.err == nil || r.err == io.EOF {
|
188
|
+
r.err = err
|
189
|
+
}
|
190
|
+
continue
|
191
|
+
}
|
192
|
+
}
|
193
|
+
|
194
|
+
// Move any untransformed source bytes to the start of the buffer
|
195
|
+
// and read more bytes.
|
196
|
+
if r.src0 != 0 {
|
197
|
+
r.src0, r.src1 = 0, copy(r.src, r.src[r.src0:r.src1])
|
198
|
+
}
|
199
|
+
n, r.err = r.r.Read(r.src[r.src1:])
|
200
|
+
r.src1 += n
|
201
|
+
}
|
202
|
+
}
|
203
|
+
|
204
|
+
// TODO: implement ReadByte (and ReadRune??).
|
205
|
+
|
206
|
+
// Writer wraps another io.Writer by transforming the bytes read.
|
207
|
+
// The user needs to call Close to flush unwritten bytes that may
|
208
|
+
// be buffered.
|
209
|
+
type Writer struct {
|
210
|
+
w io.Writer
|
211
|
+
t Transformer
|
212
|
+
dst []byte
|
213
|
+
|
214
|
+
// src[:n] contains bytes that have not yet passed through t.
|
215
|
+
src []byte
|
216
|
+
n int
|
217
|
+
}
|
218
|
+
|
219
|
+
// NewWriter returns a new Writer that wraps w by transforming the bytes written
|
220
|
+
// via t. It calls Reset on t.
|
221
|
+
func NewWriter(w io.Writer, t Transformer) *Writer {
|
222
|
+
t.Reset()
|
223
|
+
return &Writer{
|
224
|
+
w: w,
|
225
|
+
t: t,
|
226
|
+
dst: make([]byte, defaultBufSize),
|
227
|
+
src: make([]byte, defaultBufSize),
|
228
|
+
}
|
229
|
+
}
|
230
|
+
|
231
|
+
// Write implements the io.Writer interface. If there are not enough
|
232
|
+
// bytes available to complete a Transform, the bytes will be buffered
|
233
|
+
// for the next write. Call Close to convert the remaining bytes.
|
234
|
+
func (w *Writer) Write(data []byte) (n int, err error) {
|
235
|
+
src := data
|
236
|
+
if w.n > 0 {
|
237
|
+
// Append bytes from data to the last remainder.
|
238
|
+
// TODO: limit the amount copied on first try.
|
239
|
+
n = copy(w.src[w.n:], data)
|
240
|
+
w.n += n
|
241
|
+
src = w.src[:w.n]
|
242
|
+
}
|
243
|
+
for {
|
244
|
+
nDst, nSrc, err := w.t.Transform(w.dst, src, false)
|
245
|
+
if _, werr := w.w.Write(w.dst[:nDst]); werr != nil {
|
246
|
+
return n, werr
|
247
|
+
}
|
248
|
+
src = src[nSrc:]
|
249
|
+
if w.n == 0 {
|
250
|
+
n += nSrc
|
251
|
+
} else if len(src) <= n {
|
252
|
+
// Enough bytes from w.src have been consumed. We make src point
|
253
|
+
// to data instead to reduce the copying.
|
254
|
+
w.n = 0
|
255
|
+
n -= len(src)
|
256
|
+
src = data[n:]
|
257
|
+
if n < len(data) && (err == nil || err == ErrShortSrc) {
|
258
|
+
continue
|
259
|
+
}
|
260
|
+
}
|
261
|
+
switch err {
|
262
|
+
case ErrShortDst:
|
263
|
+
// This error is okay as long as we are making progress.
|
264
|
+
if nDst > 0 || nSrc > 0 {
|
265
|
+
continue
|
266
|
+
}
|
267
|
+
case ErrShortSrc:
|
268
|
+
if len(src) < len(w.src) {
|
269
|
+
m := copy(w.src, src)
|
270
|
+
// If w.n > 0, bytes from data were already copied to w.src and n
|
271
|
+
// was already set to the number of bytes consumed.
|
272
|
+
if w.n == 0 {
|
273
|
+
n += m
|
274
|
+
}
|
275
|
+
w.n = m
|
276
|
+
err = nil
|
277
|
+
} else if nDst > 0 || nSrc > 0 {
|
278
|
+
// Not enough buffer to store the remainder. Keep processing as
|
279
|
+
// long as there is progress. Without this case, transforms that
|
280
|
+
// require a lookahead larger than the buffer may result in an
|
281
|
+
// error. This is not something one may expect to be common in
|
282
|
+
// practice, but it may occur when buffers are set to small
|
283
|
+
// sizes during testing.
|
284
|
+
continue
|
285
|
+
}
|
286
|
+
case nil:
|
287
|
+
if w.n > 0 {
|
288
|
+
err = errInconsistentByteCount
|
289
|
+
}
|
290
|
+
}
|
291
|
+
return n, err
|
292
|
+
}
|
293
|
+
}
|
294
|
+
|
295
|
+
// Close implements the io.Closer interface.
|
296
|
+
func (w *Writer) Close() error {
|
297
|
+
src := w.src[:w.n]
|
298
|
+
for {
|
299
|
+
nDst, nSrc, err := w.t.Transform(w.dst, src, true)
|
300
|
+
if _, werr := w.w.Write(w.dst[:nDst]); werr != nil {
|
301
|
+
return werr
|
302
|
+
}
|
303
|
+
if err != ErrShortDst {
|
304
|
+
return err
|
305
|
+
}
|
306
|
+
src = src[nSrc:]
|
307
|
+
}
|
308
|
+
}
|
309
|
+
|
310
|
+
type nop struct{ NopResetter }
|
311
|
+
|
312
|
+
func (nop) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
|
313
|
+
n := copy(dst, src)
|
314
|
+
if n < len(src) {
|
315
|
+
err = ErrShortDst
|
316
|
+
}
|
317
|
+
return n, n, err
|
318
|
+
}
|
319
|
+
|
320
|
+
func (nop) Span(src []byte, atEOF bool) (n int, err error) {
|
321
|
+
return len(src), nil
|
322
|
+
}
|
323
|
+
|
324
|
+
type discard struct{ NopResetter }
|
325
|
+
|
326
|
+
func (discard) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
|
327
|
+
return 0, len(src), nil
|
328
|
+
}
|
329
|
+
|
330
|
+
var (
|
331
|
+
// Discard is a Transformer for which all Transform calls succeed
|
332
|
+
// by consuming all bytes and writing nothing.
|
333
|
+
Discard Transformer = discard{}
|
334
|
+
|
335
|
+
// Nop is a SpanningTransformer that copies src to dst.
|
336
|
+
Nop SpanningTransformer = nop{}
|
337
|
+
)
|
338
|
+
|
339
|
+
// chain is a sequence of links. A chain with N Transformers has N+1 links and
|
340
|
+
// N+1 buffers. Of those N+1 buffers, the first and last are the src and dst
|
341
|
+
// buffers given to chain.Transform and the middle N-1 buffers are intermediate
|
342
|
+
// buffers owned by the chain. The i'th link transforms bytes from the i'th
|
343
|
+
// buffer chain.link[i].b at read offset chain.link[i].p to the i+1'th buffer
|
344
|
+
// chain.link[i+1].b at write offset chain.link[i+1].n, for i in [0, N).
|
345
|
+
type chain struct {
|
346
|
+
link []link
|
347
|
+
err error
|
348
|
+
// errStart is the index at which the error occurred plus 1. Processing
|
349
|
+
// errStart at this level at the next call to Transform. As long as
|
350
|
+
// errStart > 0, chain will not consume any more source bytes.
|
351
|
+
errStart int
|
352
|
+
}
|
353
|
+
|
354
|
+
func (c *chain) fatalError(errIndex int, err error) {
|
355
|
+
if i := errIndex + 1; i > c.errStart {
|
356
|
+
c.errStart = i
|
357
|
+
c.err = err
|
358
|
+
}
|
359
|
+
}
|
360
|
+
|
361
|
+
type link struct {
|
362
|
+
t Transformer
|
363
|
+
// b[p:n] holds the bytes to be transformed by t.
|
364
|
+
b []byte
|
365
|
+
p int
|
366
|
+
n int
|
367
|
+
}
|
368
|
+
|
369
|
+
func (l *link) src() []byte {
|
370
|
+
return l.b[l.p:l.n]
|
371
|
+
}
|
372
|
+
|
373
|
+
func (l *link) dst() []byte {
|
374
|
+
return l.b[l.n:]
|
375
|
+
}
|
376
|
+
|
377
|
+
// Chain returns a Transformer that applies t in sequence.
|
378
|
+
func Chain(t ...Transformer) Transformer {
|
379
|
+
if len(t) == 0 {
|
380
|
+
return nop{}
|
381
|
+
}
|
382
|
+
c := &chain{link: make([]link, len(t)+1)}
|
383
|
+
for i, tt := range t {
|
384
|
+
c.link[i].t = tt
|
385
|
+
}
|
386
|
+
// Allocate intermediate buffers.
|
387
|
+
b := make([][defaultBufSize]byte, len(t)-1)
|
388
|
+
for i := range b {
|
389
|
+
c.link[i+1].b = b[i][:]
|
390
|
+
}
|
391
|
+
return c
|
392
|
+
}
|
393
|
+
|
394
|
+
// Reset resets the state of Chain. It calls Reset on all the Transformers.
|
395
|
+
func (c *chain) Reset() {
|
396
|
+
for i, l := range c.link {
|
397
|
+
if l.t != nil {
|
398
|
+
l.t.Reset()
|
399
|
+
}
|
400
|
+
c.link[i].p, c.link[i].n = 0, 0
|
401
|
+
}
|
402
|
+
}
|
403
|
+
|
404
|
+
// TODO: make chain use Span (is going to be fun to implement!)
|
405
|
+
|
406
|
+
// Transform applies the transformers of c in sequence.
|
407
|
+
func (c *chain) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
|
408
|
+
// Set up src and dst in the chain.
|
409
|
+
srcL := &c.link[0]
|
410
|
+
dstL := &c.link[len(c.link)-1]
|
411
|
+
srcL.b, srcL.p, srcL.n = src, 0, len(src)
|
412
|
+
dstL.b, dstL.n = dst, 0
|
413
|
+
var lastFull, needProgress bool // for detecting progress
|
414
|
+
|
415
|
+
// i is the index of the next Transformer to apply, for i in [low, high].
|
416
|
+
// low is the lowest index for which c.link[low] may still produce bytes.
|
417
|
+
// high is the highest index for which c.link[high] has a Transformer.
|
418
|
+
// The error returned by Transform determines whether to increase or
|
419
|
+
// decrease i. We try to completely fill a buffer before converting it.
|
420
|
+
for low, i, high := c.errStart, c.errStart, len(c.link)-2; low <= i && i <= high; {
|
421
|
+
in, out := &c.link[i], &c.link[i+1]
|
422
|
+
nDst, nSrc, err0 := in.t.Transform(out.dst(), in.src(), atEOF && low == i)
|
423
|
+
out.n += nDst
|
424
|
+
in.p += nSrc
|
425
|
+
if i > 0 && in.p == in.n {
|
426
|
+
in.p, in.n = 0, 0
|
427
|
+
}
|
428
|
+
needProgress, lastFull = lastFull, false
|
429
|
+
switch err0 {
|
430
|
+
case ErrShortDst:
|
431
|
+
// Process the destination buffer next. Return if we are already
|
432
|
+
// at the high index.
|
433
|
+
if i == high {
|
434
|
+
return dstL.n, srcL.p, ErrShortDst
|
435
|
+
}
|
436
|
+
if out.n != 0 {
|
437
|
+
i++
|
438
|
+
// If the Transformer at the next index is not able to process any
|
439
|
+
// source bytes there is nothing that can be done to make progress
|
440
|
+
// and the bytes will remain unprocessed. lastFull is used to
|
441
|
+
// detect this and break out of the loop with a fatal error.
|
442
|
+
lastFull = true
|
443
|
+
continue
|
444
|
+
}
|
445
|
+
// The destination buffer was too small, but is completely empty.
|
446
|
+
// Return a fatal error as this transformation can never complete.
|
447
|
+
c.fatalError(i, errShortInternal)
|
448
|
+
case ErrShortSrc:
|
449
|
+
if i == 0 {
|
450
|
+
// Save ErrShortSrc in err. All other errors take precedence.
|
451
|
+
err = ErrShortSrc
|
452
|
+
break
|
453
|
+
}
|
454
|
+
// Source bytes were depleted before filling up the destination buffer.
|
455
|
+
// Verify we made some progress, move the remaining bytes to the errStart
|
456
|
+
// and try to get more source bytes.
|
457
|
+
if needProgress && nSrc == 0 || in.n-in.p == len(in.b) {
|
458
|
+
// There were not enough source bytes to proceed while the source
|
459
|
+
// buffer cannot hold any more bytes. Return a fatal error as this
|
460
|
+
// transformation can never complete.
|
461
|
+
c.fatalError(i, errShortInternal)
|
462
|
+
break
|
463
|
+
}
|
464
|
+
// in.b is an internal buffer and we can make progress.
|
465
|
+
in.p, in.n = 0, copy(in.b, in.src())
|
466
|
+
fallthrough
|
467
|
+
case nil:
|
468
|
+
// if i == low, we have depleted the bytes at index i or any lower levels.
|
469
|
+
// In that case we increase low and i. In all other cases we decrease i to
|
470
|
+
// fetch more bytes before proceeding to the next index.
|
471
|
+
if i > low {
|
472
|
+
i--
|
473
|
+
continue
|
474
|
+
}
|
475
|
+
default:
|
476
|
+
c.fatalError(i, err0)
|
477
|
+
}
|
478
|
+
// Exhausted level low or fatal error: increase low and continue
|
479
|
+
// to process the bytes accepted so far.
|
480
|
+
i++
|
481
|
+
low = i
|
482
|
+
}
|
483
|
+
|
484
|
+
// If c.errStart > 0, this means we found a fatal error. We will clear
|
485
|
+
// all upstream buffers. At this point, no more progress can be made
|
486
|
+
// downstream, as Transform would have bailed while handling ErrShortDst.
|
487
|
+
if c.errStart > 0 {
|
488
|
+
for i := 1; i < c.errStart; i++ {
|
489
|
+
c.link[i].p, c.link[i].n = 0, 0
|
490
|
+
}
|
491
|
+
err, c.errStart, c.err = c.err, 0, nil
|
492
|
+
}
|
493
|
+
return dstL.n, srcL.p, err
|
494
|
+
}
|
495
|
+
|
496
|
+
// Deprecated: use runes.Remove instead.
|
497
|
+
func RemoveFunc(f func(r rune) bool) Transformer {
|
498
|
+
return removeF(f)
|
499
|
+
}
|
500
|
+
|
501
|
+
type removeF func(r rune) bool
|
502
|
+
|
503
|
+
func (removeF) Reset() {}
|
504
|
+
|
505
|
+
// Transform implements the Transformer interface.
|
506
|
+
func (t removeF) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
|
507
|
+
for r, sz := rune(0), 0; len(src) > 0; src = src[sz:] {
|
508
|
+
|
509
|
+
if r = rune(src[0]); r < utf8.RuneSelf {
|
510
|
+
sz = 1
|
511
|
+
} else {
|
512
|
+
r, sz = utf8.DecodeRune(src)
|
513
|
+
|
514
|
+
if sz == 1 {
|
515
|
+
// Invalid rune.
|
516
|
+
if !atEOF && !utf8.FullRune(src) {
|
517
|
+
err = ErrShortSrc
|
518
|
+
break
|
519
|
+
}
|
520
|
+
// We replace illegal bytes with RuneError. Not doing so might
|
521
|
+
// otherwise turn a sequence of invalid UTF-8 into valid UTF-8.
|
522
|
+
// The resulting byte sequence may subsequently contain runes
|
523
|
+
// for which t(r) is true that were passed unnoticed.
|
524
|
+
if !t(r) {
|
525
|
+
if nDst+3 > len(dst) {
|
526
|
+
err = ErrShortDst
|
527
|
+
break
|
528
|
+
}
|
529
|
+
nDst += copy(dst[nDst:], "\uFFFD")
|
530
|
+
}
|
531
|
+
nSrc++
|
532
|
+
continue
|
533
|
+
}
|
534
|
+
}
|
535
|
+
|
536
|
+
if !t(r) {
|
537
|
+
if nDst+sz > len(dst) {
|
538
|
+
err = ErrShortDst
|
539
|
+
break
|
540
|
+
}
|
541
|
+
nDst += copy(dst[nDst:], src[:sz])
|
542
|
+
}
|
543
|
+
nSrc += sz
|
544
|
+
}
|
545
|
+
return
|
546
|
+
}
|
547
|
+
|
548
|
+
// grow returns a new []byte that is longer than b, and copies the first n bytes
|
549
|
+
// of b to the start of the new slice.
|
550
|
+
func grow(b []byte, n int) []byte {
|
551
|
+
m := len(b)
|
552
|
+
if m <= 32 {
|
553
|
+
m = 64
|
554
|
+
} else if m <= 256 {
|
555
|
+
m *= 2
|
556
|
+
} else {
|
557
|
+
m += m >> 1
|
558
|
+
}
|
559
|
+
buf := make([]byte, m)
|
560
|
+
copy(buf, b[:n])
|
561
|
+
return buf
|
562
|
+
}
|
563
|
+
|
564
|
+
const initialBufSize = 128
|
565
|
+
|
566
|
+
// String returns a string with the result of converting s[:n] using t, where
|
567
|
+
// n <= len(s). If err == nil, n will be len(s). It calls Reset on t.
|
568
|
+
func String(t Transformer, s string) (result string, n int, err error) {
|
569
|
+
t.Reset()
|
570
|
+
if s == "" {
|
571
|
+
// Fast path for the common case for empty input. Results in about a
|
572
|
+
// 86% reduction of running time for BenchmarkStringLowerEmpty.
|
573
|
+
if _, _, err := t.Transform(nil, nil, true); err == nil {
|
574
|
+
return "", 0, nil
|
575
|
+
}
|
576
|
+
}
|
577
|
+
|
578
|
+
// Allocate only once. Note that both dst and src escape when passed to
|
579
|
+
// Transform.
|
580
|
+
buf := [2 * initialBufSize]byte{}
|
581
|
+
dst := buf[:initialBufSize:initialBufSize]
|
582
|
+
src := buf[initialBufSize : 2*initialBufSize]
|
583
|
+
|
584
|
+
// The input string s is transformed in multiple chunks (starting with a
|
585
|
+
// chunk size of initialBufSize). nDst and nSrc are per-chunk (or
|
586
|
+
// per-Transform-call) indexes, pDst and pSrc are overall indexes.
|
587
|
+
nDst, nSrc := 0, 0
|
588
|
+
pDst, pSrc := 0, 0
|
589
|
+
|
590
|
+
// pPrefix is the length of a common prefix: the first pPrefix bytes of the
|
591
|
+
// result will equal the first pPrefix bytes of s. It is not guaranteed to
|
592
|
+
// be the largest such value, but if pPrefix, len(result) and len(s) are
|
593
|
+
// all equal after the final transform (i.e. calling Transform with atEOF
|
594
|
+
// being true returned nil error) then we don't need to allocate a new
|
595
|
+
// result string.
|
596
|
+
pPrefix := 0
|
597
|
+
for {
|
598
|
+
// Invariant: pDst == pPrefix && pSrc == pPrefix.
|
599
|
+
|
600
|
+
n := copy(src, s[pSrc:])
|
601
|
+
nDst, nSrc, err = t.Transform(dst, src[:n], pSrc+n == len(s))
|
602
|
+
pDst += nDst
|
603
|
+
pSrc += nSrc
|
604
|
+
|
605
|
+
// TODO: let transformers implement an optional Spanner interface, akin
|
606
|
+
// to norm's QuickSpan. This would even allow us to avoid any allocation.
|
607
|
+
if !bytes.Equal(dst[:nDst], src[:nSrc]) {
|
608
|
+
break
|
609
|
+
}
|
610
|
+
pPrefix = pSrc
|
611
|
+
if err == ErrShortDst {
|
612
|
+
// A buffer can only be short if a transformer modifies its input.
|
613
|
+
break
|
614
|
+
} else if err == ErrShortSrc {
|
615
|
+
if nSrc == 0 {
|
616
|
+
// No progress was made.
|
617
|
+
break
|
618
|
+
}
|
619
|
+
// Equal so far and !atEOF, so continue checking.
|
620
|
+
} else if err != nil || pPrefix == len(s) {
|
621
|
+
return string(s[:pPrefix]), pPrefix, err
|
622
|
+
}
|
623
|
+
}
|
624
|
+
// Post-condition: pDst == pPrefix + nDst && pSrc == pPrefix + nSrc.
|
625
|
+
|
626
|
+
// We have transformed the first pSrc bytes of the input s to become pDst
|
627
|
+
// transformed bytes. Those transformed bytes are discontiguous: the first
|
628
|
+
// pPrefix of them equal s[:pPrefix] and the last nDst of them equal
|
629
|
+
// dst[:nDst]. We copy them around, into a new dst buffer if necessary, so
|
630
|
+
// that they become one contiguous slice: dst[:pDst].
|
631
|
+
if pPrefix != 0 {
|
632
|
+
newDst := dst
|
633
|
+
if pDst > len(newDst) {
|
634
|
+
newDst = make([]byte, len(s)+nDst-nSrc)
|
635
|
+
}
|
636
|
+
copy(newDst[pPrefix:pDst], dst[:nDst])
|
637
|
+
copy(newDst[:pPrefix], s[:pPrefix])
|
638
|
+
dst = newDst
|
639
|
+
}
|
640
|
+
|
641
|
+
// Prevent duplicate Transform calls with atEOF being true at the end of
|
642
|
+
// the input. Also return if we have an unrecoverable error.
|
643
|
+
if (err == nil && pSrc == len(s)) ||
|
644
|
+
(err != nil && err != ErrShortDst && err != ErrShortSrc) {
|
645
|
+
return string(dst[:pDst]), pSrc, err
|
646
|
+
}
|
647
|
+
|
648
|
+
// Transform the remaining input, growing dst and src buffers as necessary.
|
649
|
+
for {
|
650
|
+
n := copy(src, s[pSrc:])
|
651
|
+
nDst, nSrc, err := t.Transform(dst[pDst:], src[:n], pSrc+n == len(s))
|
652
|
+
pDst += nDst
|
653
|
+
pSrc += nSrc
|
654
|
+
|
655
|
+
// If we got ErrShortDst or ErrShortSrc, do not grow as long as we can
|
656
|
+
// make progress. This may avoid excessive allocations.
|
657
|
+
if err == ErrShortDst {
|
658
|
+
if nDst == 0 {
|
659
|
+
dst = grow(dst, pDst)
|
660
|
+
}
|
661
|
+
} else if err == ErrShortSrc {
|
662
|
+
if nSrc == 0 {
|
663
|
+
src = grow(src, 0)
|
664
|
+
}
|
665
|
+
} else if err != nil || pSrc == len(s) {
|
666
|
+
return string(dst[:pDst]), pSrc, err
|
667
|
+
}
|
668
|
+
}
|
669
|
+
}
|
670
|
+
|
671
|
+
// Bytes returns a new byte slice with the result of converting b[:n] using t,
|
672
|
+
// where n <= len(b). If err == nil, n will be len(b). It calls Reset on t.
|
673
|
+
func Bytes(t Transformer, b []byte) (result []byte, n int, err error) {
|
674
|
+
return doAppend(t, 0, make([]byte, len(b)), b)
|
675
|
+
}
|
676
|
+
|
677
|
+
// Append appends the result of converting src[:n] using t to dst, where
|
678
|
+
// n <= len(src), If err == nil, n will be len(src). It calls Reset on t.
|
679
|
+
func Append(t Transformer, dst, src []byte) (result []byte, n int, err error) {
|
680
|
+
if len(dst) == cap(dst) {
|
681
|
+
n := len(src) + len(dst) // It is okay for this to be 0.
|
682
|
+
b := make([]byte, n)
|
683
|
+
dst = b[:copy(b, dst)]
|
684
|
+
}
|
685
|
+
return doAppend(t, len(dst), dst[:cap(dst)], src)
|
686
|
+
}
|
687
|
+
|
688
|
+
func doAppend(t Transformer, pDst int, dst, src []byte) (result []byte, n int, err error) {
|
689
|
+
t.Reset()
|
690
|
+
pSrc := 0
|
691
|
+
for {
|
692
|
+
nDst, nSrc, err := t.Transform(dst[pDst:], src[pSrc:], true)
|
693
|
+
pDst += nDst
|
694
|
+
pSrc += nSrc
|
695
|
+
if err != ErrShortDst {
|
696
|
+
return dst[:pDst], pSrc, err
|
697
|
+
}
|
698
|
+
|
699
|
+
// Grow the destination buffer, but do not grow as long as we can make
|
700
|
+
// progress. This may avoid excessive allocations.
|
701
|
+
if nDst == 0 {
|
702
|
+
dst = grow(dst, pDst)
|
703
|
+
}
|
704
|
+
}
|
705
|
+
}
|