/* * 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 . */ #include #include "erpt_srv_report_impl.hpp" #include "erpt_srv_report.hpp" namespace ams::erpt::srv { ReportImpl::ReportImpl() : report(nullptr) { /* ... */ } ReportImpl::~ReportImpl() { R_ABORT_UNLESS(this->Close()); } Result ReportImpl::Open(const ReportId &report_id) { R_UNLESS(this->report == nullptr, erpt::ResultAlreadyInitialized()); JournalRecord *record = Journal::Retrieve(report_id); R_UNLESS(record != nullptr, erpt::ResultNotFound()); this->report = new Report(record, false); R_UNLESS(this->report != nullptr, erpt::ResultOutOfMemory()); auto report_guard = SCOPE_GUARD { delete this->report; this->report = nullptr; }; R_TRY(this->report->Open(ReportOpenType_Read)); report_guard.Cancel(); return ResultSuccess(); } Result ReportImpl::Read(ams::sf::Out out_count, const ams::sf::OutBuffer &out_buffer) { R_UNLESS(this->report != nullptr, erpt::ResultNotInitialized()); return this->report->Read(out_count.GetPointer(), static_cast(out_buffer.GetPointer()), static_cast(out_buffer.GetSize())); } Result ReportImpl::SetFlags(ReportFlagSet flags) { R_UNLESS(this->report != nullptr, erpt::ResultNotInitialized()); return this->report->SetFlags(flags); } Result ReportImpl::GetFlags(ams::sf::Out out) { R_UNLESS(this->report != nullptr, erpt::ResultNotInitialized()); return this->report->GetFlags(out.GetPointer()); } Result ReportImpl::Close() { if (this->report != nullptr) { this->report->Close(); delete this->report; this->report = nullptr; } return ResultSuccess(); } Result ReportImpl::GetSize(ams::sf::Out out) { R_UNLESS(this->report != nullptr, erpt::ResultNotInitialized()); return this->report->GetSize(out.GetPointer()); } }