summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/key_string.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/key_string.h')
-rw-r--r--src/mongo/db/storage/key_string.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/mongo/db/storage/key_string.h b/src/mongo/db/storage/key_string.h
index e9ed78a9cf6..a144a5096aa 100644
--- a/src/mongo/db/storage/key_string.h
+++ b/src/mongo/db/storage/key_string.h
@@ -305,7 +305,18 @@ public:
Ordering ord,
const TypeBits& typeBits);
static BSONObj toBson(StringData data, Ordering ord, const TypeBits& types);
- static BSONObj toBson(const char* buffer, size_t len, Ordering ord, const TypeBits& types);
+ /**
+ * Decodes the given KeyString buffer into it's BSONObj representation. This is marked as
+ * noexcept since the assumption is that 'buffer' is a valid KeyString buffer and this method
+ * is not expected to throw.
+ *
+ * If the buffer provided may not be valid, use the 'safe' version instead.
+ */
+ static BSONObj toBson(const char* buffer,
+ size_t len,
+ Ordering ord,
+ const TypeBits& types) noexcept;
+ static BSONObj toBsonSafe(const char* buffer, size_t len, Ordering ord, const TypeBits& types);
/**
* Decodes a RecordId from the end of a buffer.