Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
f5e03b91
There was an error fetching the commit references. Please try again later.
Commit
f5e03b91
authored
6 years ago
by
Zach Hilman
Browse files
Options
Downloads
Patches
Plain Diff
loader: Add BKTR-specific error messages and codes
parent
08fcb469
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/core/CMakeLists.txt
+4
-0
4 additions, 0 deletions
src/core/CMakeLists.txt
src/core/loader/loader.cpp
+10
-1
10 additions, 1 deletion
src/core/loader/loader.cpp
src/core/loader/loader.h
+14
-6
14 additions, 6 deletions
src/core/loader/loader.h
with
28 additions
and
7 deletions
src/core/CMakeLists.txt
+
4
−
0
View file @
f5e03b91
...
...
@@ -35,8 +35,12 @@ add_library(core STATIC
file_sys/mode.h
file_sys/nca_metadata.cpp
file_sys/nca_metadata.h
file_sys/nca_patch.cpp
file_sys/nca_patch.h
file_sys/partition_filesystem.cpp
file_sys/partition_filesystem.h
file_sys/patch_manager.cpp
file_sys/patch_manager.h
file_sys/program_metadata.cpp
file_sys/program_metadata.h
file_sys/registered_cache.cpp
...
...
This diff is collapsed.
Click to expand it.
src/core/loader/loader.cpp
+
10
−
1
View file @
f5e03b91
...
...
@@ -93,7 +93,7 @@ std::string GetFileTypeString(FileType type) {
return
"unknown"
;
}
constexpr
std
::
array
<
const
char
*
,
5
0
>
RESULT_MESSAGES
{
constexpr
std
::
array
<
const
char
*
,
5
7
>
RESULT_MESSAGES
{
"The operation completed successfully."
,
"The loader requested to load is already loaded."
,
"The operation is not implemented."
,
...
...
@@ -144,6 +144,15 @@ constexpr std::array<const char*, 50> RESULT_MESSAGES{
"The SD Save Key Source could not be found."
,
"The SD NCA Key Source could not be found."
,
"The NSP file is missing a Program-type NCA."
};
"The BKTR-type NCA has a bad BKTR header."
,
"The BKTR Subsection entry is not located immediately after the Relocation entry."
,
"The BKTR Subsection entry is not at the end of the media block."
,
"The BKTR-type NCA has a bad Relocation block."
,
"The BKTR-type NCA has a bad Subsection block."
,
"The BKTR-type NCA has a bad Relocation bucket."
,
"The BKTR-type NCA has a bad Subsection bucket."
,
"The BKTR-type NCA is missing the base RomFS."
,
};
std
::
ostream
&
operator
<<
(
std
::
ostream
&
os
,
ResultStatus
status
)
{
os
<<
RESULT_MESSAGES
.
at
(
static_cast
<
size_t
>
(
status
));
...
...
This diff is collapsed.
Click to expand it.
src/core/loader/loader.h
+
14
−
6
View file @
f5e03b91
...
...
@@ -107,6 +107,14 @@ enum class ResultStatus : u16 {
ErrorMissingSDSaveKeySource
,
ErrorMissingSDNCAKeySource
,
ErrorNSPMissingProgramNCA
,
ErrorBadBKTRHeader
,
ErrorBKTRSubsectionNotAfterRelocation
,
ErrorBKTRSubsectionNotAtEnd
,
ErrorBadRelocationBlock
,
ErrorBadSubsectionBlock
,
ErrorBadRelocationBuckets
,
ErrorBadSubsectionBuckets
,
ErrorMissingBKTRBaseRomFS
,
};
std
::
ostream
&
operator
<<
(
std
::
ostream
&
os
,
ResultStatus
status
);
...
...
@@ -197,13 +205,13 @@ public:
}
/**
* Get
the update RomFS of the application
*
Since the RomFS can be huge, we return a file reference instead of copying to a buffer
*
@param file The file containing the RomFS
* @return
ResultStatus result of function
* Get
whether or not updates can be applied to the RomFS.
*
By default, this is true, however for formats where it cannot be guaranteed that the RomFS is
*
the base game it should be set to false.
* @return
bool whether or not updatable.
*/
virtual
ResultStatus
ReadUpdateRomFS
(
FileSys
::
VirtualFile
&
file
)
{
return
ResultStatus
::
ErrorNotImplemented
;
virtual
bool
IsRomFSUpdatable
(
)
{
return
true
;
}
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment