diff options
author | Alex Gorrod <alexg@wiredtiger.com> | 2016-03-14 03:29:25 +0000 |
---|---|---|
committer | Alex Gorrod <alexg@wiredtiger.com> | 2016-03-14 03:29:25 +0000 |
commit | bf32b9f6ddb2941afd9504cbffb9ee9933c747e4 (patch) | |
tree | 32d2ce069ec131b7da975775372c03e18e87419e /ext | |
parent | 7b407403935a23622b83a9192390afe3caad799f (diff) | |
download | mongo-bf32b9f6ddb2941afd9504cbffb9ee9933c747e4.tar.gz |
WT-2375 Update reverse integer collator to use streaming pack API.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/collators/revint/revint_collator.c | 39 |
1 files changed, 22 insertions, 17 deletions
diff --git a/ext/collators/revint/revint_collator.c b/ext/collators/revint/revint_collator.c index 1e432842caf..30b5dc67556 100644 --- a/ext/collators/revint/revint_collator.c +++ b/ext/collators/revint/revint_collator.c @@ -53,6 +53,7 @@ revint_compare(WT_COLLATOR *collator, { const REVINT_COLLATOR *revint_collator; WT_EXTENSION_API *wtapi; + WT_PACK_STREAM *pstream; int ret; int64_t i1, i2, p1, p2; @@ -78,22 +79,26 @@ revint_compare(WT_COLLATOR *collator, * To keep this code simple, we do not reverse the ordering * when comparing primary keys. */ - if ((ret = wtapi->struct_unpack(wtapi, session, - k1->data, k1->size, "ii", &i1, &p1)) != 0) { - /* could be missing primary key, try again without */ - if ((ret = wtapi->struct_unpack(wtapi, session, - k1->data, k1->size, "i", &i1)) != 0) - return (ret); - p1 = INT64_MIN; /* sort this first */ - } - if ((ret = wtapi->struct_unpack(wtapi, session, - k2->data, k2->size, "ii", &i2, &p2)) != 0) { - /* could be missing primary key, try again without */ - if ((ret = wtapi->struct_unpack(wtapi, session, - k2->data, k2->size, "i", &i2)) != 0) - return (ret); - p2 = INT64_MIN; /* sort this first */ - } + if ((ret = wtapi->unpack_start( + wtapi, session, "ii", k1->data, k1->size, &pstream)) != 0 || + (ret = wtapi->unpack_int(wtapi, pstream, &i1)) != 0) + goto err; + if ((ret = wtapi->unpack_int(wtapi, pstream, &p1)) != 0) + /* A missing primary key is OK and sorts first. */ + p1 = INT64_MIN; + if ((ret = wtapi->pack_close(wtapi, pstream, NULL)) != 0) + goto err; + + /* Unpack the second pair of numbers. */ + if ((ret = wtapi->unpack_start( + wtapi, session, "ii", k2->data, k2->size, &pstream)) != 0 || + (ret = wtapi->unpack_int(wtapi, pstream, &i2)) != 0) + goto err; + if ((ret = wtapi->unpack_int(wtapi, pstream, &p2)) != 0) + /* A missing primary key is OK and sorts first. */ + p2 = INT64_MIN; + if ((ret = wtapi->pack_close(wtapi, pstream, NULL)) != 0) + goto err; /* sorting is reversed */ if (i1 < i2) @@ -108,7 +113,7 @@ revint_compare(WT_COLLATOR *collator, else *cmp = 0; /* index key and primary key are same */ - return (0); +err: return (ret); } /* |