summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fs/archive.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2017-06-06Kernel: Add a dedicated SetHleHandler method to ServerPort/ServerSessionYuri Kunde Schlesner1-4/+7
2017-06-06HLE: Move SessionRequestHandler from Service:: to Kernel::Yuri Kunde Schlesner1-0/+1
2017-06-03Addressed Bunnei's review comments, and made some other tweaks:TheKoopaKingdom1-1/+2
2017-06-03Switched to the ERROR_NOT_FOUND constant from errors.h.TheKoopaKingdom1-2/+1
2017-06-03Made some changes from review comments:TheKoopaKingdom1-5/+3
2017-05-25FS: Remove unused result definitionYuri Kunde Schlesner1-5/+0
2017-05-25FileSys: Move all result description to errors.hYuri Kunde Schlesner1-16/+12
2016-12-22core: Remove HLE module, consolidate code & various cleanups.bunnei1-4/+1
2016-12-15FS: fix debug build from #2249wwylele1-11/+9
2016-12-14Fixed the codestyle to match our clang-format rules.Subv1-4/+6
2016-12-09Moved the HLE command buffer translation task to ServerSession instead of the HLE handler superclass.Subv1-2/+2
2016-12-08Added a framework for partially handling Session disconnections.Subv1-0/+1
2016-12-05Split SessionRequestHandler::HandleSyncRequest into HandleSyncRequest, TranslateRequest and HandleSyncRequestImpl.Subv1-8/+6
2016-12-01Fixed the rebase mistakes.Subv1-4/+4
2016-12-01A bit of a redesign.Subv1-17/+18
2016-12-01 Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.Subv1-6/+6
2016-11-29FileSys: Implement OtherSaveDatawwylele1-0/+9
2016-11-29FileSys: abstract SD save data archive sourcewwylele1-1/+2
2016-11-19FileSys: rename SaveDataCheck archive to NCCH archivewwylele1-5/+4
2016-11-19FileSys: add SDMCWriteOnlyArchivewwylele1-0/+8
2016-11-01FileSys: make Archive interfaces return error codewwylele1-32/+9
2016-10-02fs: implement DeleteDirectoryRecursivelywwylele1-0/+12
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner1-1/+1
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot1-4/+1
2016-09-19Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner1-8/+4
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-186/+203
2016-07-04Fix the errorcode of archive handleJamePeng1-10/+14
2016-07-03Service::CFG/FS: add and refactor out utilities for front-endwwylele1-8/+16
2016-05-28Memory: Handle RasterizerCachedMemory and RasterizerCachedSpecial page types in the memory block manipulation functions.Subv1-1/+0
2016-05-28FS/Archive: Remove use of Memory::GetPointerMerryMage1-7/+14
2016-04-21HWRasterizer: Texture forwardingtfarley1-0/+1
2016-04-05Common: Remove Common::make_unique, use std::make_uniqueMerryMage1-7/+6
2016-03-20HLE/FS: Change the error code returned when an ExtSaveData archive is not found.Subv1-4/+8
2016-03-20HLE/FS: Corrected some style concerns.Subv1-4/+1
2016-03-20HLE/FS: Implemented GetFormatInfoSubv1-26/+22
2016-03-20HLE/FS: Don't return an error when deleting the ExtSaveData if it does not exist.Subv1-1/+1
2016-03-20HLE/FS: Return the proper error codes when opening files.Subv1-3/+4
2016-03-20HLE/FS: Fixed the OpenDirectory error codeSubv1-1/+1
2016-03-20HLE/FS: Return the proper error codes on file Read/Write operations.Subv1-2/+15
2016-03-20HLE/FS: Corrected the error codes for DeleteFileSubv1-4/+1
2016-03-20HLE/FS: FS::CreateFile takes an u64 for the file size.Subv1-1/+1
2015-10-28Implement FS_User::GetFreeBytesarchshift1-0/+7
2015-07-14Archive: Correct a few incorrect types in function signaturesYuri Kunde Schlesner1-1/+1
2015-06-28Core: Cleanup file_sys includes.Emmanuel Gil Peyrot1-2/+8
2015-06-02ExtSavedata: Save the icon passed to CreateExtSaveData to the correct folder.Subv1-3/+20
2015-05-29Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot1-3/+3
2015-05-07Common: Remove common.hYuri Kunde Schlesner1-0/+1
2015-05-07FileSys: Clean-up includes, de-inline destructorsYuri Kunde Schlesner1-0/+10
2015-03-14Services/FS: Implemented DeleteExtSaveData, CreateSystemSaveData and DeleteSystemSaveDataSubv1-15/+59
2015-03-04Services: Moved the PTM and APT services to their own folderSubv1-0/+4
2015-02-26Archives: Properly implemented the SystemSaveData archive.Subv1-0/+4
2015-02-12Build: Fixed some warningsSubv1-4/+4
2015-02-11Asserts: break/crash program, fit to style guide; log.h->assert.harchshift1-1/+1
2015-02-10Archives: Made the Format function more generic.Subv1-5/+3
2015-02-10Archives: Expose the File and Directory classes to HLESubv1-53/+27
2015-02-10FS: Allow multiple instances of the same archive type to be open at onceYuri Kunde Schlesner1-25/+26
2015-02-10FS: Get rid of completely useless Archive classYuri Kunde Schlesner1-36/+26
2015-02-02FS: Remove use of GetHandleYuri Kunde Schlesner1-1/+1
2015-02-02Filesys: Move creation of Handles for File/Directory to service handlersYuri Kunde Schlesner1-16/+8
2015-01-30archive: Fix initializer list order for the File class.Lioncash1-1/+1
2015-01-30Remove result.h InvalidHandleYuri Kunde Schlesner1-9/+14
2015-01-24Services: Stubbed more services.Subv1-0/+22
2015-01-06Archives: Changed the unimplemented archives comment.Subv1-1/+1
2015-01-06Archives: Addressed some commentsSubv1-2/+2
2015-01-04Archives: Make SYSTEM_ID and SDCARD_ID stringsSubv1-2/+2
2015-01-04Archives: Changed the way paths are built for the archives.Subv1-10/+10
2015-01-03Archives: Change the folder layout of some archives.Subv1-1/+1
2015-01-03Archives: Reduced duplicate code in RomFS and SaveCheck.Subv1-3/+4
2015-01-03SaveDataCheck: Preliminary work in this archive.Subv1-3/+34
2015-01-03archive: Fix initializer list orderLioncash1-3/+3
2014-12-30Archives: Implemented ExtSaveData and SharedExtSaveDataSubv1-27/+32
2014-12-28Kernel: New handle managerYuri Kunde Schlesner1-4/+6
2014-12-28Rename ObjectPool to HandleTableYuri Kunde Schlesner1-4/+4
2014-12-21CFG: Implemented the GetConfigInfoBlk2 function.Subv1-9/+0
2014-12-21Added CreateFile to the FS_USER servicearchshift1-0/+8
2014-12-21License changepurpasmart961-1/+1
2014-12-20Common: Add a clone of std::make_uniqueYuri Kunde Schlesner1-6/+7
2014-12-19SystemSaveData: Fixed a typo that was segfaultingSubv1-1/+1
2014-12-18SaveData: Implemented the SystemSaveData archive.Subv1-0/+9
2014-12-18Filesystem/Archives: Implemented the SaveData archiveSubv1-6/+45
2014-12-16Work around libstdc++'s lack of support for std::hash on enumsYuri Kunde Schlesner1-0/+15
2014-12-16FS.Archive: Clean up treatment of archives and their handlesYuri Kunde Schlesner1-150/+102
2014-12-16Service.FS: Rename FileSys::File to FileBackendYuri Kunde Schlesner1-1/+1
2014-12-16Service.FS: Rename FileSys::Directory to DirectoryBackendYuri Kunde Schlesner1-2/+2
2014-12-16Service.FS: Rename FileSys::Archive to ArchiveBackendYuri Kunde Schlesner1-3/+3
2014-12-16Service.FS: Do archive registration using IdCode instead of nameYuri Kunde Schlesner1-10/+10
2014-12-16HLE: Rename namespaces to match move & fix initialization orderYuri Kunde Schlesner1-5/+4
2014-12-16HLE: Move kernel/archive.* to service/fs/Yuri Kunde Schlesner1-1/+1
2014-12-15Remove SyncRequest from K::Object and create a new K::Session typeYuri Kunde Schlesner1-24/+15
2014-12-13Convert old logging calls to new logging macrosYuri Kunde Schlesner1-34/+16
2014-12-07Make OpenDirectory fail if the directory doesn't existarchshift1-0/+5
2014-12-04Updated archive.cpp functions for proper error handlingarchshift1-58/+29
2014-11-25Implemented RenameDirectory in FS:USERarchshift1-0/+24
2014-11-25Implemented RenameFile in FS:USERarchshift1-0/+24
2014-11-24Remove duplicated docs/update them for changed parameters.Yuri Kunde Schlesner1-31/+0
2014-11-24HLE: Revamp error handling throrough the HLE codeYuri Kunde Schlesner1-82/+65
2014-11-23Added DeleteFile and DeleteDirectory functions to FS:USER and the archives.archshift1-1/+31
2014-11-19Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generatedEmmanuel Gil Peyrot1-3/+3
2014-11-18Archive: Fixed to not destroy archive handle on close.bunnei1-3/+3
2014-11-18Archive: Fixed close archive before freeing.bunnei1-1/+1
2014-11-18FS_User: Support FileSye::Path in a more generic way.bunnei1-0/+11
2014-11-18FileSys: Updated backend code to use FileSys::Path instead of string for paths.bunnei1-7/+7
2014-11-02Added CreateDirectory function to service/fs.cpp, and in Archive.archshift1-0/+15
2014-10-30Fix some warningsSean1-3/+3
2014-10-26Add `override` keyword through the code.Yuri Kunde Schlesner1-15/+15
2014-10-06FileSys: split the constructor into an Open method, in order to notify the opener something went wrong.Emmanuel Gil Peyrot1-0/+3
2014-10-06FileSys/Kernel: Implement SetSize service call for File objects.Emmanuel Gil Peyrot1-0/+8
2014-09-21Use the citra user path for the sdmc directoryarchshift1-2/+1
2014-09-17Kernel: Implement the Close command for Archive, File and Directory.Emmanuel Gil Peyrot1-0/+36
2014-09-17Kernel: Add a Directory object and a getter for it from an Archive object.Emmanuel Gil Peyrot1-0/+82
2014-09-17Kernel: Add a File object and a getter for it from an Archive object.Emmanuel Gil Peyrot1-0/+109
2014-09-09core: Prune redundant includesarchshift1-1/+0
2014-08-23Added FS functions to Archive and Archive_RomFSarchshift1-3/+31
2014-08-18Core: Alter the kernel string functions to use std::string instead of const char*.Lioncash1-3/+3
2014-07-05Archive: Added Init/Shutdown methods to reset kernel archive state.bunnei1-0/+10
2014-07-05FileSys: Added preliminary support for applications reading the RomFS archive.bunnei1-6/+92
2014-06-27Kernel: Added stubbed code to support creation of kernel Archive objects.bunnei1-0/+61