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
|
/*-
* Copyright (c) 2008-2013 WiredTiger, Inc.
* All rights reserved.
*
* See the file LICENSE for redistribution information.
*/
#include "wt_internal.h"
/*
* wiredtiger_struct_size --
* Calculate the size of a packed byte string.
*/
int
wiredtiger_struct_size(
WT_SESSION *wt_session, size_t *sizep, const char *fmt, ...)
{
WT_DECL_RET;
va_list ap;
va_start(ap, fmt);
ret = __wt_struct_sizev((WT_SESSION_IMPL *)wt_session, sizep, fmt, ap);
va_end(ap);
return (ret);
}
/*
* wiredtiger_struct_pack --
* Pack a byte string.
*/
int
wiredtiger_struct_pack(
WT_SESSION *wt_session, void *buffer, size_t size, const char *fmt, ...)
{
WT_DECL_RET;
va_list ap;
va_start(ap, fmt);
ret = __wt_struct_packv(
(WT_SESSION_IMPL *)wt_session, buffer, size, fmt, ap);
va_end(ap);
return (ret);
}
/*
* wiredtiger_struct_unpack --
* Unpack a byte string.
*/
int
wiredtiger_struct_unpack(WT_SESSION *wt_session,
const void *buffer, size_t size, const char *fmt, ...)
{
WT_DECL_RET;
va_list ap;
va_start(ap, fmt);
ret = __wt_struct_unpackv(
(WT_SESSION_IMPL *)wt_session, buffer, size, fmt, ap);
va_end(ap);
return (ret);
}
|