| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475 |
- // SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
- // SPDX-License-Identifier: GPL-2.0-or-later
- #include <sstream>
- #include "common/fs/file.h"
- #include "common/fs/path_util.h"
- #include "common/logging/log.h"
- #include "common/stb.h"
- #include "core/core.h"
- #include "core/hle/service/caps/caps_manager.h"
- #include "core/hle/service/caps/caps_result.h"
- #include "core/hle/service/time/time_manager.h"
- #include "core/hle/service/time/time_zone_content_manager.h"
- namespace Service::Capture {
- AlbumManager::AlbumManager(Core::System& system_) : system{system_} {}
- AlbumManager::~AlbumManager() = default;
- Result AlbumManager::DeleteAlbumFile(const AlbumFileId& file_id) {
- if (file_id.storage > AlbumStorage::Sd) {
- return ResultInvalidStorage;
- }
- if (!is_mounted) {
- return ResultIsNotMounted;
- }
- std::filesystem::path path;
- const auto result = GetFile(path, file_id);
- if (result.IsError()) {
- return result;
- }
- if (!Common::FS::RemoveFile(path)) {
- return ResultFileNotFound;
- }
- return ResultSuccess;
- }
- Result AlbumManager::IsAlbumMounted(AlbumStorage storage) {
- if (storage > AlbumStorage::Sd) {
- return ResultInvalidStorage;
- }
- is_mounted = true;
- if (storage == AlbumStorage::Sd) {
- FindScreenshots();
- }
- return is_mounted ? ResultSuccess : ResultIsNotMounted;
- }
- Result AlbumManager::GetAlbumFileList(std::vector<AlbumEntry>& out_entries, AlbumStorage storage,
- u8 flags) const {
- if (storage > AlbumStorage::Sd) {
- return ResultInvalidStorage;
- }
- if (!is_mounted) {
- return ResultIsNotMounted;
- }
- for (auto& [file_id, path] : album_files) {
- if (file_id.storage != storage) {
- continue;
- }
- if (out_entries.size() >= SdAlbumFileLimit) {
- break;
- }
- const auto entry_size = Common::FS::GetSize(path);
- out_entries.push_back({
- .entry_size = entry_size,
- .file_id = file_id,
- });
- }
- return ResultSuccess;
- }
- Result AlbumManager::GetAlbumFileList(std::vector<ApplicationAlbumFileEntry>& out_entries,
- ContentType content_type, s64 start_posix_time,
- s64 end_posix_time, u64 aruid) const {
- if (!is_mounted) {
- return ResultIsNotMounted;
- }
- std::vector<ApplicationAlbumEntry> album_entries;
- const auto start_date = ConvertToAlbumDateTime(start_posix_time);
- const auto end_date = ConvertToAlbumDateTime(end_posix_time);
- const auto result = GetAlbumFileList(album_entries, content_type, start_date, end_date, aruid);
- if (result.IsError()) {
- return result;
- }
- for (const auto& album_entry : album_entries) {
- ApplicationAlbumFileEntry entry{
- .entry = album_entry,
- .datetime = album_entry.datetime,
- .unknown = {},
- };
- out_entries.push_back(entry);
- }
- return ResultSuccess;
- }
- Result AlbumManager::GetAlbumFileList(std::vector<ApplicationAlbumEntry>& out_entries,
- ContentType content_type, AlbumFileDateTime start_date,
- AlbumFileDateTime end_date, u64 aruid) const {
- if (!is_mounted) {
- return ResultIsNotMounted;
- }
- for (auto& [file_id, path] : album_files) {
- if (file_id.type != content_type) {
- continue;
- }
- if (file_id.date > start_date) {
- continue;
- }
- if (file_id.date < end_date) {
- continue;
- }
- if (out_entries.size() >= SdAlbumFileLimit) {
- break;
- }
- const auto entry_size = Common::FS::GetSize(path);
- ApplicationAlbumEntry entry{
- .size = entry_size,
- .hash{},
- .datetime = file_id.date,
- .storage = file_id.storage,
- .content = content_type,
- .unknown = 1,
- };
- out_entries.push_back(entry);
- }
- return ResultSuccess;
- }
- Result AlbumManager::GetAutoSavingStorage(bool& out_is_autosaving) const {
- out_is_autosaving = false;
- return ResultSuccess;
- }
- Result AlbumManager::LoadAlbumScreenShotImage(LoadAlbumScreenShotImageOutput& out_image_output,
- std::vector<u8>& out_image,
- const AlbumFileId& file_id,
- const ScreenShotDecodeOption& decoder_options) const {
- if (file_id.storage > AlbumStorage::Sd) {
- return ResultInvalidStorage;
- }
- if (!is_mounted) {
- return ResultIsNotMounted;
- }
- out_image_output = {
- .width = 1280,
- .height = 720,
- .attribute =
- {
- .unknown_0{},
- .orientation = AlbumImageOrientation::None,
- .unknown_1{},
- .unknown_2{},
- },
- };
- std::filesystem::path path;
- const auto result = GetFile(path, file_id);
- if (result.IsError()) {
- return result;
- }
- out_image.resize(out_image_output.height * out_image_output.width * STBI_rgb_alpha);
- return LoadImage(out_image, path, static_cast<int>(out_image_output.width),
- +static_cast<int>(out_image_output.height), decoder_options.flags);
- }
- Result AlbumManager::LoadAlbumScreenShotThumbnail(
- LoadAlbumScreenShotImageOutput& out_image_output, std::vector<u8>& out_image,
- const AlbumFileId& file_id, const ScreenShotDecodeOption& decoder_options) const {
- if (file_id.storage > AlbumStorage::Sd) {
- return ResultInvalidStorage;
- }
- if (!is_mounted) {
- return ResultIsNotMounted;
- }
- out_image_output = {
- .width = 320,
- .height = 180,
- .attribute =
- {
- .unknown_0{},
- .orientation = AlbumImageOrientation::None,
- .unknown_1{},
- .unknown_2{},
- },
- };
- std::filesystem::path path;
- const auto result = GetFile(path, file_id);
- if (result.IsError()) {
- return result;
- }
- out_image.resize(out_image_output.height * out_image_output.width * STBI_rgb_alpha);
- return LoadImage(out_image, path, static_cast<int>(out_image_output.width),
- +static_cast<int>(out_image_output.height), decoder_options.flags);
- }
- Result AlbumManager::SaveScreenShot(ApplicationAlbumEntry& out_entry,
- const ScreenShotAttribute& attribute,
- AlbumReportOption report_option, std::span<const u8> image_data,
- u64 aruid) {
- return SaveScreenShot(out_entry, attribute, report_option, {}, image_data, aruid);
- }
- Result AlbumManager::SaveScreenShot(ApplicationAlbumEntry& out_entry,
- const ScreenShotAttribute& attribute,
- AlbumReportOption report_option,
- const ApplicationData& app_data, std::span<const u8> image_data,
- u64 aruid) {
- const u64 title_id = system.GetApplicationProcessProgramID();
- const auto& user_clock = system.GetTimeManager().GetStandardUserSystemClockCore();
- s64 posix_time{};
- Result result = user_clock.GetCurrentTime(system, posix_time);
- if (result.IsError()) {
- return result;
- }
- const auto date = ConvertToAlbumDateTime(posix_time);
- return SaveImage(out_entry, image_data, title_id, date);
- }
- Result AlbumManager::SaveEditedScreenShot(ApplicationAlbumEntry& out_entry,
- const ScreenShotAttribute& attribute,
- const AlbumFileId& file_id,
- std::span<const u8> image_data) {
- const auto& user_clock = system.GetTimeManager().GetStandardUserSystemClockCore();
- s64 posix_time{};
- Result result = user_clock.GetCurrentTime(system, posix_time);
- if (result.IsError()) {
- return result;
- }
- const auto date = ConvertToAlbumDateTime(posix_time);
- return SaveImage(out_entry, image_data, file_id.application_id, date);
- }
- Result AlbumManager::GetFile(std::filesystem::path& out_path, const AlbumFileId& file_id) const {
- const auto file = album_files.find(file_id);
- if (file == album_files.end()) {
- return ResultFileNotFound;
- }
- out_path = file->second;
- return ResultSuccess;
- }
- void AlbumManager::FindScreenshots() {
- is_mounted = false;
- album_files.clear();
- // TODO: Swap this with a blocking operation.
- const auto screenshots_dir = Common::FS::GetYuzuPath(Common::FS::YuzuPath::ScreenshotsDir);
- Common::FS::IterateDirEntries(
- screenshots_dir,
- [this](const std::filesystem::path& full_path) {
- AlbumEntry entry;
- if (GetAlbumEntry(entry, full_path).IsError()) {
- return true;
- }
- while (album_files.contains(entry.file_id)) {
- if (++entry.file_id.date.unique_id == 0) {
- break;
- }
- }
- album_files[entry.file_id] = full_path;
- return true;
- },
- Common::FS::DirEntryFilter::File);
- is_mounted = true;
- }
- Result AlbumManager::GetAlbumEntry(AlbumEntry& out_entry, const std::filesystem::path& path) const {
- std::istringstream line_stream(path.filename().string());
- std::string date;
- std::string application;
- std::string time;
- // Parse filename to obtain entry properties
- std::getline(line_stream, application, '_');
- std::getline(line_stream, date, '_');
- std::getline(line_stream, time, '_');
- std::istringstream date_stream(date);
- std::istringstream time_stream(time);
- std::string year;
- std::string month;
- std::string day;
- std::string hour;
- std::string minute;
- std::string second;
- std::getline(date_stream, year, '-');
- std::getline(date_stream, month, '-');
- std::getline(date_stream, day, '-');
- std::getline(time_stream, hour, '-');
- std::getline(time_stream, minute, '-');
- std::getline(time_stream, second, '-');
- try {
- out_entry = {
- .entry_size = 1,
- .file_id{
- .application_id = static_cast<u64>(std::stoll(application, 0, 16)),
- .date =
- {
- .year = static_cast<s16>(std::stoi(year)),
- .month = static_cast<s8>(std::stoi(month)),
- .day = static_cast<s8>(std::stoi(day)),
- .hour = static_cast<s8>(std::stoi(hour)),
- .minute = static_cast<s8>(std::stoi(minute)),
- .second = static_cast<s8>(std::stoi(second)),
- .unique_id = 0,
- },
- .storage = AlbumStorage::Sd,
- .type = ContentType::Screenshot,
- .unknown = 1,
- },
- };
- } catch (const std::invalid_argument&) {
- return ResultUnknown;
- } catch (const std::out_of_range&) {
- return ResultUnknown;
- } catch (const std::exception&) {
- return ResultUnknown;
- }
- return ResultSuccess;
- }
- Result AlbumManager::LoadImage(std::span<u8> out_image, const std::filesystem::path& path,
- int width, int height, ScreenShotDecoderFlag flag) const {
- if (out_image.size() != static_cast<std::size_t>(width * height * STBI_rgb_alpha)) {
- return ResultUnknown;
- }
- const Common::FS::IOFile db_file{path, Common::FS::FileAccessMode::Read,
- Common::FS::FileType::BinaryFile};
- std::vector<u8> raw_file(db_file.GetSize());
- if (db_file.Read(raw_file) != raw_file.size()) {
- return ResultUnknown;
- }
- int filter_flag = STBIR_FILTER_DEFAULT;
- int original_width, original_height, color_channels;
- const auto dbi_image =
- stbi_load_from_memory(raw_file.data(), static_cast<int>(raw_file.size()), &original_width,
- &original_height, &color_channels, STBI_rgb_alpha);
- if (dbi_image == nullptr) {
- return ResultUnknown;
- }
- switch (flag) {
- case ScreenShotDecoderFlag::EnableFancyUpsampling:
- filter_flag = STBIR_FILTER_TRIANGLE;
- break;
- case ScreenShotDecoderFlag::EnableBlockSmoothing:
- filter_flag = STBIR_FILTER_BOX;
- break;
- default:
- filter_flag = STBIR_FILTER_DEFAULT;
- break;
- }
- stbir_resize_uint8_srgb(dbi_image, original_width, original_height, 0, out_image.data(), width,
- height, 0, STBI_rgb_alpha, 3, filter_flag);
- return ResultSuccess;
- }
- void AlbumManager::FlipVerticallyOnWrite(bool flip) {
- stbi_flip_vertically_on_write(flip);
- }
- static void PNGToMemory(void* context, void* data, int len) {
- std::vector<u8>* png_image = static_cast<std::vector<u8>*>(context);
- unsigned char* png = static_cast<unsigned char*>(data);
- png_image->insert(png_image->end(), png, png + len);
- }
- Result AlbumManager::SaveImage(ApplicationAlbumEntry& out_entry, std::span<const u8> image,
- u64 title_id, const AlbumFileDateTime& date) const {
- const auto screenshot_path =
- Common::FS::GetYuzuPathString(Common::FS::YuzuPath::ScreenshotsDir);
- const std::string formatted_date =
- fmt::format("{:04}-{:02}-{:02}_{:02}-{:02}-{:02}-{:03}", date.year, date.month, date.day,
- date.hour, date.minute, date.second, 0);
- const std::string file_path =
- fmt::format("{}/{:016x}_{}.png", screenshot_path, title_id, formatted_date);
- const Common::FS::IOFile db_file{file_path, Common::FS::FileAccessMode::Write,
- Common::FS::FileType::BinaryFile};
- std::vector<u8> png_image;
- if (!stbi_write_png_to_func(PNGToMemory, &png_image, 1280, 720, STBI_rgb_alpha, image.data(),
- 0)) {
- return ResultFileCountLimit;
- }
- if (db_file.Write(png_image) != png_image.size()) {
- return ResultFileCountLimit;
- }
- out_entry = {
- .size = png_image.size(),
- .hash = {},
- .datetime = date,
- .storage = AlbumStorage::Sd,
- .content = ContentType::Screenshot,
- .unknown = 1,
- };
- return ResultSuccess;
- }
- AlbumFileDateTime AlbumManager::ConvertToAlbumDateTime(u64 posix_time) const {
- Time::TimeZone::CalendarInfo calendar_date{};
- const auto& time_zone_manager =
- system.GetTimeManager().GetTimeZoneContentManager().GetTimeZoneManager();
- time_zone_manager.ToCalendarTimeWithMyRules(posix_time, calendar_date);
- return {
- .year = calendar_date.time.year,
- .month = calendar_date.time.month,
- .day = calendar_date.time.day,
- .hour = calendar_date.time.hour,
- .minute = calendar_date.time.minute,
- .second = calendar_date.time.second,
- .unique_id = 0,
- };
- }
- } // namespace Service::Capture
|