X-Git-Url: https://pd.if.org/git/?p=nbds;a=blobdiff_plain;f=txn%2Ftxn.c;h=3edf666983962076dfb7110f3b3975241055ff63;hp=1073f7b6a24e3ae25fe5f124e7b11496f19604a5;hb=f1098084dd54496a61f9a254541190df77edd166;hpb=fa60fb1fb78136edc9e5863c0b86222f572963ef diff --git a/txn/txn.c b/txn/txn.c index 1073f7b..3edf666 100644 --- a/txn/txn.c +++ b/txn/txn.c @@ -21,7 +21,7 @@ struct update_rec { }; typedef struct write_rec { - const char *key; + void *key; update_rec_t *rec; } write_rec_t; @@ -44,9 +44,9 @@ static uint64_t version_ = 1; // Validate the updates for . Validation fails for a key we have written to if there is a // write committed newer than our read version. -static txn_state_e tm_validate_key (txn_t *txn, const char *key, uint32_t key_len) { +static txn_state_e tm_validate_key (txn_t *txn, void *key) { - update_rec_t *update = (update_rec_t *) map_get(txn->map, key, key_len); + update_rec_t *update = (update_rec_t *) map_get(txn->map, key); for (; update != NULL; update = update->prev) { uint64_t writer_version = update->version; if (writer_version <= txn->rv) @@ -102,7 +102,7 @@ static txn_state_e txn_validate (txn_t *txn) { } for (i = 0; i < txn->writes_count; ++i) { - txn_state_e s = tm_validate_key(txn, txn->writes[i].key, strlen(txn->writes[i].key)); + txn_state_e s = tm_validate_key(txn, txn->writes[i].key); if (s == TXN_ABORTED) { txn->state = TXN_ABORTED; break; @@ -130,7 +130,7 @@ static update_rec_t *alloc_update_rec (void) { return u; } -txn_t *txn_begin (txn_access_e access, txn_isolation_e isolation, map_type_t map_type) { +txn_t *txn_begin (txn_access_e access, txn_isolation_e isolation, map_t *map) { txn_t *txn = (txn_t *)nbd_malloc(sizeof(txn_t)); memset(txn, 0, sizeof(txn_t)); txn->access = access; @@ -138,7 +138,7 @@ txn_t *txn_begin (txn_access_e access, txn_isolation_e isolation, map_type_t map txn->rv = version_; txn->wv = UNDETERMINED_VERSION; txn->state = TXN_RUNNING; - txn->map = map_alloc(map_type); + txn->map = map; if (isolation != TXN_READ_ONLY) { txn->writes = nbd_malloc(sizeof(*txn->writes) * INITIAL_WRITES_SIZE); txn->writes_size = INITIAL_WRITES_SIZE; @@ -179,11 +179,11 @@ txn_state_e txn_commit (txn_t *txn) { } // Get most recent committed version prior to our read version. -uint64_t tm_get (txn_t *txn, const char *key, uint32_t key_len) { +uint64_t tm_get (txn_t *txn, void *key) { // Iterate through update records associated with to find the latest committed version. // We can use the first matching version. Older updates always come later in the list. - update_rec_t *update = (update_rec_t *) map_get(txn->map, key, key_len); + update_rec_t *update = (update_rec_t *) map_get(txn->map, key); for (; update != NULL; update = update->prev) { uint64_t writer_version = update->version; if (writer_version < txn->rv) @@ -213,7 +213,7 @@ uint64_t tm_get (txn_t *txn, const char *key, uint32_t key_len) { return DOES_NOT_EXIST; } -void tm_set (txn_t *txn, const char *key, uint32_t key_len, uint64_t value) { +void tm_set (txn_t *txn, void *key, uint64_t value) { // create a new update record update_rec_t *update = alloc_update_rec(); @@ -224,9 +224,9 @@ void tm_set (txn_t *txn, const char *key, uint32_t key_len, uint64_t value) { // push the new update record onto 's update list uint64_t update_prev; do { - update->prev = (update_rec_t *) map_get(txn->map, key, key_len); + update->prev = (update_rec_t *) map_get(txn->map, key); update_prev = (uint64_t)update->prev; - } while (map_cas(txn->map, key, key_len, update_prev, (uint64_t)update) != update_prev); + } while (map_cas(txn->map, key, update_prev, (uint64_t)update) != update_prev); // add to the write set for commit-time validation if (txn->writes_count == txn->writes_size) {