cond_field_serialization.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /**
  2. * Copyright (c) 2014 - 2018, Nordic Semiconductor ASA
  3. *
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without modification,
  7. * are permitted provided that the following conditions are met:
  8. *
  9. * 1. Redistributions of source code must retain the above copyright notice, this
  10. * list of conditions and the following disclaimer.
  11. *
  12. * 2. Redistributions in binary form, except as embedded into a Nordic
  13. * Semiconductor ASA integrated circuit in a product or a software update for
  14. * such product, must reproduce the above copyright notice, this list of
  15. * conditions and the following disclaimer in the documentation and/or other
  16. * materials provided with the distribution.
  17. *
  18. * 3. Neither the name of Nordic Semiconductor ASA nor the names of its
  19. * contributors may be used to endorse or promote products derived from this
  20. * software without specific prior written permission.
  21. *
  22. * 4. This software, with or without modification, must only be used with a
  23. * Nordic Semiconductor ASA integrated circuit.
  24. *
  25. * 5. Any software provided in binary form under this license must not be reverse
  26. * engineered, decompiled, modified and/or disassembled.
  27. *
  28. * THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA "AS IS" AND ANY EXPRESS
  29. * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30. * OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
  31. * DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE
  32. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  33. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  34. * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  35. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  36. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  37. * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  38. *
  39. */
  40. #ifndef COND_FIELD_SERIALIZATION_H__
  41. #define COND_FIELD_SERIALIZATION_H__
  42. #include <stdint.h>
  43. #ifdef __cplusplus
  44. extern "C" {
  45. #endif
  46. typedef uint32_t (*field_encoder_handler_t)(void const * const p_field,
  47. uint8_t * const p_buf,
  48. uint32_t buf_len,
  49. uint32_t * const p_index);
  50. typedef uint32_t (*field_decoder_handler_t)(uint8_t const * const p_buf,
  51. uint32_t buf_len,
  52. uint32_t * const p_index,
  53. void * p_field);
  54. /**@brief Function for safe encoding of a conditional field.
  55. *
  56. * Function sets a presence flag and checks if conditional field is provided. If the field is not NULL,
  57. * it calls the provided parser function which attempts to encode the field content to the buffer stream.
  58. *
  59. * @param[in] p_field Pointer to the input struct.
  60. * @param[in] p_buf Pointer to the beginning of the output buffer.
  61. * @param[in] buf_len Size of the buffer.
  62. * @param[in,out] p_index \c in: Index to the start of the uint8 value in the buffer.
  63. * \c out: Index in the buffer to the first byte after the encoded data.
  64. * @param[in] fp_field_encoder Pointer to the function which implements fields encoding.
  65. *
  66. * @return NRF_SUCCESS Fields encoded successfully.
  67. * @retval NRF_ERROR_INVALID_LENGTH Decoding failure. Incorrect buffer length.
  68. */
  69. uint32_t cond_field_enc(void const * const p_field,
  70. uint8_t * const p_buf,
  71. uint32_t buf_len,
  72. uint32_t * const p_index,
  73. field_encoder_handler_t fp_field_encoder);
  74. /**@brief Function for safe decoding of a conditional field.
  75. *
  76. * Function checks if conditional field is present in the input buffer. If it is set, it calls
  77. * the provided parser function which attempts to parse the buffer content to the known field.
  78. *
  79. * @param[in] p_buf Pointer to the beginning of the input buffer.
  80. * @param[in] buf_len Size of the buffer.
  81. * @param[in,out] p_index \c in: Index to the start of the uint8 value in the buffer.
  82. * \c out: Index in the buffer to the first byte after the decoded data.
  83. * @param[in] pp_field Pointer to output location.
  84. * @param[in] fp_field_decoder Pointer to the function which implements field decoding.
  85. *
  86. * @return NRF_SUCCESS Fields decoded successfully.
  87. * @retval NRF_ERROR_INVALID_LENGTH Decoding failure. Incorrect buffer length.
  88. */
  89. uint32_t cond_field_dec(uint8_t const * const p_buf,
  90. uint32_t buf_len,
  91. uint32_t * const p_index,
  92. void * * const pp_field,
  93. field_decoder_handler_t fp_field_decoder);
  94. #ifdef __cplusplus
  95. }
  96. #endif
  97. #endif // COND_FIELD_SERIALIZATION_H__