-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
base: master
Are you sure you want to change the base?
Analytics refactoring #9474
Conversation
9fb9893
to
ba9df98
Compare
ba9df98
to
1a56f9b
Compare
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: |
1a56f9b
to
fc8cdc4
Compare
I was missing a header include for Common/CommonTypes.h in PerformanceSampleAggregator.h. |
fc8cdc4
to
ed03511
Compare
I've made the suggested changes. |
@dolphin-emu-bot rebuild |
a1ea09f
to
e19cfe6
Compare
There was a problem hiding this 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 :)
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.
e19cfe6
to
24793c5
Compare
Rebased to master and added name/case changes for members of GameQuirk enum added by #9576. |
Is this still wanted or is it redundant at 4+ years later? |
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