blob: f39439be63c0326e6a7cca2eae28e1e5b54214d2 (
plain) (
blame)
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
|
#ifndef NVIM_MSGPACK_RPC_UNPACKER_H
#define NVIM_MSGPACK_RPC_UNPACKER_H
#include <inttypes.h>
#include <stdbool.h>
#include <string.h>
#include "mpack/mpack_core.h"
#include "mpack/object.h"
#include "nvim/api/private/dispatch.h"
#include "nvim/api/private/helpers.h"
#include "nvim/memory.h"
#include "nvim/msgpack_rpc/channel_defs.h"
struct Unpacker {
mpack_parser_t parser;
mpack_tokbuf_t reader;
const char *read_ptr;
size_t read_size;
#define MAX_EXT_LEN 9 // byte + 8-byte integer
char ext_buf[MAX_EXT_LEN];
int state;
MessageType type;
uint32_t request_id;
size_t method_name_len;
MsgpackRpcRequestHandler handler;
Object error; // error return
Object result; // arg list or result
Error unpack_error;
Arena arena;
// one length free-list of reusable blocks
ArenaMem reuse_blk;
int nevents;
int ncalls;
UIClientHandler ui_handler;
GridLineEvent *grid_line_event;
};
// unrecovareble error. unpack_error should be set!
#define unpacker_closed(p) ((p)->state < 0)
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "msgpack_rpc/unpacker.h.generated.h"
#endif
#endif // NVIM_MSGPACK_RPC_UNPACKER_H
|