NWCRG V. Roca (Ed.) Internet-Draft INRIA Intended status: Informational J. Detchart Expires: January 3, 2019 ISAE - Supaero C. Adjih INRIA M. Pedersen Steinwurf ApS July 2, 2018 Generic Application Programming Interface (API) for Sliding Window FEC Codes draft-roca-nwcrg-generic-fec-api-02 Abstract This document introduces a generic Application Programming Interface (API) for sliding window FEC codes. This API is meant to be compatible with any sliding window FEC code. It defines the core procedures and functions meant to control the codec (i.e., implementation of the FEC code). However, it leaves out all upper layer aspects that are the responsibility of the application or protocol making use of the codec. As a consequence, this is not an API for a FEC Scheme since certain mechanisms that must be defined by any FEC Scheme (e.g., signalling and FEC Payload IDs) are the responsibility of the caller instead of being addressed by the codec. A first goal of this document is to pave the way for a future open- source implementation of such codes, another goal is to simplify the development of content delivery protocols that rely on sliding window FEC codes for robust transmissions. Status of This Memo This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79. Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet- Drafts is at https://datatracker.ietf.org/drafts/current/. Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress." This Internet-Draft will expire on January 3, 2019. Roca (Ed.), et al. Expires January 3, 2019 [Page 1] Internet-Draft Generic API July 2018 Copyright Notice Copyright (c) 2018 IETF Trust and the persons identified as the document authors. All rights reserved. This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License. Table of Contents 1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 3 2. Definitions and Abbreviations . . . . . . . . . . . . . . . . 3 3. AL-FEC Codes and Mechanisms Considered by the Generic API . . 4 3.1. Mechanisms Considered or Ignored by the API . . . . . . . 5 4. Generic API for Sliding Window FEC Codes . . . . . . . . . . 6 4.1. General Definitions Common to the Encoder and Decoder . . 6 4.2. Coding Window Functions at an Encoder and Decoder . . . . 7 4.3. Coding Coefficients Functions at an Encoder and Decoder . 10 4.4. Encoder . . . . . . . . . . . . . . . . . . . . . . . . . 12 4.5. Decoder . . . . . . . . . . . . . . . . . . . . . . . . . 15 5. Security Considerations . . . . . . . . . . . . . . . . . . . 20 6. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 20 7. Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . 20 8. References . . . . . . . . . . . . . . . . . . . . . . . . . 20 8.1. Normative References . . . . . . . . . . . . . . . . . . 20 8.2. Informative References . . . . . . . . . . . . . . . . . 21 Appendix A. Existing APIs . . . . . . . . . . . . . . . . . . . 22 A.1. Morten API proposal . . . . . . . . . . . . . . . . . . . 22 A.1.1. Encoder . . . . . . . . . . . . . . . . . . . . . . . 22 A.1.2. Decoder . . . . . . . . . . . . . . . . . . . . . . . 25 A.2. Jonathan API proposal . . . . . . . . . . . . . . . . . . 28 A.3. Cedric API proposal . . . . . . . . . . . . . . . . . . . 33 A.4. Vincent API proposal . . . . . . . . . . . . . . . . . . 34 A.4.1. General . . . . . . . . . . . . . . . . . . . . . . . 34 A.4.2. Session Management . . . . . . . . . . . . . . . . . 35 A.4.3. Callback Functions . . . . . . . . . . . . . . . . . 37 A.4.4. Coding window functions . . . . . . . . . . . . . . . 38 A.4.5. Coding coefficients functions . . . . . . . . . . . . 38 A.4.6. Encoder specific functions . . . . . . . . . . . . . 40 A.4.7. Decoder specific functions . . . . . . . . . . . . . 40 Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 42 Roca (Ed.), et al. Expires January 3, 2019 [Page 2] Internet-Draft Generic API July 2018 1. Introduction Forward Erasure Correction (FEC) codes are a key element of communication systems, used to efficiently recover from packet losses during content delivery sessions. Among the FEC codes working at the network and higher layers, one can broadly distinguish block codes and sliding window codes. Block FEC codes require the data flow coming from the application to be segmented into blocks of a predefined maximum size, before generating a certain number of repair packets. With the second type of FEC codes, an encoding window continuously slides over the set of source data and repair packets are generated at any time by computing for instance a linear combination of data present in the encoding window. This fundamental difference seriously impacts the way they can be used by a content delivery protocol or application. This document introduces a generic Application Programming Interface (API) for sliding window FEC codes. This API is meant to be usable by any sliding window FEC code and FEC Scheme independently of the protocol that may rely on it. This API defines the core procedures and functions meant to control the codec (i.e., implementation of the FEC code), but leaves out all upper layer aspects that are the responsibility of the application making use of the codec. This API is meant to be usable by any sliding window FEC code. independently of the FEC Scheme or network coding protocol that may rely on it This API defines the core procedures and functions meant to control the codec (i.e., implementation of the FEC code), but leaves out all upper layer aspects that are the responsibility of the application making use of the codec. For instance, those restricted to end-to-end use-cases as well as those compatible with in-network re-encoding use-cases. Additionally, this API is not impacted by the intra-flow versus inter-flow nature of the use-case, nor is it impacted by the single-path versus multi-paths nature of the use- case, since those are usage considerations under the responsibility of the caller. A goal of this document is to pave the way for a future open-source implementation of such codes. 2. Definitions and Abbreviations The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [RFC2119]. This document uses the following definitions and abbreviations: Roca (Ed.), et al. Expires January 3, 2019 [Page 3] Internet-Draft Generic API July 2018 XXX 3. AL-FEC Codes and Mechanisms Considered by the Generic API This generic FEC API is meant to be used with: o sliding window codes, that manage an encoding window (of fixed or variable size) that slides over the set of source symbols at the sender. On the opposite, block codes (e.g., Reed-Solomon, LDPC, Raptor(Q)) are out of scope; o codes that are restricted to use-cases that involve a single encoding point and a single decoding point (i.e., FEC operations are carried out either within the end-hosts or middle-boxes), as well as codes that can be used with use-cases that involve in- network re-coding operations; o use-cases that are limited to an intra-flow coding (simple case), as well as use-cases that involve inter-flow coding. This second case is more complex to address (e.g., with questions such as how to identify a packet of a flow?) however this is the responsibility of the application or protocol using this codec and not the codec itself. This aspect is therefore transparent to the API; o use-cases that are limited to single-path communications and use- cases that consider multi-path communications. Here also this is a usage consideration that is transparent to the API; o use-cases that involve a dynamic adaptation of the codec parameters (e.g., its code rate because the communication path losses is known thanks to feedbacks and an appropriate strategy can be defined); o fixed code rate or not FEC codes, including rateless codes where the number of repair symbols that can be generated is huge (in theory unlimited); o ideal (MDS) or non-ideal (non-MDS) codes. However most of the time, sliding window codes are non-ideal codes, meaning that slightly more than l repair symbols may be required to recover all the l lost source symbols; A key question is to determine what mechanisms are included in the codec and what mechanisms are left to the responsibility of the caller (i.e., an application or a protocol making use of this codec) (Figure 1). More precisely, an FEC Scheme (such as the RLC FEC Scheme [RLC] in case of FECFRAME [fecframe-ext]) defines all the internal code details in order to enable interoperable implementations, but also signaling considerations that are essential to use them in a specific context. Roca (Ed.), et al. Expires January 3, 2019 [Page 4] Internet-Draft Generic API July 2018 +----------------------------------------------------------+ | Application / Protocol Mechanisms | | (out of scope) | | | | + - - - - - - - - - - - - - - - - - - - - - + | | FEC Scheme | | +--|-------------------------------------------|-+ | | | | | <----- FEC Codec API (this doc.) -----> | | | +---------------------------------------+ | | | | Low Level FEC Codec | | | | +---------------------------------------+ +---------+ + - - - - - - - - - - - - - - - - - - - - - + Figure 1: Position of the FEC Codec API with respect to the low level FEC Codec, the FEC Scheme, the protocol and other caller services. 3.1. Mechanisms Considered or Ignored by the API Applying FEC coding, through an FEC Scheme, in a given protocol to improve transmission robustness involves many mechanisms. However, these mechanisms are not all the responsibility of the codec and can be implemented within the application or within the protocol that uses this FEC codec. For instance, the following mechanisms are considered **out of scope of the API**, being implemented by the caller, without any impact on the codec: o memory management; o packet transmission and reception; o signaling header creation / parsing; o ADU to source symbol mapping; o code rate adjustment, for instance thanks to the knowledge of losses at a receiver via feedbacks; o selective ACK creation and parsing; o congestion control. The following mechanisms are **within scope of the API**: o session management (sender and receiver); o encoding window management (sender and receiver); o set/get/generate coding coefficients (sender and receiver); o build coded symbol (sender only); o decode with newly received source or repair symbol (receiver only); Roca (Ed.), et al. Expires January 3, 2019 [Page 5] Internet-Draft Generic API July 2018 4. Generic API for Sliding Window FEC Codes The following sections describe the generic API, following a C-language formalism. Everything is prefixed by "ga" (Generic API). 4.1. General Definitions Common to the Encoder and Decoder This section gathers general definitions that are used by both an encoder and decoder. About FEC Codepoints: An application first needs to negotiate with its remote side the right FEC Scheme to use. This negotiation usually relies on the FEC Encoding ID associated to this FEC Scheme for this application. The FEC Encoding ID space, associated to an IANA registry, is protocol specific and the same value are usually associated to different FEC Schemes depending on the protocol. The FEC Encoding ID, from the Generic FEC API point of view, cannot be used to uniquely identify the codec. The use of a codepoint to identify locally the right FEC codec requires that the application knows a mapping between the FEC Encoding ID it uses and the local FEC Codepoints corresponding to available codecs. This can be done at development time, after including the Generic FEC API header file, which gives access to the ga_codepoint_t enumeration. /** * Return value of any function. * * GA_STATUS_OK = 0 Success * GA_STATUS_FAILURE Failure. The function called did not succeed to * perform its task, however this is not an error * (e.g., it happens when decoding fails). * GA_STATUS_ERROR Generic error type. The detailed error type is * stored in the errno variable of ga_encoder_t and * ga_decoder_t structures. */ typedef enum { GA_STATUS_OK = 0, GA_STATUS_FAILURE, GA_STATUS_ERROR } ga_status_t; /** * Potential errors. Roca (Ed.), et al. Expires January 3, 2019 [Page 6] Internet-Draft Generic API July 2018 */ typedef enum { GA_ERRNO_NIL = 0, GA_ERRNO_CODEPOINT_NOT_SUPPORTED, /* and many more... */ } ga_errno_t; /** * FEC Codepoints. * These identifiers are opaque identifiers that fully identify an FEC * code locally, including certain parameters like its Galois Field, or * the coding coefficient generator (if several exist). * These codepoints are codec specific and only have a local meaning. * They should not be transmitted as different implementations may use * them inconsistently. * Note that the same FEC code may be used by several FEC Encoding IDs * and therefore share the same codepoint. On the opposite multiple * implementations of a given FEC code may exist locally, for instance * with different optimizations, and then several codepoints, one per * codec, will exist for the same FEC code. The following names are * therefore only provided as examples. */ typedef enum { GA_NULL_CODEPOINT = 0, /* codepoint 0 is reserved */ /* codepoint for RLC sliding window code, GF(2^8) and variable * density (as in FECFRAME FEC Enc. ID XXX). */ GA_RLC_GF_256_VAR_DENSITY_CODEC, /* codepoint for RLC sliding window code, GF(2) and variable * density (as in FECFRAME FEC Enc. ID YYY). */ GA_RLC_GF_2_VAR_DENSITY_CODEC, /* list here other identifiers for any FEC codec of interest */ } ga_codepoint_t; General definitions. 4.2. Coding Window Functions at an Encoder and Decoder This section gathers functions used to manage the coding window, both at an encoder and at a decoder. At an encoder a sliding (of fixed or elastic size) encoding window is managed. Whenever a repair symbol needs to be created, a linear combination (that is code specific) of source symbols currently in the encoding window is performed. This encoding window is managed with the functions below plus, potentially, internal mechanisms that are code specific. Roca (Ed.), et al. Expires January 3, 2019 [Page 7] Internet-Draft Generic API July 2018 At a decoder, before submitting a new repair symbol to the codec, the application must specify the associated encoding window used at the source. This is done by the reset/add a single or set of symbols/ remove a symbol functions. Once this coding window is ready, as well as the coding coefficient list if applicable, the application calls the decode_with_new_repair_symbol() function. A coding window may be reused for several repair symbols as long as they are all built from the same set of source symbols. In that case resetting the coding window and setting it from scratch would be a waste of time. The coding window must be viewed as a temporary list used solely by the decode_with_new_repair_symbol() function and kept independent from the linear system managed by the codec. /** * This function resets the current coding window. We assume here that * this window is maintained by the FEC codec instance. * Encoder: reset the encoding window for the encoding of future * repair symbols. * Decoder: reset the coding window under preparation associated to * a repair symbol just received. * * @return */ ga_status_t ga_encoder_reset_coding_window (ga_encoder_t* enc); ga_status_t ga_decoder_reset_coding_window (ga_encoder_t* dec); /** * Add a sequential set of source symbols (there MUST NOT be any gap) to * the coding window. This function may be called several times if there * are gaps in the encoding window. Calling this function does not reset * the current coding window, but appends these source symbols to it. * * Encoder: add this sequential set of source symbols to the encoding * window. The pointers in the table MUST point to the * corresponding source symbol buffers. * Decoder: add this source symbol set to the coding window under * preparation. * * @param new_src_symbol_buf_tab (Encoder only) table of pointers to * buffers containing each source symbol. The application * MUST NOT free nor modify these buffers as long as the * corresponding source symbol is in the encoding window. * @param first_src_symbol_esi ESI of the first source symbol of the table * @param nb_symbols_in_tab total number of symbols in this table. * @return Roca (Ed.), et al. Expires January 3, 2019 [Page 8] Internet-Draft Generic API July 2018 */ ga_status_t ga_encoder_add_source_symbol_tab_to_coding_window ( ga_encoder_t* enc, void* new_src_symbol_buf_tab[], UINT32 first_src_symbol_esi, UINT32 nb_symbols_in_tab); ga_status_t ga_decoder_add_source_symbol_tab_to_coding_window ( ga_decoder_t* dec, UINT32 first_src_symbol_esi, UINT32 nb_symbols_in_tab); /** * Add this source symbol to the coding window. * Encoder: add a source symbol to the coding window. * Decoder: add a source symbol to the coding window under preparation. * * @param new_src_symbol_buf (encoder only) pointer to a buffer * containing the source symbol. The application MUST NOT * free nor modify this buffer as long as the source symbol * is in the coding window. * @param new_src_symbol_esi ESI of the source symbol to add. * @return */ ga_status_t ga_encoder_add_source_symbol_to_coding_window ( ga_encoder_t* enc, void* new_src_symbol_buf, UINT32 new_src_symbol_esi); ga_status_t ga_decoder_add_source_symbol_to_coding_window ( ga_decoder_t* dec, UINT32 new_src_symbol_esi); /** * Remove this source symbol from the coding window. * * Encoder: remove a source symbol from the encoding window, e.g. * because the application knows that a source symbol has * been acknowledged by the peer (if applicable). Note that * the left side of the sliding window is automatically * managed by the codec and no action is needed from the * application. If needed a callback is available to inform * the application that a source symbol has been removed). * Decoder: remove a source symbol from the coding window under * preparation. * Roca (Ed.), et al. Expires January 3, 2019 [Page 9] Internet-Draft Generic API July 2018 * @param old_src_symbol_esi ESI of the source symbol to remove from * the coding window. * @return */ ga_status_t ga_encoder_remove_source_symbol_from_coding_window ( ga_encoder_t* enc, UINT32 old_src_symbol_esi); ga_status_t ga_decoder_remove_source_symbol_from_coding_window ( ga_decoder_t* dec, UINT32 old_src_symbol_esi); Coding Window Functions at an Encoder and Decoder. 4.3. Coding Coefficients Functions at an Encoder and Decoder This section gathers functions used to manage the coding coefficients, both at an encoder and at a decoder. Since different FEC codecs will have different requirements, it is important to keep these functions separate from the build_repair_symbol() and decode_with_new_repair_symbol() functions. Several situations exist: o the application provides the list of coding coefficients to use for the next build_repair_symbol(); o the application provides a key (typically a PRNG seed) that the codec uses to produce the coding coefficients to use for the next build_repair_symbol(); o the choice of the coding coefficients is totally performed by the codec, in an autonomous manner (e.g., the codec includes an algorithm that produces an appropriate seed based on various criteria, or the codec selects a set of coding coefficients based on various criteria). In that case the application needs to retrieve the list of coding coefficients or the key selected by the codec; /** * The following functions enable an encoder (resp. decoder) to * initialize the set of coefficients to be used for encoding * or associated to a received repair symbol. * * Encoder: calling one of them MUST be done before calling * build_repair_symbol(). * Decoder: calling one of them MUST be done before calling * decode_with_new_repair_symbol(). */ Roca (Ed.), et al. Expires January 3, 2019 [Page 10] Internet-Draft Generic API July 2018 /** * Encoder: this function specifies the coding coefficients chosen by * the application if this is the way the codec works. * Decoder: communicate with this function the coding coefficients * associated to a repair symbol and carried in the packet header. * * @param coding_coefs_tab * (IN) table of coding coefficients associated to each of * the source symbols currently in the encoding window. * The size (number of bits) of each coefficient depends on * the FEC Scheme. The allocation and release of this table * is under the responsibility of the application. * @param nb_coefs_in_tab * (IN) number of entries (i.e., coefficients) in the table. * @return */ ga_status_t ga_encoder_set_coding_coefs_tab ( ga_encoder_t* enc, void* coding_coefs_tab, uint32_t nb_coefs_in_tab); ga_status_t ga_decoder_set_coding_coefs_tab ( ga_decoder_t* dec, void* coding_coefs_tab, uint32_t nb_coefs_in_tab); /** * The coding coefficients may be generated in a deterministic manner, * for instance by a PRNG known by the codec and a seed (perhaps with * other parameters) provided by the application. * The codec may also choose in an autonomous manner these coefficients. * This function is used to trigger this process. * When the choice is made in an autonomous manner, the actual coding * coefficient or key used by the codec can be retrieved with * ga_encoder_get_coding_coefs_tab(). * * @param key (IN) Value that can be used as a seed in case of a PRNG * for instance, or by a specific coding coefficients * function. Set to 0 if not required by a codec. * @param add_param * (IN) an opaque 32-bit integer that contains a codec * specific parameter if needed. Set to 0 if not used. * @return */ ga_status_t ga_encoder_generate_coding_coefs ( ga_encoder_t* enc, uint32_t key, Roca (Ed.), et al. Expires January 3, 2019 [Page 11] Internet-Draft Generic API July 2018 uint32_t add_param); ga_status_t ga_decoder_generate_coding_coefs ( ga_decoder_t* dec, uint32_t key, uint32_t add_param); /** * This function enables the application to retrieve the set of coding * coefficients generated and used by build_repair_symbol(). This is * useful when the choice of coefficients is performed by the codec in * an autonomous manner but needs to be sent in the repair packet header. * This function is only used by an encoder. * * @param coding_coefs_tab * (OUT) pointer to a table of coding coefficients. * The size (number of bits) of each coefficient depends on * the FEC scheme. Upon return of this function, this table * is allocated and filled with coefficient values. The * release of this table is under the responsibility of the * application. * @param nb_coefs_in_tab * (IN/OUT) pointer to the number of entries (i.e., * coefficients) in the table. * Upon calling this function, this number must be zero. * Upon return of this function this variable is initialized * with the actual number of entries in the coeffs_tab[]. * @return */ ga_status_t ga_encoder_get_coding_coefs_tab ( ga_encoder_t* enc, void** coding_coefs_tab, uint32_t* nb_coefs_in_tab); Coding Coefficients Functions at an Encoder and Decoder. 4.4. Encoder /** * Encoder structure that contains whatever is needed for encoding. * The exact content of this structure is FEC code dependent, the * structure below being a non normative example. */ typedef struct ga_encoder { /* desired verbosity: 0 is the minimum verbosity, the maximum Roca (Ed.), et al. Expires January 3, 2019 [Page 12] Internet-Draft Generic API July 2018 * level being implementation specific. */ uint32_t verbosity; /* when a function returns with GA_STATUS_ERROR, the errno * variable contains a more detailed error type. */ ga_errno_t errno; /* maximum number of source symbols used for any repair symbol */ uint32_t max_coding_window_size; /* exact size (in bytes) of any source or repair symbol */ uint32_t symbol_size; /* add whatever may be needed hereafter... */ } ga_encoder_t; /** * Create and initialize an encoder, providing only key parameters. * * @param codepoint opaque identifier that fully identifies the FEC * code to use. * @param verbosity print information on the codec processing. * 0 is the minimum verbosity, the maximum verbosity * level being implementation specific. * @param symbol_size source and repair symbol size in bytes. Cannot * change during the codec instance lifetime. * @param max_encoding_window_size * @return pointer to a ga_encoder_t structure if okay, or * NULL in case of error. **/ ga_encoder_t* ga_encoder_create ( ga_codepoint_t codepoint, uint32_t verbosity, uint32_t symbol_size, uint32_t max_coding_window_size); /** * Release an encoder and its associated ressources. **/ ga_status_t ga_encoder_release (ga_encoder_t* enc); /** * Set the various callback functions for this encoder. * All the callback functions require an opaque context parameter, that must be * initialized accordingly by the application, since it is application specific. Roca (Ed.), et al. Expires January 3, 2019 [Page 13] Internet-Draft Generic API July 2018 * * @param enc * @param source_symbol_removed_from_coding_window_callback * (IN) Pointer to the function, within the application, that * needs to be called each time a source symbol is removed from * the left side of the coding window. * This callback is called each time the encoding window slides * to the right and an old source symbol needs to be removed on * the left. The application therefore knows this source symbol * will no longer be used by the codec and can free the * associated buffer if need be. This function does not return * anything. * @param context_4_callback * (IN) Pointer to the application-specific context that will be * passed to the callback function (if any). This context is not * interpreted by this function. * @return */ ga_status_t ga_encoder_set_callback_functions ( ga_encoder_t* enc, void (*source_symbol_removed_from_coding_window_callback) ( void* context, uint32_t old_symbol_esi), void* context_4_callback); /** * This function sets one or more FEC codec specific parameters, * using a type/length/value approach for maximum flexibility. * * @param enc * @param type (IN) Type of parameter. * @param length (IN) length of the pointed value. * @param value (IN) Pointer to the value. The exact type of * the object pointed is FEC codec specific. * @return */ ga_status_t ga_encoder_set_parameters ( ga_encoder_t* enc, uint32_t type, uint32_t length, void* value); /** * This function gets one or more FEC codec specific parameters, * using a type/length/value approach for maximum flexibility. * * @param enc * @param type (IN) Type of parameter. Roca (Ed.), et al. Expires January 3, 2019 [Page 14] Internet-Draft Generic API July 2018 * @param length (IN) length of the pointed value. * @param value (IN/OUT) Pointer to the value. The exact type of * the object pointed is FEC codec specific. * This function updates the value object * accordingly. The caller, who knows the FEC codec, * is responsible to allocate the appropriate * object buffer. * @return */ ga_status_t ga_encoder_get_parameters ( ga_encoder_t* enc, uint32_t type, uint32_t length, void* value); /** * List here the FEC codec specific control parameters. */ enum { GA_ENCODER_GET_PARAM_ENCODER_STATISTICS = 1, GA_ENCODER_SET_PARAM_RLC_DENSITY_THRESHOLD }; /** * Create a single repair symbol (i.e. perform an encoding). * * @param new_buf (IN) The pointer to the buffer for the repair * symbol to build can either point to a buffer * allocated by the application, or let to NULL * meaning that this function will allocate memory. * @return */ ga_status_t ga_build_repair_symbol ( ga_encoder_t* enc, void* new_buf); Encoder API proposal 4.5. Decoder /** * Decoder structure that contains whatever is needed for decoding. * The exact content of this structure is FEC code dependent, the * structure below being a non normative example. */ Roca (Ed.), et al. Expires January 3, 2019 [Page 15] Internet-Draft Generic API July 2018 typedef struct ga_decoder { /* desired verbosity: 0 is the minimum verbosity, the maximum * level being implementation specific. */ uint32_t verbosity; /* when a function returns with GA_STATUS_ERROR, the errno * variable contains a more detailed error type. */ ga_errno_t errno; /* maximum number of source symbols used for any repair symbol */ uint32_t max_coding_window_size; /* max. number of source symbols kepts in current linear system. * If the linear system grows above this limit, old source * symbols in excess are removed and the application callback * called. This value should be larger than the * max_coding_window_size. */ uint32_t max_linear_system_size; /* exact size (in bytes) of any source or repair symbol */ uint32_t symbol_size; /* add whatever may be needed hereafter... */ } ga_decoder_t; /** * Create and initialize a decoder, providing only key parameters. * * @param codepoint opaque identifier that fully identifies the FEC * code to use. * @param verbosity print information on the codec processing. * 0 is the minimum verbosity, the maximum verbosity * level being implementation specific. * @param symbol_size source and repair symbol size in bytes. Cannot * change during the codec instance lifetime. * @param max_coding_window_size * @param max_linear_system_size * @return pointer to a ga_decoder_t structure if okay, or * NULL in case of error. **/ ga_decoder_t* ga_decoder_create ( ga_codepoint_t codepoint, uint32_t verbosity, uint32_t symbol_size, uint32_t max_coding_window_size, uint32_t max_linear_system_size); Roca (Ed.), et al. Expires January 3, 2019 [Page 16] Internet-Draft Generic API July 2018 /** * Release a decoder and its associated ressources. * * @param dec context (i.e., pointer to decoder structure). **/ ga_status_t ga_decoder_release (ga_decoder_t* dec); /** * Set the various callback functions for this decoder. * All the callback functions require an opaque context parameter, that * must be initialized accordingly by the application, since it is * application specific. * * @param dec context (i.e., pointer to decoder structure). * @param source_symbol_removed_from_coding_window_callback * (IN) Pointer to the function, within the application, that * needs to be called each time a source symbol is removed from * the left side of the coding window. * This callback is called each time the decoding window slides * to the right and an old source symbol needs to be removed * on the left. This function does not return anything. * @param decoded_source_symbol_callback * (IN) Pointer to the function, within the application, that * needs to be called each time a source symbol is decoded. * What it does is application-dependent, but it MUST return * either a pointer to a data buffer, left uninitialized, of * the appropriate size, or NULL if the application prefers to * let the codec allocate the buffer. * In any case the codec is responsible for storing the actual * symbol value within the data buffer. Also, no matter * whether the data buffer is allocated by the application or * the codec, it is the responsibility of the application to * free this buffer when needed, once decoding is over (but * not before since the codec does not keep any internal copy). * @param available_source_symbol_callback * (IN) Pointer to the function, within the application, that * needs to be called each time a source symbol is decoded and * all computations performed (i.e., the buffer does contain the * symbol value). * This callback is called in a second time, when the newly * decoded source symbol is actually ready, i.e. when all the * computations (like XOR and GF(2**8) operations) have been * performed. In any case, it is the responsibility of the * application to free this buffer when needed, once decoding * is over (but not before since the codec does not keep any * internal copy). This function does not return anything. * @param context_4_callback Roca (Ed.), et al. Expires January 3, 2019 [Page 17] Internet-Draft Generic API July 2018 * (IN) Pointer to the application-specific context that will be * passed to the callback function (if any). This context is not * interpreted by this function. * @return */ ga_status_t ga_decoder_set_callback_functions ( ga_decoder_t* dec, void (*source_symbol_removed_from_coding_window_callback) ( void* context, uint32_t old_symbol_esi), void* (*decoded_source_symbol_callback) ( void *context, uint32_t esi), void (*available_source_symbol_callback) ( void *context, void *new_symbol_buf, uint32_t esi), void* context_4_callback); /** * This function sets one or more FEC codec specific parameters, * using a type/length/value approach for maximum flexibility. * * @param dec context (i.e., pointer to decoder structure). * @param type (IN) Type of parameter. * @param length (IN) length of the pointed value. * @param value (IN) Pointer to the value. The exact type of * the object pointed is FEC codec specific. * @return */ ga_status_t ga_decoder_set_parameters ( ga_decoder_t* dec, uint32_t type, uint32_t length, void* value); /** * This function gets one or more FEC codec specific parameters, * using a type/length/value approach for maximum flexibility. * * @param dec context (i.e., pointer to decoder structure). * @param type (IN) Type of parameter. * @param length (IN) length of the pointed value. * @param value (IN/OUT) Pointer to the value. The exact type of * the object pointed is FEC codec specific. * This function updates the value object * accordingly. The caller, who knows the FEC codec, Roca (Ed.), et al. Expires January 3, 2019 [Page 18] Internet-Draft Generic API July 2018 * is responsible to allocate the appropriate * object buffer. * @return */ ga_status_t ga_decoder_get_parameters ( ga_decoder_t* dec, uint32_t type, uint32_t length, void* value); /** * List here the FEC codec specific control parameters. */ enum { GA_DECODER_GET_PARAM_DECODER_STATISTICS = 1, GA_DECODER_SET_PARAM_RLC_DENSITY_THRESHOLD }; /** * Submit a received source symbol and try to progress in the decoding. * For each decoded source symbol (if any), the application is informed * through the dedicated callback functions. * * This function usually returns GA_STATUS_OK, regardless of whether this * new symbol enabled the decoding of one or several source symbols, or * GA_STATUS_ERROR. It cannot return GA_STATUS_FAILURE. * * @param dec context (i.e., pointer to decoder structure). * @param new_symbol_buf * (IN) Pointer to the new source symbol now available (i.e. * a new symbol received by the application, or a decoded * symbol in case of a recursive call if it makes sense). * @param new_symbol_esi * (IN) encoding symbol ID of the new source symbol. * @return */ ga_status_t ga_decoder_decode_with_new_source_symbol ( ga_decoder_t* dec, void* const new_symbol_buf, uint32_t new_symbol_esi); /** * Submit a received repair symbol and try to progress in the decoding. * For each decoded source symbol (if any), the application is informed * through the dedicated callback functions. * Roca (Ed.), et al. Expires January 3, 2019 [Page 19] Internet-Draft Generic API July 2018 * This function requires that the application has previously initialized * the coding window and coding coefficients appropriately. The application * keeps a full control of the repair symbol buffer, i.e., the application * is in charge of freeing this buffer as soon as it believes appropriate * (a copy is kept by the codec). This is motivated by the fact that a * repair symbol may be part of a larger buffer (e.g., if there are * several repair symbols per packet, or because of a packet header): only * the application knows when the buffer can be safely freed. * * This function usually returns GA_STATUS_OK, regardless of whether this * new symbol enabled the decoding of one or several source symbols, or * GA_STATUS_ERROR. It cannot return GA_STATUS_FAILURE. * * @param dec context (i.e., pointer to decoder structure). * @param new_symbol_buf * (IN) Pointer to the new repair symbol now available (i.e. * a new symbol received by the application or a decoded * symbol in case of a recursive call if it makes sense). * @return */ ga_status_t ga_decoder_decode_with_new_repair_symbol ( ga_decoder_t* dec, void* const new_symbol_buf); Decoder API proposal 5. Security Considerations TBD 6. IANA Considerations This document has no IANA requirement. 7. Acknowledgments The authors would like to thank TBD. 8. References 8.1. Normative References [RFC2119] Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/RFC2119, March 1997, . Roca (Ed.), et al. Expires January 3, 2019 [Page 20] Internet-Draft Generic API July 2018 8.2. Informative References [fecframe-ext] Roca, V. and A. Begen, "Forward Error Correction (FEC) Framework Extension to Sliding Window Codes", Transport Area Working Group (TSVWG) draft-ietf-tsvwg-fecframe-ext (Work in Progress), June 2018, . [RLC] Roca, V. and B. Teibi, "Sliding Window Random Linear Code (RLC) Forward Erasure Correction (FEC) Scheme for FECFRAME", Transport Area Working Group (TSVWG) draft- ietf-tsvwg-rlc-fec-scheme (Work in Progress), June 2018, . Roca (Ed.), et al. Expires January 3, 2019 [Page 21] Internet-Draft Generic API July 2018 Appendix A. Existing APIs Editor's comment: we list a few existing APIs for reference and inspiration purposes. They will be removed in future versions of this document. A.1. Morten API proposal A.1.1. Encoder // Copyright Steinwurf ApS 2011. // Distributed under the "STEINWURF RESEARCH LICENSE 1.0". // See accompanying file LICENSE.rst or // http://www.steinwurf.com/licensing class encoder { public: /// Factory for encoders. The factory is used to build and initialize /// encoders. If needed, e.g. for efficiency reasons, it is possible to /// re-initialize already built encoders in order to reuse them. class factory { public: /// Constructor factory(); /// @return The current specified symbol size in bytes. uint64_t symbol_size() const; /// @param symbol_size Sets the size of a symbol in bytes. void set_symbol_size(uint64_t symbol_size); /// @param field Set the finite field to use. void set_field(finite_field field); /// @return The finite field used. finite_field field() const; /// @return A new encoder. encoder build(); /// @param encoder Initialize a encoder with the factory settings. After /// calling initialize the encoder will be ready for use. void initialize(encoder&); [...] }; Roca (Ed.), et al. Expires January 3, 2019 [Page 22] Internet-Draft Generic API July 2018 public: /// @return The total number of symbols available in memory at the encoder. /// The number of symbols in the coding window MUST be less than /// or equal to this number. The total range of valid symbol /// indices is: /// /// for (uint64_t i = 0; i < stream_symbols(); ++i) /// { /// std::cout << i + stream_lower_bound() << "\n"; /// } /// uint64_t stream_symbols() const; /// @return The index of the oldest symbol known by the encoder. This symbol /// may not be inside the window but can be included in the window /// if needed. uint64_t stream_lower_bound() const; /// @return The upper bound of the stream. The range of valid symbol indices /// goes from [encoder::stream_lower_bound(), /// encoder::stream_upper_bound()). Note the stream is a half-open /// interval. Going from encoder::stream_lower_bound() to /// encoder::stream_upper_bound() - 1. uint64_t stream_upper_bound() const; /// @return The size of a symbol in the stream in bytes. uint64_t symbol_size() const; /// Adds a new symbol to the front of the encoder. Increments the number of /// symbols in the stream and increases the encoder::stream_upper_bound(). /// /// @param symbol Pointer to the symbol. Note, the caller must ensure that /// the memory of the symbol remains valid as long as the symbol is /// included in the stream. The caller is responsible for freeing the /// memory if needed. Once the symbol is popped from the stream. /// @return The stream index of the symbol being added. uint64_t push_front_symbol(const uint8_t* symbol); /// Remove the "oldest" symbol from the stream. Increments the /// encoder::stream_lower_bound(). /// @return The index of the symbol being removed uint64_t pop_back_symbol(); /// @return The number of symbols currently in the coding window. The /// window must be within the bounds of the stream. uint64_t window_symbols() const; /// @return The index of the "oldest" symbol in the coding window. Roca (Ed.), et al. Expires January 3, 2019 [Page 23] Internet-Draft Generic API July 2018 uint64_t window_lower_bound() const; /// @return The upper bound of the window. The range of valid symbol indices /// goes from [encoder::window_lower_bound(), /// encoder::window_upper_bound()). Note the window is a half-open /// interval. Going from encoder::window_lower_bound() to /// encoder::window_upper_bound() - 1. uint64_t window_upper_bound() const; /// The window represents the symbols which will be included in the next /// encoding. The window cannot exceed the bounds of the stream. /// /// Example: If window_lower_bound=4 and window_symbol=3 the following /// symbol indices will be included 4,5,6 /// /// @param window_lower_bound Sets the index of the oldest symbol in the /// window. /// @param window_symbols Sets number of symbols within the window. void set_window(uint64_t window_lower_bound, uint64_t window_symbols); /// @return The size of the coefficient vector in the current window in /// bytes. The number of coefficients is equal to the number of /// symbols in the window. The size in bits of each coefficients /// depends on the finite field chosen. A custom coding scheme can /// be implemented by generating the coding vector manually. /// Alternatively the built-in generator can be used. See /// encoder::set_seed(...) and encoder::generate(...). uint64_t coefficient_vector_size() const; /// Seed the internal random generator function. If using the same seed /// on the encoder and decoder the exact same set of coefficients will /// be generated. /// @param seed_value A value for the seed. void set_seed(uint64_t seed_value); /// Generate coding coefficients for the symbols in the coding window /// according to the specified seed (see encoder::set_seed(...)). /// @param coefficients Buffer where the coding coefficients should be /// stored. This buffer must be encoder::coefficient_vector_size() /// large in bytes. void generate(uint8_t* coefficients); /// Write an encoded symbol according to the coding coefficients. /// @param symbol The buffer where the encoded symbol will be stored. /// The symbol buffer must be encoder::symbol_size() large. /// @param coefficients The coding coefficients. These must have the /// memory layout required (see README.rst). A compatible format can /// be created using encoder::generate(...) Roca (Ed.), et al. Expires January 3, 2019 [Page 24] Internet-Draft Generic API July 2018 void write_symbol(uint8_t* symbol, const uint8_t* coefficients); /// Write a source symbol to the symbol buffer. /// @param symbol The buffer where the source symbol will be stored. The /// symbol buffer must be encoder::symbol_size() large. /// @param index The symbol index which should be written. void write_source_symbol(uint8_t* symbol, uint64_t index); [...] }; Morten API proposal A.1.2. Decoder // Copyright Steinwurf ApS 2011. // Distributed under the "STEINWURF RESEARCH LICENSE 1.0". // See accompanying file LICENSE.rst or // http://www.steinwurf.com/licensing class decoder { public: class factory { public: /// Constructor factory(); /// @return The current specified symbol size in bytes. uint64_t symbol_size() const; /// @param symbol_size Sets the size of a symbol in bytes void set_symbol_size(uint64_t symbol_size); /// @param field Set the finite field to use void set_field(finite_field field); /// @return The finite field used. finite_field field() const; /// @return A new decoder. decoder build(); /// @param decoder Initialize a decoder with the factory settings. After /// calling initialize the decoder will be ready for use. Roca (Ed.), et al. Expires January 3, 2019 [Page 25] Internet-Draft Generic API July 2018 void initialize(decoder&); [...] }; public: /// @return The total number of symbols known at the decoder. The number of /// symbols in the decoding window MUST be less than or equal to /// this number. The total range of valid symbol indicies is /// /// for (uint64_t i = 0; i < stream_symbols(); ++i) /// { /// std::cout << i + stream_lower_bound() << "\n"; /// } /// uint64_t stream_symbols() const; /// @return The index of the oldest symbol known by the decoder. This symbol /// may not be inside the window but can be included in the window /// if needed. uint64_t stream_lower_bound() const; /// @return The upper bound of the stream. The range of valid symbol indices /// goes from [decoder::stream_lower_bound(), /// decoder::stream_upper_bound()). Note the stream is a half-open /// interval. Going from decoder::stream_lower_bound() to /// decoder::stream_upper_bound() - 1. uint64_t stream_upper_bound() const; /// @return The size of a symbol in the stream in bytes. uint64_t symbol_size() const; /// Adds a new symbol to the front of the decoder. Increments the number of /// symbols in the stream and increases the decoder::stream_upper_bound(). /// /// @param symbol Pointer to the symbol. Note, the caller must ensure that /// the memory of the symbol remains valid as long as the symbol is /// included in the stream. The caller is responsible for freeing the /// memory if needed. Once the symbol is popped from the stream. /// @return The stream index of the symbol being added. uint64_t push_front_symbol(uint8_t* symbol); /// Remove the "oldest" symbol from the stream. Increments the /// decoder::stream_lower_bound(). /// @return The index of the symbol being removed uint64_t pop_back_symbol(); /// @return The number of symbols currently in the coding window. The /// window must be within the bounds of the stream. Roca (Ed.), et al. Expires January 3, 2019 [Page 26] Internet-Draft Generic API July 2018 uint64_t window_symbols() const; /// @return The index of the "oldest" symbol in the coding window. uint64_t window_lower_bound() const; /// @return The upper bound of the window. The range of valid symbol indices /// goes from [decoder::window_lower_bound(), /// decoder::window_upper_bound()). Note the window is a half-open /// interval. Going from decoder::window_lower_bound() to /// decoder::window_upper_bound() - 1. uint64_t window_upper_bound() const; /// The window represents the symbols which will be included in the next /// decoding. The window cannot exceed the bounds of the stream. /// /// Example: If window_lower_bound=4 and window_symbol=3 the following /// symbol indices will be included 4,5,6 /// /// @param window_lower_bound Sets the index of the oldest symbol in the /// window. /// @param window_symbols Sets number of symbols within the window. void set_window(uint64_t window_offset, uint64_t window_symbols); /// @return The size of the coefficient vector in the current window in /// bytes. The number of coefficients is equal to the number of /// symbols in the window. The size in bits of each coefficients /// depends on the finite field chosen. A custom coding scheme can /// be implemented by generating the coding vector manually. /// Alternatively the built-in generator can be used. See /// decoder::set_seed(...) and decoder::generate(...). uint64_t coefficient_vector_size() const; /// Seed the internal random generator function. If using the same seed /// on the decoder and decoder the exact same set of coefficients will /// be generated. /// @param seed_value A value for the seed. void set_seed(uint64_t seed_value); /// Generate coding coefficients for the symbols in the coding window /// according to the specified seed (see decoder::set_seed(...)). /// @param coefficients Buffer where the coding coefficients should be /// stored. This buffer must be decoder::coefficient_vector_size() /// large in bytes. void generate(uint8_t* coefficients); /// Decodes a coded symbol according to the coding coefficients. /// /// Both buffers may be modified during this call. The reason for this Roca (Ed.), et al. Expires January 3, 2019 [Page 27] Internet-Draft Generic API July 2018 /// is that the decoder will directly operate on the provided memory /// for performance reasons. /// /// @param symbol Buffer representing a coded symbol. /// /// @param coefficients The coding coefficients used to /// create the encoded symbol void read_symbol(uint8_t* symbol, uint8_t* coefficients); /// Add a source symbol at the decoder. /// /// @param symbol Buffer containing the source symbol's data. /// @param index The index of the source symbol in the stream void read_source_symbol(uint8_t* symbol, uint64_t index); /// The rank of a decoder indicates how many symbols have been /// partially or fully decoded. This number is also equivalent to the /// number of pivot elements we have in the stream. /// /// @return The rank of the decoder uint64_t rank() const; /// @return The number of missing symbols at the decoder uint64_t symbols_missing() const; /// @return The number of partially decoded symbols at the decoder uint64_t symbols_partially_decoded() const; /// @return The number of decoded symbols at the decoder uint64_t symbols_decoded() const; /// @param index Index of the symbol to check. /// /// @return True if the symbol is decoded (i.e. it corresponds to a source /// symbol), and otherwise false. bool is_symbol_decoded(uint64_t index) const; [...] }; Morten API proposal A.2. Jonathan API proposal /** a status for function calls **/ typedef enum { STATUS_OK, Roca (Ed.), et al. Expires January 3, 2019 [Page 28] Internet-Draft Generic API July 2018 STATUS_ERROR, /* ... */ } status_t; /** defines the galois field used (at least the size, maybe we need to separate the implementations (Lookup Tables or Xor-based)) **/ typedef enum { GF_16, GF_64, GF_256 } galois_field_t; /* * coding coefficient generators: specifies the algorithm used to generate the coefficients for the linear combinations * * NOTE: the choice of the finite field could done here (RLC_GF256, RLC_GF_16, ...) rather than using a different structure */ typedef enum { RLC, VDM /* ... */ } coding_coefficients_generator_identifier_t; /*** ** ** encoder side ** ***/ /** * NOTE for the callbacks in the sw_encoder: this is a proposition, we could also use 2 structures (source_t and repair_t) to avoid sending too many parameters in the callbacks. **/ /** * context: a context as a generic pointer (defined by the application if needed and given in sw_encoder_set_callbacks) * src: the source data unit to consider * src_id: the id of the source unit set by the encoder * src_sz: the size in bytes of the data unit **/ typedef void (*sw_encoder_callback_source_ready)(void *context,void* src, uint32_t src_id, size_t src_sz); /** * context: a context as a generic pointer (defined by the application if needed and given in sw_encoder_set_callbacks) Roca (Ed.), et al. Expires January 3, 2019 [Page 29] Internet-Draft Generic API July 2018 * rep: the repair data unit generated by the encoder * rep_id: the id of the repair unit given by the encoder * rep_sz: the size in bytes of the repair data unit * src_ids: the array of the source unit ids used to generate the repair unit * src_coefs: the coefficients used for each source units to generate the repair unit * nb_src_in: number of src units in the linear combination (repair unit) (also the number of elements of src_ids and src_coefs) **/ typedef void (*sw_encoder_callback_repair_ready)(void *context,void* rep, uint32_t rep_id, size_t rep_sz, uint32_t* src_ids, uint8_t *src_coefs, size_t nb_src_in); /** a structure containing all we need to encode **/ typedef struct sw_encoder sw_encoder_t; /** * Init a sliding window encoder by giving a galois field size, a coefficient generator function, and the maximum size of the window * @param galois_field The size of the galois field used to create the coefficients and to encode. * @param ccgi The function used to generate the coefficients (depends on the gf_size) * @param max_wnd_size set the maximum of source units t consider inside the coding window (the oldest units will be destroyed) * @return a sw_encoder_t structure. **/ sw_encoder_t* sw_encoder_init(galois_field_t galois_field, coding_coefficients_generator_identifier_t ccgi, uint32_t max_wnd_size); /** * Set the callbacks to get the encoded (repair) data * @param encoder The encoder initialized * @param context A generic context defined by the application (will be given in the callback) * @param src_callback The function to be called when a source data unit has been processed by the encoder * @param rep_callback The function to be called when a repair data unit has been generated **/ status_t sw_encoder_set_callbacks(sw_encoder_t* encoder, void* context, sw_encoder_callback_source_ready src_callback, sw_encoder_callback_repair_ready rep_callback); /** * Gives a source data unit and its id to the encoder * @param encoder The encoder structure. * @param src The data to add * @param sz The size in bytes of the data unit **/ status_t sw_encoder_add_source(sw_encoder_t* encoder, void* src, size_t sz); /** * Removes the corresponding source data unit from the encoding window by giving and id * @param encoder The encoder structure * @param id The id of the data unit * @return STATUS_OK if the data unit has been found and removed, STATUS_ERROR if the data unit doesn't exist Roca (Ed.), et al. Expires January 3, 2019 [Page 30] Internet-Draft Generic API July 2018 **/ status_t sw_encoder_remove_source(sw_encoder_t* encoder, uint32_t id); /** * generates a repair data unit and calls the corresponding callback. * @param encoder The encoder structure. **/ status_t sw_encoder_generate_repair(sw_encoder_t* encoder); /* ... */ status_t sw_encoder_set_control_parameter(sw_encoder_t* encoder, uint32_t type, void* value, uint32_t length); /* ... */ status_t sw_encoder_get_control_parameter(sw_encoder_t* encoder, uint32_t type, void* value, uint32_t length); /** * Release an encoder structure * @param encoder The encoder structure **/ status_t sw_encoder_release(sw_encoder_t* encoder); /*** ** ** decoder side ** ***/ /** * NOTE for the callback in the sw_decoder: this is a proposition, we could also use an opaque structure (source_t) to avoid sending too many parameters in the callback. **/ /** * context: a context as a generic pointer (defined by the application if needed and given in sw_encoder_set_callbacks) * src: the source data unit to consider * src_id: the id of the source unit used in the decoder * src_sz: the size in bytes of the data unit **/ typedef void (*sw_decoder_callback_source_ready)(void *context,void* src, uint32_t src_id, size_t sz); /** a structure containing all we need to decode **/ typedef struct sw_decoder sw_decoder_t; Roca (Ed.), et al. Expires January 3, 2019 [Page 31] Internet-Draft Generic API July 2018 /** * Init a sliding window decoder by giving a galois field size, a coefficient generator function, and the maximum size of the window * @param galois_field The size of the galois field used to create the coefficients and to encode. * @param ccgi The function used to generate the coefficients (depends on the gf_size) * @return a sw_decoder_t structure. **/ sw_decoder_t* sw_decoder_init(galois_field_t galois_field, coding_coefficients_generator_identifier_t ccgi); /** * Set the callback to get the encoded (repair) data * @param decoder The decoder initialized * @param context A generic context defined by the application (will be given in the callback) * @param callback The function to be called **/ status_t sw_decoder_set_callback_source_ready(sw_decoder_t* decoder, void* context, sw_decoder_callback_source_ready callback); /** * NOTE for the next decode functions: we could also use 2 opaque structures to represent the source and repair units (source_t or repair_t) **/ /** * Decode some source data units by giving to the decoder a new source data unit * @param decoder the decoder structure * @param src the new source data unit * @param src_id the id of the new source data unit (given by an encoder) * @param src_sz the size in bytes of the new source data unit **/ status_t sw_decoder_decode_with_source(sw_decoder_t* decoder, void* src, uint32_t src_id, size_t src_sz); /** * Decode some source data units by giving to the decoder a new repair data unit * @param decoder the decoder structure * @param rep the new repair data unit * @param rep_id the id of the new repair data unit (given by an encoder) * @param rep_sz the size in bytes of the new repair data unit * @param src_ids: the array of the source unit ids used to generate this repair unit * @param src_coefs: the coefficients used for each source units to generate this repair unit * @param nb_src_in: number of src units in the linear combination (repair unit) (also the number of elements of src_ids and src_coefs) **/ status_t sw_decoder_decode_with_repair(sw_decoder_t* decoder, void* rep, uint32_t rep_id, size_t rep_sz, uint32_t* src_ids, uint8_t * src_coefs, size_t nb_src_in); /* ... */ status_t sw_decoder_set_control_parameter(sw_decoder_t* decoder, uint32_t type, void* value, uint32_t length); Roca (Ed.), et al. Expires January 3, 2019 [Page 32] Internet-Draft Generic API July 2018 /* ... */ status_t sw_decoder_get_control_parameter(sw_decoder_t* decoder, uint32_t type, void* value, uint32_t length); /** * Release a decoder structure * @param decoder The decoder structure to release **/ status_t sw_decoder_release(sw_decoder_t* decoder); Jonathan API proposal A.3. Cedric API proposal For DRAGONCAST/DragonNet/GardiNet (): o an API could be globally pretty similar; o there is a maintained set of symbols of the "codec" where online Gaussian Elimination is performed. But this same set, is used to also re-code packets for generation. For this to work, one uses as pivot the highest index (instead of the lowest in standard RREF), in order to avoid adding symbols with higher indices in the decoding process. o another set of differences would be that the protocol has more control over the coding process than our current codec proposal. The reason is that DRAGONCAST (re)codes for several neighbors, and in such scenario, there is no "obvious" decision that can be made, for instance: * which source symbols (indices) should be present in a generated packet: -> tradeoff: helping the maximum number of nodes (emphasis on "new" undecoded source symbol indices) -vs- helping the neighbor which is the most late in the decoding process (emphasis on "old" source symbols) * which symbols should be kept in the decoding process (or dropped): -> tradeoff: helping coding by keeping old symbols (be able to generate symbols for late neighbors) vs keeping up with decoding (and never throwing away a new symbol with high indices). (I. Amdouni discussed such issues in for instance). o In the current implementation, the packet generation process is done in the protocol which directly "peeks" in the set of symbols in the codec, and creates a linear combination with the ones that suits it. o Technically the callbacks from the "codec" are: Roca (Ed.), et al. Expires January 3, 2019 [Page 33] Internet-Draft Generic API July 2018 * notification of a source symbol is decoded; * notification that the set of symbols is full (protocol can remove symbols it sees fits, especially decoded symbols); * for the "over-the-air" reflashing application, the codec can ask the protocol if an already removed source symbol is available (on the assumption that it has been written somewhere else); A.4. Vincent API proposal A.4.1. General /** * The fec_codec_id_t enum identifies the FEC code/codec being used. * Since a given fec_codec_id can be used by one or several FEC schemes (that specify * both the codes and way of using these codes), it is distinct from the FEC Encoding * ID. */ typedef enum { CODEC_NIL = 0, CODEC_RLC } codec_id_t; /** * Function return value, indicating whether the function call succeeded or not. * In case of failure, the detailed error type is returned in a global variable, * of_errno (see of_errno.h). * * STATUS_OK = 0 Success * STATUS_FAILURE, Failure. The function called did not succeed to perform * its task, however this is not an error. This can happen * for instance when decoding did not succeed (which is a * valid output). * STATUS_ERROR, Generic error type. The caller is expected to be able * to call the library in the future after having corrected * the error cause. * STATUS_FATAL_ERROR Fatal error. The caller is expected to stop using this * codec instance immediately (it replaces an exit() system * call). */ typedef enum { STATUS_OK = 0, STATUS_FAILURE, STATUS_ERROR, STATUS_FATAL_ERROR } status_t; Roca (Ed.), et al. Expires January 3, 2019 [Page 34] Internet-Draft Generic API July 2018 /** * Throughout the API, a pointer to this structure is used as an identifier of the current * codec instance, also known as "session". * * This generic structure is meant to be extended by each codec and new pieces of information * that are specific to each codec be specified there. However, all the codec specific structures * MUST begin the same entries as the ones provided in this generic structure, otherwise * hazardous behaviors may happen. */ typedef struct session { codec_id_t codec_id; codec_type_t codec_type; } session_t; /** * Generic FEC parameter structure used by set_fec_parameters(). * * This generic structure is meant to be extended by each codec and new pieces of information * that are specific to each codec be specified there. However, all the codec specific structures * MUST begin the same entries as the ones provided in this generic structure, otherwise * hazardous behaviors may happen. */ typedef struct { /** SENDER and RECEIVER: maximum number of source symbols used for any repair symbol. */ UINT32 coding_window_max_size; /** RECEIVER only: maximum number of source symbols kept in current linear * system. If the linear system grows above this limit, older source symbols * in excess are removed and the application callback called if set. This * value MUST be larger than the coding_window_max_size. */ UINT32 linear_system_max_size; UINT32 encoding_symbol_length; } parameters_t; Vincent API proposal A.4.2. Session Management /** * This function allocates and partially initializes a new session structure. * Throughout the API, a pointer to this session is used as an identifier of the * current codec instance. * * @param ses (IN/OUT) address of the pointer to a session. This pointer is updated Roca (Ed.), et al. Expires January 3, 2019 [Page 35] Internet-Draft Generic API July 2018 * by this function. * In case of success, it points to a session structure allocated by the * library. In case of failure it points to NULL. * @param codec_id identifies the FEC code/codec being used. * @param codec_type indicates if this is a coder or a decoder. * @param verbosity set the verbosity level * @return Completion status. The ses pointer is updated according to the success return status. */ status_t create_codec_instance (session_t** ses, codec_id_t codec_id, codec_type_t codec_type, uint32_t verbosity); /** * This function releases all the internal resources used by this FEC codec instance. * None of the source symbol buffers will be free'ed by this function, even those decoded by * the library if any, regardless of whether a callback has been registered or not. It's the * responsibility of the caller to free them. * * @param ses (IN) Pointer to the session. * @return Completion status */ status_t release_codec_instance (session_t* ses); /** * Second step of the initialization, where the application specifies code(c) specific parameters. * * At a receiver, the parameters can be extracted from the FEC OTI that is usually communicated * to the receiver by either an in-band mechanism or an out-of-band mechanism, or set statically * for a specific use-case. * * @param ses (IN) Pointer to the session. * @param params (IN) pointer to a structure containing the FEC parameters associated to * a specific FEC codec. * @return Completion status. */ status_t set_fec_parameters (session_t* ses, parameters_t* params); /** * This function sets a FEC scheme/FEC codec specific control parameter, * using a type/value method. * * @param ses (IN) Pointer to the session. * @param type (IN) Type of parameter. This type is FEC codec ID specific. Roca (Ed.), et al. Expires January 3, 2019 [Page 36] Internet-Draft Generic API July 2018 * @param value (IN) Pointer to the value of the parameter. The type of the object pointed * is FEC codec ID specific. * @param length (IN) length of pointer value * @return Completion status. */ status_t set_control_parameter (session_t* ses, UINT32 type, void* value, UINT32 length); /** * This function gets a FEC scheme/FEC codec specific control parameter, * using a type/value/length method. * * @param ses (IN) Pointer to the session. * @param type (IN) Type of parameter. This type is FEC codec ID specific. * @param value (IN/OUT) Pointer to the value of the parameter. The type of the object * pointed is FEC codec ID specific. This function updates the value object * accordingly. The application, who knows the FEC codec ID, is responsible * to allocating the appropriate object pointed by the value pointer. * @param length (IN) length of pointer value * @return Completion status. */ status_t get_control_parameter (session_t* ses, UINT32 type, void* value, UINT32 length); Vincent API proposal A.4.3. Callback Functions /** * Set the various callback functions for this session. * All the callback functions require an opaque context parameter, that must be * initialized accordingly by the application, since it is application specific. * * @param ses (IN) Pointer to the session. * * @param decoded_source_symbol_callback * (IN) Pointer to the function, within the application, that * needs to be called each time a source symbol is decoded. * * @param available_source_symbol_callback * (IN) Pointer to the function, within the application, that Roca (Ed.), et al. Expires January 3, 2019 [Page 37] Internet-Draft Generic API July 2018 * needs to be called each time a source symbol is decoded and * all computations performed (i.e., the buffer does contain the * symbol value). * * @param source_symbol_removed_from_coding_window_callback * (IN) Pointer to the function, within the application, that * needs to be called each time a source symbol is removed from * the left side of the coding window, at a SENDER because this * window has slided to the right, or at a RECEIVER because this * old source symbol is now forgotten. * * @param context_4_callback * (IN) Pointer to the application-specific context that will be * passed to the callback function (if any). This context is not * interpreted by this function. * * @return Completion status. */ status_t set_callback_functions (of_session_t* ses, void* (*decoded_source_symbol_callback) (void *context, UINT32 size, /* size of decoded source symbol */ UINT32 esi), /* encoding symbol ID */ void (*available_source_symbol_callback) (void *context, void *new_symbol_buf,/* symbol buffer */ UINT32 size, /* size of decoded source symbol */ UINT32 esi), /* encoding symbol ID */ void (*source_symbol_removed_from_coding_window_callback) (void *context, UINT32 old_symbol_esi), void* context_4_callback); Vincent API proposal A.4.4. Coding window functions TBD A.4.5. Coding coefficients functions /** * SENDER: this function specifies the coding coefficients chosen by the application if this is the way the codec * works. This function MUST be called before calling build_repair_symbol(). * RECEIVER: communicate the coding coefficients associated to a repair symbol and carried in the packet header. * This function MUST be called before calling decode_with_new_repair_symbol(). Roca (Ed.), et al. Expires January 3, 2019 [Page 38] Internet-Draft Generic API July 2018 * * @param ses * @param coding_coefs_tab (IN) table of coding coefficients to be associated to each of the source symbols * currently in the coding window. The size (number of bits) of each coefficient * depends on the FEC scheme. The allocation and release of this table is under the * responsibility of the application. * @param nb_coefs_in_tab (IN) number of entries (i.e., coefficients) in the table. * @return Completion status. */ status_t set_coding_coefficients_tab (session_t* ses, void* coding_coefs_tab, UINT32 nb_coefs_in_tab); /** * SENDER: this function enables the application to retrieve the set of coding coefficients generated and used by * build_repair_symbol(). * RECEIVER: never used. * * @param ses * @param coding_coefs_tab (IN/OUT) pointer of a table of coding coefficients to be associated to each of the * source symbols currently in the coding window. The size (number of bits) of each * coefficient depends on the FEC scheme. The allocation and release of this table is * under the responsibility of the application. Upon return of this function, this * table is allocated and filled with each coefficient value. * @param nb_coefs_in_tab (IN/OUT) pointer to the number of entries (i.e., coefficients) in the table. * Upon calling this function, this number must be zero. Upon return of this function * this number is initialized with the actual number of entries in the coeffs_tab[]. * @return Completion status (OF_STATUS_OK, FAILURE, ERROR or FATAL_ERROR). */ status_t get_coding_coefficients_tab (session_t* ses, void** coding_coefs_tab, UINT32* nb_coefs_in_tab); /** * The coding coefficients may be generated in a deterministic manner, (e.g., through the use of a PRNG and the * repair symbol ESI used as a seed). This is the case with RLC codes. * * SENDER: generate all coefficients. This function MUST be called before calling build_repair_symbol(). * RECEIVER: generate all coefficients. This function MUST be called before calling decode_with_new_repair_symbol(). * * @param ses * @param params (IN) pointer to a codec specific structure containing the required parameters. * These parameters can include a repair symbol ESI or key among other things. * @return Completion status. */ status_t generate_coding_coefficients (session_t* ses, void* params); Roca (Ed.), et al. Expires January 3, 2019 [Page 39] Internet-Draft Generic API July 2018 Vincent API proposal A.4.6. Encoder specific functions /** * Create a single repair symbol, i.e. perform an encoding. * This function requires that the application has previously set the coding window and if needed the coding coefficients * appropriately. After that, the application can call this function. * * @param ses * @param new_repair_symbol_buf (IN) The pointer to the buffer for the repair symbol to build can either point to a buffer * allocated by the application, or let to NULL meaning that this function will allocate * memory. * @return Completion status. */ status_t ccod_build_repair_symbol (session_t* ses, void* new_repair_symbol_buf); Vincent API proposal A.4.7. Decoder specific functions Roca (Ed.), et al. Expires January 3, 2019 [Page 40] Internet-Draft Generic API July 2018 /** * Submit a received source symbol and try to progress in the decoding. For each decoded source * symbol, if any, the application is informed through the dedicated callback functions. * * This function usually returns GA_STATUS_OK, regardless of whether this new symbol enabled the * decoding of one or several source symbols, unless an error occured. This function cannot return * OF_STATUS_FAILURE. * * @param ses * @param new_src_symbol_buf (IN) Pointer to the new source symbol now available (i.e. a new symbol received by * the application, or a decoded symbol in case of a recursive call if it makes sense). * @param new_symbol_esi_or_key (IN) encoding symbol ID of the new source symbol or key if there is no notion of ESI. * @return Completion status. */ status_t decode_with_new_source_symbol (session_t* ses, void* const new_src_symbol_buf, UINT32 new_symbol_esi_or_key); /** * Submit a received repair symbol and try to progress in the decoding. For each decoded source * symbol, if any, the application is informed through the dedicated callback functions. * * This function requires that the application has previously set the coding window and the coding coefficients appropriately. * After that, the application can call this function. The * application keeps a full control of the repair symbol buffer, i.e., the application is in charge * of freeing this buffer as soon as it believes appropriate to do so (a copy is kept by the codec). * * This function usually returns OF_STATUS_OK, regardless of whether this new symbol enabled the * decoding of one or several source symbols, unless an error occurred. This function cannot return * OF_STATUS_FAILURE. * * @param ses * @param new_repair_symbol_buf (IN) Pointer to the new repair symbol now available (i.e. a new symbol received by * the application or a decoded symbol in case of a recursive call if it makes sense). * @return Completion status. */ status_t decode_with_new_repair_symbol (session_t* ses, void* const new_repair_symbol_buf); Vincent API proposal Roca (Ed.), et al. Expires January 3, 2019 [Page 41] Internet-Draft Generic API July 2018 Authors' Addresses Vincent Roca INRIA Univ. Grenoble Alpes France EMail: vincent.roca@inria.fr Jonathan Detchart ISAE - Supaero France EMail: jonathan.detchart@isae-supaero.fr Cedric Adjih INRIA France EMail: cedric.adjih@inria.fr Morten V. Pedersen Steinwurf ApS Denmark EMail: morten@steinwurf.com Roca (Ed.), et al. Expires January 3, 2019 [Page 42]