orber_tc
Module
Module Summary
Description
This module contains some functions that gives support in creating IDL typecodes that can be used in for example the any types typecode field. For the simple types it is meaningless to use this API but the functions exist to get the interface complete.
The type TC used below describes an IDL type and is a tuple according to the to the Erlang language mapping.
Exports
null() -> TC
void() -> TC
short() -> TC
unsigned_short() -> TC
long() -> TC
unsigned_long() -> TC
long_long() -> TC
unsigned_long_long() -> TC
wchar() -> TC
float() -> TC
double() -> TC
boolean() -> TC
char() -> TC
octet() -> TC
any() -> TC
typecode() -> TC
principal() -> TC
These functions return the IDL typecodes for simple types.
object_reference(Id, Name) -> TC
Types
Function returns the IDL typecode for object_reference.
struct(Id, Name, ElementList) -> TC
Types
Function returns the IDL typecode for struct.
union(Id, Name, DiscrTC, Default, ElementList) -> TC
Types
Function returns the IDL typecode for union.
enum(Id, Name, ElementList) -> TC
Types
Function returns the IDL typecode for enum.
Types
Function returns the IDL typecode for string.
Types
Function returns the IDL typecode for wstring.
Types
Function returns the IDL typecode for fixed.
sequence(ElemTC, Length) -> TC
Types
Function returns the IDL typecode for sequence.
Types
Function returns the IDL typecode for array.
alias(Id, Name, AliasTC) -> TC
Types
Function returns the IDL typecode for alias.
exception(Id, Name, ElementList) -> TC
Types
Function returns the IDL typecode for exception.
get_tc(Object) -> TC
get_tc(Id) -> TC
Types
If the get_tc/1 gets a record that is and IDL specified struct, union or exception as a parameter it returns the typecode.
If the parameter is a repository ID it uses the Interface Repository to get the typecode.
Function checks the syntax of an IDL typecode.