summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/bcat/backend (follow)
Commit message (Collapse)AuthorAgeFilesLines
* boxcat: Avoid unnecessary object copycomex2020-12-071-1/+1
|
* general: Use template deduction guides for lock_guardLioncash2020-10-251-1/+1
| | | | Same behavior, less code.
* Revert "core: Fix clang build"bunnei2020-10-212-13/+4
|
* Merge pull request #4796 from lioncash/clangLC2020-10-212-4/+13
|\ | | | | core: Fix clang build
| * core: Fix clang buildLioncash2020-10-182-4/+13
| | | | | | | | | | | | | | Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
* | service: bcat: Check client connection before interacting with socket.bunnei2020-10-171-0/+10
|/ | | | - Fixes a crash when BCAT service is offline.
* core/CMakeLists: Make some warnings errorsLioncash2020-10-131-3/+7
| | | | | | | | | Makes our error coverage a little more consistent across the board by applying it to Linux side of things as well. This also makes it more consistent with the warning settings in other libraries in the project. This also updates httplib to 0.7.9, as there are several warning cleanups made that allow us to enable several warnings as errors.
* common/fileutil: Convert namespace to Common::FSLioncash2020-08-161-10/+10
| | | | | | | | | | | | Migrates a remaining common file over to the Common namespace, making it consistent with the rest of common files. This also allows for high-traffic FS related code to alias the filesystem function namespace as namespace FS = Common::FS; for more concise typing.
* General: Tidy up clang-format warnings part 2Lioncash2020-08-131-4/+2
|
* Replace externals with Conan (#3735)James Rowe2020-05-081-1/+1
| | | | | | | | | | | | | | | | | | | | | * Remove git submodules that will be loaded through conan * Move custom Find modules to their own folder * Use conan for downloading missing external dependencies * CI: Change the yuzu source folder user to the user that the containers run on * Attempt to remove dirty mingw build hack * Install conan on the msvc build * Only set release build type when using not using multi config generator * Re-add qt bundled to workaround an issue with conan qt not downloading prebuilt binaries * Add workaround for submodules that use legacy CMAKE variables * Re-add USE_BUNDLED_QT on the msvc build bot
* General: Resolve warnings related to missing declarationsLioncash2020-04-171-6/+1
|
* httplib compatibilityBrian Clinkenbeard2020-02-191-3/+4
|
* bcat/backend: Make formatting of passphrase consistent in NullBackend::SetPassphrase()Lioncash2020-02-121-1/+1
| | | | | Aligns the '=' to be consistent with the rest of the logs within this source file.
* bcat/backend: Prevent fmt exception in debug log within NullBackend::Clear()Lioncash2020-02-121-1/+1
| | | | | A formatting specifier within Clear wasn't being used, which will cause fmt to throw an exception. This fixes that.
* kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154)bunnei2019-11-252-2/+2
| | | | | | * kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. - See https://github.com/citra-emu/citra/pull/4710 for details.
* Merge pull request #3091 from lioncash/core-conversionbunnei2019-11-151-1/+1
|\ | | | | core: Make most implicit type conversion warnings errors on MSVC
| * service: Resolve sign conversion errorsLioncash2019-11-121-1/+1
| | | | | | | | | | These are fairly trivial to resolve and most of the changes entail using RESULT_UNKNOWN over ResultCode(-1).
* | core: Migrate off deprecated mbedtls functionsLioncash2019-11-121-1/+1
|/ | | | | These functions are marked for deprecation and it's recommended that the *_ret variants be used instead.
* kernel: events: Remove ResetType::Automatic.bunnei2019-11-031-2/+1
| | | | | | | | - This does not actually seem to exist in the real kernel - games reset these automatically. # Conflicts: # src/core/hle/service/am/applets/applets.cpp # src/core/hle/service/filesystem/fsp_srv.cpp
* bcat: Remove use of global system accessorsLioncash2019-10-154-16/+39
| | | | | Removes all uses of the global system accessor within the BCAT interface.
* bcat: Take std::function instance by value in NullBackend's constructorLioncash2019-10-062-2/+2
| | | | | Without this, the std::move within the constructor initializer list won't be able to actually perform a move.
* bcat: In-class initialize ProgressServiceBackend's impl memberLioncash2019-10-062-2/+2
| | | | Allows us to remove a constructor initializer list.
* bcat: Make ProgressServiceBackend's constructor take a std::string_viewLioncash2019-10-062-3/+7
| | | | | Given the string is appended to another, we can make it a view so a redundant full copy of the string isn't made.
* bcat: Make ProgressServiceBackend's GetEvent() constLioncash2019-10-062-2/+2
| | | | | This member function doesn't modify internal member state, so it can be marked const.
* boxcat: Silence an unused variable warningLioncash2019-10-061-1/+2
| | | | | | On parse errors, we can log out the explanatory string indicating what the parsing error was, rather than just ignoring the variable and returning an overly broad error code.
* service/bcat: Silence -Wreorder and -WunusedReinUsesLisp2019-10-051-1/+1
|
* qt: Add service dialogZach Hilman2019-10-021-6/+5
|
* boxcat: Use updated game-asset API URL and tagsZach Hilman2019-10-011-6/+6
|
* bcat: Add FSC accessors for BCAT dataZach Hilman2019-10-012-10/+11
| | | Ports BCAT to use FSC interface
* boxcat: Implement events global fieldZach Hilman2019-09-302-8/+10
|
* bcat: Implement DeliveryCacheProgressImpl structureZach Hilman2019-09-304-39/+299
| | | Huge thanks to lioncash for re-ing this for me.
* boxcat: Use Etag header names for file digestZach Hilman2019-09-301-10/+11
|
* boxcat: Add downloading and client for launch parameter dataZach Hilman2019-09-302-16/+77
|
* bcat: Add backend function for BCAT Indirect (launch parameter)Zach Hilman2019-09-302-0/+11
| | | | Returns the data that should be returned by PopLaunchParameter kind=ApplicationSpecific.
* bcat: Expose CreateBackendFromSettings helper functionZach Hilman2019-09-301-0/+2
|
* bcat: Add BCAT backend for Boxcat serviceZach Hilman2019-09-302-0/+407
| | | | Downloads content from yuzu servers and unpacks it into the temporary directory provided. Fully supports all Backend features except passphrase.
* bcat: Add backend class to generify the functions of BCATZach Hilman2019-09-302-0/+100
Provides the most abstract simplified functions of BCAT as functions. Also includes a NullBackend class which is just a no-op.