blob: 2331e4b7c8f70c82369080f1aaebdd9104ab9b52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
// Copyright (C) 2012-2015 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <config.h>
#include <util/memory_segment_local.h>
#include <exceptions/exceptions.h>
namespace isc {
namespace util {
void*
MemorySegmentLocal::allocate(size_t size) {
void* ptr = malloc(size);
if (ptr == NULL) {
throw std::bad_alloc();
}
allocated_size_ += size;
return (ptr);
}
void
MemorySegmentLocal::deallocate(void* ptr, size_t size) {
if (ptr == NULL) {
// Return early if NULL is passed to be deallocated (without
// modifying allocated_size, or comparing against it).
return;
}
if (size > allocated_size_) {
isc_throw(OutOfRange, "Invalid size to deallocate: " << size
<< "; currently allocated size: " << allocated_size_);
}
allocated_size_ -= size;
free(ptr);
}
bool
MemorySegmentLocal::allMemoryDeallocated() const {
return (allocated_size_ == 0 && named_addrs_.empty());
}
MemorySegment::NamedAddressResult
MemorySegmentLocal::getNamedAddressImpl(const char* name) const {
std::map<std::string, void*>::const_iterator found =
named_addrs_.find(name);
if (found != named_addrs_.end()) {
return (NamedAddressResult(true, found->second));
}
return (NamedAddressResult(false, static_cast<void*>(0)));
}
bool
MemorySegmentLocal::setNamedAddressImpl(const char* name, void* addr) {
named_addrs_[name] = addr;
return (false);
}
bool
MemorySegmentLocal::clearNamedAddressImpl(const char* name) {
const size_t n_erased = named_addrs_.erase(name);
return (n_erased != 0);
}
} // namespace util
} // namespace isc
|