2016-11-16 05:05:36 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2016-11-16 05:05:36 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2016-11-16 05:05:36 +01:00
|
|
|
|
|
|
|
// Helper methods to estimate memroy usage by std containers.
|
|
|
|
|
|
|
|
template <class Key, class Value, class Hash>
|
|
|
|
size_t ApproximateMemoryUsage(
|
|
|
|
const std::unordered_map<Key, Value, Hash>& umap) {
|
2021-09-07 20:31:12 +02:00
|
|
|
using Map = std::unordered_map<Key, Value, Hash>;
|
2016-11-16 05:05:36 +01:00
|
|
|
return sizeof(umap) +
|
|
|
|
// Size of all items plus a next pointer for each item.
|
|
|
|
(sizeof(typename Map::value_type) + sizeof(void*)) * umap.size() +
|
|
|
|
// Size of hash buckets.
|
|
|
|
umap.bucket_count() * sizeof(void*);
|
|
|
|
}
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|