blob: 4a302f2e69cec84a9efeadea3411eb10d058c23a [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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.
#pragma once
#include <cstddef>
#include <string>
#include <glog/logging.h>
#include "kudu/util/cache.h"
namespace kudu {
// Convenience macro for invoking CanUseNVMCacheForTests.
#define RETURN_IF_NO_NVM_CACHE(memory_type) do { \
if ((memory_type) == Cache::MemoryType::NVM && !CanUseNVMCacheForTests()) { \
LOG(WARNING) << "test is skipped; NVM cache cannot be created"; \
return; \
} \
} while (0)
// Returns true if an NVM cache can be created on this machine; false otherwise.
//
// Only intended for use in unit tests.
bool CanUseNVMCacheForTests();
// Create a new LRU cache with a fixed size capacity. This implementation
// of Cache uses the least-recently-used eviction policy and stored in NVM.
template<>
Cache* NewCache<Cache::EvictionPolicy::LRU,
Cache::MemoryType::NVM>(size_t capacity, const std::string& id);
} // namespace kudu