mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	common/telemetry: Migrate core-independent info gathering to common
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.
This commit is contained in:
		
							parent
							
								
									50eb634583
								
							
						
					
					
						commit
						52fe6daa53
					
				
					 3 changed files with 67 additions and 43 deletions
				
			
		|  | @ -3,8 +3,15 @@ | |||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #include <algorithm> | ||||
| #include <cstring> | ||||
| #include "common/assert.h" | ||||
| #include "common/scm_rev.h" | ||||
| #include "common/telemetry.h" | ||||
| 
 | ||||
| #ifdef ARCHITECTURE_x86_64 | ||||
| #include "common/x64/cpu_detect.h" | ||||
| #endif | ||||
| 
 | ||||
| namespace Telemetry { | ||||
| 
 | ||||
| void FieldCollection::Accept(VisitorInterface& visitor) const { | ||||
|  | @ -37,4 +44,47 @@ template class Field<std::string>; | |||
| template class Field<const char*>; | ||||
| template class Field<std::chrono::microseconds>; | ||||
| 
 | ||||
| void AppendBuildInfo(FieldCollection& fc) { | ||||
|     const bool is_git_dirty{std::strstr(Common::g_scm_desc, "dirty") != nullptr}; | ||||
|     fc.AddField(FieldType::App, "Git_IsDirty", is_git_dirty); | ||||
|     fc.AddField(FieldType::App, "Git_Branch", Common::g_scm_branch); | ||||
|     fc.AddField(FieldType::App, "Git_Revision", Common::g_scm_rev); | ||||
|     fc.AddField(FieldType::App, "BuildDate", Common::g_build_date); | ||||
|     fc.AddField(FieldType::App, "BuildName", Common::g_build_name); | ||||
| } | ||||
| 
 | ||||
| void AppendCPUInfo(FieldCollection& fc) { | ||||
| #ifdef ARCHITECTURE_x86_64 | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_Model", Common::GetCPUCaps().cpu_string); | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_BrandString", Common::GetCPUCaps().brand_string); | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_Extension_x64_AES", Common::GetCPUCaps().aes); | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_Extension_x64_AVX", Common::GetCPUCaps().avx); | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_Extension_x64_AVX2", Common::GetCPUCaps().avx2); | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_Extension_x64_BMI1", Common::GetCPUCaps().bmi1); | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_Extension_x64_BMI2", Common::GetCPUCaps().bmi2); | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_Extension_x64_FMA", Common::GetCPUCaps().fma); | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_Extension_x64_FMA4", Common::GetCPUCaps().fma4); | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_Extension_x64_SSE", Common::GetCPUCaps().sse); | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_Extension_x64_SSE2", Common::GetCPUCaps().sse2); | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_Extension_x64_SSE3", Common::GetCPUCaps().sse3); | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_Extension_x64_SSSE3", Common::GetCPUCaps().ssse3); | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_Extension_x64_SSE41", Common::GetCPUCaps().sse4_1); | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_Extension_x64_SSE42", Common::GetCPUCaps().sse4_2); | ||||
| #else | ||||
|     fc.AddField(FieldType::UserSystem, "CPU_Model", "Other"); | ||||
| #endif | ||||
| } | ||||
| 
 | ||||
| void AppendOSInfo(FieldCollection& fc) { | ||||
| #ifdef __APPLE__ | ||||
|     fc.AddField(FieldType::UserSystem, "OsPlatform", "Apple"); | ||||
| #elif defined(_WIN32) | ||||
|     fc.AddField(FieldType::UserSystem, "OsPlatform", "Windows"); | ||||
| #elif defined(__linux__) || defined(linux) || defined(__linux) | ||||
|     fc.AddField(FieldType::UserSystem, "OsPlatform", "Linux"); | ||||
| #else | ||||
|     fc.AddField(FieldType::UserSystem, "OsPlatform", "Unknown"); | ||||
| #endif | ||||
| } | ||||
| 
 | ||||
| } // namespace Telemetry
 | ||||
|  |  | |||
|  | @ -184,4 +184,16 @@ struct NullVisitor : public VisitorInterface { | |||
|     } | ||||
| }; | ||||
| 
 | ||||
| /// Appends build-specific information to the given FieldCollection,
 | ||||
| /// such as branch name, revision hash, etc.
 | ||||
| void AppendBuildInfo(FieldCollection& fc); | ||||
| 
 | ||||
| /// Appends CPU-specific information to the given FieldCollection,
 | ||||
| /// such as instruction set extensions, etc.
 | ||||
