2014-08-22 13:52:28 -04:00
|
|
|
|
// Copyright 2014 The Crashpad Authors. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
//
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
//
|
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
|
|
#ifndef CRASHPAD_CLIENT_SIMPLE_STRING_DICTIONARY_H_
|
|
|
|
|
#define CRASHPAD_CLIENT_SIMPLE_STRING_DICTIONARY_H_
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#include "base/basictypes.h"
|
|
|
|
|
#include "base/logging.h"
|
|
|
|
|
|
|
|
|
|
namespace crashpad {
|
|
|
|
|
|
|
|
|
|
// Opaque type for the serialized representation of a TSimpleStringDictionary.
|
|
|
|
|
// One is created in TSimpleStringDictionary::Serialize and can be deserialized
|
|
|
|
|
// using one of the constructors.
|
|
|
|
|
struct SerializedSimpleStringDictionary;
|
|
|
|
|
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//! \brief A map/dictionary collection implementation using a fixed amount of
|
|
|
|
|
//! storage, so that it does not perform any dynamic allocations for its
|
|
|
|
|
//! operations.
|
|
|
|
|
//!
|
|
|
|
|
//! The actual map storage (TSimpleStringDictionary::Entry) is guaranteed to be
|
|
|
|
|
//! POD, so that it can be transmitted over various IPC mechanisms.
|
|
|
|
|
//!
|
|
|
|
|
//! The template parameters control the amount of storage used for the key,
|
|
|
|
|
//! value, and map. The \a KeySize and \a ValueSize are measured in bytes, not
|
|
|
|
|
//! glyphs, and include space for a trailing `NUL` byte. This gives space for
|
|
|
|
|
//! `KeySize - 1` and `ValueSize - 1` characters in an entry. \a NumEntries is
|
|
|
|
|
//! the total number of entries that will fit in the map.
|
2014-08-22 13:52:28 -04:00
|
|
|
|
template <size_t KeySize = 256, size_t ValueSize = 256, size_t NumEntries = 64>
|
|
|
|
|
class TSimpleStringDictionary {
|
|
|
|
|
public:
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//! \brief Constant and publicly accessible versions of the template
|
|
|
|
|
//! parameters.
|
|
|
|
|
//! \{
|
2014-08-22 13:52:28 -04:00
|
|
|
|
static const size_t key_size = KeySize;
|
|
|
|
|
static const size_t value_size = ValueSize;
|
|
|
|
|
static const size_t num_entries = NumEntries;
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//! \}
|
2014-08-22 13:52:28 -04:00
|
|
|
|
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//! \brief A single entry in the map.
|
2014-08-22 13:52:28 -04:00
|
|
|
|
struct Entry {
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//! \brief The entry’s key.
|
|
|
|
|
//!
|
|
|
|
|
//! If this is a 0-length `NUL`-terminated string, the entry is inactive.
|
2014-08-22 13:52:28 -04:00
|
|
|
|
char key[KeySize];
|
2014-08-22 17:09:03 -04:00
|
|
|
|
|
|
|
|
|
//! \brief The entry’s value.
|
2014-08-22 13:52:28 -04:00
|
|
|
|
char value[ValueSize];
|
|
|
|
|
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//! \brief Returns the validity of the entry.
|
|
|
|
|
//!
|
|
|
|
|
//! If #key is an empty string, the entry is considered inactive, and this
|
|
|
|
|
//! method returns `false`. Otherwise, returns `true`.
|
2014-08-22 13:52:28 -04:00
|
|
|
|
bool is_active() const {
|
|
|
|
|
return key[0] != '\0';
|
2014-08-22 17:09:03 -04:00
|
|
|
|
}
|
2014-08-22 13:52:28 -04:00
|
|
|
|
};
|
|
|
|
|
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//! \brief An iterator to traverse all of the active entries in a
|
|
|
|
|
//! TSimpleStringDictionary.
|
2014-08-22 13:52:28 -04:00
|
|
|
|
class Iterator {
|
|
|
|
|
public:
|
|
|
|
|
explicit Iterator(const TSimpleStringDictionary& map)
|
|
|
|
|
: map_(map),
|
|
|
|
|
current_(0) {
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-14 11:10:45 -04:00
|
|
|
|
//! \brief Returns the next entry in the map, or `nullptr` if at the end of
|
|
|
|
|
//! the collection.
|
2014-08-22 13:52:28 -04:00
|
|
|
|
const Entry* Next() {
|
|
|
|
|
while (current_ < map_.num_entries) {
|
|
|
|
|
const Entry* entry = &map_.entries_[current_++];
|
|
|
|
|
if (entry->is_active()) {
|
|
|
|
|
return entry;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-10-14 11:10:45 -04:00
|
|
|
|
return nullptr;
|
2014-08-22 13:52:28 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const TSimpleStringDictionary& map_;
|
|
|
|
|
size_t current_;
|
|
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Iterator);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
TSimpleStringDictionary()
|
|
|
|
|
: entries_() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TSimpleStringDictionary(const TSimpleStringDictionary& other) {
|
|
|
|
|
*this = other;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TSimpleStringDictionary& operator=(const TSimpleStringDictionary& other) {
|
|
|
|
|
memcpy(entries_, other.entries_, sizeof(entries_));
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//! \brief Constructs a map from its serialized form. \a map should be the out
|
|
|
|
|
//! parameter from Serialize(), and \a size should be its return value.
|
2014-08-22 13:52:28 -04:00
|
|
|
|
TSimpleStringDictionary(
|
|
|
|
|
const SerializedSimpleStringDictionary* map, size_t size) {
|
|
|
|
|
DCHECK_EQ(size, sizeof(entries_));
|
|
|
|
|
if (size == sizeof(entries_)) {
|
|
|
|
|
memcpy(entries_, map, size);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//! \brief Returns the number of active key/value pairs. The upper limit for
|
|
|
|
|
//! this is \a NumEntries.
|
2014-08-22 13:52:28 -04:00
|
|
|
|
size_t GetCount() const {
|
|
|
|
|
size_t count = 0;
|
|
|
|
|
for (size_t i = 0; i < num_entries; ++i) {
|
|
|
|
|
if (entries_[i].is_active()) {
|
|
|
|
|
++count;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return count;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//! \brief Given \a key, returns its corresponding value.
|
|
|
|
|
//!
|
2014-10-14 11:10:45 -04:00
|
|
|
|
//! \param[in] key The key to look up. This must not be `nullptr`.
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//!
|
|
|
|
|
//! \return The corresponding value for \a key, or if \a key is not found,
|
2014-10-14 11:10:45 -04:00
|
|
|
|
//! `nullptr`.
|
2014-08-22 13:52:28 -04:00
|
|
|
|
const char* GetValueForKey(const char* key) const {
|
|
|
|
|
DCHECK(key);
|
|
|
|
|
if (!key) {
|
2014-10-14 11:10:45 -04:00
|
|
|
|
return nullptr;
|
2014-08-22 13:52:28 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const Entry* entry = GetConstEntryForKey(key);
|
|
|
|
|
if (!entry) {
|
2014-10-14 11:10:45 -04:00
|
|
|
|
return nullptr;
|
2014-08-22 13:52:28 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return entry->value;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//! \brief Stores \a value into \a key, replacing the existing value if \a key
|
|
|
|
|
//! is already present.
|
|
|
|
|
//!
|
2014-10-14 11:10:45 -04:00
|
|
|
|
//! If \a key is not yet in the map and the map is already full (containing
|
|
|
|
|
//! \a NumEntries active entries), this operation silently fails.
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//!
|
2014-10-14 11:10:45 -04:00
|
|
|
|
//! \param[in] key The key to store. This must not be `nullptr`.
|
|
|
|
|
//! \param[in] value The value to store. If `nullptr`, \a key is removed from
|
|
|
|
|
//! the map.
|
2014-08-22 13:52:28 -04:00
|
|
|
|
void SetKeyValue(const char* key, const char* value) {
|
|
|
|
|
if (!value) {
|
|
|
|
|
RemoveKey(key);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DCHECK(key);
|
|
|
|
|
if (!key) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-22 17:09:03 -04:00
|
|
|
|
// |key| must not be an empty string.
|
2014-08-22 13:52:28 -04:00
|
|
|
|
DCHECK_NE(key[0], '\0');
|
|
|
|
|
if (key[0] == '\0') {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Entry* entry = GetEntryForKey(key);
|
|
|
|
|
|
|
|
|
|
// If it does not yet exist, attempt to insert it.
|
|
|
|
|
if (!entry) {
|
|
|
|
|
for (size_t i = 0; i < num_entries; ++i) {
|
|
|
|
|
if (!entries_[i].is_active()) {
|
|
|
|
|
entry = &entries_[i];
|
|
|
|
|
|
|
|
|
|
strncpy(entry->key, key, key_size);
|
|
|
|
|
entry->key[key_size - 1] = '\0';
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-14 11:10:45 -04:00
|
|
|
|
// If the map is out of space, |entry| will be nullptr.
|
2014-08-22 13:52:28 -04:00
|
|
|
|
if (!entry) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
|
// Sanity check that the key only appears once.
|
|
|
|
|
int count = 0;
|
|
|
|
|
for (size_t i = 0; i < num_entries; ++i) {
|
|
|
|
|
if (strncmp(entries_[i].key, key, key_size) == 0) {
|
|
|
|
|
++count;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
DCHECK_EQ(count, 1);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
strncpy(entry->value, value, value_size);
|
|
|
|
|
entry->value[value_size - 1] = '\0';
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//! \brief Removes \a key from the map.
|
|
|
|
|
//!
|
2014-10-14 11:10:45 -04:00
|
|
|
|
//! If \a key is not found, this is a no-op.
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//!
|
2014-10-14 11:10:45 -04:00
|
|
|
|
//! \param[in] key The key of the entry to remove. This must not be `nullptr`.
|
2014-08-22 13:52:28 -04:00
|
|
|
|
void RemoveKey(const char* key) {
|
|
|
|
|
DCHECK(key);
|
|
|
|
|
if (!key) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Entry* entry = GetEntryForKey(key);
|
|
|
|
|
if (entry) {
|
|
|
|
|
entry->key[0] = '\0';
|
|
|
|
|
entry->value[0] = '\0';
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-06 16:44:38 -05:00
|
|
|
|
DCHECK_EQ(GetEntryForKey(key), implicit_cast<Entry*>(nullptr));
|
2014-08-22 13:52:28 -04:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//! \brief Returns a serialized form of the map.
|
|
|
|
|
//!
|
|
|
|
|
//! Places a serialized version of the map into \a map and returns the size in
|
|
|
|
|
//! bytes. Both \a map and the size should be passed to the deserializing
|
|
|
|
|
//! constructor. Note that the serialized \a map is scoped to the lifetime of
|
|
|
|
|
//! the non-serialized instance of this class. The \a map data can be copied
|
|
|
|
|
//! across IPC boundaries.
|
2014-08-22 13:52:28 -04:00
|
|
|
|
size_t Serialize(const SerializedSimpleStringDictionary** map) const {
|
|
|
|
|
*map = reinterpret_cast<const SerializedSimpleStringDictionary*>(entries_);
|
|
|
|
|
return sizeof(entries_);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const Entry* GetConstEntryForKey(const char* key) const {
|
|
|
|
|
for (size_t i = 0; i < num_entries; ++i) {
|
|
|
|
|
if (strncmp(key, entries_[i].key, key_size) == 0) {
|
|
|
|
|
return &entries_[i];
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-10-14 11:10:45 -04:00
|
|
|
|
return nullptr;
|
2014-08-22 13:52:28 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Entry* GetEntryForKey(const char* key) {
|
|
|
|
|
return const_cast<Entry*>(GetConstEntryForKey(key));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Entry entries_[NumEntries];
|
|
|
|
|
};
|
|
|
|
|
|
2014-08-22 17:09:03 -04:00
|
|
|
|
//! \brief A TSimpleStringDictionary with default template parameters.
|
|
|
|
|
//!
|
|
|
|
|
//! For historical reasons this specialized version is available with the same
|
|
|
|
|
//! size factors as a previous implementation.
|
2014-11-05 14:09:01 -05:00
|
|
|
|
using SimpleStringDictionary = TSimpleStringDictionary<256, 256, 64>;
|
2014-08-22 13:52:28 -04:00
|
|
|
|
|
|
|
|
|
} // namespace crashpad
|
|
|
|
|
|
|
|
|
|
#endif // CRASHPAD_CLIENT_SIMPLE_STRING_DICTIONARY_H_
|