2 * Copyright (C) 2006-2009 Brian Aker
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
8 * Summary: Functions to manipulate the result structure.
12 #ifndef __MEMCACHED_RESULT_H__
13 #define __MEMCACHED_RESULT_H__
19 struct memcached_result_st
{
22 bool is_initialized
:1;
29 memcached_string_st value
;
30 char key
[MEMCACHED_MAX_KEY
];
31 /* Add result callback function */
36 void memcached_result_free(memcached_result_st
*result
);
38 void memcached_result_reset(memcached_result_st
*ptr
);
40 memcached_result_st
*memcached_result_create(memcached_st
*ptr
,
41 memcached_result_st
*result
);
43 static inline const char *memcached_result_key_value(const memcached_result_st
*self
)
48 static inline size_t memcached_result_key_length(const memcached_result_st
*self
)
50 return self
->key_length
;
53 static inline const char *memcached_result_value(const memcached_result_st
*self
)
55 const memcached_string_st
*sptr
= &self
->value
;
56 return memcached_string_value(sptr
);
59 static inline size_t memcached_result_length(const memcached_result_st
*self
)
61 const memcached_string_st
*sptr
= &self
->value
;
62 return memcached_string_length(sptr
);
65 static inline uint32_t memcached_result_flags(const memcached_result_st
*self
)
70 static inline uint64_t memcached_result_cas(const memcached_result_st
*self
)
75 static inline memcached_return_t
memcached_result_set_value(memcached_result_st
*ptr
, const char *value
, size_t length
)
77 return memcached_string_append(&ptr
->value
, value
, length
);
80 static inline void memcached_result_set_flags(memcached_result_st
*self
, uint32_t flags
)
85 static inline void memcached_result_set_expiration(memcached_result_st
*self
, time_t expiration
)
87 self
->expiration
= expiration
;
94 #endif /* __MEMCACHED_RESULT_H__ */