Home | Libraries | People | FAQ | More |
For a wide range of applications the library's container interfaces are sufficient for URLs using the generic syntax or the well known schemes. There are however more complex cases where it is desired to go beyond what the library offers:
authority_view
is an example of
this).
To enable these use-cases, the library provides a suite of general facilities for processing low-ASCII character strings, and makes public the interface to useful rules found in rfc3986. The design goals of these facilities are:
std::locale
or std::char_traits
char
The general facilities are nested in the fully qualified namespace boost::urls::grammar
,
while the headers for rfc3986-specific parsing algorithms are located in the
<boost/url/rfc/>
include directory. This section explains the design and use of the general
facilities to define and parse new grammars.
The documentation and reference for this library use the Augmented Backus-Naur Form (ABNF) notation throughout to specify grammar rules. An understanding of this notation is necessary to achieve best results for learning how to use the custom parsing features.
Note | |
---|---|
Code samples and identifiers in this customization section are written as if the following declarations are in effect: #include <boost/url/grammar.hpp> using namespace ::boost::urls::grammar; |