File size: 3,696 Bytes
985c397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/// The MIT License (MIT)
/// Copyright (c) 2016 Peter Goldsborough
///
/// Permission is hereby granted, free of charge, to any person obtaining a copy
/// of this software and associated documentation files (the "Software"), to
/// deal in the Software without restriction, including without limitation the
/// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
/// sell copies of the Software, and to permit persons to whom the Software is
/// furnished to do so, subject to the following conditions:
///
/// The above copyright notice and this permission notice shall be included in
/// all copies or substantial portions of the Software.
///
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
/// IN THE SOFTWARE.

#ifndef LRU_INTERNAL_ERRORS_HPP
#define LRU_INTERNAL_ERRORS_HPP

#include <stdexcept>
#include <string>

namespace LRU {
namespace Error {

/// Exception thrown when the value of an invalid key was requested.
struct KeyNotFound : public std::runtime_error {
  using super = std::runtime_error;

  KeyNotFound() : super("Failed to find key") {
  }

  explicit KeyNotFound(const std::string& key)
  : super("Failed to find key: " + key) {
  }
};

/// Exception thrown when the value of an expired key was requested.
struct KeyExpired : public std::runtime_error {
  using super = std::runtime_error;

  explicit KeyExpired(const std::string& key)
  : super("Key found, but expired: " + key) {
  }

  KeyExpired() : super("Key found, but expired") {
  }
};

/// Exception thrown when requesting the front or end key of an empty cache.
struct EmptyCache : public std::runtime_error {
  using super = std::runtime_error;
  explicit EmptyCache(const std::string& what_was_expected)
  : super("Requested " + what_was_expected + " of empty cache") {
  }
};

/// Exception thrown when attempting to convert an invalid unordered iterator to
/// an ordered iterator.
struct InvalidIteratorConversion : public std::runtime_error {
  using super = std::runtime_error;
  InvalidIteratorConversion()
  : super("Cannot convert past-the-end unordered to ordered iterator") {
  }
};

/// Exception thrown when attempting to erase the past-the-end iterator.
struct InvalidIterator : public std::runtime_error {
  using super = std::runtime_error;
  InvalidIterator() : super("Past-the-end iterator is invalid here") {
  }
};

/// Exception thrown when requesting statistics about an unmonitored key.
struct UnmonitoredKey : public std::runtime_error {
  using super = std::runtime_error;
  UnmonitoredKey() : super("Requested statistics for unmonitored key") {
  }
};

/// Exception thrown when requesting the statistics object of a cache when none
/// was registered.
struct NotMonitoring : public std::runtime_error {
  using super = std::runtime_error;
  NotMonitoring() : super("Statistics monitoring not enabled for this cache") {
  }
};

namespace Lowercase {
using key_not_found = KeyNotFound;
using key_expired = KeyExpired;
using empty_cache = EmptyCache;
using invalid_iterator_conversion = InvalidIteratorConversion;
using invalid_iterator = InvalidIterator;
using unmonitored_key = UnmonitoredKey;
using not_monitoring = NotMonitoring;
}  // namespace Lowercase

}  // namespace Error
}  // namespace LRU

#endif  // LRU_INTERNAL_ERRORS_HPP