diff options
author | Mathias Stearn <mathias@10gen.com> | 2015-01-07 00:54:51 -0500 |
---|---|---|
committer | Mathias Stearn <mathias@10gen.com> | 2015-01-07 11:56:33 -0500 |
commit | 331911d3f31cf93c82bfaab3b6db0a77fdb80374 (patch) | |
tree | 75a53457f0d5830d9cd49e091e36a51df678fb6f /src/mongo | |
parent | 5d46a3a9f7b7f8b17ae1cbe73dd9f8d056350b81 (diff) | |
download | mongo-331911d3f31cf93c82bfaab3b6db0a77fdb80374.tar.gz |
SERVER-16632 Remove unneeded kEquals byte after each field in KeyString
Diffstat (limited to 'src/mongo')
-rw-r--r-- | src/mongo/db/storage/key_string.cpp | 34 | ||||
-rw-r--r-- | src/mongo/db/storage/key_string_test.cpp | 11 | ||||
-rw-r--r-- | src/mongo/db/storage/wiredtiger/wiredtiger_index.cpp | 6 |
3 files changed, 27 insertions, 24 deletions
diff --git a/src/mongo/db/storage/key_string.cpp b/src/mongo/db/storage/key_string.cpp index 7cf1a103460..350106a7739 100644 --- a/src/mongo/db/storage/key_string.cpp +++ b/src/mongo/db/storage/key_string.cpp @@ -158,9 +158,11 @@ namespace mongo { const uint8_t kEnd = 0x4; - const uint8_t kEqual = 0x2; - const uint8_t kLess = kEqual - 1; - const uint8_t kGreater = kEqual + 1; + // These overlay with CType or kEnd bytes and therefor must be less/greater than all of + // them (and their inverses). They also can't equal 0 or 255 since that would collide with + // the encoding of NUL bytes in strings as "\x00\xff". + const uint8_t kLess = 1; + const uint8_t kGreater = 254; } // namespace // some utility functions @@ -236,7 +238,6 @@ namespace mongo { // These are used in IndexEntryComparison::makeQueryObject() switch (*elem.fieldName()) { - case '\0': _append(kEqual, false); break; case 'l': _append(kLess, false); break; case 'g': _append(kGreater, false); break; } @@ -716,15 +717,15 @@ namespace mongo { // size was stored in 4 bytes. size = endian::bigToNative(readType<uint32_t>(reader, inverted)); } - BinDataType type = BinDataType(readType<uint8_t>(reader, inverted)); + BinDataType subType = BinDataType(readType<uint8_t>(reader, inverted)); const void* ptr = reader->skip(size); if (!inverted) { - *stream << BSONBinData(ptr, size, type); + *stream << BSONBinData(ptr, size, subType); } else { boost::scoped_array<char> flipped(new char[size]); memcpy_flipBits(flipped.get(), ptr, size); - *stream << BSONBinData(flipped.get(), size, type); + *stream << BSONBinData(flipped.get(), size, subType); } break; } @@ -770,9 +771,9 @@ namespace mongo { case CType::kArray: { BSONObjBuilder subArr(stream->subarrayStart()); int index = 0; - uint8_t type; - while ((type = readType<uint8_t>(reader, inverted)) != 0) { - toBsonValue(type, + uint8_t elemType; + while ((elemType = readType<uint8_t>(reader, inverted)) != 0) { + toBsonValue(elemType, reader, inverted, &(subArr << BSONObjBuilder::numStr(index++))); @@ -880,14 +881,17 @@ namespace mongo { for (int i = 0; reader.remaining(); i++) { const bool invert = (ord.get(i) == -1); uint8_t type = readType<uint8_t>(&reader, invert); + if (type == kLess || type == kGreater) { + // This was just a discriminator which is logically part of the previous field. This + // will only be encountered on queries, not in the keys stored in an index. + // Note: this should probably affect the BSON key name of the last field, but it + // must be read *after* the value so it isn't possible. + type = readType<uint8_t>(&reader, invert); + } + if (type == kEnd) break; toBsonValue(type, &reader, invert, &(builder << "")); - - // discriminator - // Note: this should probably affect the BSON key name, but it must be read - // *after* the value so it isn't possible. - reader.read<uint8_t>(); } return builder.obj(); } diff --git a/src/mongo/db/storage/key_string_test.cpp b/src/mongo/db/storage/key_string_test.cpp index bf0e7cd88c1..9430c8dd62c 100644 --- a/src/mongo/db/storage/key_string_test.cpp +++ b/src/mongo/db/storage/key_string_test.cpp @@ -97,12 +97,11 @@ TEST(KeyStringTest, ActualBytesDouble) { KeyString ks = KeyString::make(a, ALL_ASCENDING); log() << "size: " << ks.getSize() << " hex [" << toHex(ks.getBuffer(), ks.getSize()) << "]"; - ASSERT_EQUALS(11U, ks.getSize()); + ASSERT_EQUALS(10U, ks.getSize()); string hex = "2B" // kNumericPositive1ByteInt "0B" // (5 << 1) | 1 "02000000000000" // fractional bytes of double - "02" // kEqual "04"; // kEnd ASSERT_EQUALS(hex, @@ -110,17 +109,17 @@ TEST(KeyStringTest, ActualBytesDouble) { ks = KeyString::make(a, Ordering::make(BSON("a" << -1))); - ASSERT_EQUALS(11U, ks.getSize()); + ASSERT_EQUALS(10U, ks.getSize()); - // last 2 bytes don't get flipped + // last byte (kEnd) doesn't get flipped string hexFlipped; - for ( size_t i = 0; i < hex.size()-4; i += 2 ) { + for ( size_t i = 0; i < hex.size()-2; i += 2 ) { char c = fromHex(hex.c_str() + i); c = ~c; hexFlipped += toHex(&c, 1); } - hexFlipped += hex.substr(hex.size()-4); + hexFlipped += hex.substr(hex.size()-2); ASSERT_EQUALS(hexFlipped, toHex(ks.getBuffer(), ks.getSize())); diff --git a/src/mongo/db/storage/wiredtiger/wiredtiger_index.cpp b/src/mongo/db/storage/wiredtiger/wiredtiger_index.cpp index 40033bcdf88..f2dfd2c9a5c 100644 --- a/src/mongo/db/storage/wiredtiger/wiredtiger_index.cpp +++ b/src/mongo/db/storage/wiredtiger/wiredtiger_index.cpp @@ -63,9 +63,9 @@ namespace { static const WiredTigerItem emptyItem(NULL, 0); - static const int kMinimumIndexVersion = 4; - static const int kCurrentIndexVersion = 4; // New indexes use this by default. - static const int kMaximumIndexVersion = 4; + static const int kMinimumIndexVersion = 5; + static const int kCurrentIndexVersion = 5; // New indexes use this by default. + static const int kMaximumIndexVersion = 5; BOOST_STATIC_ASSERT(kCurrentIndexVersion >= kMinimumIndexVersion); BOOST_STATIC_ASSERT(kCurrentIndexVersion <= kMaximumIndexVersion); |