Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Analytics refactoring #9474

Open
wants to merge 13 commits into
base: master
Choose a base branch
from

Conversation

Dentomologist
Copy link
Contributor

@Dentomologist Dentomologist commented Jan 26, 2021

Refactor various parts of Analytics.h/.cpp. The largest changes are to extract the logic for collecting performance samples into a new PerformanceSampleAggregator class, and convert the timing code to use std::chrono .

Other changes:
Remove unused headers
Move a file scope variable into the only function it's used in
Add static_asserts to verify the elements of GameQuirk enum class and GAME_QUIRKS_NAMES array stay in sync
Extract AnalyticsReportBuilder subfunctions from MakeBaseBuilder()
Make assorted variables const
Store the results of SConfig::GetInstance() and g_config.backend_info in local references to eliminate redundant accesses
Reformat some comments
Reformat GameQuirk enum class members to CamelCase
Extract PerformanceSample to new header to avoid circular dependencies with PerformanceSampleAggregator

@Dentomologist Dentomologist force-pushed the analytics_refactoring branch 2 times, most recently from 9fb9893 to ba9df98 Compare January 26, 2021 15:01
@Dentomologist
Copy link
Contributor Author

I've pushed an update to this PR. The biggest changes are extracting the logic for collecting performance samples into a new PerformanceSampleAggregator class, and making the timing code use std::chrono.

I also updated the original PR description with a more complete list of changes (both original and new).

Other changes:
Remove additional unused headers
Reformat another comment
Add static qualifier to ValidateQuirkMatchesName
Reformat GameQuirk enum class members to CamelCase
Extract PerformanceSample to new header to avoid circular dependencies with PerformanceSampleAggregator

@Dentomologist
Copy link
Contributor Author

I was missing a header include for Common/CommonTypes.h in PerformanceSampleAggregator.h.

@Dentomologist
Copy link
Contributor Author

I've made the suggested changes.

@JMC47
Copy link
Contributor

JMC47 commented Mar 3, 2021

@dolphin-emu-bot rebuild

@Dentomologist Dentomologist force-pushed the analytics_refactoring branch 3 times, most recently from a1ea09f to e19cfe6 Compare March 7, 2021 18:51
Copy link
Member

@leoetlino leoetlino left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good to me, but I'd like to wait for a second approval just to lower the chances of missing an issue and messing up analytics :)

@leoetlino leoetlino added the RFC Request for comments label Mar 16, 2021
STL header <functional> was included from both Analytics.h and
Analytics.cpp on Android.
Move endpoint declaration from anonymous namespace to the only function
it's used in.
Avoid circular dependencies or forward declarations in upcoming commits.
Moves functions that generate starting timestamps for performance
sampling to PerformanceSampleAggregator.
Move generation of completed performance sample report to
PerformanceSampleAggregator.
Moves remaining sample aggregation logic to
PerformanceSampleAggregation.
@Dentomologist Dentomologist force-pushed the analytics_refactoring branch from e19cfe6 to 24793c5 Compare April 7, 2021 00:51
@Dentomologist
Copy link
Contributor Author

Dentomologist commented Apr 7, 2021

Rebased to master and added name/case changes for members of GameQuirk enum added by #9576.

@dreamsyntax
Copy link
Member

Is this still wanted or is it redundant at 4+ years later?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
RFC Request for comments
Development

Successfully merging this pull request may close these issues.

5 participants