external_term.c
Include dependency graph for external_term.c:
Defines
-
NEW_FLOAT_EXT 70
-
NEW_PID_EXT 88
-
NEWER_REFERENCE_EXT 90
-
SMALL_INTEGER_EXT 97
-
INTEGER_EXT 98
-
ATOM_EXT 100
-
PID_EXT 103
-
SMALL_TUPLE_EXT 104
-
LARGE_TUPLE_EXT 105
-
NIL_EXT 106
-
STRING_EXT 107
-
LIST_EXT 108
-
BINARY_EXT 109
-
SMALL_BIG_EXT 110
-
NEW_FUN_EXT 112
-
EXPORT_EXT 113
-
MAP_EXT 116
-
ATOM_UTF8_EXT 118
-
SMALL_ATOM_UTF8_EXT 119
-
V4_PORT_EXT 120
-
INVALID_TERM_SIZE -1
-
NEW_FLOAT_EXT_SIZE 9
-
SMALL_INTEGER_EXT_SIZE 2
-
INTEGER_EXT_SIZE 5
-
SMALL_BIG_EXT_BASE_SIZE 3
-
ATOM_EXT_BASE_SIZE 3
-
STRING_EXT_BASE_SIZE 3
-
LIST_EXT_BASE_SIZE 5
-
BINARY_EXT_BASE_SIZE 5
-
MAP_EXT_BASE_SIZE 5
-
SMALL_ATOM_EXT_BASE_SIZE 2
Functions
-
static term parse_external_terms(const uint8_t *external_term_buf, size_t *eterm_size, bool copy, Heap *heap, GlobalContext *glb)
-
static int calculate_heap_usage(const uint8_t *external_term_buf, size_t remaining, size_t *eterm_size, bool copy)
-
static size_t compute_external_size(term t, GlobalContext *glb)
-
static int external_term_from_term(uint8_t **buf, size_t *len, term t, GlobalContext *glb)
-
static int serialize_term(uint8_t *buf, term t, GlobalContext *glb)
-
external_term_read_result_t external_term_validate_buf_raw(const void *buf, size_t buf_size, external_term_read_opts_t opts, size_t *required_heap, size_t *bytes_read, GlobalContext *glb)
Validate a raw external term buffer (tag byte excluded).
Like
external_term_validate_buf()but expects a buffer without the leadingEXTERNAL_TERM_TAGbyte.bytes_readdoes not account for the tag byte.See also
external_term_validate_buf() for the standard tag-included variant.
-
external_term_read_result_t external_term_deserialize_buf_raw(const void *buf, size_t buf_size, external_term_read_opts_t opts, Heap *heap, term *out_term, GlobalContext *glb)
Deserialize a raw external term buffer (tag byte excluded) into a term.
Like
external_term_deserialize_buf()but expects a buffer without the leadingEXTERNAL_TERM_TAGbyte.See also
external_term_deserialize_buf() for the standard tag-included variant.
Warning
external_term_validate_buf_raw()MUST be called successfully on the same buffer before calling this function, and the heap must have been grown to accommodate at least the number of words reported by that call. Skipping validation or providing insufficient heap space results in undefined behavior.
-
term external_term_from_binary_with_roots(Context *ctx, size_t binary_ix, size_t offset, size_t *bytes_read, size_t num_roots, term *roots)
Create a term from a binary.
Deserialize a binary term that stores term data in Erlang external term format, and instantiate the serialized terms. The heap from the context will be used to allocate the instantiated terms. This function is the complement of external_term_to_binary. WARNING: This function may call the GC, which may render the input binary invalid.
- Parameters:
ctx – the context that owns the memory that will be allocated.
binary_ix – offset of the binary in roots
offset – offset in the binary
bytes_read – the number of bytes read from the input binary.
num_roots – number of roots to preserve in case of GC
roots – roots to preserve in case of GC
- Returns:
the term deserialized from the input term, or an invalid term, if deserialization fails.
-
term external_term_from_const_literal(const void *external_term, size_t size, Context *ctx)
Gets a term from a const literal (module in flash).
Deserialize an external term from external format and returns a term. Use a heap fragment to store the generated terms. The heap fragment is appended to the context heap. Atoms and binaries are not copied.
- Parameters:
external_term – the const literal buffer that will be deserialized
size – to allocate for term.
ctx – the context that owns the memory that will be allocated.
- Returns:
a term.
-
term external_term_to_binary(Context *ctx, term t)
Create a binary from a term.
Serialize a term in Erlang external term format, and store the result in a binary term. The heap from the context will be used to allocate the hydrated terms. WARNING: This function may call the GC, which may render the input binary invalid.
- Parameters:
ctx – the context that owns the memory that will be allocated.
t – the term to return as binary.
- Returns:
the term deserialized from the input term, or an invalid term, if deserialization fails.
-
static uint8_t get_num_bytes(avm_uint64_t val)
-
static void write_bytes(uint8_t *buf, avm_uint64_t val)
-
static avm_uint64_t read_bytes(const uint8_t *buf, uint8_t num_bytes)
-
external_term_write_result_t external_term_compute_external_size_raw(term t, size_t *size, GlobalContext *glb)
Computes the size required for a external term (tag excluded)
This function should be called in order to calculate the required buffer size to store a serialized term in external term format. This function doesn’t prepend the external term 1 byte tag.
- Parameters:
t – the term for which size is calculated
size – the required buffer size (tag excluded)
glb – the global context
- Returns:
ExternalTermWriteOkin case of success
-
external_term_write_result_t external_term_serialize_term_raw(term t, void *buf, GlobalContext *glb)
Serialize a term (tag excluded)
This function serializes in external term format given term, and writes it to the given buffer. This function doesn’t prepend the external term 1 byte tag.
- Parameters:
t – the term that will be serialized
buf – the buffer where the external term is written
glb – the global context
- Returns:
ExternalTermWriteOkin case of success