-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAnalytics.hpp
158 lines (137 loc) · 4.25 KB
/
Analytics.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
//
// Analytics.hpp
// Maw Kit
//
// Created by Lluís Ulzurrun de Asanza Sàez on 18/02/16.
//
//
#ifndef Analytics_hpp
#define Analytics_hpp
#include <map>
#include <string>
namespace MK {
/**
* `Analytics` namespace wraps Twitter's Fabric and MixPanel methods in a set
* of cross-compatible functions.
*/
namespace Analytics {
/**
* `Fabric::PerformanceIntensiveLogging` namespace features constants that
* allow enabling or disabling logging performance in an intensive way, as well
* as fine-tuning intensive performance logging intervals.
*/
namespace PerformanceIntensiveLogging {
/**
* Period of intensive performance logging in seconds, that is, seconds to
* wait between two consecutive performance events.
*/
constexpr double PERIOD = 2.0;
/**
* Probability (up to 1) of an invocation to
* `Fabric::maybeScheduleIntensivePerformanceLogging` to schedule an intensive
* performance logging.
*/
constexpr double PROBABILITY = 0.01;
/**
* Identifier of callback that logs FPS periodically.
*/
constexpr const char *CALLBACK_ID = "logFPS";
}; // namespace PerformanceIntensiveLogging
/**
* Logs given event without additional attributes.
*
* @native
*
* @param event Name of the event to log.
*/
void logEvent( const std::string &event );
/**
* Logs given event with given additional attributes.
*
* @native
*
* @param event Name of the event to log.
* @param attr Additional attributes.
*/
void logEvent( const std::string &event, const std::map<std::string, std::string> &attr );
/**
* Logs given event with given additional attributes.
*
* @native
*
* @param event Name of the event to log.
* @param attr Additional attributes.
*/
void logEvent( const std::string &event, const std::map<std::string, double> &attr );
/**
* Logs start of level with given name/identifier.
*
* @param levelName Name of the started level to log.
*/
void logLevelStart( const std::string &levelName );
/**
* Logs start of level with given name/identifier and given optional additional
* attributes.
*
* @native
*
* @param levelName Name of the started level to log.
* @param attributes Additional attributes to log in this event.
*/
void logLevelStart( const std::string &levelName,
const std::map<std::string, std::string> &attributes );
/**
* Logs start of level with given name/identifier and given optional additional
* attributes.
*
* @native
*
* @param levelName Name of the started level to log.
* @param attributes Additional attributes to log in this event.
*/
void logLevelStart( const std::string &levelName,
const std::map<std::string, double> &attributes );
/**
* Logs end of level with given name/identifier, given score, whether user
* succeeded or not in the level and given optional additional attributes.
*
* @native
*
* @param levelName Name of the finished level to log.
* @param score Score use achieved in this level.
* @param succeeded Whether used suceeded in this level (`true) or not.
* @param attr Additional attributes to log in this event.
*/
void logLevelEnd( const std::string &levelName,
const long long score,
const bool succeeded,
const std::map<std::string, std::string> &attr = {} );
/**
* Logs end of level with given name/identifier, given score, whether user
* succeeded or not in the level and given optional additional attributes.
*
* @native
*
* @param levelName Name of the finished level to log.
* @param score Score use achieved in this level.
* @param succeeded Whether used suceeded in this level (`true) or not.
* @param attr Additional attributes to log in this event.
*/
void logLevelEnd( const std::string &levelName,
const long long score,
const bool succeeded,
const std::map<std::string, double> &attr = {} );
/**
* Logs that app tried to display a video reward ad that was not ready yet.
*/
void logNonReadyVideoRewardDisplay();
/**
* Returns whether Analytics logging in enbled or not.
*
* @return `true` if events should be logged in Fabric's Answers platform and
* MixPanel.
*/
const bool enabled();
}; // namespace Analytics
}; // namespace MK
#endif /* Fabric_hpp */