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,887 @@
|
|
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
|
+
//go:generate go run gen.go gen_common.go -output tables.go
|
6
|
+
//go:generate go run gen_index.go
|
7
|
+
|
8
|
+
package language
|
9
|
+
|
10
|
+
// TODO: Remove above NOTE after:
|
11
|
+
// - verifying that tables are dropped correctly (most notably matcher tables).
|
12
|
+
|
13
|
+
import (
|
14
|
+
"errors"
|
15
|
+
"fmt"
|
16
|
+
"strings"
|
17
|
+
)
|
18
|
+
|
19
|
+
const (
|
20
|
+
// maxCoreSize is the maximum size of a BCP 47 tag without variants and
|
21
|
+
// extensions. Equals max lang (3) + script (4) + max reg (3) + 2 dashes.
|
22
|
+
maxCoreSize = 12
|
23
|
+
|
24
|
+
// max99thPercentileSize is a somewhat arbitrary buffer size that presumably
|
25
|
+
// is large enough to hold at least 99% of the BCP 47 tags.
|
26
|
+
max99thPercentileSize = 32
|
27
|
+
|
28
|
+
// maxSimpleUExtensionSize is the maximum size of a -u extension with one
|
29
|
+
// key-type pair. Equals len("-u-") + key (2) + dash + max value (8).
|
30
|
+
maxSimpleUExtensionSize = 14
|
31
|
+
)
|
32
|
+
|
33
|
+
// Tag represents a BCP 47 language tag. It is used to specify an instance of a
|
34
|
+
// specific language or locale. All language tag values are guaranteed to be
|
35
|
+
// well-formed.
|
36
|
+
type Tag struct {
|
37
|
+
lang langID
|
38
|
+
region regionID
|
39
|
+
// TODO: we will soon run out of positions for script. Idea: instead of
|
40
|
+
// storing lang, region, and script codes, store only the compact index and
|
41
|
+
// have a lookup table from this code to its expansion. This greatly speeds
|
42
|
+
// up table lookup, speed up common variant cases.
|
43
|
+
// This will also immediately free up 3 extra bytes. Also, the pVariant
|
44
|
+
// field can now be moved to the lookup table, as the compact index uniquely
|
45
|
+
// determines the offset of a possible variant.
|
46
|
+
script scriptID
|
47
|
+
pVariant byte // offset in str, includes preceding '-'
|
48
|
+
pExt uint16 // offset of first extension, includes preceding '-'
|
49
|
+
|
50
|
+
// str is the string representation of the Tag. It will only be used if the
|
51
|
+
// tag has variants or extensions.
|
52
|
+
str string
|
53
|
+
}
|
54
|
+
|
55
|
+
// Make is a convenience wrapper for Parse that omits the error.
|
56
|
+
// In case of an error, a sensible default is returned.
|
57
|
+
func Make(s string) Tag {
|
58
|
+
return Default.Make(s)
|
59
|
+
}
|
60
|
+
|
61
|
+
// Make is a convenience wrapper for c.Parse that omits the error.
|
62
|
+
// In case of an error, a sensible default is returned.
|
63
|
+
func (c CanonType) Make(s string) Tag {
|
64
|
+
t, _ := c.Parse(s)
|
65
|
+
return t
|
66
|
+
}
|
67
|
+
|
68
|
+
// Raw returns the raw base language, script and region, without making an
|
69
|
+
// attempt to infer their values.
|
70
|
+
func (t Tag) Raw() (b Base, s Script, r Region) {
|
71
|
+
return Base{t.lang}, Script{t.script}, Region{t.region}
|
72
|
+
}
|
73
|
+
|
74
|
+
// equalTags compares language, script and region subtags only.
|
75
|
+
func (t Tag) equalTags(a Tag) bool {
|
76
|
+
return t.lang == a.lang && t.script == a.script && t.region == a.region
|
77
|
+
}
|
78
|
+
|
79
|
+
// IsRoot returns true if t is equal to language "und".
|
80
|
+
func (t Tag) IsRoot() bool {
|
81
|
+
if int(t.pVariant) < len(t.str) {
|
82
|
+
return false
|
83
|
+
}
|
84
|
+
return t.equalTags(und)
|
85
|
+
}
|
86
|
+
|
87
|
+
// private reports whether the Tag consists solely of a private use tag.
|
88
|
+
func (t Tag) private() bool {
|
89
|
+
return t.str != "" && t.pVariant == 0
|
90
|
+
}
|
91
|
+
|
92
|
+
// CanonType can be used to enable or disable various types of canonicalization.
|
93
|
+
type CanonType int
|
94
|
+
|
95
|
+
const (
|
96
|
+
// Replace deprecated base languages with their preferred replacements.
|
97
|
+
DeprecatedBase CanonType = 1 << iota
|
98
|
+
// Replace deprecated scripts with their preferred replacements.
|
99
|
+
DeprecatedScript
|
100
|
+
// Replace deprecated regions with their preferred replacements.
|
101
|
+
DeprecatedRegion
|
102
|
+
// Remove redundant scripts.
|
103
|
+
SuppressScript
|
104
|
+
// Normalize legacy encodings. This includes legacy languages defined in
|
105
|
+
// CLDR as well as bibliographic codes defined in ISO-639.
|
106
|
+
Legacy
|
107
|
+
// Map the dominant language of a macro language group to the macro language
|
108
|
+
// subtag. For example cmn -> zh.
|
109
|
+
Macro
|
110
|
+
// The CLDR flag should be used if full compatibility with CLDR is required.
|
111
|
+
// There are a few cases where language.Tag may differ from CLDR. To follow all
|
112
|
+
// of CLDR's suggestions, use All|CLDR.
|
113
|
+
CLDR
|
114
|
+
|
115
|
+
// Raw can be used to Compose or Parse without Canonicalization.
|
116
|
+
Raw CanonType = 0
|
117
|
+
|
118
|
+
// Replace all deprecated tags with their preferred replacements.
|
119
|
+
Deprecated = DeprecatedBase | DeprecatedScript | DeprecatedRegion
|
120
|
+
|
121
|
+
// All canonicalizations recommended by BCP 47.
|
122
|
+
BCP47 = Deprecated | SuppressScript
|
123
|
+
|
124
|
+
// All canonicalizations.
|
125
|
+
All = BCP47 | Legacy | Macro
|
126
|
+
|
127
|
+
// Default is the canonicalization used by Parse, Make and Compose. To
|
128
|
+
// preserve as much information as possible, canonicalizations that remove
|
129
|
+
// potentially valuable information are not included. The Matcher is
|
130
|
+
// designed to recognize similar tags that would be the same if
|
131
|
+
// they were canonicalized using All.
|
132
|
+
Default = Deprecated | Legacy
|
133
|
+
|
134
|
+
canonLang = DeprecatedBase | Legacy | Macro
|
135
|
+
|
136
|
+
// TODO: LikelyScript, LikelyRegion: suppress similar to ICU.
|
137
|
+
)
|
138
|
+
|
139
|
+
// canonicalize returns the canonicalized equivalent of the tag and
|
140
|
+
// whether there was any change.
|
141
|
+
func (t Tag) canonicalize(c CanonType) (Tag, bool) {
|
142
|
+
if c == Raw {
|
143
|
+
return t, false
|
144
|
+
}
|
145
|
+
changed := false
|
146
|
+
if c&SuppressScript != 0 {
|
147
|
+
if t.lang < langNoIndexOffset && uint8(t.script) == suppressScript[t.lang] {
|
148
|
+
t.script = 0
|
149
|
+
changed = true
|
150
|
+
}
|
151
|
+
}
|
152
|
+
if c&canonLang != 0 {
|
153
|
+
for {
|
154
|
+
if l, aliasType := normLang(t.lang); l != t.lang {
|
155
|
+
switch aliasType {
|
156
|
+
case langLegacy:
|
157
|
+
if c&Legacy != 0 {
|
158
|
+
if t.lang == _sh && t.script == 0 {
|
159
|
+
t.script = _Latn
|
160
|
+
}
|
161
|
+
t.lang = l
|
162
|
+
changed = true
|
163
|
+
}
|
164
|
+
case langMacro:
|
165
|
+
if c&Macro != 0 {
|
166
|
+
// We deviate here from CLDR. The mapping "nb" -> "no"
|
167
|
+
// qualifies as a typical Macro language mapping. However,
|
168
|
+
// for legacy reasons, CLDR maps "no", the macro language
|
169
|
+
// code for Norwegian, to the dominant variant "nb". This
|
170
|
+
// change is currently under consideration for CLDR as well.
|
171
|
+
// See http://unicode.org/cldr/trac/ticket/2698 and also
|
172
|
+
// http://unicode.org/cldr/trac/ticket/1790 for some of the
|
173
|
+
// practical implications. TODO: this check could be removed
|
174
|
+
// if CLDR adopts this change.
|
175
|
+
if c&CLDR == 0 || t.lang != _nb {
|
176
|
+
changed = true
|
177
|
+
t.lang = l
|
178
|
+
}
|
179
|
+
}
|
180
|
+
case langDeprecated:
|
181
|
+
if c&DeprecatedBase != 0 {
|
182
|
+
if t.lang == _mo && t.region == 0 {
|
183
|
+
t.region = _MD
|
184
|
+
}
|
185
|
+
t.lang = l
|
186
|
+
changed = true
|
187
|
+
// Other canonicalization types may still apply.
|
188
|
+
continue
|
189
|
+
}
|
190
|
+
}
|
191
|
+
} else if c&Legacy != 0 && t.lang == _no && c&CLDR != 0 {
|
192
|
+
t.lang = _nb
|
193
|
+
changed = true
|
194
|
+
}
|
195
|
+
break
|
196
|
+
}
|
197
|
+
}
|
198
|
+
if c&DeprecatedScript != 0 {
|
199
|
+
if t.script == _Qaai {
|
200
|
+
changed = true
|
201
|
+
t.script = _Zinh
|
202
|
+
}
|
203
|
+
}
|
204
|
+
if c&DeprecatedRegion != 0 {
|
205
|
+
if r := normRegion(t.region); r != 0 {
|
206
|
+
changed = true
|
207
|
+
t.region = r
|
208
|
+
}
|
209
|
+
}
|
210
|
+
return t, changed
|
211
|
+
}
|
212
|
+
|
213
|
+
// Canonicalize returns the canonicalized equivalent of the tag.
|
214
|
+
func (c CanonType) Canonicalize(t Tag) (Tag, error) {
|
215
|
+
t, changed := t.canonicalize(c)
|
216
|
+
if changed {
|
217
|
+
t.remakeString()
|
218
|
+
}
|
219
|
+
return t, nil
|
220
|
+
}
|
221
|
+
|
222
|
+
// Confidence indicates the level of certainty for a given return value.
|
223
|
+
// For example, Serbian may be written in Cyrillic or Latin script.
|
224
|
+
// The confidence level indicates whether a value was explicitly specified,
|
225
|
+
// whether it is typically the only possible value, or whether there is
|
226
|
+
// an ambiguity.
|
227
|
+
type Confidence int
|
228
|
+
|
229
|
+
const (
|
230
|
+
No Confidence = iota // full confidence that there was no match
|
231
|
+
Low // most likely value picked out of a set of alternatives
|
232
|
+
High // value is generally assumed to be the correct match
|
233
|
+
Exact // exact match or explicitly specified value
|
234
|
+
)
|
235
|
+
|
236
|
+
var confName = []string{"No", "Low", "High", "Exact"}
|
237
|
+
|
238
|
+
func (c Confidence) String() string {
|
239
|
+
return confName[c]
|
240
|
+
}
|
241
|
+
|
242
|
+
// remakeString is used to update t.str in case lang, script or region changed.
|
243
|
+
// It is assumed that pExt and pVariant still point to the start of the
|
244
|
+
// respective parts.
|
245
|
+
func (t *Tag) remakeString() {
|
246
|
+
if t.str == "" {
|
247
|
+
return
|
248
|
+
}
|
249
|
+
extra := t.str[t.pVariant:]
|
250
|
+
if t.pVariant > 0 {
|
251
|
+
extra = extra[1:]
|
252
|
+
}
|
253
|
+
if t.equalTags(und) && strings.HasPrefix(extra, "x-") {
|
254
|
+
t.str = extra
|
255
|
+
t.pVariant = 0
|
256
|
+
t.pExt = 0
|
257
|
+
return
|
258
|
+
}
|
259
|
+
var buf [max99thPercentileSize]byte // avoid extra memory allocation in most cases.
|
260
|
+
b := buf[:t.genCoreBytes(buf[:])]
|
261
|
+
if extra != "" {
|
262
|
+
diff := len(b) - int(t.pVariant)
|
263
|
+
b = append(b, '-')
|
264
|
+
b = append(b, extra...)
|
265
|
+
t.pVariant = uint8(int(t.pVariant) + diff)
|
266
|
+
t.pExt = uint16(int(t.pExt) + diff)
|
267
|
+
} else {
|
268
|
+
t.pVariant = uint8(len(b))
|
269
|
+
t.pExt = uint16(len(b))
|
270
|
+
}
|
271
|
+
t.str = string(b)
|
272
|
+
}
|
273
|
+
|
274
|
+
// genCoreBytes writes a string for the base languages, script and region tags
|
275
|
+
// to the given buffer and returns the number of bytes written. It will never
|
276
|
+
// write more than maxCoreSize bytes.
|
277
|
+
func (t *Tag) genCoreBytes(buf []byte) int {
|
278
|
+
n := t.lang.stringToBuf(buf[:])
|
279
|
+
if t.script != 0 {
|
280
|
+
n += copy(buf[n:], "-")
|
281
|
+
n += copy(buf[n:], t.script.String())
|
282
|
+
}
|
283
|
+
if t.region != 0 {
|
284
|
+
n += copy(buf[n:], "-")
|
285
|
+
n += copy(buf[n:], t.region.String())
|
286
|
+
}
|
287
|
+
return n
|
288
|
+
}
|
289
|
+
|
290
|
+
// String returns the canonical string representation of the language tag.
|
291
|
+
func (t Tag) String() string {
|
292
|
+
if t.str != "" {
|
293
|
+
return t.str
|
294
|
+
}
|
295
|
+
if t.script == 0 && t.region == 0 {
|
296
|
+
return t.lang.String()
|
297
|
+
}
|
298
|
+
buf := [maxCoreSize]byte{}
|
299
|
+
return string(buf[:t.genCoreBytes(buf[:])])
|
300
|
+
}
|
301
|
+
|
302
|
+
// Base returns the base language of the language tag. If the base language is
|
303
|
+
// unspecified, an attempt will be made to infer it from the context.
|
304
|
+
// It uses a variant of CLDR's Add Likely Subtags algorithm. This is subject to change.
|
305
|
+
func (t Tag) Base() (Base, Confidence) {
|
306
|
+
if t.lang != 0 {
|
307
|
+
return Base{t.lang}, Exact
|
308
|
+
}
|
309
|
+
c := High
|
310
|
+
if t.script == 0 && !(Region{t.region}).IsCountry() {
|
311
|
+
c = Low
|
312
|
+
}
|
313
|
+
if tag, err := addTags(t); err == nil && tag.lang != 0 {
|
314
|
+
return Base{tag.lang}, c
|
315
|
+
}
|
316
|
+
return Base{0}, No
|
317
|
+
}
|
318
|
+
|
319
|
+
// Script infers the script for the language tag. If it was not explicitly given, it will infer
|
320
|
+
// a most likely candidate.
|
321
|
+
// If more than one script is commonly used for a language, the most likely one
|
322
|
+
// is returned with a low confidence indication. For example, it returns (Cyrl, Low)
|
323
|
+
// for Serbian.
|
324
|
+
// If a script cannot be inferred (Zzzz, No) is returned. We do not use Zyyy (undetermined)
|
325
|
+
// as one would suspect from the IANA registry for BCP 47. In a Unicode context Zyyy marks
|
326
|
+
// common characters (like 1, 2, 3, '.', etc.) and is therefore more like multiple scripts.
|
327
|
+
// See http://www.unicode.org/reports/tr24/#Values for more details. Zzzz is also used for
|
328
|
+
// unknown value in CLDR. (Zzzz, Exact) is returned if Zzzz was explicitly specified.
|
329
|
+
// Note that an inferred script is never guaranteed to be the correct one. Latin is
|
330
|
+
// almost exclusively used for Afrikaans, but Arabic has been used for some texts
|
331
|
+
// in the past. Also, the script that is commonly used may change over time.
|
332
|
+
// It uses a variant of CLDR's Add Likely Subtags algorithm. This is subject to change.
|
333
|
+
func (t Tag) Script() (Script, Confidence) {
|
334
|
+
if t.script != 0 {
|
335
|
+
return Script{t.script}, Exact
|
336
|
+
}
|
337
|
+
sc, c := scriptID(_Zzzz), No
|
338
|
+
if t.lang < langNoIndexOffset {
|
339
|
+
if scr := scriptID(suppressScript[t.lang]); scr != 0 {
|
340
|
+
// Note: it is not always the case that a language with a suppress
|
341
|
+
// script value is only written in one script (e.g. kk, ms, pa).
|
342
|
+
if t.region == 0 {
|
343
|
+
return Script{scriptID(scr)}, High
|
344
|
+
}
|
345
|
+
sc, c = scr, High
|
346
|
+
}
|
347
|
+
}
|
348
|
+
if tag, err := addTags(t); err == nil {
|
349
|
+
if tag.script != sc {
|
350
|
+
sc, c = tag.script, Low
|
351
|
+
}
|
352
|
+
} else {
|
353
|
+
t, _ = (Deprecated | Macro).Canonicalize(t)
|
354
|
+
if tag, err := addTags(t); err == nil && tag.script != sc {
|
355
|
+
sc, c = tag.script, Low
|
356
|
+
}
|
357
|
+
}
|
358
|
+
return Script{sc}, c
|
359
|
+
}
|
360
|
+
|
361
|
+
// Region returns the region for the language tag. If it was not explicitly given, it will
|
362
|
+
// infer a most likely candidate from the context.
|
363
|
+
// It uses a variant of CLDR's Add Likely Subtags algorithm. This is subject to change.
|
364
|
+
func (t Tag) Region() (Region, Confidence) {
|
365
|
+
if t.region != 0 {
|
366
|
+
return Region{t.region}, Exact
|
367
|
+
}
|
368
|
+
if t, err := addTags(t); err == nil {
|
369
|
+
return Region{t.region}, Low // TODO: differentiate between high and low.
|
370
|
+
}
|
371
|
+
t, _ = (Deprecated | Macro).Canonicalize(t)
|
372
|
+
if tag, err := addTags(t); err == nil {
|
373
|
+
return Region{tag.region}, Low
|
374
|
+
}
|
375
|
+
return Region{_ZZ}, No // TODO: return world instead of undetermined?
|
376
|
+
}
|
377
|
+
|
378
|
+
// Variant returns the variants specified explicitly for this language tag.
|
379
|
+
// or nil if no variant was specified.
|
380
|
+
func (t Tag) Variants() []Variant {
|
381
|
+
v := []Variant{}
|
382
|
+
if int(t.pVariant) < int(t.pExt) {
|
383
|
+
for x, str := "", t.str[t.pVariant:t.pExt]; str != ""; {
|
384
|
+
x, str = nextToken(str)
|
385
|
+
v = append(v, Variant{x})
|
386
|
+
}
|
387
|
+
}
|
388
|
+
return v
|
389
|
+
}
|
390
|
+
|
391
|
+
// Parent returns the CLDR parent of t. In CLDR, missing fields in data for a
|
392
|
+
// specific language are substituted with fields from the parent language.
|
393
|
+
// The parent for a language may change for newer versions of CLDR.
|
394
|
+
func (t Tag) Parent() Tag {
|
395
|
+
if t.str != "" {
|
396
|
+
// Strip the variants and extensions.
|
397
|
+
t, _ = Raw.Compose(t.Raw())
|
398
|
+
if t.region == 0 && t.script != 0 && t.lang != 0 {
|
399
|
+
base, _ := addTags(Tag{lang: t.lang})
|
400
|
+
if base.script == t.script {
|
401
|
+
return Tag{lang: t.lang}
|
402
|
+
}
|
403
|
+
}
|
404
|
+
return t
|
405
|
+
}
|
406
|
+
if t.lang != 0 {
|
407
|
+
if t.region != 0 {
|
408
|
+
maxScript := t.script
|
409
|
+
if maxScript == 0 {
|
410
|
+
max, _ := addTags(t)
|
411
|
+
maxScript = max.script
|
412
|
+
}
|
413
|
+
|
414
|
+
for i := range parents {
|
415
|
+
if langID(parents[i].lang) == t.lang && scriptID(parents[i].maxScript) == maxScript {
|
416
|
+
for _, r := range parents[i].fromRegion {
|
417
|
+
if regionID(r) == t.region {
|
418
|
+
return Tag{
|
419
|
+
lang: t.lang,
|
420
|
+
script: scriptID(parents[i].script),
|
421
|
+
region: regionID(parents[i].toRegion),
|
422
|
+
}
|
423
|
+
}
|
424
|
+
}
|
425
|
+
}
|
426
|
+
}
|
427
|
+
|
428
|
+
// Strip the script if it is the default one.
|
429
|
+
base, _ := addTags(Tag{lang: t.lang})
|
430
|
+
if base.script != maxScript {
|
431
|
+
return Tag{lang: t.lang, script: maxScript}
|
432
|
+
}
|
433
|
+
return Tag{lang: t.lang}
|
434
|
+
} else if t.script != 0 {
|
435
|
+
// The parent for an base-script pair with a non-default script is
|
436
|
+
// "und" instead of the base language.
|
437
|
+
base, _ := addTags(Tag{lang: t.lang})
|
438
|
+
if base.script != t.script {
|
439
|
+
return und
|
440
|
+
}
|
441
|
+
return Tag{lang: t.lang}
|
442
|
+
}
|
443
|
+
}
|
444
|
+
return und
|
445
|
+
}
|
446
|
+
|
447
|
+
// returns token t and the rest of the string.
|
448
|
+
func nextToken(s string) (t, tail string) {
|
449
|
+
p := strings.Index(s[1:], "-")
|
450
|
+
if p == -1 {
|
451
|
+
return s[1:], ""
|
452
|
+
}
|
453
|
+
p++
|
454
|
+
return s[1:p], s[p:]
|
455
|
+
}
|
456
|
+
|
457
|
+
// Extension is a single BCP 47 extension.
|
458
|
+
type Extension struct {
|
459
|
+
s string
|
460
|
+
}
|
461
|
+
|
462
|
+
// String returns the string representation of the extension, including the
|
463
|
+
// type tag.
|
464
|
+
func (e Extension) String() string {
|
465
|
+
return e.s
|
466
|
+
}
|
467
|
+
|
468
|
+
// ParseExtension parses s as an extension and returns it on success.
|
469
|
+
func ParseExtension(s string) (e Extension, err error) {
|
470
|
+
scan := makeScannerString(s)
|
471
|
+
var end int
|
472
|
+
if n := len(scan.token); n != 1 {
|
473
|
+
return Extension{}, errSyntax
|
474
|
+
}
|
475
|
+
scan.toLower(0, len(scan.b))
|
476
|
+
end = parseExtension(&scan)
|
477
|
+
if end != len(s) {
|
478
|
+
return Extension{}, errSyntax
|
479
|
+
}
|
480
|
+
return Extension{string(scan.b)}, nil
|
481
|
+
}
|
482
|
+
|
483
|
+
// Type returns the one-byte extension type of e. It returns 0 for the zero
|
484
|
+
// exception.
|
485
|
+
func (e Extension) Type() byte {
|
486
|
+
if e.s == "" {
|
487
|
+
return 0
|
488
|
+
}
|
489
|
+
return e.s[0]
|
490
|
+
}
|
491
|
+
|
492
|
+
// Tokens returns the list of tokens of e.
|
493
|
+
func (e Extension) Tokens() []string {
|
494
|
+
return strings.Split(e.s, "-")
|
495
|
+
}
|
496
|
+
|
497
|
+
// Extension returns the extension of type x for tag t. It will return
|
498
|
+
// false for ok if t does not have the requested extension. The returned
|
499
|
+
// extension will be invalid in this case.
|
500
|
+
func (t Tag) Extension(x byte) (ext Extension, ok bool) {
|
501
|
+
for i := int(t.pExt); i < len(t.str)-1; {
|
502
|
+
var ext string
|
503
|
+
i, ext = getExtension(t.str, i)
|
504
|
+
if ext[0] == x {
|
505
|
+
return Extension{ext}, true
|
506
|
+
}
|
507
|
+
}
|
508
|
+
return Extension{}, false
|
509
|
+
}
|
510
|
+
|
511
|
+
// Extensions returns all extensions of t.
|
512
|
+
func (t Tag) Extensions() []Extension {
|
513
|
+
e := []Extension{}
|
514
|
+
for i := int(t.pExt); i < len(t.str)-1; {
|
515
|
+
var ext string
|
516
|
+
i, ext = getExtension(t.str, i)
|
517
|
+
e = append(e, Extension{ext})
|
518
|
+
}
|
519
|
+
return e
|
520
|
+
}
|
521
|
+
|
522
|
+
// TypeForKey returns the type associated with the given key, where key and type
|
523
|
+
// are of the allowed values defined for the Unicode locale extension ('u') in
|
524
|
+
// http://www.unicode.org/reports/tr35/#Unicode_Language_and_Locale_Identifiers.
|
525
|
+
// TypeForKey will traverse the inheritance chain to get the correct value.
|
526
|
+
func (t Tag) TypeForKey(key string) string {
|
527
|
+
if start, end, _ := t.findTypeForKey(key); end != start {
|
528
|
+
return t.str[start:end]
|
529
|
+
}
|
530
|
+
return ""
|
531
|
+
}
|
532
|
+
|
533
|
+
var (
|
534
|
+
errPrivateUse = errors.New("cannot set a key on a private use tag")
|
535
|
+
errInvalidArguments = errors.New("invalid key or type")
|
536
|
+
)
|
537
|
+
|
538
|
+
// SetTypeForKey returns a new Tag with the key set to type, where key and type
|
539
|
+
// are of the allowed values defined for the Unicode locale extension ('u') in
|
540
|
+
// http://www.unicode.org/reports/tr35/#Unicode_Language_and_Locale_Identifiers.
|
541
|
+
// An empty value removes an existing pair with the same key.
|
542
|
+
func (t Tag) SetTypeForKey(key, value string) (Tag, error) {
|
543
|
+
if t.private() {
|
544
|
+
return t, errPrivateUse
|
545
|
+
}
|
546
|
+
if len(key) != 2 {
|
547
|
+
return t, errInvalidArguments
|
548
|
+
}
|
549
|
+
|
550
|
+
// Remove the setting if value is "".
|
551
|
+
if value == "" {
|
552
|
+
start, end, _ := t.findTypeForKey(key)
|
553
|
+
if start != end {
|
554
|
+
// Remove key tag and leading '-'.
|
555
|
+
start -= 4
|
556
|
+
|
557
|
+
// Remove a possible empty extension.
|
558
|
+
if (end == len(t.str) || t.str[end+2] == '-') && t.str[start-2] == '-' {
|
559
|
+
start -= 2
|
560
|
+
}
|
561
|
+
if start == int(t.pVariant) && end == len(t.str) {
|
562
|
+
t.str = ""
|
563
|
+
t.pVariant, t.pExt = 0, 0
|
564
|
+
} else {
|
565
|
+
t.str = fmt.Sprintf("%s%s", t.str[:start], t.str[end:])
|
566
|
+
}
|
567
|
+
}
|
568
|
+
return t, nil
|
569
|
+
}
|
570
|
+
|
571
|
+
if len(value) < 3 || len(value) > 8 {
|
572
|
+
return t, errInvalidArguments
|
573
|
+
}
|
574
|
+
|
575
|
+
var (
|
576
|
+
buf [maxCoreSize + maxSimpleUExtensionSize]byte
|
577
|
+
uStart int // start of the -u extension.
|
578
|
+
)
|
579
|
+
|
580
|
+
// Generate the tag string if needed.
|
581
|
+
if t.str == "" {
|
582
|
+
uStart = t.genCoreBytes(buf[:])
|
583
|
+
buf[uStart] = '-'
|
584
|
+
uStart++
|
585
|
+
}
|
586
|
+
|
587
|
+
// Create new key-type pair and parse it to verify.
|
588
|
+
b := buf[uStart:]
|
589
|
+
copy(b, "u-")
|
590
|
+
copy(b[2:], key)
|
591
|
+
b[4] = '-'
|
592
|
+
b = b[:5+copy(b[5:], value)]
|
593
|
+
scan := makeScanner(b)
|
594
|
+
if parseExtensions(&scan); scan.err != nil {
|
595
|
+
return t, scan.err
|
596
|
+
}
|
597
|
+
|
598
|
+
// Assemble the replacement string.
|
599
|
+
if t.str == "" {
|
600
|
+
t.pVariant, t.pExt = byte(uStart-1), uint16(uStart-1)
|
601
|
+
t.str = string(buf[:uStart+len(b)])
|
602
|
+
} else {
|
603
|
+
s := t.str
|
604
|
+
start, end, hasExt := t.findTypeForKey(key)
|
605
|
+
if start == end {
|
606
|
+
if hasExt {
|
607
|
+
b = b[2:]
|
608
|
+
}
|
609
|
+
t.str = fmt.Sprintf("%s-%s%s", s[:start], b, s[end:])
|
610
|
+
} else {
|
611
|
+
t.str = fmt.Sprintf("%s%s%s", s[:start], value, s[end:])
|
612
|
+
}
|
613
|
+
}
|
614
|
+
return t, nil
|
615
|
+
}
|
616
|
+
|
617
|
+
// findKeyAndType returns the start and end position for the type corresponding
|
618
|
+
// to key or the point at which to insert the key-value pair if the type
|
619
|
+
// wasn't found. The hasExt return value reports whether an -u extension was present.
|
620
|
+
// Note: the extensions are typically very small and are likely to contain
|
621
|
+
// only one key-type pair.
|
622
|
+
func (t Tag) findTypeForKey(key string) (start, end int, hasExt bool) {
|
623
|
+
p := int(t.pExt)
|
624
|
+
if len(key) != 2 || p == len(t.str) || p == 0 {
|
625
|
+
return p, p, false
|
626
|
+
}
|
627
|
+
s := t.str
|
628
|
+
|
629
|
+
// Find the correct extension.
|
630
|
+
for p++; s[p] != 'u'; p++ {
|
631
|
+
if s[p] > 'u' {
|
632
|
+
p--
|
633
|
+
return p, p, false
|
634
|
+
}
|
635
|
+
if p = nextExtension(s, p); p == len(s) {
|
636
|
+
return len(s), len(s), false
|
637
|
+
}
|
638
|
+
}
|
639
|
+
// Proceed to the hyphen following the extension name.
|
640
|
+
p++
|
641
|
+
|
642
|
+
// curKey is the key currently being processed.
|
643
|
+
curKey := ""
|
644
|
+
|
645
|
+
// Iterate over keys until we get the end of a section.
|
646
|
+
for {
|
647
|
+
// p points to the hyphen preceding the current token.
|
648
|
+
if p3 := p + 3; s[p3] == '-' {
|
649
|
+
// Found a key.
|
650
|
+
// Check whether we just processed the key that was requested.
|
651
|
+
if curKey == key {
|
652
|
+
return start, p, true
|
653
|
+
}
|
654
|
+
// Set to the next key and continue scanning type tokens.
|
655
|
+
curKey = s[p+1 : p3]
|
656
|
+
if curKey > key {
|
657
|
+
return p, p, true
|
658
|
+
}
|
659
|
+
// Start of the type token sequence.
|
660
|
+
start = p + 4
|
661
|
+
// A type is at least 3 characters long.
|
662
|
+
p += 7 // 4 + 3
|
663
|
+
} else {
|
664
|
+
// Attribute or type, which is at least 3 characters long.
|
665
|
+
p += 4
|
666
|
+
}
|
667
|
+
// p points past the third character of a type or attribute.
|
668
|
+
max := p + 5 // maximum length of token plus hyphen.
|
669
|
+
if len(s) < max {
|
670
|
+
max = len(s)
|
671
|
+
}
|
672
|
+
for ; p < max && s[p] != '-'; p++ {
|
673
|
+
}
|
674
|
+
// Bail if we have exhausted all tokens or if the next token starts
|
675
|
+
// a new extension.
|
676
|
+
if p == len(s) || s[p+2] == '-' {
|
677
|
+
if curKey == key {
|
678
|
+
return start, p, true
|
679
|
+
}
|
680
|
+
return p, p, true
|
681
|
+
}
|
682
|
+
}
|
683
|
+
}
|
684
|
+
|
685
|
+
// CompactIndex returns an index, where 0 <= index < NumCompactTags, for tags
|
686
|
+
// for which data exists in the text repository. The index will change over time
|
687
|
+
// and should not be stored in persistent storage. Extensions, except for the
|
688
|
+
// 'va' type of the 'u' extension, are ignored. It will return 0, false if no
|
689
|
+
// compact tag exists, where 0 is the index for the root language (Und).
|
690
|
+
func CompactIndex(t Tag) (index int, ok bool) {
|
691
|
+
// TODO: perhaps give more frequent tags a lower index.
|
692
|
+
// TODO: we could make the indexes stable. This will excluded some
|
693
|
+
// possibilities for optimization, so don't do this quite yet.
|
694
|
+
b, s, r := t.Raw()
|
695
|
+
if len(t.str) > 0 {
|
696
|
+
if strings.HasPrefix(t.str, "x-") {
|
697
|
+
// We have no entries for user-defined tags.
|
698
|
+
return 0, false
|
699
|
+
}
|
700
|
+
if uint16(t.pVariant) != t.pExt {
|
701
|
+
// There are no tags with variants and an u-va type.
|
702
|
+
if t.TypeForKey("va") != "" {
|
703
|
+
return 0, false
|
704
|
+
}
|
705
|
+
t, _ = Raw.Compose(b, s, r, t.Variants())
|
706
|
+
} else if _, ok := t.Extension('u'); ok {
|
707
|
+
// Strip all but the 'va' entry.
|
708
|
+
variant := t.TypeForKey("va")
|
709
|
+
t, _ = Raw.Compose(b, s, r)
|
710
|
+
t, _ = t.SetTypeForKey("va", variant)
|
711
|
+
}
|
712
|
+
if len(t.str) > 0 {
|
713
|
+
// We have some variants.
|
714
|
+
for i, s := range specialTags {
|
715
|
+
if s == t {
|
716
|
+
return i + 1, true
|
717
|
+
}
|
718
|
+
}
|
719
|
+
return 0, false
|
720
|
+
}
|
721
|
+
}
|
722
|
+
// No variants specified: just compare core components.
|
723
|
+
// The key has the form lllssrrr, where l, s, and r are nibbles for
|
724
|
+
// respectively the langID, scriptID, and regionID.
|
725
|
+
key := uint32(b.langID) << (8 + 12)
|
726
|
+
key |= uint32(s.scriptID) << 12
|
727
|
+
key |= uint32(r.regionID)
|
728
|
+
x, ok := coreTags[key]
|
729
|
+
return int(x), ok
|
730
|
+
}
|
731
|
+
|
732
|
+
// Base is an ISO 639 language code, used for encoding the base language
|
733
|
+
// of a language tag.
|
734
|
+
type Base struct {
|
735
|
+
langID
|
736
|
+
}
|
737
|
+
|
738
|
+
// ParseBase parses a 2- or 3-letter ISO 639 code.
|
739
|
+
// It returns a ValueError if s is a well-formed but unknown language identifier
|
740
|
+
// or another error if another error occurred.
|
741
|
+
func ParseBase(s string) (Base, error) {
|
742
|
+
if n := len(s); n < 2 || 3 < n {
|
743
|
+
return Base{}, errSyntax
|
744
|
+
}
|
745
|
+
var buf [3]byte
|
746
|
+
l, err := getLangID(buf[:copy(buf[:], s)])
|
747
|
+
return Base{l}, err
|
748
|
+
}
|
749
|
+
|
750
|
+
// Script is a 4-letter ISO 15924 code for representing scripts.
|
751
|
+
// It is idiomatically represented in title case.
|
752
|
+
type Script struct {
|
753
|
+
scriptID
|
754
|
+
}
|
755
|
+
|
756
|
+
// ParseScript parses a 4-letter ISO 15924 code.
|
757
|
+
// It returns a ValueError if s is a well-formed but unknown script identifier
|
758
|
+
// or another error if another error occurred.
|
759
|
+
func ParseScript(s string) (Script, error) {
|
760
|
+
if len(s) != 4 {
|
761
|
+
return Script{}, errSyntax
|
762
|
+
}
|
763
|
+
var buf [4]byte
|
764
|
+
sc, err := getScriptID(script, buf[:copy(buf[:], s)])
|
765
|
+
return Script{sc}, err
|
766
|
+
}
|
767
|
+
|
768
|
+
// Region is an ISO 3166-1 or UN M.49 code for representing countries and regions.
|
769
|
+
type Region struct {
|
770
|
+
regionID
|
771
|
+
}
|
772
|
+
|
773
|
+
// EncodeM49 returns the Region for the given UN M.49 code.
|
774
|
+
// It returns an error if r is not a valid code.
|
775
|
+
func EncodeM49(r int) (Region, error) {
|
776
|
+
rid, err := getRegionM49(r)
|
777
|
+
return Region{rid}, err
|
778
|
+
}
|
779
|
+
|
780
|
+
// ParseRegion parses a 2- or 3-letter ISO 3166-1 or a UN M.49 code.
|
781
|
+
// It returns a ValueError if s is a well-formed but unknown region identifier
|
782
|
+
// or another error if another error occurred.
|
783
|
+
func ParseRegion(s string) (Region, error) {
|
784
|
+
if n := len(s); n < 2 || 3 < n {
|
785
|
+
return Region{}, errSyntax
|
786
|
+
}
|
787
|
+
var buf [3]byte
|
788
|
+
r, err := getRegionID(buf[:copy(buf[:], s)])
|
789
|
+
return Region{r}, err
|
790
|
+
}
|
791
|
+
|
792
|
+
// IsCountry returns whether this region is a country or autonomous area. This
|
793
|
+
// includes non-standard definitions from CLDR.
|
794
|
+
func (r Region) IsCountry() bool {
|
795
|
+
if r.regionID == 0 || r.IsGroup() || r.IsPrivateUse() && r.regionID != _XK {
|
796
|
+
return false
|
797
|
+
}
|
798
|
+
return true
|
799
|
+
}
|
800
|
+
|
801
|
+
// IsGroup returns whether this region defines a collection of regions. This
|
802
|
+
// includes non-standard definitions from CLDR.
|
803
|
+
func (r Region) IsGroup() bool {
|
804
|
+
if r.regionID == 0 {
|
805
|
+
return false
|
806
|
+
}
|
807
|
+
return int(regionInclusion[r.regionID]) < len(regionContainment)
|
808
|
+
}
|
809
|
+
|
810
|
+
// Contains returns whether Region c is contained by Region r. It returns true
|
811
|
+
// if c == r.
|
812
|
+
func (r Region) Contains(c Region) bool {
|
813
|
+
return r.regionID.contains(c.regionID)
|
814
|
+
}
|
815
|
+
|
816
|
+
func (r regionID) contains(c regionID) bool {
|
817
|
+
if r == c {
|
818
|
+
return true
|
819
|
+
}
|
820
|
+
g := regionInclusion[r]
|
821
|
+
if g >= nRegionGroups {
|
822
|
+
return false
|
823
|
+
}
|
824
|
+
m := regionContainment[g]
|
825
|
+
|
826
|
+
d := regionInclusion[c]
|
827
|
+
b := regionInclusionBits[d]
|
828
|
+
|
829
|
+
// A contained country may belong to multiple disjoint groups. Matching any
|
830
|
+
// of these indicates containment. If the contained region is a group, it
|
831
|
+
// must strictly be a subset.
|
832
|
+
if d >= nRegionGroups {
|
833
|
+
return b&m != 0
|
834
|
+
}
|
835
|
+
return b&^m == 0
|
836
|
+
}
|
837
|
+
|
838
|
+
var errNoTLD = errors.New("language: region is not a valid ccTLD")
|
839
|
+
|
840
|
+
// TLD returns the country code top-level domain (ccTLD). UK is returned for GB.
|
841
|
+
// In all other cases it returns either the region itself or an error.
|
842
|
+
//
|
843
|
+
// This method may return an error for a region for which there exists a
|
844
|
+
// canonical form with a ccTLD. To get that ccTLD canonicalize r first. The
|
845
|
+
// region will already be canonicalized it was obtained from a Tag that was
|
846
|
+
// obtained using any of the default methods.
|
847
|
+
func (r Region) TLD() (Region, error) {
|
848
|
+
// See http://en.wikipedia.org/wiki/Country_code_top-level_domain for the
|
849
|
+
// difference between ISO 3166-1 and IANA ccTLD.
|
850
|
+
if r.regionID == _GB {
|
851
|
+
r = Region{_UK}
|
852
|
+
}
|
853
|
+
if (r.typ() & ccTLD) == 0 {
|
854
|
+
return Region{}, errNoTLD
|
855
|
+
}
|
856
|
+
return r, nil
|
857
|
+
}
|
858
|
+
|
859
|
+
// Canonicalize returns the region or a possible replacement if the region is
|
860
|
+
// deprecated. It will not return a replacement for deprecated regions that
|
861
|
+
// are split into multiple regions.
|
862
|
+
func (r Region) Canonicalize() Region {
|
863
|
+
if cr := normRegion(r.regionID); cr != 0 {
|
864
|
+
return Region{cr}
|
865
|
+
}
|
866
|
+
return r
|
867
|
+
}
|
868
|
+
|
869
|
+
// Variant represents a registered variant of a language as defined by BCP 47.
|
870
|
+
type Variant struct {
|
871
|
+
variant string
|
872
|
+
}
|
873
|
+
|
874
|
+
// ParseVariant parses and returns a Variant. An error is returned if s is not
|
875
|
+
// a valid variant.
|
876
|
+
func ParseVariant(s string) (Variant, error) {
|
877
|
+
s = strings.ToLower(s)
|
878
|
+
if _, ok := variantIndex[s]; ok {
|
879
|
+
return Variant{s}, nil
|
880
|
+
}
|
881
|
+
return Variant{}, mkErrInvalid([]byte(s))
|
882
|
+
}
|
883
|
+
|
884
|
+
// String returns the string representation of the variant.
|
885
|
+
func (v Variant) String() string {
|
886
|
+
return v.variant
|
887
|
+
}
|