-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcivistats.cpp
349 lines (307 loc) · 10.6 KB
/
civistats.cpp
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
/*------------------------------ Information ---------------------------*//**
*
* $HeadURL$
*
* @file civistats.cpp
*
* @author Jo2003
*
* @date 03.01.2017
*
* $Id$
*
*///------------------------- (c) 2017 by Jo2003 --------------------------
#include "civistats.h"
#include "qurlex.h"
#include "playstates.h"
#include "externals_inc.h"
//------------------------------------------------------------------------------
//! @brief create object
//!
//! @param parent (optional) parent object
//------------------------------------------------------------------------------
CIviStats::CIviStats(QObject *parent)
: QObject(parent)
{
mpPlayer = NULL;
mTmSecTick.setSingleShot(false);
mTmSecTick.setInterval(1000);
mSecCounter = 0;
connect(&mTmSecTick, SIGNAL(timeout()), this, SLOT(secsTick()));
}
//------------------------------------------------------------------------------
//! @brief destroy object
//------------------------------------------------------------------------------
CIviStats::~CIviStats()
{
}
//------------------------------------------------------------------------------
//! @brief create object
//!
//! @param[in] cntData data to be used when sending statistics
//------------------------------------------------------------------------------
void CIviStats::start(const ivistats::SContentData &cntData)
{
// stop tick timer ...
mTmSecTick.stop();
// start measure load time ...
mMeasureLoad.start();
mMeasureBuffer = QTime();
mMeasureRewind = QTime();
// reset seconds counter ...
mSecCounter = 0;
// store content data ...
mContentData = cntData;
// start tick timer ...
mTmSecTick.start();
if (mContentData.mPixAudit.contains("start_video_real"))
{
ivistats::SIviStats stats;
stats.mUrl = mContentData.mPixAudit.value("start_video_real");
emit sigStats(stats);
}
}
//------------------------------------------------------------------------------
//! @brief end statistic stuff ...
//------------------------------------------------------------------------------
void CIviStats::end()
{
if (mTmSecTick.isActive())
{
// stop tick timer ...
mTmSecTick.stop();
// make all measurments invalid ...
mMeasureBuffer = QTime();
mMeasureLoad = QTime();
mMeasureRewind = QTime();
ivistats::SIviStats stats;
stats.mUrl = "http://logger.ivi.ru/logger/content/time";
stats.mPost = true;
stats.mContent = createStatsContent();
emit sigStats(stats);
if (mContentData.mPixAudit.contains("end_content"))
{
stats.mContent = "";
stats.mPost = false;
stats.mUrl = mContentData.mPixAudit.value("end_content");
emit sigStats(stats);
}
}
}
//------------------------------------------------------------------------------
//! @brief start measure buffering time
//------------------------------------------------------------------------------
void CIviStats::bufferStart()
{
mMeasureBuffer.start();
}
//------------------------------------------------------------------------------
//! @brief end measure buffering time
//------------------------------------------------------------------------------
void CIviStats::bufferEnd()
{
sendLoadStats(ivistats::LT_BUFFER, mMeasureBuffer);
}
//------------------------------------------------------------------------------
//! @brief start measure rewind time
//------------------------------------------------------------------------------
void CIviStats::rewindStart()
{
mMeasureRewind.start();
}
//------------------------------------------------------------------------------
//! @brief end measure rewind time
//------------------------------------------------------------------------------
void CIviStats::rewindEnd()
{
sendLoadStats(ivistats::LT_REWIND, mMeasureRewind);
}
//------------------------------------------------------------------------------
//! @brief end measure load time time
//------------------------------------------------------------------------------
void CIviStats::loadEnd()
{
sendLoadStats(ivistats::LT_LOAD, mMeasureLoad);
emit sigWatched(mContentData.mContentId, mContentData.mWatchId);
}
//------------------------------------------------------------------------------
//! @brief seconds tick (called every second) [slot]
//------------------------------------------------------------------------------
void CIviStats::secsTick()
{
bool sendStats = false;
ivistats::SIviStats stats;
// count second ...
mSecCounter ++;
if (mSecCounter <= 5)
{
// every second ...
sendStats = true;
}
else if (mSecCounter <= 15)
{
// every 3 seconds ...
if (!(mSecCounter % 3))
{
sendStats = true;
}
}
else if ((mSecCounter <= 60) || (mSecCounter >= (unsigned long)(mContentData.mEndCredits - 60)))
{
// every 5 seconds ...
if (!(mSecCounter % 5))
{
sendStats = true;
}
}
else
{
// every 60 seconds ...
if (!(mSecCounter % 60))
{
sendStats = true;
}
}
if (sendStats)
{
stats.mUrl = "http://logger.ivi.ru/logger/content/time";
stats.mPost = true;
stats.mContent = createStatsContent();
emit sigStats(stats);
}
// independent from position ...
if (!(mSecCounter % 60))
{
// pixelaudit bla bla bla ...
if (mContentData.mPixAudit.contains("minute_content"))
{
stats.mUrl = mContentData.mPixAudit.value("minute_content");
stats.mPost = false;
stats.mContent = "";
emit sigStats(stats);
}
}
}
//------------------------------------------------------------------------------
//! @brief player state was changed ...
//!
//! @param[in] state new player state
//------------------------------------------------------------------------------
void CIviStats::playStateChg(int state)
{
switch((IncPlay::ePlayStates)state)
{
case IncPlay::PS_END:
case IncPlay::PS_STOP:
case IncPlay::PS_ERROR:
end();
break;
default:
break;
}
}
//------------------------------------------------------------------------------
//! @brief percent of internal play buffer
//!
//! @param[in] percent new buffer value
//------------------------------------------------------------------------------
void CIviStats::bufferPercent(int percent)
{
// interseting only when statistic stuff is active ...
if (mTmSecTick.isActive())
{
if (percent >= 95)
{
// only one of these measurments should
// be active at same time ...
if (mMeasureLoad.isValid())
{
mInfo(tr("Buffering complete after opening the video (%1%) ...").arg(percent));
loadEnd();
}
else if (mMeasureRewind.isValid())
{
mInfo(tr("Buffering complete after spooling the video (%1%) ...").arg(percent));
rewindEnd();
}
else if (mMeasureBuffer.isValid())
{
mInfo(tr("Buffering complete after buffer underrun (%1%) ...").arg(percent));
bufferEnd();
}
}
else if (percent <= 5)
{
// we count it as buffer underrun only,
// if no other measurment is active ...
if ( !mMeasureLoad.isValid()
&& !mMeasureRewind.isValid()
&& !mMeasureBuffer.isValid())
{
mInfo(tr("Buffer underrun (%1%) ...").arg(percent));
bufferStart();
}
}
}
}
//------------------------------------------------------------------------------
//! @brief store player instance
//!
//! @param[in] pPlayer pointer to player instance
//------------------------------------------------------------------------------
void CIviStats::setPlayer(CPlayer *pPlayer)
{
mpPlayer = pPlayer;
connect (mpPlayer, SIGNAL(sigPlayState(int)) , this, SLOT(playStateChg(int)));
connect (mpPlayer, SIGNAL(sigSpool()) , this, SLOT(rewindStart()));
connect (mpPlayer, SIGNAL(sigBuffPercent(int)), this, SLOT(bufferPercent(int)));
}
//------------------------------------------------------------------------------
//! @brief end measure and send load statistics
//!
//! @param[in] t ivistats::ELoadType load type
//! @param[in] measure ref. to QTime instance
//------------------------------------------------------------------------------
void CIviStats::sendLoadStats(ivistats::ELoadType t, QTime &measure)
{
int elapsed = measure.elapsed();
int duration = elapsed / 1000;
if (((elapsed % 1000) >= 500) || (duration == 0))
{
duration ++;
}
// reset measure (make invalid) ...
measure = QTime();
ivistats::SIviStats stats;
stats.mUrl = "http://logger.ivi.ru/logger/content/load";
stats.mPost = true;
stats.mContent = createStatsContent(t, duration);
emit sigStats(stats);
}
//------------------------------------------------------------------------------
//! @brief create statistics content
//!
//! @param[in] loadType (optional) needed for extended stats
//! @param[in] duration (optional) needed for extended stats
//!
//! @returns content as string
//------------------------------------------------------------------------------
QString CIviStats::createStatsContent(int loadType, int duration)
{
QUrlEx content;
content.addQueryItem("uid" , mContentData.mUid.toUtf8());
content.addQueryItem("watchid" , mContentData.mWatchId.toUtf8());
content.addQueryItem("device" , mContentData.mDevice.toUtf8());
content.addQueryItem("iviuid" , QString::number(mContentData.mIviUid).toUtf8());
content.addQueryItem("app_version" , QString::number(mContentData.mAppVersion).toUtf8());
content.addQueryItem("content_id" , QString::number(mContentData.mContentId).toUtf8());
content.addQueryItem("seconds" , QString::number(mSecCounter).toUtf8());
content.addQueryItem("fromstart" , QString::number(mpPlayer->getMediaPosition()).toUtf8());
if (loadType != -1)
{
content.addQueryItem("type_id" , QString::number(loadType).toUtf8());
content.addQueryItem("duration" , QString::number(duration).toUtf8());
content.addQueryItem("content_format" , mContentData.mFormat.toUtf8());
}
return content.query();
}