summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Addressed issuesDavid Marcec2019-06-265-37/+53
|
* Implement Time::GetSharedMemoryNativeHandleDavid Marcec2019-06-256-28/+242
| | | | | | | | | | | | | | | This PR attempts to implement the shared memory provided by GetSharedMemoryNativeHandle. There is still more work to be done however that requires a rehaul of the current time module to handle clock contexts. This PR is mainly to get the basic functionality of the SharedMemory working and allow the use of addition to it whilst things get improved on. Things to note: Memory Barriers are used in the SharedMemory and a better solution would need to be done to implement this. Currently in this PR Iā€™m faking the memory barriers as everything is sync and single threaded. They work by incrementing the counter and just populate the two data slots. On data reading, it will read the last added data. Specific values in the shared memory would need to be updated periodically. This isn't included in this PR since we don't actively do this yet. In a later PR when time is refactored this should be done. Finally, as we don't handle clock contexts. When time is refactored, we will need to update the shared memory for specific contexts. This PR does this already however since the contexts are all identical and not separated. We're just updating the same values for each context which in this case is empty. Tiime:SetStandardUserSystemClockAutomaticCorrectionEnabled, Time:IsStandardUserSystemClockAutomaticCorrectionEnabled are also partially implemented in this PR. The reason the implementation is partial is because once again, a lack of clock contexts. This will be improved on in a future PR. This PR closes issue #2556
* core/core_timing_util: Amend casing of cyclesTo* functionsLioncash2019-06-051-2/+2
| | | | | Makes the casing consistent with all of our general function naming conventions.
* core/core_timing_util: Use std::chrono types for specifying time unitsLioncash2019-06-051-4/+5
| | | | | Makes the interface more type-safe and consistent in terms of return values.
* service: Update service function tablesLioncash2019-04-111-2/+8
| | | | Updates function tables based off information from SwitchBrew.
* core_timing: Convert core timing into a classLioncash2019-02-161-2/+5
| | | | | | | | | | | Gets rid of the largest set of mutable global state within the core. This also paves a way for eliminating usages of GetInstance() on the System class as a follow-up. Note that no behavioral changes have been made, and this simply extracts the functionality into a class. This also has the benefit of making dependencies on the core timing functionality explicit within the relevant interfaces.
* core_timing: Rename CoreTiming namespace to Core::TimingLioncash2019-02-121-3/+3
| | | | | | Places all of the timing-related functionality under the existing Core namespace to keep things consistent, rather than having the timing utilities sitting in its own completely separate namespace.
* settings: Use std::chrono::seconds instead of s64 for RTCZach Hilman2019-01-081-6/+4
|
* time: Use custom RTC settings if applicable for gameZach Hilman2019-01-081-6/+10
|
* service/time: Minor cleanup to GetClockSnapshot()Lioncash2018-12-301-7/+9
| | | | Moves some variables closer to their actual usage sites.
* service/time: Fill in some structures and remove padding where not necessaryLioncash2018-12-302-7/+9
|
* Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec2018-11-261-7/+18
|
* Implemented CalculateStandardUserSystemClockDifferenceByUserDavid Marcec2018-11-173-1/+18
| | | | Seems pokemon calls this sometimes and it caused "random crashes"
* Added maybe_unusedDavid Marcec2018-11-102-2/+7
|
* Added ToPosixTime & ToPosixTimeWithMyRuleDavid Marcec2018-11-101-2/+41
| | | | Added instead of using a seperate PR to prevent conflicts
* Added consts and staticDavid Marcec2018-11-101-6/+6
|
* Implement GetClockSnapshotDavid Marcec2018-11-093-21/+88
| | | | Needed by megaman 11
* 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.
* service/time: Amend command IDs of ToPosixTime() and ToPosixTimeWithMyRule()Lioncash2018-08-071-2/+2
| | | | Updates the ID of these based off the information on Switch Brew.
* Merge pull request #801 from lioncash/timeMat M2018-07-255-60/+14
|\ | | | | time: Add the time:a service
| * time: Add the time:a serviceLioncash2018-07-253-10/+11
| | | | | | | | Given we already have time:s and time:u, we should also have time:a
| * time: Simplify interface creationLioncash2018-07-245-60/+13
| | | | | | | | We can use one instance of the interface instead of duplicating code.
* | core_timing: Split off utility functions into core_timing_utilMerryMage2018-07-241-0/+1
|/
* 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-13/+13
|
* Service/time: implement posix time to calendar conversionmailwl2018-06-012-14/+72
|
* general: Make formatting of logged hex values more straightforwardLioncash2018-05-021-1/+1
| | | | | | This makes the formatting expectations more obvious (e.g. any zero padding specified is padding that's entirely dedicated to the value being printed, not any pretty-printing that also gets tacked on).
* core_timing: Namespace all functions and constants in core_timing's headerLioncash2018-04-301-1/+2
| | | | All of these variables and functions are related to timings and should be within the namespace.
* time: Move logging macros over to new fmt-compatible onesLioncash2018-04-241-12/+12
|
* service: Use nested namespace specifiers where applicableLioncash2018-04-206-24/+12
| | | | Tidies up namespace declarations
* Various service name fixes - part 2 (rebased) (#322)Hexagon122018-04-173-1/+27
| | | | | | | | | | | | | | | | * Updated ACC with more service names * Updated SVC with more service names * Updated set with more service names * Updated sockets with more service names * Updated SPL with more service names * Updated time with more service names * Updated vi with more service names
* Clean Warnings (?)N00byKing2018-03-191-1/+1
|
* time: Add missing time:s functions, used for libnxshinyquagsire232018-02-231-0/+4
|
* time: Add GetStandardLocalSystemClock, used by libnxshinyquagsire232018-02-223-0/+9
|
* Service: stub some functions in am, audio, time, vi servicesmailwl2018-02-071-0/+13
|
* logger: Add Time service logging category.bunnei2018-02-051-10/+10
|
* time: Implement ISteadyClock::GetCurrentTimePoint.bunnei2018-01-262-1/+22
|
* time: Stub GetSystemClockContext function.bunnei2018-01-252-2/+17
|
* hle: Rename RequestBuilder to ResponseBuilder.bunnei2018-01-251-8/+8
|
* service: Fix all incorrect IPC response headers.bunnei2018-01-251-28/+7
|
* Fix time returning epoch time in milliseconds rather than in secondsgdkchan2018-01-241-1/+1
|
* Services: Added a todo about returning interfaces as domain objects in lm, hid and time.Subv2018-01-231-0/+6
|
* Time: Don't create unnecessary ports when retrieving the clock service sessions.Subv2018-01-221-33/+27
|
* service/time: remove accidental #pragmastgsm2018-01-212-4/+0
|
* Merge pull request #97 from bunnei/time-stubbunnei2018-01-192-4/+12
|\ | | | | time: Stub out GetTotalLocationNameCount and some cleanup.
| * time: Stub out GetTotalLocationNameCount and some cleanup.bunnei2018-01-192-4/+12
| |
* | time: Add new line to ends of files.bunnei2018-01-194-4/+4
|/
* time: Fix use of CamelCase in ToCalendarTimeWithMyRuleRozlette2018-01-181-6/+6
|
* time: Refactor time:* to use a single shared moduleRozlette2018-01-186-26/+103
|
* TIME: consolidate time:* interfaces, stub functions and structsRozlette2018-01-174-83/+164
|
* time: Implement GetStandardUserSystemClock, GetCurrentTime.bunnei2018-01-154-0/+113