0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 10:08:56 +02:00
construct/include/ircd/m/get.h
2019-09-22 21:13:45 -07:00

77 lines
2.6 KiB
C++

// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2019 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
#pragma once
#define HAVE_IRCD_M_GET_H
namespace ircd::m
{
// Fetch the value for a single property of an event into the closure.
bool get(std::nothrow_t, const event::idx &, const string_view &key, const event::fetch::view_closure &);
bool get(std::nothrow_t, const event::id &, const string_view &key, const event::fetch::view_closure &);
void get(const event::idx &, const string_view &key, const event::fetch::view_closure &);
void get(const event::id &, const string_view &key, const event::fetch::view_closure &);
// Copies value into buffer returning view.
const_buffer get(std::nothrow_t, const event::idx &, const string_view &key, const mutable_buffer &out);
const_buffer get(std::nothrow_t, const event::id &, const string_view &key, const mutable_buffer &out);
const_buffer get(const event::idx &, const string_view &key, const mutable_buffer &out);
const_buffer get(const event::id &, const string_view &key, const mutable_buffer &out);
// Allocates and copies into string.
std::string get(std::nothrow_t, const event::idx &, const string_view &key);
std::string get(std::nothrow_t, const event::id &, const string_view &key);
std::string get(const event::idx &, const string_view &key);
std::string get(const event::id &, const string_view &key);
template<class T>
typename std::enable_if<std::is_integral<T>::value, bool>::type
get(const event::idx &, const string_view &key, T &ret);
template<class T>
typename std::enable_if<std::is_integral<T>::value, T>::type
get(const event::idx &, const string_view &key);
}
template<class T>
typename std::enable_if<std::is_integral<T>::value, T>::type
ircd::m::get(const event::idx &event_idx,
const string_view &key)
{
T ret;
const mutable_buffer buf
{
reinterpret_cast<char *>(&ret), sizeof(ret)
};
get(event_idx, key, buf);
return ret;
}
template<class T>
typename std::enable_if<std::is_integral<T>::value, bool>::type
ircd::m::get(const event::idx &event_idx,
const string_view &key,
T &ret)
{
const mutable_buffer buf
{
reinterpret_cast<char *>(&ret), sizeof(ret)
};
const auto rbuf
{
get(std::nothrow, event_idx, key, buf)
};
assert(empty(rbuf) || size(rbuf) >= sizeof(T));
return !empty(rbuf);
}