/* * 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 . */ #include #include "erpt_srv_attachment_impl.hpp" #include "erpt_srv_attachment.hpp" namespace ams::erpt::srv { AttachmentImpl::AttachmentImpl() : m_attachment(nullptr) { /* ... */ } AttachmentImpl::~AttachmentImpl() { R_ABORT_UNLESS(this->Close()); } Result AttachmentImpl::Open(const AttachmentId &attachment_id) { R_UNLESS(m_attachment == nullptr, erpt::ResultAlreadyInitialized()); JournalRecord *record = Journal::Retrieve(attachment_id); R_UNLESS(record != nullptr, erpt::ResultNotFound()); m_attachment = new Attachment(record); R_UNLESS(m_attachment != nullptr, erpt::ResultOutOfMemory()); auto attachment_guard = SCOPE_GUARD { delete m_attachment; m_attachment = nullptr; }; R_TRY(m_attachment->Open(AttachmentOpenType_Read)); attachment_guard.Cancel(); return ResultSuccess(); } Result AttachmentImpl::Read(ams::sf::Out out_count, const ams::sf::OutBuffer &out_buffer) { R_UNLESS(m_attachment != nullptr, erpt::ResultNotInitialized()); return m_attachment->Read(out_count.GetPointer(), static_cast(out_buffer.GetPointer()), static_cast(out_buffer.GetSize())); } Result AttachmentImpl::SetFlags(AttachmentFlagSet flags) { R_UNLESS(m_attachment != nullptr, erpt::ResultNotInitialized()); return m_attachment->SetFlags(flags); } Result AttachmentImpl::GetFlags(ams::sf::Out out) { R_UNLESS(m_attachment != nullptr, erpt::ResultNotInitialized()); return m_attachment->GetFlags(out.GetPointer()); } Result AttachmentImpl::Close() { if (m_attachment != nullptr) { m_attachment->Close(); delete m_attachment; m_attachment = nullptr; } return ResultSuccess(); } Result AttachmentImpl::GetSize(ams::sf::Out out) { R_UNLESS(m_attachment != nullptr, erpt::ResultNotInitialized()); return m_attachment->GetSize(out.GetPointer()); } }