Utility containers.
Classes | |
class | http::ContentType |
Content-Type representation. More... | |
class | rcu::Variable< T, RcuTraits > |
Read-Copy-Update variable. More... | |
class | utils::FastPimpl< T, Size, Alignment, Strict > |
Implements pimpl idiom without dynamic memory allocation. More... | |
class | utils::NotNull< T > |
Restricts a pointer or smart pointer to only hold non-null values. More... | |
class | formats::json::Value |
Non-mutable JSON value representation. More... | |
class | formats::json::ValueBuilder |
Builder for JSON. More... | |
class | utils::AnyMovable |
Replacement for std::any that is not copyable. It allows to store non-copyable and even non-movable types. More... | |
class | crypto::Certificate |
class | crypto::PrivateKey |
class | utils::Flags< Enum > |
Wrapper to extend enum with flags interface. More... | |
class | utils::AtomicFlags< Enum > |
Wrapper to extend enum with atomic flags interface. More... | |
class | utils::StrongTypedef< Tag, T, Ops, class > |
Strong typedef for a type T. More... | |
class | http::headers::HeaderMap |
Container that maps case-insensitive header name into header value. More... | |
class | server::http::Cookie |
HTTP response cookie. More... | |
class | utils::FastScopeGuard< Callback > |
a helper class to perform actions on scope exit More... | |
class | concurrent::Variable< Data, Mutex > |
class | utils::StringLiteral |
Non-empty string view to a compile time known null terminated char array that lives for the lifetime of program, as per [lex.string]; a drop-in replacement for static const std::string kVar = "value" and constexpr std::string_view kVar = "value" . More... | |
class | storages::postgres::ParameterStore |
Class for dynamic PostgreSQL parameter list construction. More... | |
class | http::headers::PredefinedHeader |
A struct to represent compile-time known header name. More... | |
class | utils::SlidingInterval< T > |
Sliding interval of values that provides functions to compute average, min and max values from the last window_size values of interval. More... | |
class | utils::zstring_view |
Non-empty string view type that guarantees null-termination and has a c_str() member function. More... | |
class | utils::FixedArray< T > |
A fixed-size array with the size determined at runtime. More... | |
class | utils::TrivialBiMap< BuilderFunc > |
Bidirectional unordered map for trivial types, including string literals; could be efficiently used as a unordered non-bidirectional map. More... | |
class | utils::TrivialSet< BuilderFunc > |
Unordered set for trivial types, including string literals. More... | |
class | formats::yaml::Value |
Non-mutable YAML value representation. More... | |
class | decimal64::Decimal< Prec, TRoundPolicy > |
Fixed-point decimal data type for use in deterministic calculations, oftentimes involving money. More... | |
class | utils::OptionalRef< T > |
Class that behaves as a nullable reference. Main difference from the pointer - value comparison of pointed values. More... | |
class | utils::CheckedPtr< T > |
Utility template for returning a pointer to an object that is owned by someone else; throws std::runtime_error if nullptr is stored. More... | |
class | cache::LruMap< T, U, Hash, Equal > |
class | cache::LruSet< T, Hash, Equal > |
class | crypto::PublicKey |
class | formats::json::StringBuilder |
SAX like builder of JSON string. Use with extreme caution and only in performance critical part of your code. More... | |
class | formats::yaml::ValueBuilder |
Builder for YAML. More... | |
class | fs::blocking::CFile |
A std::FILE* wrapper. More... | |
class | fs::blocking::FileDescriptor |
A file descriptor wrapper. More... | |
class | fs::blocking::TempDirectory |
A unique directory for temporary files. The directory is deleted when the TempDirectory is destroyed. More... | |
class | fs::blocking::TempFile |
A unique temporary file. The file is deleted when the TempFile object is destroyed. More... | |
class | utils::AnyStorage< StorageTag > |
map-like heterogeneous data storage More... | |
class | utils::datetime::Date |
Date in format YYYY-MM-DD, std::chrono::year_month_day like type. More... | |
class | utils::DefaultDict< ValueType > |
Dictionary that for missing keys falls back to a default value stored by key utils::kDefaultDictDefaultName. More... | |
class | utils::expected< S, E > |
For holding a value or an error. More... | |
class | utils::ip::AddressBase< N > |
Base class for IPv4/IPv6 addresses. More... | |
class | utils::ip::NetworkBase< Address, typename > |
Base class for IPv4/IPv6 network. More... | |
class | utils::ip::InetNetwork |
INET IPv4/IPv4 network. More... | |
class | utils::MacaddrBase< N > |
Base class for Macaddr/Macaddr8. More... | |
class | utils::regex |
A drop-in replacement for std::regex without huge includes and with better performance characteristics. More... | |
class | utils::match_results |
A drop-in replacement for std::match_results without huge includes and with better performance characteristics. Represents capturing groups of a single match result. More... | |
class | utils::ResultStore< T > |
class | utils::ResultStore< void > |
class | utils::ScopeGuard |
a helper class to perform actions on scope exit More... | |
class | utils::SharedReadablePtr< T > |
std::shared_ptr<const T> wrapper that makes sure that the pointer is stored before dereferencing. Protects from dangling references. More... | |
class | utils::SmallString< N > |
An alternative to std::string with a custom SSO (small string optimization) container size. Unlike std::string, SmallString is not null-terminated thus it has no c_str(), data() returns a not null-terminated buffer. More... | |
class | cache::ExpirableLruCache< Key, Value, Hash, Equal > |
Class for expirable LRU cache. Use cache::LruMap for not expirable LRU Cache. More... | |
class | cache::NWayLRU< T, U, Hash, Equal > |
class | concurrent::BackgroundTaskStorageCore |
class | concurrent::BackgroundTaskStorage |
class | concurrent::MutexSet< Key, Hash, Equal > |
A dynamic set of mutexes. More... | |
class | fs::TempFile |
A unique temporary file. The file is deleted when the TempFile object is destroyed. More... | |
class | rcu::RcuMap< Key, Value, RcuMapTraits > |
Map-like structure allowing RCU keyset updates. More... | |
class | utils::LazySharedPtr< T > |
A lazy wrapper around utils::SharedReadablePtr that fetches the data on first access. More... | |
class | storages::clickhouse::ParameterStore |
Class for dynamic ClickHouse parameter list construction. More... | |
Typedefs | |
using | utils::ip::AddressV4 = AddressBase< 4 > |
IPv4 address in network bytes order. | |
using | utils::ip::AddressV6 = AddressBase< 16 > |
IPv6 address in network bytes order. | |
using | utils::ip::NetworkV4 = NetworkBase< AddressV4 > |
IPv4 network. | |
using | utils::ip::NetworkV6 = NetworkBase< AddressV6 > |
IPv6 network. | |
using | utils::Macaddr = MacaddrBase< 6 > |
48-bit MAC address | |
using | utils::Macaddr8 = MacaddrBase< 8 > |
64-bit MAC address | |
48-bit MAC address
Definition at line 47 of file macaddr.hpp.
64-bit MAC address
Definition at line 52 of file macaddr.hpp.