2018-02-04 03:22:01 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
2018-01-10 22:16:34 +01:00
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
2018-02-04 03:22:01 +01:00
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
2018-01-10 22:16:34 +01:00
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
2018-02-04 03:22:01 +01:00
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2018-01-10 22:16:34 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_UTIL_BSWAP_H
|
|
|
|
|
|
|
|
namespace ircd::util
|
|
|
|
{
|
|
|
|
template<class T> T &bswap(T *const &val);
|
|
|
|
template<class T> T bswap(const T &val);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Reverse endian of data pointed to; return reference
|
|
|
|
template<class T>
|
|
|
|
T &
|
|
|
|
ircd::util::bswap(T *const &val)
|
|
|
|
{
|
|
|
|
assert(val != nullptr);
|
2018-01-15 02:59:07 +01:00
|
|
|
const auto ptr{reinterpret_cast<uint8_t *>(val)};
|
|
|
|
std::reverse(ptr, ptr + sizeof(T));
|
2018-01-10 22:16:34 +01:00
|
|
|
return *val;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Reverse endian of T returning value copy
|
|
|
|
template<class T>
|
|
|
|
T
|
|
|
|
ircd::util::bswap(const T &val)
|
|
|
|
{
|
|
|
|
T ret;
|
2018-01-15 02:59:07 +01:00
|
|
|
const auto valptr{reinterpret_cast<const uint8_t *>(&val)};
|
|
|
|
const auto retptr{reinterpret_cast<uint8_t *>(&ret)};
|
|
|
|
std::reverse_copy(valptr, valptr + sizeof(T), retptr);
|
2018-01-10 22:16:34 +01:00
|
|
|
return ret;
|
|
|
|
}
|