summaryrefslogtreecommitdiffstats
path: root/src/core/telemetry_session.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-10-28compatdb: Use a seperate endpoint for testcase submissionfearlessTobi1-0/+9
2018-10-16config: Rename use_accurate_framebuffers -> use_accurate_gpu_emulation.bunnei1-2/+2
- This will be used as a catch-all for slow-but-accurate GPU emulation paths.
2018-10-09telemetry_session: Add missing includesLioncash1-2/+4
Prevents potential compilation issues in the future by including missing headers for certain functions and types.
2018-10-09telemetry_session: Use a std::array in GenerateTelemetryId()Lioncash1-2/+4
We don't need to potentially heap-allocate a std::string instance here, given the data is known ahead of time. We can just place it within an array and pass this to the mbedtls functions.
2018-10-02Address more review commentsfearlessTobi1-1/+1
2018-10-02Address a bunch of review commentsfearlessTobi1-5/+6
2018-10-02Port web_service from CitrafearlessTobi1-12/+39
2018-09-08Add audio stretching supportfearlessTobi1-0/+3
2018-09-04drd: Parse title ID from program metadataZach Hilman1-3/+21
2018-08-31core/core: Replace includes with forward declarations where applicableLioncash1-0/+1
The follow-up to e2457418dae19b889b2ad85255bb95d4cd0e4bff, which replaces most of the includes in the core header with forward declarations. This makes it so that if any of the headers the core header was previously including change, then no one will need to rebuild the bulk of the core, due to core.h being quite a prevalent inclusion. This should make turnaround for changes much faster for developers.
2018-08-21telemetry_session: Don't allocate std::string instances for program lifetime in GetTelemetryId() and RegenerateTelemetryId()Lioncash1-4/+4
Given these functions aren't intended to be used frequently, there's no need to keep the std::string instances allocated for the whole lifetime of the program. It's just a waste of memory.
2018-08-21Port #3353 from CitrafearlessTobi1-2/+3
2018-08-15common/telemetry: Migrate core-independent info gathering to commonLioncash1-62/+7
Previously core itself was the library containing the code to gather common information (build info, CPU info, and OS info), however all of this isn't core-dependent and can be moved to the common code and use the common interfaces. We can then just call those functions from the core instead. This will allow replacing our CPU detection with Xbyak's which has better detection facilities than ours. It also keeps more architecture-dependent code in common instead of core.
2018-07-21file_util: Use an enum class for GetUserPath()Lioncash1-2/+4
Instead of using an unsigned int as a parameter and expecting a user to always pass in the correct values, we can just convert the enum into an enum class and use that type as the parameter type instead, which makes the interface more type safe. We also get rid of the bookkeeping "NUM_" element in the enum by just using an unordered map. This function is generally low-frequency in terms of calls (and I'd hope so, considering otherwise would mean we're slamming the disk with IO all the time) so I'd consider this acceptable in this case.
2018-07-03Rename logging macro back to LOG_*James Rowe1-3/+3
2018-06-27settings: Add a configuration for use_accurate_framebuffers.bunnei1-0/+2
2018-05-11core: Add a configuration setting for use_multi_core.bunnei1-0/+2
2018-04-26core: Replace remaining old non-generic logger usages with fmt-capable equivalentsLioncash1-3/+3
LOG_GENERIC usages will be amended in a follow-up to keep API changes separate from interface changes, as it will require removing a parameter from the relevant function in the VMManager class.
2018-03-27Change Telemetry Names to yuzuN00byKing1-2/+2
2018-03-27config: Use simplified checkbox (from Citra) for CPU JIT.bunnei1-2/+3
2018-01-20Port citra #3352 to yuzu (#103)River City Ransomware1-1/+9
* Port citra #3352 to yuzu This change allows non x86_64 architectures to compile yuzu by skipping the building of dynarmic * Fixed clang-format errors * fixes more clang-format errors
2018-01-13Removing unused settings and yuzu rebrandingJames Rowe1-9/+0
2018-01-13Remove gpu debugger and get yuzu qt to compileJames Rowe1-5/+0
2018-01-13core: Gut out cryptop, since it doesn't compile with C++17.bunnei1-3/+0
2018-01-12configuration: Add cpu_core configuration optionMerryMage1-1/+2
2017-09-19WebService: Verify username and token (#2930)B3n301-0/+12
* WebService: Verify username and token; Log errors in PostJson * Fixup: added docstrings to the functions * Webservice: Added Icons to the verification, imrpved error detection in cpr, fixup nits * fixup: fmt warning
2017-08-26web_services: Refactor to remove dependency on Core.bunnei1-1/+7
2017-08-26qt: Add an option to view/regenerate telemetry ID.bunnei1-3/+16
2017-08-26telemetry_session: Log telemetry ID.bunnei1-0/+36
2017-08-04telemetry: Add field for OsPlatform.bunnei1-0/+9
2017-08-04telemetry: Add field for BuildName.bunnei1-0/+1
2017-08-04telemetry_session: Log BuildDate and ProgramName fields.bunnei1-0/+7
2017-07-18telemetry: Log performance, configuration, and system data.bunnei1-10/+66
2017-07-12web_service: Add CMake flag to enable.bunnei1-2/+8
2017-07-12telemetry_session: Use TelemetryJson to submit real telemetry.bunnei1-2/+2
2017-05-25telemetry: Log a few simple data fields throughout core.bunnei1-0/+18
2017-05-25core: Keep track of telemetry for the current emulation session.bunnei1-0/+24