aboutsummaryrefslogtreecommitdiff
path: root/src/core/message.h
blob: 53b644c495d2b1539dd7c3cf9a7605b8b298af81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
//
// Copyright 2020 Staysail Systems, Inc. <info@staysail.tech>
// Copyright 2017 Capitar IT Group BV <info@capitar.com>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt).  A copy of the license may also be
// found online at https://opensource.org/licenses/MIT.
//

#ifndef CORE_MESSAGE_H
#define CORE_MESSAGE_H

// Internally used message API.  Again, this is not part of our public API.
// "trim" operations work from the front, and "chop" work from the end.

extern int      nni_msg_alloc(nni_msg **, size_t);
extern void     nni_msg_free(nni_msg *);
extern int      nni_msg_realloc(nni_msg *, size_t);
extern int      nni_msg_dup(nni_msg **, const nni_msg *);
extern void *   nni_msg_header(nni_msg *);
extern size_t   nni_msg_header_len(const nni_msg *);
extern void *   nni_msg_body(nni_msg *);
extern size_t   nni_msg_len(const nni_msg *);
extern int      nni_msg_append(nni_msg *, const void *, size_t);
extern int      nni_msg_insert(nni_msg *, const void *, size_t);
extern int      nni_msg_header_append(nni_msg *, const void *, size_t);
extern int      nni_msg_header_insert(nni_msg *, const void *, size_t);
extern int      nni_msg_trim(nni_msg *, size_t);
extern int      nni_msg_chop(nni_msg *, size_t);
extern void     nni_msg_clear(nni_msg *);
extern void     nni_msg_header_clear(nni_msg *);
extern int      nni_msg_header_trim(nni_msg *, size_t);
extern int      nni_msg_header_chop(nni_msg *, size_t);
extern void     nni_msg_dump(const char *, const nni_msg *);
extern int      nni_msg_append_u16(nni_msg *, uint16_t);
extern int      nni_msg_append_u32(nni_msg *, uint32_t);
extern int      nni_msg_append_u64(nni_msg *, uint64_t);
extern int      nni_msg_insert_u16(nni_msg *, uint16_t);
extern int      nni_msg_insert_u32(nni_msg *, uint32_t);
extern int      nni_msg_insert_u64(nni_msg *, uint64_t);
extern int      nni_msg_header_append_u16(nni_msg *, uint16_t);
extern int      nni_msg_header_append_u32(nni_msg *, uint32_t);
extern int      nni_msg_header_append_u64(nni_msg *, uint64_t);
extern int      nni_msg_header_insert_u16(nni_msg *, uint16_t);
extern int      nni_msg_header_insert_u32(nni_msg *, uint32_t);
extern int      nni_msg_header_insert_u64(nni_msg *, uint64_t);
extern uint16_t nni_msg_trim_u16(nni_msg *);
extern uint32_t nni_msg_trim_u32(nni_msg *);
extern uint64_t nni_msg_trim_u64(nni_msg *);
extern uint16_t nni_msg_chop_u16(nni_msg *);
extern uint32_t nni_msg_chop_u32(nni_msg *);
extern uint64_t nni_msg_chop_u64(nni_msg *);
extern uint16_t nni_msg_header_trim_u16(nni_msg *);
extern uint32_t nni_msg_header_trim_u32(nni_msg *);
extern uint64_t nni_msg_header_trim_u64(nni_msg *);
extern uint16_t nni_msg_header_chop_u16(nni_msg *);
extern uint32_t nni_msg_header_chop_u32(nni_msg *);
extern uint64_t nni_msg_header_chop_u64(nni_msg *);
extern void     nni_msg_set_pipe(nni_msg *, uint32_t);
extern uint32_t nni_msg_get_pipe(const nni_msg *);

// Reference counting messages. This allows the same message to be
// cheaply reused instead of copied over and over again.  Callers of
// this functionality MUST be certain to use nni_msg_unique() before
// passing a message out of their control (e.g. to user programs.)
// Failure to do so will likely result in corruption.
extern void nni_msg_clone(nni_msg *);
extern nni_msg *nni_msg_unique(nni_msg *);
// nni_msg_pull_up ensures that the message is unique, and that any
// header present is "pulled up" into the message body.  If the function
// cannot do this for any reason (out of space in the body), then NULL
// is returned.  It is the responsibility of the caller to free the
// original message in that case (same semantics as realloc).
extern nni_msg *nni_msg_pull_up(nni_msg *);

// These should only be used when the transport or protocol is absolutely
// certain that there is adequate room.   There is about 32 bytes of
// header and trailer space for a newly allocated message, and transports
// should generally not be burning more than half that.
extern void nni_msg_must_append_u32(nni_msg *, uint32_t);
extern void nni_msg_header_must_append_u32(nni_msg *, uint32_t);

#endif // CORE_SOCKET_H