summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/bis_factory.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-10-29bis_factory: Add getter for mod dump root for a title IDZach Hilman1-1/+8
Equates to yuzu_dir/dump/<title id>/
2018-10-16file_sys/registered_cache: Use unique_ptr and regular pointers instead of shared_ptrs where applicableLioncash1-6/+6
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.
2018-09-24fsmitm: Cleanup and modernize fsmitm portZach Hilman1-1/+1
2018-09-22bis_factory: Add mod directory VFS getterZach Hilman1-2/+10
2018-09-04file_sys: Replace includes with forward declarations where applicableLioncash1-0/+3
Cuts down on include dependencies, resulting in less files that need to be rebuilt when certain things are changed.
2018-08-23vfs: Add GetOrCreateDirectoryRelative methodZach Hilman1-9/+2
2018-08-12bis_factory: Create NAND dirs if they don't existZach Hilman1-2/+9
2018-08-12bis_factory: Add partial implementation of BISFactoryZach Hilman1-0/+24
Creates and stores RegisteredCaches for user and system NAND, as creation of a RegisteredCache is expensive.