/* * Copyright (c) 2019-2020 Adubbz, 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 "ncm_utils.hpp" namespace ams::ncm { void GetStringFromContentId(char* out, ContentId content_id) { for (size_t i = 0; i < sizeof(ContentId); i++) { snprintf(out+i*2, 3, "%02x", content_id.uuid[i]); } } void GetStringFromPlaceHolderId(char* out, PlaceHolderId placeholder_id) { for (size_t i = 0; i < sizeof(PlaceHolderId); i++) { snprintf(out+i*2, 3, "%02x", placeholder_id.uuid[i]); } } Result GetPlaceHolderIdFromDirEntry(PlaceHolderId* out, struct dirent* dir_entry) { R_UNLESS(strnlen(dir_entry->d_name, 0x30) == 0x24, ncm::ResultInvalidPlaceHolderFile()); R_UNLESS(strncmp(dir_entry->d_name + 0x20, ".nca", 4) == 0, ncm::ResultInvalidPlaceHolderFile()); u8 tmp[sizeof(PlaceHolderId)] = {}; char byte_string[2]; char* end_ptr; u64 converted_val; for (size_t i = 0; i < sizeof(PlaceHolderId); i++) { char* name_char_pair = dir_entry->d_name + i * 2; byte_string[0] = name_char_pair[0]; byte_string[1] = name_char_pair[1]; converted_val = strtoull(byte_string, &end_ptr, 0x10); tmp[i] = (u8)converted_val; } PlaceHolderId placeholder_id; std::memcpy(placeholder_id.uuid.data, tmp, sizeof(PlaceHolderId)); *out = placeholder_id; return ResultSuccess(); } std::optional GetContentIdFromString(const char* str, size_t len) { if (len < 0x20) { return std::nullopt; } u8 tmp[sizeof(ContentId)] = {}; char byte_string[2]; char* end_ptr; u64 converted_val; for (size_t i = 0; i < sizeof(ContentId); i++) { const char* char_par = str + i * 2; byte_string[0] = char_par[0]; byte_string[1] = char_par[1]; converted_val = strtoull(byte_string, &end_ptr, 0x10); tmp[i] = (u8)converted_val; } ContentId content_id; std::memcpy(content_id.uuid.data, tmp, sizeof(ContentId)); return std::optional(content_id); } }