blob: 6a7b68125c42f68e87d509cde15e032d9e9b684d [file] [log] [blame]
Lev Walkincc159472017-07-06 08:26:36 -07001/*
2 * Copyright (c) 2017 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
Lev Walkind88bea92017-07-20 11:21:30 +03005#ifndef OER_ENCODER_H
6#define OER_ENCODER_H
Lev Walkincc159472017-07-06 08:26:36 -07007
8#include <asn_application.h>
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14struct asn_TYPE_descriptor_s; /* Forward declaration */
15
16/*
17 * The Octet Encoding Rules (OER, X.696 08/2015) encoder for any type.
18 * This function may be invoked directly by the application.
Lev Walkin28647742017-09-12 11:07:06 -070019 * Produces CANONICAL-OER output compatible with CANONICAL-OER
20 * and BASIC-OER decoders.
Lev Walkincc159472017-07-06 08:26:36 -070021 */
Lev Walkin20696a42017-10-17 21:27:33 -070022asn_enc_rval_t oer_encode(const struct asn_TYPE_descriptor_s *type_descriptor,
23 const void *struct_ptr, /* Structure to be encoded */
Lev Walkin4558ad02017-07-10 05:21:30 -070024 asn_app_consume_bytes_f *consume_bytes_cb,
25 void *app_key /* Arbitrary callback argument */
Lev Walkin20696a42017-10-17 21:27:33 -070026);
Lev Walkincc159472017-07-06 08:26:36 -070027
28/* A variant of oer_encode() which encodes data into the pre-allocated buffer */
29asn_enc_rval_t oer_encode_to_buffer(
Lev Walkin20696a42017-10-17 21:27:33 -070030 const struct asn_TYPE_descriptor_s *type_descriptor,
Lev Walkin494fb702017-08-07 20:07:00 -070031 const asn_oer_constraints_t *constraints,
Lev Walkin20696a42017-10-17 21:27:33 -070032 const void *struct_ptr, /* Structure to be encoded */
33 void *buffer, /* Pre-allocated buffer */
34 size_t buffer_size /* Initial buffer size (maximum) */
35);
Lev Walkincc159472017-07-06 08:26:36 -070036
37/*
38 * Type of the generic OER encoder.
39 */
Lev Walkin4558ad02017-07-10 05:21:30 -070040typedef asn_enc_rval_t(oer_type_encoder_f)(
Lev Walkin20696a42017-10-17 21:27:33 -070041 const struct asn_TYPE_descriptor_s *type_descriptor,
Lev Walkin494fb702017-08-07 20:07:00 -070042 const asn_oer_constraints_t *constraints,
Lev Walkin20696a42017-10-17 21:27:33 -070043 const void *struct_ptr, /* Structure to be encoded */
Lev Walkin4558ad02017-07-10 05:21:30 -070044 asn_app_consume_bytes_f *consume_bytes_cb, /* Callback */
45 void *app_key /* Arbitrary callback argument */
Lev Walkin20696a42017-10-17 21:27:33 -070046);
Lev Walkincc159472017-07-06 08:26:36 -070047
Lev Walkin312795a2017-10-17 15:48:34 -070048/*
49 * Write out the Open Type (X.696 (08/2015), #30).
50 * RETURN VALUES:
Lev Walkin42f6c882017-10-20 02:39:08 -070051 * -1: Fatal error encoding the type.
52 * >0: Number of bytes serialized.
Lev Walkin312795a2017-10-17 15:48:34 -070053 */
Lev Walkin20696a42017-10-17 21:27:33 -070054ssize_t oer_open_type_put(const struct asn_TYPE_descriptor_s *td,
Lev Walkin312795a2017-10-17 15:48:34 -070055 const asn_oer_constraints_t *constraints,
Lev Walkin20696a42017-10-17 21:27:33 -070056 const void *struct_ptr,
Lev Walkin312795a2017-10-17 15:48:34 -070057 asn_app_consume_bytes_f *consume_bytes_cb,
58 void *app_key);
59
Lev Walkincc159472017-07-06 08:26:36 -070060
Lev Walkinb5b524b2017-10-13 03:14:03 -070061/*
62 * Length-prefixed buffer encoding for primitive types.
63 */
64oer_type_encoder_f oer_encode_primitive;
65
Lev Walkincc159472017-07-06 08:26:36 -070066#ifdef __cplusplus
67}
68#endif
69
Lev Walkind88bea92017-07-20 11:21:30 +030070#endif /* OER_ENCODER_H */