summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/vfs_vector.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* romfs: use vfs_cached for romfs outputLiam2023-06-031-4/+0
|
* vfs_vector: avoid n^2 lookup in layeredfs buildingLiam2023-05-071-0/+4
|
* 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.
* core: Make variable shadowing a compile-time errorLioncash2021-05-161-2/+2
| | | | | | Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
* file_sys: Resolve cases of variable shadowingLioncash2021-05-021-4/+4
| | | | Brings us closer to enabling -Wshadow as an error in the core code.
* vfs: Use existing type aliases consistentlyLioncash2020-12-101-7/+7
| | | | | Makes use of the VirtualDir and VirtualFile aliases across the board instead of having a few isolated places that don't use it.
* video_core: Resolve more variable shadowing scenarios pt.3Lioncash2020-12-051-6/+6
| | | | | Cleans out the rest of the occurrences of variable shadowing and makes any further occurrences of shadowing compiler errors.
* vfs_vector: Make creation of array vfs files less verboseLioncash2020-08-051-1/+12
| | | | | | | | | We can add a helper function to make creation of these files nicer. While we're at it, we can eliminate an unnecessary std::array copy in the constructor. This makes the overhead on some of these functions way less intensive, given some arrays were quite large. e.g. The timezone location names are 9633 bytes in size.
* file_sys: Implement system archive synthesizer for NgWord (806)Zach Hilman2018-11-231-1/+2
|
* vfs_vector: Add VFS backend for std::arrayZach Hilman2018-11-161-0/+52
| | | | Allows using constexpr/static const data with VFS.
* vfs: Remove InterpretAsDirectory and related functionsZach Hilman2018-10-191-3/+0
| | | | When writing VFS, it initally seemed useful to include a function to in-place convert container files into directories in one homogenous directory structure, but re-evaluating it now there have been plenty of chances to use it and there has always been a better way. Removing as it is unused and likely will not be used.
* vfs/etc: Append std:: to size_t usagesLioncash2018-09-261-4/+4
| | | | | Given we just recently had a patch backport this from citra, let's try and keep the convention uniform.
* fsmitm: Cleanup and modernize fsmitm portZach Hilman2018-09-241-0/+1
|
* vfs_vector: Add VectorVfsFileZach Hilman2018-09-221-0/+24
| | | | Maps a vector into the VFS interface.
* file-sys: Default heavy-weight class destructors in the cpp fileLioncash2018-09-201-0/+1
| | | | | | | | | | Several classes have a lot of non-trivial members within them, or don't but likely should have the destructor defaulted in the cpp file for future-proofing/being more friendly to forward declarations. Leaving the destructor unspecified allows the compiler to inline the destruction code all over the place, which is generally undesirable from a code bloat perspective.
* Merge pull request #1005 from DarkLordZach/registered-fmtbunnei2018-08-161-2/+2
|\ | | | | file_sys: Add support for registration format
| * romfs: Remove cyclic shared_ptr leak in romfs codeZach Hilman2018-08-121-2/+2
| |
* | vfs: Make type hierarchy objects classes instead of structsLioncash2018-08-121-1/+2
|/ | | | | | struct should be used when the data type is very simple or otherwise has no invariants associated with it. Given these are used to form a hierarchy, class should be used instead.
* RomFS ExtractionZach Hilman2018-07-281-0/+44