mirror of
https://github.com/boostorg/build.git
synced 2026-02-15 13:02:11 +00:00
New example
[SVN r36176]
This commit is contained in:
3
v2/example/generator/Jamroot
Normal file
3
v2/example/generator/Jamroot
Normal file
@@ -0,0 +1,3 @@
|
||||
|
||||
import soap ;
|
||||
exe foo : foo.gci : <server>on ;
|
||||
4
v2/example/generator/README.txt
Normal file
4
v2/example/generator/README.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
This example shows how to declare a new generator class. It's necessary
|
||||
when generator's logic is more complex that just running a single tool.
|
||||
|
||||
5
v2/example/generator/foo.gci
Normal file
5
v2/example/generator/foo.gci
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
int main()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
73
v2/example/generator/soap.jam
Normal file
73
v2/example/generator/soap.jam
Normal file
@@ -0,0 +1,73 @@
|
||||
|
||||
# This is example of a fictional code generator tool.
|
||||
# It accepts a single input of type '.gci' and produces
|
||||
# either one or two outputs of type .cpp, depending
|
||||
# on the value of the feature <server-mode>
|
||||
#
|
||||
# This example is loosely based on gSOAP code generator.
|
||||
|
||||
import type ;
|
||||
import generators ;
|
||||
import feature ;
|
||||
import common ;
|
||||
import "class" : new ;
|
||||
|
||||
type.register GCI : gci ;
|
||||
|
||||
feature.feature server : off on : incidental ;
|
||||
|
||||
class soap-generator : generator
|
||||
{
|
||||
import "class" : new ;
|
||||
|
||||
rule __init__ ( * : * )
|
||||
{
|
||||
generator.__init__ $(1) : $(2) : $(3) : $(4) : $(5) : $(6) : $(7) : $(8) : $(9) ;
|
||||
}
|
||||
|
||||
rule run ( project name ? : property-set : sources * )
|
||||
{
|
||||
if ! $(sources[2])
|
||||
{
|
||||
# Accept only single source.
|
||||
local t = [ $(sources[1]).type ] ;
|
||||
if $(t) = GCI
|
||||
{
|
||||
# The type is correct.
|
||||
|
||||
# If no output name is specified, guess it from sources.
|
||||
if ! $(name)
|
||||
{
|
||||
name = [ generator.determine-output-name $(sources) ] ;
|
||||
}
|
||||
|
||||
# Produce one output, using just copy.
|
||||
local a = [ new action $(sources[1])
|
||||
: common.copy : $(property-set) ] ;
|
||||
local t = [ new file-target $(name) : CPP : $(project)
|
||||
: $(a) ] ;
|
||||
|
||||
# If in server mode, create another output -- an
|
||||
# empty file. If this were a real SOAP generator, we
|
||||
# might have created a single action, and two targets
|
||||
# both using that action.
|
||||
local t2 ;
|
||||
if [ $(property-set).get <server> ] = "on"
|
||||
{
|
||||
local a = [ new action : soap.touch : $(property-set) ] ;
|
||||
t2 = [ new file-target $(name)_server : CPP : $(project)
|
||||
: $(a) ] ;
|
||||
}
|
||||
return $(t) $(t2) ;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
generators.register [ new soap-generator soap.soap : GCI : CPP ] ;
|
||||
|
||||
TOUCH = [ common.file-touch-command ] ;
|
||||
actions touch
|
||||
{
|
||||
$(TOUCH) $(<)
|
||||
}
|
||||
Reference in New Issue
Block a user