blob: b14a1555ba72fdb279157f3c018bdae948977e0a [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001#ifndef _ASN1_COMPILER_MISC_H_
2#define _ASN1_COMPILER_MISC_H_
3
4/*
5 * Make the target language identifier out of one or more names.
6 * The function will concatenate the names and replace unsafe characters
7 * with safe ones.
8 */
Lev Walkin801fabc2005-01-28 12:18:50 +00009enum ami_flags_e {
10 AMI_MASK_ONLY_SPACES = 1, /* Mask only spaces, everything else's safe */
11 AMI_CHECK_RESERVED = 2, /* Check against reserved keywords */
Lev Walkin22b5ed42006-09-13 02:51:20 +000012 AMI_NODELIMITER = 4, /* Do not put delimiter, just concatenate */
Lev Walkin801fabc2005-01-28 12:18:50 +000013};
Lev Walkina00d6b32006-03-21 03:40:38 +000014char *asn1c_make_identifier(enum ami_flags_e, asn1p_expr_t *expr, ...);
Lev Walkinf15320b2004-06-03 03:38:44 +000015
16/*
17 * Return the type name of the specified expression.
18 */
19enum tnfmt {
Lev Walkin801fabc2005-01-28 12:18:50 +000020 TNF_UNMODIFIED = 0x10, /* Return unmodified type name */
21 TNF_INCLUDE = 0x20, /* Format for #include <> */
22 TNF_CTYPE = 0x30, /* Format as normal C-ish type (append "_t") */
23 TNF_SAFE = 0x40, /* Replace unsafe characters with _ */
24 TNF_RSAFE = 0x50, /* Recursion-safe C type format */
Lev Walkinf15320b2004-06-03 03:38:44 +000025};
26char *asn1c_type_name(arg_t *arg, asn1p_expr_t *expr, enum tnfmt _format);
27
Lev Walkin082cadc2005-08-14 02:18:27 +000028/*
29 * Check whether the specified INTEGER or ENUMERATED type can be represented
30 * using the generic 'long' type.
31 * Return values:
32 * FL_NOTFIT: No, it cannot be represented using long.
33 * FL_FITSOK: It can be represented using long.
34 * FL_FORCED: Probably can't, but -fnative-types is in force.
35 */
36enum asn1c_fitslong_e {
37 FL_NOTFIT,
38 FL_FITSOK,
39 FL_FORCED,
40};
41enum asn1c_fitslong_e asn1c_type_fits_long(arg_t *arg, asn1p_expr_t *expr);
42
Lev Walkinf15320b2004-06-03 03:38:44 +000043#endif /* _ASN1_COMPILER_MISC_H_ */