summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/bcat (follow)
Commit message (Collapse)AuthorAgeFilesLines
* service: move hle_ipc from kernelLiam2023-03-012-28/+26
|
* service: refactor server architectureLiam2023-02-212-11/+18
| | | | Converts services to have their own processes
* general: rename CurrentProcess to ApplicationProcessLiam2023-02-141-5/+5
|
* service: Make use of buffer element count helpersLioncash2022-11-231-2/+2
|
* kernel: remove KWritableEventLiam2022-10-131-1/+1
|
* service: btdrv,bcat,btm: Update service tables to 14.0.0german772022-07-141-2/+2
|
* core: Replace all instances of ResultCode with Resultgerman772022-06-273-8/+8
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-236-18/+12
| | | | | 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: hle: Remove global HLE lock.bunnei2021-12-182-16/+1
| | | | | - This was added early on as a hack to protect against some concurrency issues. - It's not clear that this serves any purpose anymore, and if it does, individual components should be fixed rather than using a global recursive mutex.
* general: Get the current process program id directly from the systemMorph2021-11-041-4/+3
| | | | This allows us to avoid including KProcess' header file in files that only need to get the current process' program id.
* general: Rename GetTitleID to GetProgramIDMorph2021-11-041-3/+3
|
* core: Remove unused includesameerj2021-11-042-2/+0
|
* service: Replace service event creation with ServiceContext::CreateEventMorph2021-10-023-15/+21
| | | | The service context helps to manage all created events and allows us to close them upon destruction.
* service: bcat: Remove BoxCat BCAT implementationMorph2021-09-293-619/+0
| | | | | The current implementation of BoxCat as it stands is non-functional due to the reliance on a server providing BCAT files. This implementation will eventually be replaced with one that allows the use of local BCAT files dumped from a Nintendo Switch.
* service: Append service name prefix to common filenamesMorph2021-07-143-2/+2
|
* boxcat: Silence -Wmaybe-uninitialized in httplib.hReinUsesLisp2021-07-121-0/+3
|
* core, input_common: Miscellaneous fixeslat9nq2021-06-291-1/+1
| | | | | | | | | | bcat: Fix settings access telemetry_session: Fix settings accesses So this is what I get for testing with the web service disabled. touch_from_button: Fix settings access for clang
* common: fs: Remove [[nodiscard]] attribute on Remove* functionsMorph2021-06-221-2/+2
| | | | | | There are a lot of scenarios where we don't particularly care whether or not the removal operation and just simply attempt a removal. As such, removing the [[nodiscard]] attribute is best for these functions.
* general: Remove extraneous includesMorph2021-06-131-1/+0
|
* general: Replace RESULT_UNKNOWN with ResultUnknownMorph2021-06-021-1/+1
| | | | Transition to PascalCase for result names.
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-024-24/+24
| | | | Transition to PascalCase for result names.
* common: fs: Rework the Common Filesystem interface to make use of std::filesystem (#6270)Morph2021-05-261-26/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * common: fs: fs_types: Create filesystem types Contains various filesystem types used by the Common::FS library * common: fs: fs_util: Add std::string to std::u8string conversion utility * common: fs: path_util: Add utlity functions for paths Contains various utility functions for getting or manipulating filesystem paths used by the Common::FS library * common: fs: file: Rewrite the IOFile implementation * common: fs: Reimplement Common::FS library using std::filesystem * common: fs: fs_paths: Add fs_paths to replace common_paths * common: fs: path_util: Add the rest of the path functions * common: Remove the previous Common::FS implementation * general: Remove unused fs includes * string_util: Remove unused function and include * nvidia_flags: Migrate to the new Common::FS library * settings: Migrate to the new Common::FS library * logging: backend: Migrate to the new Common::FS library * core: Migrate to the new Common::FS library * perf_stats: Migrate to the new Common::FS library * reporter: Migrate to the new Common::FS library * telemetry_session: Migrate to the new Common::FS library * key_manager: Migrate to the new Common::FS library * bis_factory: Migrate to the new Common::FS library * registered_cache: Migrate to the new Common::FS library * xts_archive: Migrate to the new Common::FS library * service: acc: Migrate to the new Common::FS library * applets/profile: Migrate to the new Common::FS library * applets/web: Migrate to the new Common::FS library * service: filesystem: Migrate to the new Common::FS library * loader: Migrate to the new Common::FS library * gl_shader_disk_cache: Migrate to the new Common::FS library * nsight_aftermath_tracker: Migrate to the new Common::FS library * vulkan_library: Migrate to the new Common::FS library * configure_debug: Migrate to the new Common::FS library * game_list_worker: Migrate to the new Common::FS library * config: Migrate to the new Common::FS library * configure_filesystem: Migrate to the new Common::FS library * configure_per_game_addons: Migrate to the new Common::FS library * configure_profile_manager: Migrate to the new Common::FS library * configure_ui: Migrate to the new Common::FS library * input_profiles: Migrate to the new Common::FS library * yuzu_cmd: config: Migrate to the new Common::FS library * yuzu_cmd: Migrate to the new Common::FS library * vfs_real: Migrate to the new Common::FS library * vfs: Migrate to the new Common::FS library * vfs_libzip: Migrate to the new Common::FS library * service: bcat: Migrate to the new Common::FS library * yuzu: main: Migrate to the new Common::FS library * vfs_real: Delete the contents of an existing file in CreateFile Current usages of CreateFile expect to delete the contents of an existing file, retain this behavior for now. * input_profiles: Don't iterate the input profile dir if it does not exist Silences an error produced in the log if the directory does not exist. * game_list_worker: Skip parsing file if the returned VfsFile is nullptr Prevents crashes in GetLoader when the virtual file is nullptr * common: fs: Validate paths for path length * service: filesystem: Open the mod load directory as read only
* core: Make variable shadowing a compile-time errorLioncash2021-05-161-2/+11
| | | | | | 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.
* hle: kernel: Rename Process to KProcess.bunnei2021-05-061-1/+1
|
* hle: kernel: Migrate KReadableEvent and KWritableEvent to KAutoObject.bunnei2021-05-063-12/+10
|
* hle: kernel: Ensure all kernel objects with KAutoObject are properly created.bunnei2021-05-061-0/+1
|
* hle: kernel: Migrate KEvent to KAutoObject.bunnei2021-05-062-9/+8
|
* hle: kernel: Refactor IPC interfaces to not use std::shared_ptr.bunnei2021-05-062-2/+2
|
* service: Resolve cases of member field shadowingLioncash2021-05-042-5/+5
| | | | | Now all that remains is for kernel code to be 'shadow-free' and then -Wshadow can be turned into an error.
* service: Eliminate cases of member shadowingLioncash2021-04-262-10/+16
| | | | | Resolves a few localized instances of member variable shadowing. Brings us a little closer to turning shadowing warnings into errors.
* common: Move settings to common from core.bunnei2021-04-152-2/+2
| | | | - Removes a dependency on core and input_common from common.
* bcat_module: Update to 12.xgerman772021-04-091-0/+2
|
* hle: kernel: Reimplement KReadableEvent and KWritableEvent.bunnei2021-02-052-9/+13
|
* hle: kernel: Rename WritableEvent to KWritableEvent.bunnei2021-02-053-3/+3
|
* hle: kernel: Rename ReadableEvent to KReadableEvent.bunnei2021-02-053-6/+6
|
* boxcat: Avoid unnecessary object copycomex2020-12-071-1/+1
|
* service: Eliminate usages of the global system instanceLioncash2020-11-272-23/+20
| | | | | Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
* ipc_helpers: Remove usage of the global system instanceLioncash2020-11-081-0/+1
| | | | | | | | | Resolves numerous deprecation warnings throughout the codebase due to inclusion of this header. Now building core should be significantly less noisy (and also relying on less global state). This also uncovered quite a few modules that were relying on indirect includes, which have also been fixed.
* general: Use template deduction guides for lock_guardLioncash2020-10-251-1/+1
| | | | Same behavior, less code.
* Revert "core: Fix clang build"bunnei2020-10-213-15/+5
|
* Merge pull request #4796 from lioncash/clangLC2020-10-213-5/+15
|\ | | | | core: Fix clang build
| * core: Fix clang buildLioncash2020-10-183-5/+15
| | | | | | | | | | | | | | 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
|
* ipc: Allow all trivially copyable objects to be passed directly into WriteBuffer (#4465)David2020-08-031-1/+1
| | | | | | | | | | | | | * ipc: Allow all trivially copyable objects to be passed directly into WriteBuffer With the support of C++20, we can use concepts to deduce if a type is an STL container or not. * More agressive concept for stl containers * Add -fconcepts * Move to common namespace * Add Common::IsBaseOf
* bcat: Update function tables and add missing classes (#4172)VolcaEM2020-06-272-0/+5
| | | * bcat: Update function tables and add missing classes
* 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
* Merge pull request #3744 from lioncash/table2bunnei2020-04-261-0/+1
|\ | | | | service: Update function tables
| * service: Update function tablesLioncash2020-04-201-0/+1
| | | | | | | | | | | | Keeps the service function tables up to date. Updated based off information on SwitchBrew.
* | 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.
* Merge pull request #3094 from lioncash/tablesbunnei2019-11-251-0/+6
|\ | | | | service: Update function tables
| * service: Update function tablesLioncash2019-11-121-0/+6
| | | | | | | | | | | | Keeps the function tables up to date. Updated based off information from Switchbrew.
* | kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154)bunnei2019-11-253-4/+4
| | | | | | | | | | | | * 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-122-2/+2
|/ | | | | 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-155-27/+52
| | | | | Removes all uses of the global system accessor within the BCAT interface.
* Merge pull request #2951 from lioncash/globalZach Hilman2019-10-074-21/+37
|\ | | | | core: Remove Core::CurrentProcess()
| * hle/service: Replace global system instance calls with instance-based onesLioncash2019-10-064-21/+37
| | | | | | | | | | | | | | | | | | | | Migrates the HLE service code off the use of directly accessing the global system instance where trivially able to do so. This removes all usages of Core::CurrentProcess from the service code, only 8 occurrences of this function exist elsewhere. There's still quite a bit of "System::GetInstance()" being used, however this was able to replace a few instances.
* | bcat/module: Silence truncation warningsLioncash2019-10-061-3/+3
| | | | | | | | | | We need to perform explicit casts here, otherwise we're implicitly truncating a 64-bit type to a 32-bit one.
* | 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-052-2/+2
|
* 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-016-28/+45
| | | Ports BCAT to use FSC interface
* boxcat: Implement events global fieldZach Hilman2019-09-303-12/+14
|
* bcat: Implement DeliveryCacheProgressImpl structureZach Hilman2019-09-305-84/+310
| | | 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-302-2/+2
|
* bcat: Implement cmd 90201 ClearDeliveryCacheStorageZach Hilman2019-09-301-1/+23
| | | | Takes a title ID and simply deletes all the data for that title ID's bcat. Invokes the respective backend command.
* bcat: Implement cmd 30100 SetPassphraseZach Hilman2019-09-301-1/+33
| | | | Takes a title ID and passphrase (0x40 byte string) and passes it to the backend.
* bcat: Implement cmd RequestSyncDeliveryCache and variantZach Hilman2019-09-301-2/+70
| | | | Variant also supports only updating a single directory. These just both invoke backend commands.
* bcat: Implement IDeliveryCacheProgressService commandsZach Hilman2019-09-301-0/+131
| | | | Used to query completion status and events for the current delivery task.
* bcat: Implement IDeliveryCacheFileService commandsZach Hilman2019-09-301-0/+117
| | | | Used to read the contents of files and access their metadata.
* bcat: Implement IDeliveryCacheDirectoryService commandsZach Hilman2019-09-301-0/+99
| | | | Used to list and get directories at the root level.
* bcat: Implement IDeliveryCacheStorageService commandsZach Hilman2019-09-301-0/+58
| | | | Used to create subclasses to manage files and directories and to list directories.
* bcat: Add commands to create IDeliveryCacheStorageServiceZach Hilman2019-09-303-2/+32
| | | | Used to access contents of download.
* module: Create BCAT backend based upon Settings value on constructionZach Hilman2019-09-302-1/+16
|
* 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.
* Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec2018-11-261-1/+2
|
* hle/service: Default constructors and destructors in the cpp file where applicableLioncash2018-09-114-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a destructor isn't defaulted into a cpp file, it can cause the use of forward declarations to seemingly fail to compile for non-obvious reasons. It also allows inlining of the construction/destruction logic all over the place where a constructor or destructor is invoked, which can lead to code bloat. This isn't so much a worry here, given the services won't be created and destroyed frequently. The cause of the above mentioned non-obvious errors can be demonstrated as follows: ------- Demonstrative example, if you know how the described error happens, skip forwards ------- Assume we have the following in the header, which we'll call "thing.h": \#include <memory> // Forward declaration. For example purposes, assume the definition // of Object is in some header named "object.h" class Object; class Thing { public: // assume no constructors or destructors are specified here, // or the constructors/destructors are defined as: // // Thing() = default; // ~Thing() = default; // // ... Some interface member functions would be defined here private: std::shared_ptr<Object> obj; }; If this header is included in a cpp file, (which we'll call "main.cpp"), this will result in a compilation error, because even though no destructor is specified, the destructor will still need to be generated by the compiler because std::shared_ptr's destructor is *not* trivial (in other words, it does something other than nothing), as std::shared_ptr's destructor needs to do two things: 1. Decrement the shared reference count of the object being pointed to, and if the reference count decrements to zero, 2. Free the Object instance's memory (aka deallocate the memory it's pointing to). And so the compiler generates the code for the destructor doing this inside main.cpp. Now, keep in mind, the Object forward declaration is not a complete type. All it does is tell the compiler "a type named Object exists" and allows us to use the name in certain situations to avoid a header dependency. So the compiler needs to generate destruction code for Object, but the compiler doesn't know *how* to destruct it. A forward declaration doesn't tell the compiler anything about Object's constructor or destructor. So, the compiler will issue an error in this case because it's undefined behavior to try and deallocate (or construct) an incomplete type and std::shared_ptr and std::unique_ptr make sure this isn't the case internally. Now, if we had defaulted the destructor in "thing.cpp", where we also include "object.h", this would never be an issue, as the destructor would only have its code generated in one place, and it would be in a place where the full class definition of Object would be visible to the compiler. ---------------------- End example ---------------------------- Given these service classes are more than certainly going to change in the future, this defaults the constructors and destructors into the relevant cpp files to make the construction and destruction of all of the services consistent and unlikely to run into cases where forward declarations are indirectly causing compilation errors. It also has the plus of avoiding the need to rebuild several services if destruction logic changes, since it would only be necessary to recompile the single cpp file.
* hle/service: Make constructors explicit where applicableLioncash2018-07-191-1/+1
| | | | | Prevents implicit construction and makes these lingering non-explicit constructors consistent with the rest of the other classes in services.
* Rename logging macro back to LOG_*James Rowe2018-07-031-1/+1
|
* Service/BCAT: add module and servicesmailwl2018-05-284-0/+112