Atmosphere/libraries/libstratosphere/source/erpt/srv/erpt_srv_attachment_impl.cpp

80 lines
2.7 KiB
C++
Raw Normal View History

/*
* 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_attachment_impl.hpp"
#include "erpt_srv_attachment.hpp"
namespace ams::erpt::srv {
2021-10-10 07:14:06 +00:00
AttachmentImpl::AttachmentImpl() : m_attachment(nullptr) {
/* ... */
}
AttachmentImpl::~AttachmentImpl() {
R_ABORT_UNLESS(this->Close());
}
Result AttachmentImpl::Open(const AttachmentId &attachment_id) {
2021-10-10 07:14:06 +00:00
R_UNLESS(m_attachment == nullptr, erpt::ResultAlreadyInitialized());
JournalRecord<AttachmentInfo> *record = Journal::Retrieve(attachment_id);
R_UNLESS(record != nullptr, erpt::ResultNotFound());
2021-10-10 07:14:06 +00:00
m_attachment = new Attachment(record);
R_UNLESS(m_attachment != nullptr, erpt::ResultOutOfMemory());
auto attachment_guard = SCOPE_GUARD { delete m_attachment; m_attachment = nullptr; };
2021-10-10 07:14:06 +00:00
R_TRY(m_attachment->Open(AttachmentOpenType_Read));
attachment_guard.Cancel();
2022-03-26 07:14:36 +00:00
R_SUCCEED();
}
Result AttachmentImpl::Read(ams::sf::Out<u32> out_count, const ams::sf::OutBuffer &out_buffer) {
2021-10-10 07:14:06 +00:00
R_UNLESS(m_attachment != nullptr, erpt::ResultNotInitialized());
R_RETURN(m_attachment->Read(out_count.GetPointer(), static_cast<u8 *>(out_buffer.GetPointer()), static_cast<u32>(out_buffer.GetSize())));
}
Result AttachmentImpl::SetFlags(AttachmentFlagSet flags) {
2021-10-10 07:14:06 +00:00
R_UNLESS(m_attachment != nullptr, erpt::ResultNotInitialized());
R_RETURN(m_attachment->SetFlags(flags));
}
Result AttachmentImpl::GetFlags(ams::sf::Out<AttachmentFlagSet> out) {
2021-10-10 07:14:06 +00:00
R_UNLESS(m_attachment != nullptr, erpt::ResultNotInitialized());
R_RETURN(m_attachment->GetFlags(out.GetPointer()));
}
Result AttachmentImpl::Close() {
2021-10-10 07:14:06 +00:00
if (m_attachment != nullptr) {
m_attachment->Close();
delete m_attachment;
m_attachment = nullptr;
}
2022-03-26 07:14:36 +00:00
R_SUCCEED();
}
Result AttachmentImpl::GetSize(ams::sf::Out<s64> out) {
2021-10-10 07:14:06 +00:00
R_UNLESS(m_attachment != nullptr, erpt::ResultNotInitialized());
R_RETURN(m_attachment->GetSize(out.GetPointer()));
}
}