asn1c/skeletons/xer_encoder.c

68 lines
1.5 KiB
C
Raw Normal View History

2004-09-22 16:06:28 +00:00
/*-
* Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
* Redistribution and modifications are permitted subject to BSD license.
*/
#include <asn_internal.h>
#include <stdio.h>
#include <errno.h>
/*
* The XER encoder of any type. May be invoked by the application.
*/
asn_enc_rval_t
2004-09-29 13:26:15 +00:00
xer_encode(asn_TYPE_descriptor_t *td, void *sptr,
2004-09-22 16:06:28 +00:00
enum xer_encoder_flags_e xer_flags,
asn_app_consume_bytes_f *cb, void *app_key) {
asn_enc_rval_t er, tmper;
const char *mname;
size_t mlen;
int xcan = (xer_flags & XER_F_CANONICAL) ? 1 : 2;
2004-10-03 09:13:02 +00:00
if(!td || !sptr) goto cb_failed;
2004-09-22 16:06:28 +00:00
2004-10-20 15:50:55 +00:00
mname = td->xml_tag;
2004-09-22 16:06:28 +00:00
mlen = strlen(mname);
_ASN_CALLBACK3("<", 1, mname, mlen, ">", 1);
tmper = td->xer_encoder(td, sptr, 1, xer_flags, cb, app_key);
if(tmper.encoded == -1) return tmper;
2004-10-03 09:13:02 +00:00
_ASN_CALLBACK3("</", 2, mname, mlen, ">\n", xcan);
2004-09-22 16:06:28 +00:00
2004-10-03 09:13:02 +00:00
er.encoded = 4 + xcan + (2 * mlen) + tmper.encoded;
2004-09-22 16:06:28 +00:00
2005-11-26 11:25:14 +00:00
_ASN_ENCODED_OK(er);
2004-10-03 09:13:02 +00:00
cb_failed:
_ASN_ENCODE_FAILED;
2004-09-22 16:06:28 +00:00
}
2004-09-23 22:06:26 +00:00
/*
2004-09-24 21:00:50 +00:00
* This is a helper function for xer_fprint, which directs all incoming data
2004-09-23 22:06:26 +00:00
* into the provided file descriptor.
*/
static int
xer__print2fp(const void *buffer, size_t size, void *app_key) {
FILE *stream = (FILE *)app_key;
if(fwrite(buffer, 1, size, stream) != size)
return -1;
return 0;
}
2004-09-22 16:06:28 +00:00
int
2004-09-29 13:26:15 +00:00
xer_fprint(FILE *stream, asn_TYPE_descriptor_t *td, void *sptr) {
2004-09-22 16:06:28 +00:00
asn_enc_rval_t er;
if(!stream) stream = stdout;
if(!td || !sptr)
return -1;
2004-09-23 22:06:26 +00:00
er = xer_encode(td, sptr, XER_F_BASIC, xer__print2fp, stream);
2004-09-22 16:06:28 +00:00
if(er.encoded == -1)
return -1;
return fflush(stream);
}