mirror of
https://github.com/boostorg/quickbook.git
synced 2026-02-01 20:52:13 +00:00
377 lines
14 KiB
C++
377 lines
14 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2002 2004 Joel de Guzman
|
|
Copyright (c) 2004 Eric Niebler
|
|
http://spirit.sourceforge.net/
|
|
|
|
Use, modification and distribution is subject to the Boost Software
|
|
License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
http://www.boost.org/LICENSE_1_0.txt)
|
|
=============================================================================*/
|
|
#if !defined(BOOST_SPIRIT_QUICKBOOK_BLOCK_HPP)
|
|
#define BOOST_SPIRIT_QUICKBOOK_BLOCK_HPP
|
|
|
|
#include "./detail/utils.hpp"
|
|
#include "./phrase.hpp"
|
|
#include <boost/spirit/core.hpp>
|
|
#include <boost/spirit/utility/confix.hpp>
|
|
#include <boost/spirit/utility/chset.hpp>
|
|
#include <boost/spirit/actor/assign_actor.hpp>
|
|
#include <boost/spirit/dynamic/if.hpp>
|
|
#include <boost/spirit/symbols/symbols.hpp>
|
|
|
|
namespace quickbook
|
|
{
|
|
using namespace boost::spirit;
|
|
|
|
template <typename Actions>
|
|
struct block_grammar : grammar<block_grammar<Actions> >
|
|
{
|
|
block_grammar(Actions& actions_)
|
|
: actions(actions_) {}
|
|
|
|
template <typename Scanner>
|
|
struct definition
|
|
{
|
|
definition(block_grammar const& self)
|
|
: is_not_preformatted(true)
|
|
, common(self.actions, is_not_preformatted)
|
|
{
|
|
using detail::var;
|
|
Actions& actions = self.actions;
|
|
|
|
start_ =
|
|
*(space_p | comment) >> blocks >> blank
|
|
;
|
|
|
|
blocks =
|
|
+( block_markup
|
|
| code
|
|
| list [actions.list]
|
|
| hr [actions.hr]
|
|
| comment >> *eol
|
|
| paragraph [actions.paragraph]
|
|
| eol
|
|
)
|
|
;
|
|
|
|
space =
|
|
*(space_p | comment)
|
|
;
|
|
|
|
blank =
|
|
*(blank_p | comment)
|
|
;
|
|
|
|
eol = blank >> eol_p
|
|
;
|
|
|
|
close_bracket =
|
|
']' |
|
|
if_p(var(is_not_preformatted))
|
|
[
|
|
eol_p >> eol_p // Make sure that we don't go
|
|
] // past a single block, except
|
|
; // when preformatted.
|
|
|
|
hard_space =
|
|
(eps_p - (alnum_p | '_')) >> space // must not be followed by
|
|
; // alpha-numeric or underscore
|
|
|
|
comment =
|
|
"[/" >> *(anychar_p - ']') >> ']'
|
|
;
|
|
|
|
hr =
|
|
str_p("----")
|
|
>> *(anychar_p - eol)
|
|
>> +eol
|
|
;
|
|
|
|
block_markup =
|
|
'[' >> space
|
|
>> ( begin_section
|
|
| end_section
|
|
| headings
|
|
| blurb
|
|
| blockquote
|
|
| admonition
|
|
| preformatted
|
|
| def_macro
|
|
| table
|
|
| variablelist
|
|
| xinclude
|
|
| include
|
|
)
|
|
>> ( (space >> ']' >> +eol)
|
|
| eps_p [actions.error]
|
|
)
|
|
;
|
|
|
|
begin_section =
|
|
"section"
|
|
>> hard_space
|
|
>> (':' >> (*(alnum_p | '_')) [assign_a(actions.section_id)]
|
|
| eps_p [assign_a(actions.section_id)]
|
|
)
|
|
>> phrase [actions.begin_section]
|
|
;
|
|
|
|
end_section =
|
|
str_p("endsect") [actions.end_section]
|
|
;
|
|
|
|
headings =
|
|
h1 | h2 | h3 | h4 | h5 | h6
|
|
;
|
|
|
|
h1 = "h1" >> hard_space >> phrase [actions.h1];
|
|
h2 = "h2" >> hard_space >> phrase [actions.h2];
|
|
h3 = "h3" >> hard_space >> phrase [actions.h3];
|
|
h4 = "h4" >> hard_space >> phrase [actions.h4];
|
|
h5 = "h5" >> hard_space >> phrase [actions.h5];
|
|
h6 = "h6" >> hard_space >> phrase [actions.h6];
|
|
|
|
blurb =
|
|
"blurb" >> hard_space
|
|
>> phrase [actions.blurb]
|
|
;
|
|
|
|
blockquote =
|
|
':' >> blank >>
|
|
phrase [actions.blockquote]
|
|
;
|
|
|
|
admonition =
|
|
"warning" >> blank >>
|
|
phrase [self.actions.warning]
|
|
|
|
|
"caution" >> blank >>
|
|
phrase [self.actions.caution]
|
|
|
|
|
"important" >> blank >>
|
|
phrase [self.actions.important]
|
|
|
|
|
"note" >> blank >>
|
|
phrase [self.actions.note]
|
|
|
|
|
"tip" >> blank >>
|
|
phrase [self.actions.tip]
|
|
;
|
|
|
|
{
|
|
static const bool true_ = true;
|
|
static const bool false_ = false;
|
|
|
|
preformatted =
|
|
"pre" >> hard_space [assign_a(is_not_preformatted, false_)]
|
|
>> !eol >> phrase [actions.preformatted]
|
|
>> eps_p [assign_a(is_not_preformatted, true_)]
|
|
;
|
|
}
|
|
|
|
def_macro =
|
|
"def" >> hard_space
|
|
>> identifier [actions.identifier]
|
|
>> blank >> phrase [actions.macro_def]
|
|
;
|
|
|
|
variablelist =
|
|
"variablelist"
|
|
>> (eps_p(*blank_p >> eol_p) | hard_space)
|
|
>> (*(anychar_p - eol)) [assign_a(actions.table_title)]
|
|
>> +eol
|
|
>> *varlistentry
|
|
>> eps_p [actions.variablelist]
|
|
;
|
|
|
|
varlistentry =
|
|
space
|
|
>> ch_p('[') [actions.start_varlistentry]
|
|
>>
|
|
(
|
|
(
|
|
varlistterm
|
|
>> +varlistitem
|
|
>> ch_p(']') [actions.end_varlistentry]
|
|
>> space
|
|
)
|
|
| eps_p [actions.error]
|
|
)
|
|
;
|
|
|
|
varlistterm =
|
|
space
|
|
>> ch_p('[') [actions.start_varlistterm]
|
|
>>
|
|
(
|
|
(
|
|
phrase
|
|
>> ch_p(']') [actions.end_varlistterm]
|
|
>> space
|
|
)
|
|
| eps_p [actions.error]
|
|
)
|
|
;
|
|
|
|
varlistitem =
|
|
space
|
|
>> ch_p('[') [actions.start_varlistitem]
|
|
>>
|
|
(
|
|
(
|
|
phrase [actions.end_varlistitem]
|
|
>> ch_p(']')
|
|
>> space
|
|
)
|
|
| eps_p [actions.error]
|
|
)
|
|
;
|
|
|
|
table =
|
|
"table"
|
|
>> (eps_p(*blank_p >> eol_p) | hard_space)
|
|
>> (*(anychar_p - eol)) [assign_a(actions.table_title)]
|
|
>> +eol
|
|
>> *table_row
|
|
>> eps_p [actions.table]
|
|
;
|
|
|
|
table_row =
|
|
space
|
|
>> ch_p('[') [actions.start_row]
|
|
>>
|
|
(
|
|
(
|
|
*table_cell
|
|
>> ch_p(']') [actions.end_row]
|
|
>> space
|
|
)
|
|
| eps_p [actions.error]
|
|
)
|
|
;
|
|
|
|
table_cell =
|
|
space
|
|
>> ch_p('[') [actions.start_cell]
|
|
>>
|
|
(
|
|
(
|
|
phrase
|
|
>> ch_p(']') [actions.end_cell]
|
|
>> space
|
|
)
|
|
| eps_p [actions.error]
|
|
)
|
|
;
|
|
|
|
xinclude =
|
|
"xinclude"
|
|
>> hard_space
|
|
>> (*(anychar_p -
|
|
close_bracket)) [actions.xinclude]
|
|
;
|
|
|
|
include =
|
|
"include"
|
|
>> hard_space
|
|
>>
|
|
!(
|
|
':'
|
|
>> (*((alnum_p | '_') - space_p))[assign_a(actions.include_doc_id)]
|
|
>> space
|
|
)
|
|
>> (*(anychar_p -
|
|
close_bracket)) [actions.include]
|
|
;
|
|
|
|
identifier =
|
|
+(anychar_p - (space_p | ']'))
|
|
;
|
|
|
|
code =
|
|
(
|
|
code_line
|
|
>> *(*eol >> code_line)
|
|
) [actions.code]
|
|
>> +eol
|
|
;
|
|
|
|
code_line =
|
|
((ch_p(' ') | '\t'))
|
|
>> *(anychar_p - eol) >> eol
|
|
;
|
|
|
|
list =
|
|
eps_p(ch_p('*') | '#') >>
|
|
+(
|
|
(*blank_p
|
|
>> (ch_p('*') | '#')) [actions.list_format]
|
|
>> *blank_p
|
|
>> list_item
|
|
) [actions.list_item]
|
|
;
|
|
|
|
list_item =
|
|
*( common
|
|
| (anychar_p -
|
|
( eol_p >> *blank_p >> eps_p(ch_p('*') | '#')
|
|
| (eol >> eol)
|
|
)
|
|
) [actions.plain_char]
|
|
)
|
|
>> +eol
|
|
;
|
|
|
|
paragraph_end_markups =
|
|
"section", "endsect", "h1", "h2", "h3", "h4", "h5", "h6",
|
|
"blurb", ":", "pre", "def", "table", "include"
|
|
;
|
|
|
|
paragraph_end =
|
|
'[' >> space >> paragraph_end_markups | eol >> eol
|
|
;
|
|
|
|
paragraph =
|
|
*( common
|
|
| (anychar_p - // Make sure we don't go past
|
|
paragraph_end // a single block.
|
|
) [actions.plain_char]
|
|
)
|
|
>> (eps_p('[') | +eol)
|
|
;
|
|
|
|
phrase =
|
|
*( common
|
|
| comment
|
|
| (anychar_p -
|
|
close_bracket) [actions.plain_char]
|
|
)
|
|
;
|
|
}
|
|
|
|
bool is_not_preformatted;
|
|
|
|
rule<Scanner> start_, blocks, block_markup, code, code_line,
|
|
paragraph, space, blank, comment, headings, h1, h2,
|
|
h3, h4, h5, h6, hr, blurb, blockquote, admonition,
|
|
phrase, list, close_bracket, ordered_list, def_macro,
|
|
identifier, table, table_row, variablelist,
|
|
varlistentry, varlistterm, varlistitem, table_cell,
|
|
preformatted, list_item, begin_section, end_section,
|
|
xinclude, include, hard_space, eol, paragraph_end;
|
|
symbols<> paragraph_end_markups;
|
|
|
|
phrase_grammar<Actions> common;
|
|
|
|
rule<Scanner> const&
|
|
start() const { return start_; }
|
|
};
|
|
|
|
Actions& actions;
|
|
};
|
|
}
|
|
|
|
#endif // BOOST_SPIRIT_QUICKBOOK_BLOCK_HPP
|
|
|
|
|