1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/file_descriptor_store.h"
9 #include "base/logging.h"
13 FileDescriptorStore::Descriptor::Descriptor(const std::string& key,
17 region(base::MemoryMappedFile::Region::kWholeFile) {}
19 FileDescriptorStore::Descriptor::Descriptor(
20 const std::string& key,
22 base::MemoryMappedFile::Region region)
23 : key(key), fd(std::move(fd)), region(region) {}
25 FileDescriptorStore::Descriptor::Descriptor(
26 FileDescriptorStore::Descriptor&& other)
27 : key(other.key), fd(std::move(other.fd)), region(other.region) {}
29 FileDescriptorStore::Descriptor::~Descriptor() = default;
32 FileDescriptorStore& FileDescriptorStore::GetInstance() {
33 static FileDescriptorStore* store = new FileDescriptorStore;
37 base::ScopedFD FileDescriptorStore::TakeFD(
38 const std::string& key,
39 base::MemoryMappedFile::Region* region) {
40 base::ScopedFD fd = MaybeTakeFD(key, region);
42 DLOG(DCHECK) << "Unknown global descriptor: " << key;
46 base::ScopedFD FileDescriptorStore::MaybeTakeFD(
47 const std::string& key,
48 base::MemoryMappedFile::Region* region) {
49 auto iter = descriptors_.find(key);
50 if (iter == descriptors_.end())
51 return base::ScopedFD();
52 *region = iter->second.region;
53 base::ScopedFD result = std::move(iter->second.fd);
54 descriptors_.erase(iter);
58 void FileDescriptorStore::Set(const std::string& key, base::ScopedFD fd) {
59 Set(key, std::move(fd), base::MemoryMappedFile::Region::kWholeFile);
62 void FileDescriptorStore::Set(const std::string& key,
64 base::MemoryMappedFile::Region region) {
65 Descriptor descriptor(key, std::move(fd), region);
66 descriptors_.insert(std::make_pair(key, std::move(descriptor)));
69 FileDescriptorStore::FileDescriptorStore() = default;
71 FileDescriptorStore::~FileDescriptorStore() = default;