3 static memcached_return_t
memcached_flush_binary(memcached_st
*ptr
,
5 static memcached_return_t
memcached_flush_textual(memcached_st
*ptr
,
8 memcached_return_t
memcached_flush(memcached_st
*ptr
, time_t expiration
)
10 memcached_return_t rc
;
12 LIBMEMCACHED_MEMCACHED_FLUSH_START();
13 if (ptr
->flags
.binary_protocol
)
14 rc
= memcached_flush_binary(ptr
, expiration
);
16 rc
= memcached_flush_textual(ptr
, expiration
);
17 LIBMEMCACHED_MEMCACHED_FLUSH_END();
21 static memcached_return_t
memcached_flush_textual(memcached_st
*ptr
,
26 memcached_return_t rc
;
27 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
29 unlikely (memcached_server_count(ptr
) == 0)
30 return MEMCACHED_NO_SERVERS
;
32 for (x
= 0; x
< memcached_server_count(ptr
); x
++)
34 bool no_reply
= ptr
->flags
.no_reply
;
37 send_length
= (size_t) snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
38 "flush_all %llu%s\r\n",
39 (unsigned long long)expiration
, no_reply
? " noreply" : "");
41 send_length
= (size_t) snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
42 "flush_all%s\r\n", no_reply
? " noreply" : "");
44 rc
= memcached_do(&ptr
->hosts
[x
], buffer
, send_length
, 1);
46 if (rc
== MEMCACHED_SUCCESS
&& !no_reply
)
47 (void)memcached_response(&ptr
->hosts
[x
], buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, NULL
);
50 return MEMCACHED_SUCCESS
;
53 static memcached_return_t
memcached_flush_binary(memcached_st
*ptr
,
57 protocol_binary_request_flush request
= {.bytes
= {0}};
59 unlikely (memcached_server_count(ptr
) == 0)
60 return MEMCACHED_NO_SERVERS
;
62 request
.message
.header
.request
.magic
= (uint8_t)PROTOCOL_BINARY_REQ
;
63 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_FLUSH
;
64 request
.message
.header
.request
.extlen
= 4;
65 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
66 request
.message
.header
.request
.bodylen
= htonl(request
.message
.header
.request
.extlen
);
67 request
.message
.body
.expiration
= htonl((uint32_t) expiration
);
69 for (x
= 0; x
< memcached_server_count(ptr
); x
++)
71 if (ptr
->flags
.no_reply
)
72 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_FLUSHQ
;
74 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_FLUSH
;
75 if (memcached_do(&ptr
->hosts
[x
], request
.bytes
,
76 sizeof(request
.bytes
), 1) != MEMCACHED_SUCCESS
)
78 memcached_io_reset(&ptr
->hosts
[x
]);
79 return MEMCACHED_WRITE_FAILURE
;
83 for (x
= 0; x
< memcached_server_count(ptr
); x
++)
85 if (memcached_server_response_count(&ptr
->hosts
[x
]) > 0)
86 (void)memcached_response(&ptr
->hosts
[x
], NULL
, 0, NULL
);
89 return MEMCACHED_SUCCESS
;