20 #include <aerospike/as_buffer.h>
26 #include <citrusleaf/cf_byte_order.h>
27 #include <citrusleaf/cf_digest.h>
38 #define AS_FIELD_NAMESPACE 0
39 #define AS_FIELD_SETNAME 1
40 #define AS_FIELD_KEY 2
41 #define AS_FIELD_DIGEST 4
42 #define AS_FIELD_DIGEST_ARRAY 6
43 #define AS_FIELD_TASK_ID 7
44 #define AS_FIELD_SCAN_OPTIONS 8
45 #define AS_FIELD_INDEX_RANGE 22
46 #define AS_FIELD_INDEX_FILTER 23
47 #define AS_FIELD_INDEX_LIMIT 24
48 #define AS_FIELD_INDEX_ORDER 25
49 #define AS_FIELD_INDEX_TYPE 26
50 #define AS_FIELD_UDF_PACKAGE_NAME 30
51 #define AS_FIELD_UDF_FUNCTION 31
52 #define AS_FIELD_UDF_ARGLIST 32
53 #define AS_FIELD_UDF_OP 33
54 #define AS_FIELD_QUERY_BINS 40
55 #define AS_FIELD_BATCH_INDEX 41
58 #define AS_MSG_INFO1_READ (1 << 0) // contains a read operation
59 #define AS_MSG_INFO1_GET_ALL (1 << 1) // get all bins, period
61 #define AS_MSG_INFO1_BATCH_INDEX (1 << 3) // batch read
62 #define AS_MSG_INFO1_XDR (1 << 4) // operation is being performed by XDR
63 #define AS_MSG_INFO1_GET_NOBINDATA (1 << 5) // do not get information about bins and its data
64 #define AS_MSG_INFO1_CONSISTENCY_ALL (1 << 6) // read consistency level - bit 0
68 #define AS_MSG_INFO2_WRITE (1 << 0) // contains a write semantic
69 #define AS_MSG_INFO2_DELETE (1 << 1) // delete record
70 #define AS_MSG_INFO2_GENERATION (1 << 2) // pay attention to the generation
71 #define AS_MSG_INFO2_GENERATION_GT (1 << 3) // apply write if new generation >= old, good for restore
73 #define AS_MSG_INFO2_CREATE_ONLY (1 << 5) // write record only if it doesn't exist
78 #define AS_MSG_INFO3_LAST (1 << 0) // this is the last of a multi-part message
79 #define AS_MSG_INFO3_COMMIT_MASTER (1 << 1) // write commit level - bit 0
81 #define AS_MSG_INFO3_UPDATE_ONLY (1 << 3) // update existing record only, do not create new record
82 #define AS_MSG_INFO3_CREATE_OR_REPLACE (1 << 4) // completely replace existing record, or create new record
83 #define AS_MSG_INFO3_REPLACE_ONLY (1 << 5) // completely replace existing record, do not create new record
88 #define AS_MESSAGE_VERSION 2L
89 #define AS_MESSAGE_TYPE 3L
92 #define AS_INFO_MESSAGE_VERSION 2L
93 #define AS_INFO_MESSAGE_TYPE 1L
96 #define AS_HEADER_SIZE 30
97 #define AS_FIELD_HEADER_SIZE 5
98 #define AS_OPERATION_HEADER_SIZE 8
100 #define AS_STACK_BUF_SIZE (1024 * 16)
106 #define as_command_init(_sz) (_sz > AS_STACK_BUF_SIZE)? (uint8_t*)cf_malloc(_sz) : (uint8_t*)alloca(_sz)
112 #define as_command_free(_buf, _sz) if (_sz > AS_STACK_BUF_SIZE) {cf_free(_buf);}
122 typedef struct as_command_node_s {
134 typedef struct as_command_parse_result_data_s {
200 size_t s = strlen(name);
227 uint32_t timeout_ms, uint16_t
n_fields, uint16_t n_bins);
233 static inline uint8_t*
235 uint32_t timeout_ms, uint16_t
n_fields, uint16_t n_bins)
243 memset(&cmd[10], 0, 12);
244 *(uint32_t*)&cmd[22] = cf_swap_to_be32(timeout_ms);
245 *(uint16_t*)&cmd[26] = cf_swap_to_be16(n_fields);
246 *(uint16_t*)&cmd[28] = cf_swap_to_be16(n_bins);
254 static inline uint8_t*
257 *(uint32_t*)p = cf_swap_to_be32(size+1);
267 static inline uint8_t*
284 static inline uint8_t*
288 *(uint64_t*)p = cf_swap_to_be64(val);
289 return p +
sizeof(uint64_t);
296 static inline uint8_t*
300 memcpy(p, buffer->data, buffer->size);
301 return p + buffer->size;
308 static inline uint8_t*
327 static inline uint8_t*
337 *(uint32_t*)cmd = cf_swap_to_be32((uint32_t)name_len + 4);
360 uint64_t len = end - begin;
362 *(uint64_t*)begin = cf_swap_to_be64(proto);
372 uint32_t timeout_ms, uint32_t retry,