-
Notifications
You must be signed in to change notification settings - Fork 116
/
kvio.hh
67 lines (59 loc) · 1.89 KB
/
kvio.hh
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
/* Masstree
* Eddie Kohler, Yandong Mao, Robert Morris
* Copyright (c) 2012-2014 President and Fellows of Harvard College
* Copyright (c) 2012-2014 Massachusetts Institute of Technology
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, subject to the conditions
* listed in the Masstree LICENSE file. These conditions include: you must
* preserve this copyright notice, and you cannot mention the copyright
* holders in advertising related to the Software without their permission.
* The Software is provided WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED. This
* notice is a summary of the Masstree LICENSE file; the license in that file
* is legally binding.
*/
#ifndef KVIO_H
#define KVIO_H
#include <string>
#include <vector>
#include <stdlib.h>
#include "string.hh"
#include "str.hh"
struct kvout {
int fd;
char* buf;
unsigned capacity; // allocated size of buf
unsigned n; // # of chars we've written to buf
inline void append(char c);
inline char* reserve(int n);
inline void adjust_length(int delta);
inline void set_end(char* end);
void grow(unsigned want);
};
kvout* new_kvout(int fd, int buflen);
kvout* new_bufkvout();
void kvout_reset(kvout* kv);
void free_kvout(kvout* kv);
int kvwrite(kvout* kv, const void* buf, unsigned int n);
void kvflush(kvout* kv);
inline void kvout::append(char c) {
if (n == capacity)
grow(0);
buf[n] = c;
++n;
}
inline char* kvout::reserve(int nchars) {
if (n + nchars > capacity)
grow(n + nchars);
return buf + n;
}
inline void kvout::adjust_length(int delta) {
masstree_precondition(n + delta <= capacity);
n += delta;
}
inline void kvout::set_end(char* x) {
masstree_precondition(x >= buf && x <= buf + capacity);
n = x - buf;
}
#endif