summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/bcat/bcat_module.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-03-01service: move hle_ipc from kernelLiam1-25/+23
2023-02-21service: refactor server architectureLiam1-9/+17
Converts services to have their own processes
2023-02-14general: rename CurrentProcess to ApplicationProcessLiam1-5/+5
2022-12-29hle_ipc: Rename ReadBufferSpan to ReadBufferameerj1-1/+1
2022-12-25service: Use ReadBufferSpan where it is trivial to do soameerj1-1/+1
2022-11-23service: Make use of buffer element count helpersLioncash1-2/+2
2022-07-14service: btdrv,bcat,btm: Update service tables to 14.0.0german771-2/+2
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-5/+5
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-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.
2021-11-04general: Get the current process program id directly from the systemMorph1-4/+3
This allows us to avoid including KProcess' header file in files that only need to get the current process' program id.
2021-11-04general: Rename GetTitleID to GetProgramIDMorph1-3/+3
2021-11-04core: Remove unused includesameerj1-1/+0
2021-10-02service: Replace service event creation with ServiceContext::CreateEventMorph1-2/+2
The service context helps to manage all created events and allows us to close them upon destruction.
2021-09-29service: bcat: Remove BoxCat BCAT implementationMorph1-7/+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.
2021-07-14service: Append service name prefix to common filenamesMorph1-1/+1
2021-06-29core, input_common: Miscellaneous fixeslat9nq1-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
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-19/+19
Transition to PascalCase for result names.
2021-05-06hle: kernel: Rename Process to KProcess.bunnei1-1/+1
2021-05-06hle: kernel: Migrate KReadableEvent and KWritableEvent to KAutoObject.bunnei1-6/+4
2021-05-06hle: kernel: Refactor IPC interfaces to not use std::shared_ptr.bunnei1-1/+1
2021-04-26service: Eliminate cases of member shadowingLioncash1-8/+14
Resolves a few localized instances of member variable shadowing. Brings us a little closer to turning shadowing warnings into errors.
2021-04-15common: Move settings to common from core.bunnei1-1/+1
- Removes a dependency on core and input_common from common.
2021-04-09bcat_module: Update to 12.xgerman771-0/+2
2021-02-05hle: kernel: Rename WritableEvent to KWritableEvent.bunnei1-1/+1
2021-02-05hle: kernel: Rename ReadableEvent to KReadableEvent.bunnei1-3/+3
2020-11-27service: Eliminate usages of the global system instanceLioncash1-20/+20
Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
2020-11-08ipc_helpers: Remove usage of the global system instanceLioncash1-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.
2020-10-21Revert "core: Fix clang build"bunnei1-2/+1
2020-10-18core: Fix clang buildLioncash1-1/+2
Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
2020-08-03ipc: Allow all trivially copyable objects to be passed directly into WriteBuffer (#4465)David1-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
2020-06-27bcat: Update function tables and add missing classes (#4172)VolcaEM1-0/+3
* bcat: Update function tables and add missing classes
2020-04-20service: Update function tablesLioncash1-0/+1
Keeps the service function tables up to date. Updated based off information on SwitchBrew.
2019-11-25kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154)bunnei1-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.
2019-11-12service: Update function tablesLioncash1-0/+6
Keeps the function tables up to date. Updated based off information from Switchbrew.
2019-11-12core: Migrate off deprecated mbedtls functionsLioncash1-1/+1
These functions are marked for deprecation and it's recommended that the *_ret variants be used instead.
2019-10-15bcat: Remove use of global system accessorsLioncash1-11/+13
Removes all uses of the global system accessor within the BCAT interface.
2019-10-06bcat/module: Silence truncation warningsLioncash1-3/+3
We need to perform explicit casts here, otherwise we're implicitly truncating a 64-bit type to a 32-bit one.
2019-10-06hle/service: Replace global system instance calls with instance-based onesLioncash1-15/+19
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.
2019-10-05service/bcat: Silence -Wreorder and -WunusedReinUsesLisp1-1/+1
2019-10-01bcat: Add FSC accessors for BCAT dataZach Hilman1-11/+15
Ports BCAT to use FSC interface
2019-09-30boxcat: Implement events global fieldZach Hilman1-4/+4
2019-09-30bcat: Implement DeliveryCacheProgressImpl structureZach Hilman1-45/+11
Huge thanks to lioncash for re-ing this for me.
2019-09-30bcat: Expose CreateBackendFromSettings helper functionZach Hilman1-2/+0
2019-09-30bcat: Implement cmd 90201 ClearDeliveryCacheStorageZach Hilman1-1/+23
Takes a title ID and simply deletes all the data for that title ID's bcat. Invokes the respective backend command.
2019-09-30bcat: Implement cmd 30100 SetPassphraseZach Hilman1-1/+33
Takes a title ID and passphrase (0x40 byte string) and passes it to the backend.
2019-09-30bcat: Implement cmd RequestSyncDeliveryCache and variantZach Hilman1-2/+70
Variant also supports only updating a single directory. These just both invoke backend commands.
2019-09-30bcat: Implement IDeliveryCacheProgressService commandsZach Hilman1-0/+131
Used to query completion status and events for the current delivery task.
2019-09-30bcat: Implement IDeliveryCacheFileService commandsZach Hilman1-0/+117
Used to read the contents of files and access their metadata.
2019-09-30bcat: Implement IDeliveryCacheDirectoryService commandsZach Hilman1-0/+99
Used to list and get directories at the root level.
2019-09-30bcat: Implement IDeliveryCacheStorageService commandsZach Hilman1-0/+58
Used to create subclasses to manage files and directories and to list directories.
2019-09-30bcat: Add commands to create IDeliveryCacheStorageServiceZach Hilman1-2/+26
Used to access contents of download.
2019-09-30module: Create BCAT backend based upon Settings value on constructionZach Hilman1-1/+13
2018-11-26Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec1-1/+2
2018-09-11hle/service: Default constructors and destructors in the cpp file where applicableLioncash1-0/+2
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.
2018-07-03Rename logging macro back to LOG_*James Rowe1-1/+1
2018-05-28Service/BCAT: add module and servicesmailwl1-0/+53