mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-29 14:05:17 -04:00
util: add uuid
This commit is contained in:
parent
5a8aebf74d
commit
c17b6d0d44
6 changed files with 187 additions and 4 deletions
|
@ -21,13 +21,14 @@
|
|||
#include <vapours/util/util_alignment.hpp>
|
||||
#include <vapours/util/util_size.hpp>
|
||||
#include <vapours/util/util_endian.hpp>
|
||||
#include <vapours/util/util_fourcc.hpp>
|
||||
#include <vapours/util/util_bitpack.hpp>
|
||||
#include <vapours/util/util_bitset.hpp>
|
||||
#include <vapours/util/util_scope_guard.hpp>
|
||||
#include <vapours/util/util_specialization_of.hpp>
|
||||
#include <vapours/util/util_bitpack.hpp>
|
||||
#include <vapours/util/util_bitset.hpp>
|
||||
#include <vapours/util/util_bitutil.hpp>
|
||||
#include <vapours/util/util_typed_storage.hpp>
|
||||
#include <vapours/util/util_fourcc.hpp>
|
||||
#include <vapours/util/util_intrusive_list.hpp>
|
||||
#include <vapours/util/util_intrusive_red_black_tree.hpp>
|
||||
#include <vapours/util/util_tinymt.hpp>
|
||||
#include <vapours/util/util_bitutil.hpp>
|
||||
#include <vapours/util/util_uuid.hpp>
|
||||
|
|
|
@ -65,6 +65,7 @@ namespace ams::util {
|
|||
((u & (ByteMask << 0)) << 8);
|
||||
|
||||
} else if constexpr (std::is_same<U, u8>::value) {
|
||||
AMS_UNUSED(ByteMask);
|
||||
return u;
|
||||
} else {
|
||||
static_assert(!std::is_same<U, U>::value);
|
||||
|
|
41
libraries/libvapours/include/vapours/util/util_uuid.hpp
Normal file
41
libraries/libvapours/include/vapours/util/util_uuid.hpp
Normal file
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* Copyright (c) 2018-2020 Atmosphère-NX
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms and conditions of the GNU General Public License,
|
||||
* version 2, as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include <vapours/common.hpp>
|
||||
#include <vapours/assert.hpp>
|
||||
|
||||
namespace ams::util {
|
||||
|
||||
struct Uuid {
|
||||
static constexpr size_t Size = 0x10;
|
||||
|
||||
u8 data[Size];
|
||||
|
||||
bool operator==(const Uuid &rhs) const {
|
||||
return std::memcmp(this->data, rhs.data, Size) == 0;
|
||||
}
|
||||
|
||||
bool operator!=(const Uuid &rhs) const {
|
||||
return !(*this == rhs);
|
||||
}
|
||||
|
||||
u8 operator[](size_t i) const {
|
||||
return this->data[i];
|
||||
}
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue