blob: 26bedfb9b84da90bbafa437a1a43f6d307e5cbbc [file] [log] [blame]
Lev Walkin41ba1f22004-09-14 12:46:35 +00001/*-
Lev Walkin20696a42017-10-17 21:27:33 -07002 * Copyright (c) 2004-2017 Lev Walkin <vlm@lionet.info>. All rights reserved.
Lev Walkin41ba1f22004-09-14 12:46:35 +00003 * Redistribution and modifications are permitted subject to BSD license.
4 */
5#ifndef ASN_TYPE_REAL_H
6#define ASN_TYPE_REAL_H
7
Lev Walkin11c3e172004-09-24 21:00:50 +00008#include <asn_application.h>
Lev Walkin3256d6f2004-10-21 11:22:12 +00009#include <asn_codecs_prim.h>
Lev Walkin41ba1f22004-09-14 12:46:35 +000010
Lev Walkin21b41ac2005-07-24 09:03:44 +000011#ifdef __cplusplus
12extern "C" {
13#endif
14
Lev Walkin8e8078a2004-09-26 13:10:40 +000015typedef ASN__PRIMITIVE_TYPE_t REAL_t;
Lev Walkin41ba1f22004-09-14 12:46:35 +000016
Lev Walkin5e033762004-09-29 13:26:15 +000017extern asn_TYPE_descriptor_t asn_DEF_REAL;
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +080018extern asn_TYPE_operation_t asn_OP_REAL;
Lev Walkin41ba1f22004-09-14 12:46:35 +000019
20asn_struct_print_f REAL_print;
Lev Walkincd2f48e2017-08-10 02:14:59 -070021asn_struct_compare_f REAL_compare;
Lev Walkin43292722017-10-05 00:33:32 -070022oer_type_decoder_f REAL_decode_oer;
23oer_type_encoder_f REAL_encode_oer;
Lev Walkin725883b2006-10-09 12:07:58 +000024per_type_decoder_f REAL_decode_uper;
25per_type_encoder_f REAL_encode_uper;
Lev Walkin43292722017-10-05 00:33:32 -070026xer_type_decoder_f REAL_decode_xer;
27xer_type_encoder_f REAL_encode_xer;
Lev Walkina5972be2017-09-29 23:15:58 -070028asn_random_fill_f REAL_random_fill;
Lev Walkin41ba1f22004-09-14 12:46:35 +000029
Bi-Ruei, Chiu1fa31c92016-05-16 13:50:09 +080030#define REAL_free ASN__PRIMITIVE_TYPE_free,
31#define REAL_constraint asn_generic_no_constraint
32#define REAL_decode_ber ber_decode_primitive
33#define REAL_encode_der der_encode_primitive
34
Lev Walkin41ba1f22004-09-14 12:46:35 +000035/***********************************
36 * Some handy conversion routines. *
37 ***********************************/
38
Lev Walkina9cc46e2004-09-22 16:06:28 +000039ssize_t REAL__dump(double d, int canonical, asn_app_consume_bytes_f *cb, void *app_key);
40
Lev Walkin41ba1f22004-09-14 12:46:35 +000041/*
42 * Convert between native double type and REAL representation (DER).
43 * RETURN VALUES:
44 * 0: Value converted successfully
Tim Gates4195e8f2020-12-15 06:49:42 +110045 * -1: An error occurred while converting the value: invalid format.
Lev Walkin41ba1f22004-09-14 12:46:35 +000046 */
Lev Walkin5e033762004-09-29 13:26:15 +000047int asn_REAL2double(const REAL_t *real_ptr, double *d);
48int asn_double2REAL(REAL_t *real_ptr, double d);
Lev Walkin41ba1f22004-09-14 12:46:35 +000049
Lev Walkin68079d32017-10-08 15:41:20 -070050/*
51 * Downcast double to float while checking that no overflow occurs.
52 * This allows stricter control of the input data.
53 * RETURN VALUES:
54 * 0: The conversion was successful (perhaps with a loss of precision)
55 * -1: The conversion created overflow into infinities.
56 * The (outcome) is ALWAYS set to a value you'd expect from the
57 * standard silent float to double conversion behavior.
58 */
59int asn_double2float(double d, float *outcome);
60
Lev Walkin21b41ac2005-07-24 09:03:44 +000061#ifdef __cplusplus
62}
63#endif
64
Lev Walkin41ba1f22004-09-14 12:46:35 +000065#endif /* ASN_TYPE_REAL_H */