| void AppendCPUInfo(FieldCollection& fc); | ||||
| 
 | ||||
| /// Appends OS-specific information to the given FieldCollection,
 | ||||
| /// such as platform name, etc.
 | ||||
| void AppendOSInfo(FieldCollection& fc); | ||||
| 
 | ||||
| } // namespace Telemetry
 | ||||
|  |  | |||
|  | @ -2,16 +2,13 @@ | |||
| // Licensed under GPLv2 or any later version
 | ||||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #include <cstring> | ||||
| #include <cryptopp/osrng.h> | ||||
| 
 | ||||
| #include "common/assert.h" | ||||
| #include "common/common_types.h" | ||||
| #include "common/file_util.h" | ||||
| #include "common/logging/log.h" | ||||
| #include "common/scm_rev.h" | ||||
| #ifdef ARCHITECTURE_x86_64 | ||||
| #include "common/x64/cpu_detect.h" | ||||
| #endif | ||||
| #include "core/core.h" | ||||
| #include "core/settings.h" | ||||
| #include "core/telemetry_session.h" | ||||
|  | @ -117,46 +114,11 @@ void TelemetrySession::AddInitialInfo(Loader::AppLoader& app_loader) { | |||
|     } | ||||
| 
 | ||||
|     // Log application information
 | ||||
|     const bool is_git_dirty{std::strstr(Common::g_scm_desc, "dirty") != nullptr}; | ||||
|     AddField(Telemetry::FieldType::App, "Git_IsDirty", is_git_dirty); | ||||
|     AddField(Telemetry::FieldType::App, "Git_Branch", Common::g_scm_branch); | ||||
|     AddField(Telemetry::FieldType::App, "Git_Revision", Common::g_scm_rev); | ||||
|     AddField(Telemetry::FieldType::App, "BuildDate", Common::g_build_date); | ||||
|     AddField(Telemetry::FieldType::App, "BuildName", Common::g_build_name); | ||||
|     Telemetry::AppendBuildInfo(field_collection); | ||||
| 
 | ||||
| // Log user system information
 | ||||
| #ifdef ARCHITECTURE_x86_64 | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_Model", Common::GetCPUCaps().cpu_string); | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_BrandString", | ||||
|              Common::GetCPUCaps().brand_string); | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_Extension_x64_AES", Common::GetCPUCaps().aes); | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_Extension_x64_AVX", Common::GetCPUCaps().avx); | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_Extension_x64_AVX2", Common::GetCPUCaps().avx2); | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_Extension_x64_BMI1", Common::GetCPUCaps().bmi1); | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_Extension_x64_BMI2", Common::GetCPUCaps().bmi2); | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_Extension_x64_FMA", Common::GetCPUCaps().fma); | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_Extension_x64_FMA4", Common::GetCPUCaps().fma4); | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_Extension_x64_SSE", Common::GetCPUCaps().sse); | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_Extension_x64_SSE2", Common::GetCPUCaps().sse2); | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_Extension_x64_SSE3", Common::GetCPUCaps().sse3); | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_Extension_x64_SSSE3", | ||||
|              Common::GetCPUCaps().ssse3); | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_Extension_x64_SSE41", | ||||
|              Common::GetCPUCaps().sse4_1); | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_Extension_x64_SSE42", | ||||
|              Common::GetCPUCaps().sse4_2); | ||||
| #else | ||||
|     AddField(Telemetry::FieldType::UserSystem, "CPU_Model", "Other"); | ||||
| #endif | ||||
| #ifdef __APPLE__ | ||||
|     AddField(Telemetry::FieldType::UserSystem, "OsPlatform", "Apple"); | ||||
| #elif defined(_WIN32) | ||||
|     AddField(Telemetry::FieldType::UserSystem, "OsPlatform", "Windows"); | ||||
| #elif defined(__linux__) || defined(linux) || defined(__linux) | ||||
|     AddField(Telemetry::FieldType::UserSystem, "OsPlatform", "Linux"); | ||||
| #else | ||||
|     AddField(Telemetry::FieldType::UserSystem, "OsPlatform", "Unknown"); | ||||
| #endif | ||||
|     // Log user system information
 | ||||
|     Telemetry::AppendCPUInfo(field_collection); | ||||
|     Telemetry::AppendOSInfo(field_collection); | ||||
| 
 | ||||
|     // Log user configuration information
 | ||||
|     AddField(Telemetry::FieldType::UserConfig, "Audio_SinkId", Settings::values.sink_id); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue