summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/bis_factory.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* file_sys/bis_factory: Eliminate usage of the global system accessorLioncash2020-09-171-1/+1
|
* file_sys: Replace inclusions with forward declarations where applicableLioncash2020-08-231-1/+2
| | | | Same behavior, minus unnecessary inclusions where not necessary.
* filesystem: Add getter for BCAT temporary directoryZach Hilman2019-09-301-0/+2
|
* bis_factory: Add getters for NAND partition sizesZach Hilman2019-09-211-0/+6
|
* bis_factory: Add accessors for BIS placeholder cachesZach Hilman2019-09-211-0/+7
|
* bis_factory: Add accessor for NAND Image DirectoryZach Hilman2019-09-211-0/+2
|
* bis_factory: Add accessors for BIS content directoriesZach Hilman2019-09-211-0/+3
|
* bis_factory: Add accessors for BIS partitionsZach Hilman2019-09-211-0/+20
|
* bis_factory: Add getter for mod dump root for a title IDZach Hilman2018-10-291-1/+3
| | | | Equates to yuzu_dir/dump/<title id>/
* file_sys/registered_cache: Use unique_ptr and regular pointers instead of shared_ptrs where applicableLioncash2018-10-161-4/+4
| | | | | | | | | | | | | | | The data retrieved in these cases are ultimately chiefly owned by either the RegisteredCache instance itself, or the filesystem factories. Both these should live throughout the use of their contained data. If they don't, it should be considered an interface/design issue, and using shared_ptr instances here would mask that, as the data would always be prolonged after the main owner's lifetime ended. This makes the lifetime of the data explicit and makes it harder to accidentally create cyclic references. It also makes the interface slightly more flexible than the previous API, as a shared_ptr can be created from a unique_ptr, but not the other way around, so this allows for that use-case if it ever becomes necessary in some form.
* fsmitm: Cleanup and modernize fsmitm portZach Hilman2018-09-241-1/+1
|
* bis_factory: Add mod directory VFS getterZach Hilman2018-09-221-1/+4
|
* file_sys: Replace includes with forward declarations where applicableLioncash2018-09-041-2/+5
| | | | | Cuts down on include dependencies, resulting in less files that need to be rebuilt when certain things are changed.
* bis_factory: Add partial implementation of BISFactoryZach Hilman2018-08-121-0/+30
Creates and stores RegisteredCaches for user and system NAND, as creation of a RegisteredCache is expensive.