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
,
24 unlikely (memcached_server_count(ptr
) == 0)
25 return MEMCACHED_NO_SERVERS
;
27 for (unsigned int x
= 0; x
< memcached_server_count(ptr
); x
++)
29 memcached_return_t rc
;
30 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
32 bool no_reply
= ptr
->flags
.no_reply
;
33 memcached_server_write_instance_st instance
=
34 memcached_server_instance_fetch(ptr
, x
);
39 send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
40 "flush_all %llu%s\r\n",
41 (unsigned long long)expiration
, no_reply
? " noreply" : "");
45 send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
46 "flush_all%s\r\n", no_reply
? " noreply" : "");
49 if (send_length
>= MEMCACHED_DEFAULT_COMMAND_SIZE
|| send_length
< 0)
51 return MEMCACHED_FAILURE
;
54 rc
= memcached_do(instance
, buffer
, (size_t)send_length
, true);
56 if (rc
== MEMCACHED_SUCCESS
&& !no_reply
)
57 (void)memcached_response(instance
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, NULL
);
60 return MEMCACHED_SUCCESS
;
63 static memcached_return_t
memcached_flush_binary(memcached_st
*ptr
,
66 protocol_binary_request_flush request
= {.bytes
= {0}};
68 unlikely (memcached_server_count(ptr
) == 0)
69 return MEMCACHED_NO_SERVERS
;
71 request
.message
.header
.request
.magic
= (uint8_t)PROTOCOL_BINARY_REQ
;
72 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_FLUSH
;
73 request
.message
.header
.request
.extlen
= 4;
74 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
75 request
.message
.header
.request
.bodylen
= htonl(request
.message
.header
.request
.extlen
);
76 request
.message
.body
.expiration
= htonl((uint32_t) expiration
);
78 for (uint32_t x
= 0; x
< memcached_server_count(ptr
); x
++)
80 memcached_server_write_instance_st instance
=
81 memcached_server_instance_fetch(ptr
, x
);
83 if (ptr
->flags
.no_reply
)
85 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_FLUSHQ
;
89 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_FLUSH
;
92 if (memcached_do(instance
, request
.bytes
, sizeof(request
.bytes
), true) != MEMCACHED_SUCCESS
)
94 memcached_io_reset(instance
);
95 return MEMCACHED_WRITE_FAILURE
;
99 for (uint32_t x
= 0; x
< memcached_server_count(ptr
); x
++)
101 memcached_server_write_instance_st instance
=
102 memcached_server_instance_fetch(ptr
, x
);
104 if (memcached_server_response_count(instance
) > 0)
105 (void)memcached_response(instance
, NULL
, 0, NULL
);
108 return MEMCACHED_SUCCESS
;