asn1c/skeletons/xer_encoder.h

60 lines
1.7 KiB
C
Raw Permalink Normal View History

2004-09-22 16:06:28 +00:00
/*-
* Copyright (c) 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
* Redistribution and modifications are permitted subject to BSD license.
*/
#ifndef _XER_ENCODER_H_
#define _XER_ENCODER_H_
2004-09-24 21:00:50 +00:00
#include <asn_application.h>
2004-09-22 16:06:28 +00:00
2005-07-24 09:03:44 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2004-09-29 13:26:15 +00:00
struct asn_TYPE_descriptor_s; /* Forward declaration */
2004-09-22 16:06:28 +00:00
/* Flags used by the xer_encode() and (*xer_type_encoder_f), defined below */
enum xer_encoder_flags_e {
/* Mode of encoding */
XER_F_BASIC = 0x01, /* BASIC-XER (pretty-printing) */
2006-03-17 02:40:30 +00:00
XER_F_CANONICAL = 0x02 /* Canonical XER (strict rules) */
2004-09-22 16:06:28 +00:00
};
/*
* The XER encoder of any type. May be invoked by the application.
*/
2004-09-29 13:26:15 +00:00
asn_enc_rval_t xer_encode(struct asn_TYPE_descriptor_s *type_descriptor,
2004-09-22 16:06:28 +00:00
void *struct_ptr, /* Structure to be encoded */
enum xer_encoder_flags_e xer_flags,
asn_app_consume_bytes_f *consume_bytes_cb,
void *app_key /* Arbitrary callback argument */
);
/*
* The variant of the above function which dumps the BASIC-XER (XER_F_BASIC)
* output into the chosen file pointer.
* RETURN VALUES:
* 0: The structure is printed.
* -1: Problem printing the structure.
* WARNING: No sensible errno value is returned.
*/
2004-09-29 13:26:15 +00:00
int xer_fprint(FILE *stream, struct asn_TYPE_descriptor_s *td, void *sptr);
2004-09-22 16:06:28 +00:00
/*
* Type of the generic XER encoder.
*/
typedef asn_enc_rval_t (xer_type_encoder_f)(
2004-09-29 13:26:15 +00:00
struct asn_TYPE_descriptor_s *type_descriptor,
2004-09-22 16:06:28 +00:00
void *struct_ptr, /* Structure to be encoded */
int ilevel, /* Level of indentation */
enum xer_encoder_flags_e xer_flags,
asn_app_consume_bytes_f *consume_bytes_cb, /* Callback */
void *app_key /* Arbitrary callback argument */
);
2005-07-24 09:03:44 +00:00
#ifdef __cplusplus
}
#endif
2004-09-22 16:06:28 +00:00
#endif /* _XER_ENCODER_H_ */