mirror of
https://github.com/matrix-construct/construct
synced 2024-11-01 03:18:54 +01:00
95 lines
3.4 KiB
C++
95 lines
3.4 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 multiple events in parallel into the closure.
|
|
uint64_t get(std::nothrow_t, const vector_view<const event::idx> &, const string_view &key, const event::fetch::views_closure &);
|
|
void get(const vector_view<const event::idx> &, const string_view &key, const event::fetch::views_closure &);
|
|
|
|
// 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
|
|
get(std::nothrow_t, const event::idx &, const string_view &key, T ret);
|
|
}
|
|
|
|
template<class T>
|
|
inline typename std::enable_if<std::is_integral<T>::value, T>::type
|
|
ircd::m::get(std::nothrow_t,
|
|
const event::idx &event_idx,
|
|
const string_view &key,
|
|
T ret)
|
|
{
|
|
get(event_idx, key, ret);
|
|
return ret;
|
|
}
|
|
|
|
template<class T>
|
|
inline 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>
|
|
inline 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);
|
|
}
|