Documentation ¶
Overview ¶
Package httphead contains utils for parsing HTTP and HTTP-grammar compatible text protocols headers.
That is, this package first aim is to bring ability to easily parse constructions, described here https://tools.ietf.org/html/rfc2616#section-2
Index ¶
- Variables
- func CanonicalizeHeaderKey(k []byte)
- func IntFromASCII(bts []byte) (ret int, ok bool)
- func ParseHeaderLine(line []byte) (k, v []byte, ok bool)
- func ParseVersion(bts []byte) (major, minor int, ok bool)
- func ReadLine(br *bufio.Reader) ([]byte, error)
- func RemoveByte(data []byte, c byte) []byte
- func ScanCookie(data []byte, it func(key, value []byte) bool) bool
- func ScanOptions(data []byte, it func(index int, option, attribute, value []byte) Control) bool
- func ScanPairGreedy(data []byte, open, close byte) (n int)
- func ScanTokens(data []byte, it func([]byte) bool) bool
- func ScanUntil(data []byte, c byte) (n int)
- func SkipSpace(p []byte) (n int)
- func SplitRequestLine(line []byte) (method, uri, version []byte)
- func SplitResponseLine(line []byte) (version, status, reason []byte)
- func ValidCookieName(name []byte) bool
- func ValidCookieValue(value []byte, strict bool) bool
- func WriteOptions(dest io.Writer, options []Option) (n int, err error)
- type Control
- type CookieScanner
- type ItemType
- type OctetType
- type Option
- type OptionSelector
- type Parameters
- func (p *Parameters) Copy(dst []byte) (Parameters, []byte)
- func (p Parameters) Equal(b Parameters) bool
- func (p *Parameters) ForEach(cb func(k, v []byte) bool)
- func (p *Parameters) Get(key string) (value []byte, ok bool)
- func (p *Parameters) Set(key, value []byte)
- func (p *Parameters) Size() int
- func (p *Parameters) String() (ret string)
- type RequestLine
- type ResponseLine
- type Scanner
- func (l *Scanner) Advance(n int) bool
- func (l *Scanner) Buffered() int
- func (l *Scanner) Bytes() []byte
- func (l *Scanner) FetchUntil(c byte) bool
- func (l *Scanner) Next() bool
- func (l *Scanner) Peek() byte
- func (l *Scanner) Peek2() (a, b byte)
- func (l *Scanner) Skip(c byte)
- func (l *Scanner) SkipEscaped(c byte)
- func (l *Scanner) Type() ItemType
- type SelectFlag
- type Version
Examples ¶
Constants ¶
This section is empty.
Variables ¶
var DefaultCookieScanner = CookieScanner{}
DefaultCookieScanner is a CookieScanner which is used by ScanCookie(). Note that it is intended to have the same behavior as http.Request.Cookies() has.
var OctetTypes [256]OctetType
OctetTypes is a table of octets.
Functions ¶
func CanonicalizeHeaderKey ¶
func CanonicalizeHeaderKey(k []byte)
CanonicalizeHeaderKey is like standard textproto/CanonicalMIMEHeaderKey, except that it operates with slice of bytes and modifies it inplace without copying.
func IntFromASCII ¶
IntFromASCII converts ascii encoded decimal numeric value from HTTP entities to an integer.
func ParseHeaderLine ¶
ParseHeaderLine parses HTTP header as key-value pair. It returns parsed values and true if parse is ok.
func ParseVersion ¶
ParseVersion parses major and minor version of HTTP protocol. It returns parsed values and true if parse is ok.
func ReadLine ¶
ReadLine reads line from br. It reads until '\n' and returns bytes without '\n' or '\r\n' at the end. It returns err if and only if line does not end in '\n'. Note that read bytes returned in any case of error.
It is much like the textproto/Reader.ReadLine() except the thing that it returns raw bytes, instead of string. That is, it avoids copying bytes read from br.
textproto/Reader.ReadLineBytes() is also makes copy of resulting bytes to be safe with future I/O operations on br.
We could control I/O operations on br and do not need to make additional copy for safety.
func RemoveByte ¶
RemoveByte returns data without c. If c is not present in data it returns the same slice. If not, it copies data without c.
func ScanCookie ¶
ScanCookie scans cookie pairs from data using DefaultCookieScanner.Scan() method.
func ScanOptions ¶
ScanOptions parses data in this form:
values = 1#value value = token *( ";" param ) param = token [ "=" (token | quoted-string) ]
It calls given callback with the index of the option, option itself and its parameter (attribute and its value, both could be nil). Index is useful when header contains multiple choises for the same named option.
Given callback should return one of the defined Control* values. ControlSkip means that passed key is not in caller's interest. That is, all parameters of that key will be skipped. ControlBreak means that no more keys and parameters should be parsed. That is, it must break parsing immediately. ControlContinue means that caller want to receive next parameter and its value or the next key.
It returns false if data is malformed.
Example ¶
foo := map[string]string{} ScanOptions([]byte(`foo;bar=1;baz`), func(index int, key, param, value []byte) Control { foo[string(param)] = string(value) return ControlContinue }) fmt.Printf("bar:%s baz:%s", foo["bar"], foo["baz"])
Output: bar:1 baz:
func ScanPairGreedy ¶
ScanPairGreedy scans for complete pair of opening and closing chars in greedy manner. Note that first opening byte must not be present in data.
func ScanTokens ¶
ScanTokens parses data in this form:
list = 1#token
It returns false if data is malformed.
Example ¶
var values []string ScanTokens([]byte(`a,b,c`), func(v []byte) bool { values = append(values, string(v)) return v[0] != 'b' }) fmt.Println(values)
Output: [a b]
func ScanUntil ¶
ScanUntil scans for first non-escaped character c in given data. It returns index of matched c and -1 if c is not found.
func SkipSpace ¶
SkipSpace skips spaces and lws-sequences from p. It returns number ob bytes skipped.
func SplitRequestLine ¶
SplitRequestLine splits given slice of bytes into three chunks without parsing.
func SplitResponseLine ¶
SplitResponseLine splits given slice of bytes into three chunks without parsing.
func ValidCookieName ¶
ValidCookieName reports wheter given bytes is a valid RFC2616 "token" bytes.
func ValidCookieValue ¶
ValidCookieValue reports whether given value is a valid RFC6265 "cookie-octet" bytes.
cookie-octet = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
; US-ASCII characters excluding CTLs, ; whitespace DQUOTE, comma, semicolon, ; and backslash
Note that the false strict parameter disables errors on space 0x20 and comma 0x2c. This could be useful to bring some compatibility with non-compliant clients/servers in the real world. It acts the same as standard library cookie parser if strict is false.
func WriteOptions ¶
WriteOptions write options list to the dest. It uses the same form as {Scan,Parse}Options functions: values = 1#value value = token *( ";" param ) param = token [ "=" (token | quoted-string) ]
It wraps valuse into the quoted-string sequence if it contains any non-token characters.
Example ¶
opts := []Option{ NewOption("foo", map[string]string{ "param": "hello, world!", }), NewOption("bar", nil), NewOption("b a z", nil), } buf := bytes.Buffer{} bw := bufio.NewWriter(&buf) WriteOptions(bw, opts) bw.Flush()
Output: foo;param="hello, world!",bar,"b a z"
Types ¶
type CookieScanner ¶
type CookieScanner struct { // DisableNameValidation disables name validation of a cookie. If false, // only RFC2616 "tokens" are accepted. DisableNameValidation bool // DisableValueValidation disables value validation of a cookie. If false, // only RFC6265 "cookie-octet" characters are accepted. // // Note that Strict option also affects validation of a value. // // If Strict is false, then scanner begins to allow space and comma // characters inside the value for better compatibility with non standard // cookies implementations. DisableValueValidation bool // BreakOnPairError sets scanner to immediately return after first pair syntax // validation error. // If false, scanner will try to skip invalid pair bytes and go ahead. BreakOnPairError bool // Strict enables strict RFC6265 mode scanning. It affects name and value // validation, as also some other rules. // If false, it is intended to bring the same behavior as // http.Request.Cookies(). Strict bool }
CookieScanner contains options for scanning cookie pairs. See https://tools.ietf.org/html/rfc6265#section-4.1.1
type ItemType ¶
type ItemType int
ItemType encodes type of the lexing token.
const ( // ItemUndef reports that token is undefined. ItemUndef ItemType = iota // ItemToken reports that token is RFC2616 token. ItemToken // ItemSeparator reports that token is RFC2616 separator. ItemSeparator // ItemString reports that token is RFC2616 quouted string. ItemString // ItemComment reports that token is RFC2616 comment. ItemComment // ItemOctet reports that token is octet slice. ItemOctet )
type OctetType ¶
type OctetType byte
OctetType desribes character type.
From the "Basic Rules" chapter of RFC2616 See https://tools.ietf.org/html/rfc2616#section-2.2
OCTET = <any 8-bit sequence of data> CHAR = <any US-ASCII character (octets 0 - 127)> UPALPHA = <any US-ASCII uppercase letter "A".."Z"> LOALPHA = <any US-ASCII lowercase letter "a".."z"> ALPHA = UPALPHA | LOALPHA DIGIT = <any US-ASCII digit "0".."9"> CTL = <any US-ASCII control character (octets 0 - 31) and DEL (127)> CR = <US-ASCII CR, carriage return (13)> LF = <US-ASCII LF, linefeed (10)> SP = <US-ASCII SP, space (32)> HT = <US-ASCII HT, horizontal-tab (9)> <"> = <US-ASCII double-quote mark (34)> CRLF = CR LF LWS = [CRLF] 1*( SP | HT )
Many HTTP/1.1 header field values consist of words separated by LWS or special characters. These special characters MUST be in a quoted string to be used within a parameter value (as defined in section 3.6).
token = 1*<any CHAR except CTLs or separators> separators = "(" | ")" | "<" | ">" | "@" | "," | ";" | ":" | "\" | <"> | "/" | "[" | "]" | "?" | "=" | "{" | "}" | SP | HT
func (OctetType) IsSeparator ¶
IsSeparator reports whether octet is separator.
type Option ¶
type Option struct { Name []byte Parameters Parameters }
Option represents a header option.
func ParseOptions ¶
ParseOptions parses all header options and appends it to given slice of Option. It returns flag of successful (wellformed input) parsing.
Note that appended options are all consist of subslices of data. That is, mutation of data will mutate appended options.
Example ¶
options, ok := ParseOptions([]byte(`foo;bar=1,baz`), nil) fmt.Println(options, ok)
Output: [{foo [bar:1]} {baz []}] true
func (Option) Clone ¶
Clone is a shorthand for making slice of opt.Size() sequenced with Copy() call.
func (Option) Copy ¶
Copy copies all underlying []byte slices into p and returns new Option. Note that p must be at least of opt.Size() length.
type OptionSelector ¶
type OptionSelector struct { // Check is a filter function that applied to every Option that possibly // could be selected. // If Check is nil all options will be selected. Check func(Option) bool // Flags contains flags for options selection. Flags SelectFlag // Alloc used to allocate slice of bytes when selector is configured with // SelectCopy flag. It will be called with number of bytes needed for copy // of single Option. // If Alloc is nil make is used. Alloc func(n int) []byte }
OptionSelector contains configuration for selecting Options from header value.
type Parameters ¶
type Parameters struct {
// contains filtered or unexported fields
}
Parameters represents option's parameters.
func (*Parameters) Copy ¶
func (p *Parameters) Copy(dst []byte) (Parameters, []byte)
Copy copies all underlying []byte slices into dst and returns new Parameters. Note that dst must be at least of p.Size() length.
func (Parameters) Equal ¶
func (p Parameters) Equal(b Parameters) bool
Equal reports whether a equal to b.
func (*Parameters) ForEach ¶
func (p *Parameters) ForEach(cb func(k, v []byte) bool)
ForEach iterates over parameters key-value pairs and calls cb for each one.
func (*Parameters) Get ¶
func (p *Parameters) Get(key string) (value []byte, ok bool)
Get returns value by key and flag about existence such value.
func (*Parameters) Size ¶
func (p *Parameters) Size() int
Size returns number of bytes that needed to copy p.
func (*Parameters) String ¶
func (p *Parameters) String() (ret string)
String represents parameters as a string.
type RequestLine ¶
RequestLine contains parameters parsed from the first request line.
func ParseRequestLine ¶
func ParseRequestLine(line []byte) (r RequestLine, ok bool)
ParseRequestLine parses http request line like "GET / HTTP/1.0".
type ResponseLine ¶
ResponseLine contains parameters parsed from the first response line.
func ParseResponseLine ¶
func ParseResponseLine(line []byte) (r ResponseLine, ok bool)
ParseResponseLine parses first response line into ResponseLine struct.
type Scanner ¶
type Scanner struct {
// contains filtered or unexported fields
}
Scanner represents header tokens scanner. See https://tools.ietf.org/html/rfc2616#section-2
func NewScanner ¶
NewScanner creates new RFC2616 data scanner.
func (*Scanner) Advance ¶
Advance moves current position index at n bytes. It returns true on successful move.
func (*Scanner) FetchUntil ¶
FetchUntil fetches ItemOctet from current scanner position to first occurence of the c or to the end of the underlying data.
func (*Scanner) Next ¶
Next scans for next token. It returns true on successful scanning, and false on error or EOF.
func (*Scanner) Peek ¶
Peek reads byte at current position without advancing it. On end of data it returns 0.
func (*Scanner) Peek2 ¶
Peek2 reads two first bytes at current position without advancing it. If there not enough data it returs 0.
func (*Scanner) SkipEscaped ¶
SkipEscaped skips all bytes until first occurence of non-escaped c.
type SelectFlag ¶
type SelectFlag byte
SelectFlag encodes way of options selection.
const ( // SelectCopy causes selector to copy selected option before appending it // to resulting slice. // If SelectCopy flag is not passed to selector, then appended options will // contain sub-slices of the initial data. SelectCopy SelectFlag = 1 << iota // SelectUnique causes selector to append only not yet existing option to // resulting slice. Unique is checked by comparing option names. SelectUnique )