-
Notifications
You must be signed in to change notification settings - Fork 526
Sbe Tool Guide
Martin Thompson edited this page Jan 10, 2020
·
92 revisions
The SBE tool is a command line utility that can be used to generate codecs and validate message declaration schemas. The tool is written in Java and can run as an executable JAR file, e.g:
$ java -jar sbe-all-1.16.0.jar <message-declarations-file.xml>
The tool will accept options using the system property option format as follows:
$ java [-Doption=value] -jar sbe-all-1.16.0.jar <message-declarations-file.xml>
The tool supports the following options:
-
sbe.xinclude.aware
: Is XInclude supported for the schema. Defaults to false. -
sbe.validation.xsd
: Use XSD to validate or not. XSD filename should be the provided option. -
sbe.validation.stop.on.error
: Should the parser stop on first error encountered? Defaults to false. -
sbe.validation.warnings.fatal
: Are warnings in parsing considered fatal? Defaults to false. -
sbe.validation.suppress.output
: Should the parser suppress output during validation? Defaults to false. -
sbe.generate.stubs
: Generate stubs or not. Defaults to true. -
sbe.target.language
: Target language for code generation, defaults to Java (also supports CPP and Golang). Additionally a fully qualified class name can be provided which implementsuk.co.real_logic.sbe.generation.TargetCodeGeneratorLoader
. -
sbe.generate.ir
: Generate IR or not. Defaults to false. -
sbe.output.dir
: Target directory for output generation, defaults to current directory. -
sbe.java.generate.interfaces
: Generate implements clauses for Java common interfaces from Agrona. Defaults to false. -
sbe.java.encoding.buffer.type
: Buffer type to be used for the encoder stubs. This type needs to mutate the underlying buffer. -
sbe.java.decoding.buffer.type
: Buffer type to be used for the decoder stubs. This type only reads the underlying buffer. -
sbe.target.namespace
: Namespace to be used for generated code. Equates package for Java. If not provided then thepackage
attribute from the schema will be used. -
sbe.cpp.namespaces.collapse
: Boolean to turn on or off collapsing of nested namespaces in generated C++ stubs. Defaults to false. -
sbe.java.generate.group-order.annotation
: Should theGroupOrder
annotation be generated, defaults to false. -
sbe.keyword.append.token
: String to append to schema tokens that collide with reserved words in the target language. -
sbe.decode.unknown.enum.values
: Support unknown decoded enum values. -
sbe.csharp.generate.namespace.dir
: Should a directory be created for the namespace under the output directory? Defaults to true
The SBE tool can be used with Maven see