asn1c/skeletons/per_decoder.h

57 lines
1.7 KiB
C
Raw Normal View History

2005-11-26 11:25:14 +00:00
/*-
2007-06-26 08:24:50 +00:00
* Copyright (c) 2005, 2007 Lev Walkin <vlm@lionet.info>. All rights reserved.
2005-11-26 11:25:14 +00:00
* Redistribution and modifications are permitted subject to BSD license.
*/
#ifndef _PER_DECODER_H_
#define _PER_DECODER_H_
#include <asn_application.h>
#include <per_support.h>
#ifdef __cplusplus
extern "C" {
#endif
2005-12-07 05:46:03 +00:00
struct asn_TYPE_descriptor_s; /* Forward declaration */
2007-06-26 08:24:50 +00:00
/*
* Unaligned PER decoder of a "complete encoding" as per X.691#10.1.
* On success, this call always returns (.consumed >= 1), as per X.691#10.1.3.
*/
asn_dec_rval_t uper_decode_complete(struct asn_codec_ctx_s *opt_codec_ctx,
struct asn_TYPE_descriptor_s *type_descriptor, /* Type to decode */
void **struct_ptr, /* Pointer to a target structure's pointer */
const void *buffer, /* Data to be decoded */
size_t size /* Size of data buffer */
);
2005-12-07 05:46:03 +00:00
/*
* Unaligned PER decoder of any ASN.1 type. May be invoked by the application.
2007-06-26 08:24:50 +00:00
* WARNING: This call returns the number of BITS read from the stream. Beware.
2005-12-07 05:46:03 +00:00
*/
asn_dec_rval_t uper_decode(struct asn_codec_ctx_s *opt_codec_ctx,
struct asn_TYPE_descriptor_s *type_descriptor, /* Type to decode */
void **struct_ptr, /* Pointer to a target structure's pointer */
const void *buffer, /* Data to be decoded */
2006-09-17 11:02:53 +00:00
size_t size, /* Size of data buffer */
2006-09-18 20:05:55 +00:00
int skip_bits, /* Number of unused leading bits, 0..7 */
int unused_bits /* Number of unused tailing bits, 0..7 */
2005-12-07 05:46:03 +00:00
);
2005-11-26 11:25:14 +00:00
/*
* Type of the type-specific PER decoder function.
*/
typedef asn_dec_rval_t (per_type_decoder_f)(asn_codec_ctx_t *opt_codec_ctx,
struct asn_TYPE_descriptor_s *type_descriptor,
asn_per_constraints_t *constraints,
void **struct_ptr,
asn_per_data_t *per_data
);
#ifdef __cplusplus
}
#endif
#endif /* _PER_DECODER_H_ */