Yankun168 eae748aaa7 5.20BeforeSDK 11 月之前
..
LICENSE eae748aaa7 5.20BeforeSDK 11 月之前
README.md eae748aaa7 5.20BeforeSDK 11 月之前
cookie.go eae748aaa7 5.20BeforeSDK 11 月之前
head.go eae748aaa7 5.20BeforeSDK 11 月之前
httphead.go eae748aaa7 5.20BeforeSDK 11 月之前
lexer.go eae748aaa7 5.20BeforeSDK 11 月之前
octet.go eae748aaa7 5.20BeforeSDK 11 月之前
option.go eae748aaa7 5.20BeforeSDK 11 月之前
writer.go eae748aaa7 5.20BeforeSDK 11 月之前

README.md

httphead.go

GoDoc

Tiny HTTP header value parsing library in go.

Overview

This library contains low-level functions for scanning HTTP RFC2616 compatible header value grammars.

Install

    go get github.com/gobwas/httphead

Example

The example below shows how multiple-choise HTTP header value could be parsed with this library:

	options, ok := httphead.ParseOptions([]byte(`foo;bar=1,baz`), nil)
	fmt.Println(options, ok)
	// Output: [{foo map[bar:1]} {baz map[]}] true

The low-level example below shows how to optimize keys skipping and selection of some key:

	// The right part of full header line like:
	// X-My-Header: key;foo=bar;baz,key;baz
	header := []byte(`foo;a=0,foo;a=1,foo;a=2,foo;a=3`)

	// We want to search key "foo" with an "a" parameter that equal to "2".
	var (
		foo = []byte(`foo`)
		a   = []byte(`a`)
		v   = []byte(`2`)
	)
	var found bool
	httphead.ScanOptions(header, func(i int, key, param, value []byte) Control {
		if !bytes.Equal(key, foo) {
			return ControlSkip
		}
		if !bytes.Equal(param, a) {
			if bytes.Equal(value, v) {
				// Found it!
				found = true
				return ControlBreak
			}
			return ControlSkip
		}
		return ControlContinue
	})

For more usage examples please see docs or package tests.