WebUtil
@Js
class WebUtil : Obj
WebUtil encapsulates several useful utility web methods. Also see MimeType and its utility methods.
Return if given char unicode point is allowable within the HTTP token production
Wrap the given output stream to write a fixed number of bytes
Return the specified string as a HTTP quoted string according to RFC 2616 Section 2.2
Wrap the given input stream to read bytes using a HTTP chunked transfer encoding
Parse a multipart/form-data input stream
Parse a list of comma separated tokens
Given an HTTP header that uses q values, return a map of name/q-value pairs
Given a set of headers, wrap the specified output stream to write the content body
Decode a HTTP quoted string according to RFC 2616 Section 2.2
Wrap the given input stream to read a fixed number of bytes
Return if the specified string is a valid HTTP token production which is any ASCII character which is not a control char or a separator
Given a set of HTTP headers map Content-Type to its charset or default to UTF-8
Generate the method invocation code used to boostrap into JavaScript from a webpage
Given a set of headers, wrap the specified input stream to read the content body
Parse a series of HTTP headers according to RFC 2616 section 4.2
Wrap the given output stream to write bytes using a HTTP chunked transfer encoding
static Str fromQuotedStr(Str s)
Decode a HTTP quoted string according to RFC 2616 Section 2.2. The given string must be wrapped in quotes. See toQuotedStr.
static Charset headersToCharset(Str:Str headers)
Given a set of HTTP headers map Content-Type to its charset or default to UTF-8.
static Bool isToken(Str s)
Return if the specified string is a valid HTTP token production which is any ASCII character which is not a control char or a separator. The separators characters are:
"(" | ")" | "<" | ">" | "@" |
"," | ";" | ":" | "\" | <"> |
"/" | "[" | "]" | "?" | "=" |
"{" | "}" | SP | HT
static Bool isTokenChar(Int c)
Return if given char unicode point is allowable within the HTTP token production. See isToken.
@Deprecated { msg="use WebOutStream.initJs" }
static Void jsMain(OutStream out, Str main, [Str:Str]? env)
Generate the method invocation code used to boostrap into JavaScript from a webpage. This must be called inside the <head> tag for the page. The main method will be invoked using the onLoad DOM event.
The main argument can be either a type or method. If no method is specified, main is used. If the method is not static, a new instance of type is created:
"foo::Instance" => Instance().main() "foo::Instance.bar" => Instance().bar() "foo::Static" => Static.main() "foo::Static.bar" => Static.bar()
If env is specified, then vars will be added to and available from Env.vars on client-side.
static InStream makeChunkedInStream(InStream in)
Wrap the given input stream to read bytes using a HTTP chunked transfer encoding. The wrapped streams provides a contiguous stream of bytes until the last chunk is read. Closing the wrapper stream does not close the underlying stream.
static OutStream makeChunkedOutStream(OutStream out)
Wrap the given output stream to write bytes using a HTTP chunked transfer encoding. Closing the wrapper stream terminates the chunking, but does not close the underlying stream.
static InStream makeContentInStream(Str:Str headers, InStream in)
Given a set of headers, wrap the specified input stream to read the content body:
- If Content-Encoding is
gzipthen wrap via Zip.gzipInStream - If Content-Length then makeFixedInStream
- If Transfer-Encoding is chunked then makeChunkedInStream
- If Content-Type assume non-pipelined connection and return
indirectly
If a stream is returned, then it is automatically configured with the correct content encoding based on the Content-Type.
static OutStream? makeContentOutStream(Str:Str headers, OutStream out)
Given a set of headers, wrap the specified output stream to write the content body:
- If Content-Length then makeFixedOutStream
- If Content-Type then set Transfer-Encoding header to chunked and return makeChunkedOutStream
- Assume no content and return null
If a stream is returned, then it is automatically configured with the correct content encoding based on the Content-Type.
static InStream makeFixedInStream(InStream in, Int fixed)
Wrap the given input stream to read a fixed number of bytes. Once fixed bytes have been read from the underlying input stream, the wrapped stream will return end-of-stream. Closing the wrapper stream does not close the underlying stream.
static OutStream makeFixedOutStream(OutStream out, Int fixed)
Wrap the given output stream to write a fixed number of bytes. Once fixed bytes have been written, attempting to further bytes will throw IOErr. Closing the wrapper stream does not close the underlying stream.
static Str:Str parseHeaders(InStream in)
Parse a series of HTTP headers according to RFC 2616 section 4.2. The final CRLF which terminates headers is consumed with the stream positioned immediately following. The headers are returned as a case insensitive map. Throw ParseErr if headers are malformed.
static Str[] parseList(Str s)
Parse a list of comma separated tokens. Any leading or trailing whitespace is trimmed from the list of tokens.
static Void parseMultiPart(InStream in, Str boundary, |Str:Str,InStream| cb)
Parse a multipart/form-data input stream. For each part in the stream call the given callback function with the part's headers and an input stream used to read the part's body. Each callback must completely drain the input stream to prepare for the next part. Also see WebReq.parseMultiPartForm.
static Str:Float parseQVals(Str s)
Given an HTTP header that uses q values, return a map of name/q-value pairs. This map has a def value of 0.
Example:
compress,gzip => ["compress":1f, "gzip":1f] compress;q=0.5,gzip;q=0.0 => ["compress":0.5f, "gzip":0.0f]
static Str toQuotedStr(Str s)
Return the specified string as a HTTP quoted string according to RFC 2616 Section 2.2. The result is wrapped in quotes. Throw ArgErr if any character is outside of the ASCII range of 0x20 to 0x7e. The quote char itself is backslash escaped. See fromQuotedStr.