blob: 44d8e8ac62fdac9d0026642e61544aaa2d8f2168 [file] [log] [blame]
Lev Walkin523de9e2006-08-18 01:34:18 +00001/*-
Lev Walkin20696a42017-10-17 21:27:33 -07002 * Copyright (c) 2006-2017 Lev Walkin <vlm@lionet.info>. All rights reserved.
Lev Walkin523de9e2006-08-18 01:34:18 +00003 * Redistribution and modifications are permitted subject to BSD license.
4 */
5#ifndef _PER_ENCODER_H_
6#define _PER_ENCODER_H_
7
8#include <asn_application.h>
9#include <per_support.h>
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15struct asn_TYPE_descriptor_s; /* Forward declaration */
16
17/*
18 * Unaligned PER encoder of any ASN.1 type. May be invoked by the application.
Lev Walkin62258e22007-06-23 23:50:25 +000019 * WARNING: This function returns the number of encoded bits in the .encoded
20 * field of the return value. Use the following formula to convert to bytes:
21 * bytes = ((.encoded + 7) / 8)
Lev Walkin523de9e2006-08-18 01:34:18 +000022 */
Lev Walkin20696a42017-10-17 21:27:33 -070023asn_enc_rval_t uper_encode(
24 const struct asn_TYPE_descriptor_s *type_descriptor,
Lev Walkin56153042017-10-24 00:47:03 -070025 const asn_per_constraints_t *constraints,
Lev Walkin20696a42017-10-17 21:27:33 -070026 const void *struct_ptr, /* Structure to be encoded */
27 asn_app_consume_bytes_f *consume_bytes_cb, /* Data collector */
28 void *app_key /* Arbitrary callback argument */
Lev Walkin523de9e2006-08-18 01:34:18 +000029);
30
Lev Walkin62258e22007-06-23 23:50:25 +000031/*
32 * A variant of uper_encode() which encodes data into the existing buffer
33 * WARNING: This function returns the number of encoded bits in the .encoded
34 * field of the return value.
35 */
Lev Walkin523de9e2006-08-18 01:34:18 +000036asn_enc_rval_t uper_encode_to_buffer(
Lev Walkin20696a42017-10-17 21:27:33 -070037 const struct asn_TYPE_descriptor_s *type_descriptor,
Lev Walkin56153042017-10-24 00:47:03 -070038 const asn_per_constraints_t *constraints,
Lev Walkin20696a42017-10-17 21:27:33 -070039 const void *struct_ptr, /* Structure to be encoded */
40 void *buffer, /* Pre-allocated buffer */
41 size_t buffer_size /* Initial buffer size (max) */
Lev Walkin523de9e2006-08-18 01:34:18 +000042);
43
Lev Walkin62258e22007-06-23 23:50:25 +000044/*
45 * A variant of uper_encode_to_buffer() which allocates buffer itself.
46 * Returns the number of bytes in the buffer or -1 in case of failure.
47 * WARNING: This function produces a "Production of the complete encoding",
Lev Walkina2987ea2007-06-26 23:56:54 +000048 * with length of at least one octet. Contrast this to precise bit-packing
Lev Walkin62258e22007-06-23 23:50:25 +000049 * encoding of uper_encode() and uper_encode_to_buffer().
50 */
51ssize_t uper_encode_to_new_buffer(
Lev Walkin20696a42017-10-17 21:27:33 -070052 const struct asn_TYPE_descriptor_s *type_descriptor,
53 const asn_per_constraints_t *constraints,
54 const void *struct_ptr, /* Structure to be encoded */
55 void **buffer_r /* Buffer allocated and returned */
Lev Walkin62258e22007-06-23 23:50:25 +000056);
Lev Walkin523de9e2006-08-18 01:34:18 +000057
58/*
59 * Type of the generic PER encoder function.
60 */
Lev Walkin20696a42017-10-17 21:27:33 -070061typedef asn_enc_rval_t(per_type_encoder_f)(
62 const struct asn_TYPE_descriptor_s *type_descriptor,
63 const asn_per_constraints_t *constraints, const void *struct_ptr,
64 asn_per_outp_t *per_output);
Lev Walkin523de9e2006-08-18 01:34:18 +000065
66#ifdef __cplusplus
67}
68#endif
69
70#endif /* _PER_ENCODER_H_ */