mirror of
https://github.com/boostorg/build.git
synced 2026-02-13 12:22:17 +00:00
130 lines
3.4 KiB
Plaintext
130 lines
3.4 KiB
Plaintext
import class : class new ;
|
|
import targets ;
|
|
import feature ;
|
|
import generators ;
|
|
import property ;
|
|
import property-set ;
|
|
import regex ;
|
|
import scanner ;
|
|
|
|
feature.feature xsl:param : : free ;
|
|
feature.feature format : html-single docbook : incidental implicit composite ;
|
|
|
|
type.register XML : xml ;
|
|
type.register DOCBOOK : docbook ;
|
|
type.register HTML : html ;
|
|
|
|
type.register XSLT : xsl ;
|
|
#generators.register-standard boostbook.xslt : XML XSLT : * ;
|
|
|
|
generators.register-standard boostbook.boostbook-to-docbook : XML : DOCBOOK ;
|
|
generators.register-standard boostbook.docbook-to-html-single
|
|
: DOCBOOK : HTML ;
|
|
|
|
rule xslt ( target : source stylesheet : properties * )
|
|
{
|
|
local flags ;
|
|
for local param in [ feature.get-values <xsl:param> : $(properties) ]
|
|
{
|
|
local namevalue = [ regex.split $(param) "=" ] ;
|
|
flags += --stringparam $(namevalue[1]) $(namevalue[2]) ;
|
|
}
|
|
|
|
STYLESHEET on $(target) = $(stylesheet) ;
|
|
FLAGS on $(target) = $(flags) ;
|
|
xslt-xsltproc $(target) : $(source) ;
|
|
}
|
|
|
|
rule boostbook-to-docbook ( target : source : properties * )
|
|
{
|
|
local dir = [ modules.peek : BOOST_ROOT ] ;
|
|
xslt $(target) : $(source) "$(dir)/tools/boostbook/xsl/docbook.xsl" : $(properties) ;
|
|
}
|
|
|
|
rule docbook-to-html-single ( target : source : properties * )
|
|
{
|
|
local dir = [ modules.peek : BOOST_ROOT ] ;
|
|
xslt $(target) : $(source) "$(dir)/tools/boostbook/xsl/html-single.xsl" : $(properties) ;
|
|
}
|
|
|
|
rule boostbook-target-class ( name : project : sources * : requirements *
|
|
: default-build * )
|
|
{
|
|
basic-target.__init__ $(name) : $(project) : $(sources) : $(requirements)
|
|
: $(default-build) ;
|
|
|
|
rule construct ( source-targets * : property-set )
|
|
{
|
|
local properties = [ $(property-set).raw ] ;
|
|
|
|
local format = [ feature.get-values <format> : $(properties) ] ;
|
|
local targets ;
|
|
|
|
local type = none ;
|
|
|
|
switch $(format)
|
|
{
|
|
case docbook : type = DOCBOOK ;
|
|
case html-single : type = HTML ;
|
|
}
|
|
|
|
for local i in $(source-targets)
|
|
{
|
|
targets += [ generators.construct ($self.project) : $(type)
|
|
: $(property-set) : $(i) ] ;
|
|
}
|
|
|
|
return $(targets) ;
|
|
}
|
|
}
|
|
|
|
class boostbook-target-class : basic-target ;
|
|
|
|
rule boostbook ( target-name : source : requirements * : default-build * )
|
|
{
|
|
local project = [ CALLER_MODULE ] ;
|
|
targets.main-target-alternative
|
|
[ new boostbook-target-class $(target-name) : $(project) : $(source)
|
|
: [ targets.main-target-requirements $(requirements) : $(project) ]
|
|
: [ targets.main-target-default-build $(default-build) : $(project) ]
|
|
] ;
|
|
}
|
|
|
|
actions xslt-xsltproc
|
|
{
|
|
XML_CATALOG_FILES=catalog.xml xsltproc $(FLAGS) --xinclude -o $(<) $(STYLESHEET) $(>)
|
|
}
|
|
|
|
# Mostly stolen from c-scanner :)
|
|
rule xinclude-scanner ( includes * )
|
|
{
|
|
scanner.__init__ ;
|
|
|
|
rule pattern ( )
|
|
{
|
|
return "xi:include[ ]*href=\"([^\"]*)\"" ;
|
|
}
|
|
|
|
rule process ( target : matches * )
|
|
{
|
|
local target_path = [ path.native [ path.parent [ path.make
|
|
[ virtual-target.binding $(target) ] ] ] ] ;
|
|
|
|
for local i in $(matches)
|
|
{
|
|
local i2 = [ SEARCH_FOR_TARGET $(i) : $(target_path) ] ;
|
|
INCLUDES $(target) : $(i2) ;
|
|
}
|
|
|
|
BINDRULE on $(matches) = virtual-target.remember-binding ;
|
|
|
|
for local j in $(matches)
|
|
{
|
|
scanner.install $(__name__) : $(j) : $(target) ;
|
|
}
|
|
}
|
|
}
|
|
|
|
class xinclude-scanner : scanner ;
|
|
scanner.register xinclude-scanner ;
|
|
type.set-scanner XML : xinclude-scanner ; |