Skip to content

Commit 9e4c795

Browse files
computermouthguybedford
authored andcommittedDec 9, 2024·
fix: KVStore lookup fix for if-generation-match option (#1069)
1 parent 857f6fa commit 9e4c795

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed
 

‎.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ defaults:
1111
shell: bash
1212
env:
1313
# Note: when updated, also update version in ensure-cargo-installs
14-
viceroy_version: 0.12.1
14+
viceroy_version: 0.12.2
1515
# Note: when updated, also update version in ensure-cargo-installs ! AND ! release-please.yml
1616
wasm-tools_version: 1.216.0
1717
fastly-cli_version: 10.13.3
@@ -46,7 +46,7 @@ jobs:
4646
matrix:
4747
include:
4848
- crate: viceroy
49-
version: 0.12.1 # Note: workflow-level env vars can't be used in matrix definitions
49+
version: 0.12.2 # Note: workflow-level env vars can't be used in matrix definitions
5050
options: ""
5151
- crate: wasm-tools
5252
version: 1.216.0 # Note: workflow-level env vars can't be used in matrix definitions

‎runtime/fastly/host-api/fastly.h

+9-2
Original file line numberDiff line numberDiff line change
@@ -559,9 +559,10 @@ typedef struct __attribute__((aligned(4))) KVLookupOptions {
559559

560560
#define KV_INSERT_CONFIG_RESERVED (1u << 0)
561561
#define KV_INSERT_CONFIG_BACKGROUND_FETCH (1u << 1)
562-
#define KV_INSERT_CONFIG_IF_GENERATION_MATCH (1u << 2)
562+
#define KV_INSERT_CONFIG_RESERVED_2 (1u << 2)
563563
#define KV_INSERT_CONFIG_METADATA (1u << 3)
564564
#define KV_INSERT_CONFIG_TIME_TO_LIVE_SEC (1u << 4)
565+
#define KV_INSERT_CONFIG_IF_GENERATION_MATCH (1u << 5)
565566

566567
#define KV_INSERT_MODE_OVERWRITE 0u
567568
#define KV_INSERT_MODE_ADD 1u
@@ -570,10 +571,11 @@ typedef struct __attribute__((aligned(4))) KVLookupOptions {
570571

571572
typedef struct __attribute__((aligned(4))) KVInsertOptions {
572573
uint32_t mode;
573-
uint32_t if_generation_match;
574+
uint32_t reserved;
574575
const uint8_t *metadata;
575576
uint32_t metadata_len;
576577
uint32_t time_to_live_sec;
578+
uint64_t if_generation_match;
577579
} KVInsertOptions;
578580

579581
#define KV_DELETE_CONFIG_RESERVED (1u << 0)
@@ -621,6 +623,11 @@ int kv_store_lookup_wait(uint32_t kv_store_handle_lookup_handle, uint32_t *body_
621623
uint8_t *metadata_buf_out, size_t metadata_buf_len, size_t *nwritten_out,
622624
uint32_t *generation_out, uint32_t *kv_error_out);
623625

626+
WASM_IMPORT("fastly_kv_store", "lookup_wait_v2")
627+
int kv_store_lookup_wait_v2(uint32_t kv_store_handle_lookup_handle, uint32_t *body_handle_out,
628+
uint8_t *metadata_buf_out, size_t metadata_buf_len,
629+
size_t *nwritten_out, uint64_t *generation_out, uint32_t *kv_error_out);
630+
624631
WASM_IMPORT("fastly_kv_store", "insert")
625632
int kv_store_insert(uint32_t kv_store_handle, const char *key, size_t key_len, uint32_t body_handle,
626633
uint32_t insert_options_mask, KVInsertOptions *insert_options,

‎runtime/fastly/host-api/host_api.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -3290,14 +3290,14 @@ KVStorePendingLookup::wait() {
32903290
fastly::fastly_host_error err;
32913291
HttpBody body{};
32923292

3293-
uint32_t gen_out;
3293+
uint64_t gen_out;
32943294
fastly::fastly_kv_error kv_err = 0;
32953295
uint8_t *metadata_buf = reinterpret_cast<uint8_t *>(cabi_malloc(HOSTCALL_BUFFER_LEN, 1));
32963296
size_t metadata_nwritten;
32973297

3298-
if (!convert_result(fastly::kv_store_lookup_wait(this->handle, &body.handle, metadata_buf,
3299-
HOSTCALL_BUFFER_LEN, &metadata_nwritten,
3300-
&gen_out, &kv_err),
3298+
if (!convert_result(fastly::kv_store_lookup_wait_v2(this->handle, &body.handle, metadata_buf,
3299+
HOSTCALL_BUFFER_LEN, &metadata_nwritten,
3300+
&gen_out, &kv_err),
33013301
&err) ||
33023302
((kv_err != KV_ERROR_OK || body.handle == INVALID_HANDLE) && kv_err != KV_ERROR_NOT_FOUND)) {
33033303
cabi_free(metadata_buf);
@@ -3354,7 +3354,7 @@ FastlyAsyncTask::Handle KVStorePendingDelete::async_handle() const {
33543354

33553355
Result<KVStorePendingInsert::Handle>
33563356
KVStore::insert(std::string_view key, HttpBody body, std::optional<InsertMode> mode,
3357-
std::optional<uint32_t> if_generation_match,
3357+
std::optional<uint64_t> if_generation_match,
33583358
std::optional<std::tuple<const uint8_t *, size_t>> metadata,
33593359
std::optional<uint32_t> ttl) {
33603360
Result<KVStorePendingInsert::Handle> res;

‎runtime/fastly/host-api/host_api_fastly.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,7 @@ class KVStore final {
10351035
Result<KVStorePendingLookup::Handle> lookup(std::string_view key);
10361036
Result<KVStorePendingInsert::Handle>
10371037
insert(std::string_view key, HttpBody body, std::optional<InsertMode> mode,
1038-
std::optional<uint32_t> if_generation_match,
1038+
std::optional<uint64_t> if_generation_match,
10391039
std::optional<std::tuple<const uint8_t *, size_t>> metadata, std::optional<uint32_t> ttl);
10401040
Result<KVStorePendingDelete::Handle> delete_(std::string_view key);
10411041
// cursor is base64 encoding of the last key

0 commit comments

Comments
 (0)
Please sign in to comment.