asn1ct(3erl) | Erlang Module Definition | asn1ct(3erl) |
asn1ct - ASN.1 compiler and compile-time support functions
The ASN.1 compiler takes an ASN.1 module as input and generates a corresponding Erlang module, which can encode and decode the specified data types. Alternatively, the compiler takes a specification module specifying all input modules, and generates a module with encode/decode functions. In addition, some generic functions can be used during development of applications that handles ASN.1 data (encoded as BER or PER).
To revert to the old representation of the types, use option legacy_erlang_types.
Another change in OTP R16 is that the generated function encode/2 always returns a binary. Function encode/2 for the BER back end used to return an iolist.
compile(Asn1module) -> ok | {error, Reason}
compile(Asn1module, Options) -> ok | {error, Reason}
Types:
Compiles the ASN.1 module Asn1module and generates an Erlang module Asn1module.erl with encode and decode functions for the types defined in Asn1module. For each ASN.1 value defined in the module, an Erlang function that returns the value in Erlang representation is generated.
If Asn1module is a filename without extension, first ".asn1" is assumed, then ".asn", and finally ".py" (to be compatible with the old ASN.1 compiler). Asn1module can be a full pathname (relative or absolute) including filename with (or without) extension.
If it is needed to compile a set of ASN.1 modules into an Erlang file with encode/decode functions, ensure to list all involved files in a configuration file. This configuration file must have a double extension ".set.asn" (".asn" can alternatively be ".asn1" or ".py"). List the input file names within quotation marks (""), one at each row in the file. If the input files are File1.asn, File2.asn, and File3.asn, the configuration file must look as follows:
File1.asn File2.asn File3.asn
The output files in this case get their names from the configuration file. If the configuration file is named SetOfFiles.set.asn, the names of the output files are SetOfFiles.hrl, SetOfFiles.erl, and SetOfFiles.asn1db.
Sometimes in a system of ASN.1 modules, different default tag modes, for example, AUTOMATIC, IMPLICIT, or EXPLICIT. The multi-file compilation resolves the default tagging as if the modules were compiled separately.
Name collisions is another unwanted effect that can occur in multi file-compilation. The compiler solves this problem in one of two ways:
If a name collision occurs, the compiler reports a "NOTICE: ..." message that tells if a definition was renamed, and the new name that must be used to encode/decode data.
Options is a list with options specific for the ASN.1 compiler and options that are applied to the Erlang compiler. The latter are not recognized as ASN.1 specific. The available options are as follows:
The generated Erlang module always gets the same name as the ASN.1 module. Therefore, only one encoding rule per ASN.1 module can be used at runtime.
For details, see Section Map representation for SEQUENCE and SET in the User's Guide.
For details, see Section BIT STRING in the User's Guide.
This option implies option legacy_erlang_types.
For details, see Section BIT STRING in the User's Guide
This option implies option legacy_erlang_types.
For details, see Section BIT STRING and Section OCTET STRING in the User's Guide.
This option is not recommended for new code. This option cannot be combined with the option maps.
If EnumTypeName does not exist in the ASN.1 specification, the compilation stops with an error code.
The generated conversion functions are named name2num_EnumTypeName/1 and num2name_EnumTypeName/1.
For instructions for exclusive decode, see Section Exclusive Decode in the User's Guide.
For instructions for selective decode, see Section Selective Decode in the User's Guide.
Any more option that is applied is passed to the final step when the generated .erl file is compiled.
The compiler generates the following files:
value(Module, Type) -> {ok, Value} | {error, Reason}
Types:
Returns an Erlang term that is an example of a valid Erlang representation of a value of the ASN.1 type Type. The value is a random value and subsequent calls to this function will for most types return different values.
test(Module) -> ok | {error, Reason}
test(Module, Type | Options) -> ok | {error, Reason}
test(Module, Type, Value | Options) -> ok | {error, Reason}
Types:
Performs a test of encode and decode of types in Module. The generated functions are called by this function. This function is useful during test to secure that the generated encode and decode functions as well as the general runtime support work as expected.
Schematically, the following occurs for each type in the module:
{ok, Value} = asn1ct:value(Module, Type), {ok, Bytes} = Module:encode(Type, Value), {ok, Value} = Module:decode(Type, Bytes).
The test functions use the *.asn1db files for all included modules. If they are located in a different directory than the current working directory, use the include option to add paths. This is only needed when automatically generating values. For static values using Value no options are needed.
asn1 5.0.8 | Ericsson AB |