mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-10 07:06:34 +00:00
114 lines
5.6 KiB
C++
114 lines
5.6 KiB
C++
/*
|
|
* Copyright (c) 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/>.
|
|
*/
|
|
#include <stratosphere.hpp>
|
|
#include "erpt_srv_context.hpp"
|
|
#include "erpt_srv_cipher.hpp"
|
|
#include "erpt_srv_context_record.hpp"
|
|
#include "erpt_srv_report.hpp"
|
|
|
|
namespace ams::erpt::srv {
|
|
|
|
namespace {
|
|
|
|
using ContextList = util::IntrusiveListBaseTraits<Context>::ListType;
|
|
|
|
constinit ContextList g_category_list;
|
|
|
|
}
|
|
|
|
Context::Context(CategoryId cat) : m_category(cat) {
|
|
g_category_list.push_front(*this);
|
|
}
|
|
|
|
Context::~Context() {
|
|
g_category_list.erase(g_category_list.iterator_to(*this));
|
|
}
|
|
|
|
Result Context::AddCategoryToReport(Report *report) {
|
|
if (m_record != nullptr) {
|
|
const auto *entry = m_record->GetContextEntryPtr();
|
|
for (u32 i = 0; i < entry->field_count; i++) {
|
|
auto *field = std::addressof(entry->fields[i]);
|
|
u8 *arr_buf = entry->array_buffer;
|
|
|
|
switch (field->type) {
|
|
case FieldType_Bool: R_TRY(Cipher::AddField(report, field->id, field->value_bool)); break;
|
|
case FieldType_NumericU8: R_TRY(Cipher::AddField(report, field->id, field->value_u8)); break;
|
|
case FieldType_NumericU16: R_TRY(Cipher::AddField(report, field->id, field->value_u16)); break;
|
|
case FieldType_NumericU32: R_TRY(Cipher::AddField(report, field->id, field->value_u32)); break;
|
|
case FieldType_NumericU64: R_TRY(Cipher::AddField(report, field->id, field->value_u64)); break;
|
|
case FieldType_NumericI8: R_TRY(Cipher::AddField(report, field->id, field->value_i8)); break;
|
|
case FieldType_NumericI16: R_TRY(Cipher::AddField(report, field->id, field->value_i16)); break;
|
|
case FieldType_NumericI32: R_TRY(Cipher::AddField(report, field->id, field->value_i32)); break;
|
|
case FieldType_NumericI64: R_TRY(Cipher::AddField(report, field->id, field->value_i64)); break;
|
|
case FieldType_String: R_TRY(Cipher::AddField(report, field->id, reinterpret_cast<char *>(arr_buf + field->value_array.start_idx), field->value_array.size / sizeof(char))); break;
|
|
case FieldType_U8Array: R_TRY(Cipher::AddField(report, field->id, reinterpret_cast< u8 *>(arr_buf + field->value_array.start_idx), field->value_array.size / sizeof(u8))); break;
|
|
case FieldType_U32Array: R_TRY(Cipher::AddField(report, field->id, reinterpret_cast< u32 *>(arr_buf + field->value_array.start_idx), field->value_array.size / sizeof(u32))); break;
|
|
case FieldType_U64Array: R_TRY(Cipher::AddField(report, field->id, reinterpret_cast< u64 *>(arr_buf + field->value_array.start_idx), field->value_array.size / sizeof(u64))); break;
|
|
case FieldType_I8Array: R_TRY(Cipher::AddField(report, field->id, reinterpret_cast< s8 *>(arr_buf + field->value_array.start_idx), field->value_array.size / sizeof(s8))); break;
|
|
case FieldType_I32Array: R_TRY(Cipher::AddField(report, field->id, reinterpret_cast< s32 *>(arr_buf + field->value_array.start_idx), field->value_array.size / sizeof(s32))); break;
|
|
case FieldType_I64Array: R_TRY(Cipher::AddField(report, field->id, reinterpret_cast< s64 *>(arr_buf + field->value_array.start_idx), field->value_array.size / sizeof(s64))); break;
|
|
default: R_THROW(erpt::ResultInvalidArgument());
|
|
}
|
|
}
|
|
}
|
|
|
|
R_SUCCEED();
|
|
}
|
|
|
|
Result Context::SubmitContext(const ContextEntry *entry, const u8 *data, u32 data_size) {
|
|
auto record = std::make_unique<ContextRecord>();
|
|
R_UNLESS(record != nullptr, erpt::ResultOutOfMemory());
|
|
|
|
R_TRY(record->Initialize(entry, data, data_size));
|
|
|
|
R_RETURN(SubmitContextRecord(std::move(record)));
|
|
}
|
|
|
|
Result Context::SubmitContextRecord(std::unique_ptr<ContextRecord> record) {
|
|
auto it = util::range::find_if(g_category_list, [&](const Context &cur) {
|
|
return cur.m_category == record->GetContextEntryPtr()->category;
|
|
});
|
|
R_UNLESS(it != g_category_list.end(), erpt::ResultCategoryNotFound());
|
|
|
|
it->m_record = std::move(record);
|
|
R_SUCCEED();
|
|
}
|
|
|
|
Result Context::WriteContextsToReport(Report *report) {
|
|
R_TRY(report->Open(ReportOpenType_Create));
|
|
R_TRY(Cipher::Begin(report, ContextRecord::GetRecordCount()));
|
|
|
|
for (auto it = g_category_list.begin(); it != g_category_list.end(); it++) {
|
|
R_TRY(it->AddCategoryToReport(report));
|
|
}
|
|
|
|
Cipher::End(report);
|
|
report->Close();
|
|
|
|
R_SUCCEED();
|
|
}
|
|
|
|
Result Context::ClearContext(CategoryId cat) {
|
|
/* Make an empty record for the category. */
|
|
auto record = std::make_unique<ContextRecord>(cat);
|
|
R_UNLESS(record != nullptr, erpt::ResultOutOfMemory());
|
|
|
|
/* Submit the context record. */
|
|
R_RETURN(SubmitContextRecord(std::move(record)));
|
|
}
|
|
|
|
}
|