-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcnovoeparser.cpp
449 lines (385 loc) · 14 KB
/
cnovoeparser.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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
/*------------------------------ Information ---------------------------*//**
*
* $HeadURL$
*
* @file cnovoeparser.cpp
*
* @author Jo2003
*
* @date 15.04.2013
*
* $Id$
*
*///------------------------- (c) 2013 by Jo2003 --------------------------
#include "cnovoeparser.h"
#include "externals_inc.h"
//---------------------------------------------------------------------------
//
//! \brief construct json parser
//
//! \author Jo2003
//! \date 15.04.2013
//
//! \param parent pointer to parent widget
//
//! \return --
//---------------------------------------------------------------------------
CNovoeParser::CNovoeParser(QObject * parent) : CStdJsonParser(parent)
{
// nothing to do so far
}
//---------------------------------------------------------------------------
//
//! \brief parse channel list response into struct vector
//
//! \author Jo2003
//! \date 15.04.2013
//
//! \param sResp (const QString &) ref. to response string
//! \param chanList (QVector<cparser::SChan> &) data vector
//
//! \return 0 --> ok; -1 --> any error
//---------------------------------------------------------------------------
int CNovoeParser::parseChannelList (const QString &sResp,
QVector<cparser::SChan> &chanList)
{
int iRV = 0;
bool bOk = false;
cparser::SChan chan;
cparser::STimeShift ts;
QVariantMap contentMap;
int iGrpIdx = 0;
QString strImgPrefix = "/_logos/channelLogos/";
// clear channel list ...
chanList.clear();
contentMap = QtJson::parse(sResp, bOk).toMap();
if (bOk)
{
foreach (const QVariant& lGroup, contentMap.value("groups").toList())
{
QVariantMap mGroup = lGroup.toMap();
initChanEntry(chan, false);
chan.iId = mGroup.value("id").toInt();
chan.sName = mGroup.value("name").toString();
chan.sProgramm = mGroup.value("color").toString();
if (!ignoreGroup(chan))
{
// make sure group color isn't black ...
checkColor(chan.sProgramm, iGrpIdx++);
chanList.append(chan);
foreach (const QVariant& lChannel, mGroup.value("channels").toList())
{
QVariantMap mChannel = lChannel.toMap();
initChanEntry(chan);
chan.iId = mChannel.value("id").toInt();
chan.sName = mChannel.value("name").toString();
chan.bIsVideo = mChannel.value("is_video").toBool();
chan.bHasArchive = mChannel.value("have_archive").toBool();
chan.bIsProtected = mChannel.value("protected").toBool();
chan.sIcon = strImgPrefix + mChannel.value("logo_big").toString();
chan.sProgramm = mChannel.value("epg_progname").toString();
chan.uiStart = mChannel.value("epg_start").toUInt();
chan.uiEnd = mChannel.value("epg_end").toUInt();
foreach (const QVariant& lParam, mChannel.value("stream_params").toList())
{
QVariantMap mParam = lParam.toMap();
ts.iBitRate = mParam.value("rate").toInt();
ts.iTimeShift = mParam.value("ts").toInt();
chan.vTs.append(ts);
}
chanList.append(chan);
}
}
}
}
else
{
emit sigError((int)Msg::Error, tr("Error in %1").arg(__FUNCTION__),
tr("QtJson parser error in %1 %2():%3")
.arg(__FILE__).arg(__FUNCTION__).arg(__LINE__));
iRV = -1;
}
return iRV;
}
//---------------------------------------------------------------------------
//
//! \brief parse server list response
//
//! \author Jo2003
//! \date 15.04.2013
//
//! \param sResp (const QString &) ref. to response string
//! \param vSrv (QVector<cparser::SSrv> &) server vector
//! \param sActIp (QString&) ref. to current value
//
//! \return 0 --> ok; -1 --> any error
//---------------------------------------------------------------------------
int CNovoeParser::parseSServersLogin(const QString &sResp, QVector<cparser::SSrv> &vSrv,
QString &sActIp)
{
// Entries in server list are faked only -> ignore them!
Q_UNUSED(sResp)
vSrv.clear();
sActIp = "";
return 0;
}
//---------------------------------------------------------------------------
//
//! \brief parse Vod list response
//
//! \author Jo2003
//! \date 15.04.2013
//
//! \param sResp (const QString &) ref. to response string
//! \param vVodList (QVector<cparser::SVodVideo>&) ref. to vod vector
//! \param gInfo (cparser::SGenreInfo&) ref. to genre info struct
//
//! \return 0 --> ok; -1 --> any error
//---------------------------------------------------------------------------
int CNovoeParser::parseVodList(const QString &sResp, QVector<cparser::SVodVideo> &vVodList, cparser::SGenreInfo &gInfo)
{
int iRV = 0;
bool bOk = false;
cparser::SVodVideo entry;
QVariantMap contentMap;
// clear vector ...
vVodList.clear();
contentMap = QtJson::parse(sResp, bOk).toMap();
if (bOk)
{
gInfo.sType = contentMap.value("type").toString();
gInfo.iTotal = contentMap.value("total").toInt();
gInfo.iPage = contentMap.value("page").toInt();
gInfo.iCount = contentMap.value("count").toInt();
foreach (const QVariant& lRow, contentMap.value("rows").toList())
{
QVariantMap mRow = lRow.toMap();
entry.uiVidId = mRow.value("id").toUInt();
entry.sName = mRow.value("name").toString();
entry.sDescr = mRow.value("description").toString();
entry.sYear = mRow.value("year").toString();
entry.sImg = mRow.value("poster").toString();
entry.bProtected = (mRow.value("vis").toString() != "on") ? true : false;
entry.sCountry = mRow.value("country").toMap().value("name").toString();
vVodList.append(entry);
}
}
else
{
emit sigError((int)Msg::Error, tr("Error in %1").arg(__FUNCTION__),
tr("QtJson parser error in %1 %2():%3")
.arg(__FILE__).arg(__FUNCTION__).arg(__LINE__));
iRV = -1;
}
return iRV;
}
//---------------------------------------------------------------------------
//
//! \brief parse video detail response
//
//! \author Jo2003
//! \date 15.04.2013
//
//! \param sResp (const QString &) ref. to response string
//! \param vidInfo (cparser::SVodVideo&) ref. to vod info struct
//
//! \return 0 --> ok; -1 --> any error
//---------------------------------------------------------------------------
int CNovoeParser::parseVideoInfo(const QString &sResp, cparser::SVodVideo &vidInfo)
{
int iRV = 0;
bool bOk = false;
QVariantMap contentMap;
cparser::SVodFileInfo fInfo;
// init struct ...
vidInfo.sActors = "";
vidInfo.sCountry = "";
vidInfo.sDescr = "";
vidInfo.sDirector = "";
vidInfo.sImg = "";
vidInfo.sName = "";
vidInfo.sYear = "";
vidInfo.uiLength = 0;
vidInfo.uiVidId = 0;
vidInfo.bProtected = false;
vidInfo.bFavourit = false;
vidInfo.vVodFiles.clear();
contentMap = QtJson::parse(sResp, bOk).toMap();
if (bOk)
{
contentMap = contentMap.value("film").toMap();
vidInfo.sActors = contentMap.value("actors").toString();
vidInfo.sDescr = contentMap.value("description").toString();
vidInfo.sDirector = contentMap.value("director").toString();
vidInfo.sImg = contentMap.value("poster").toString();
vidInfo.sName = contentMap.value("name").toString();
vidInfo.sYear = contentMap.value("year").toString();
vidInfo.sGenres = contentMap.value("genre_str").toString();
vidInfo.uiLength = contentMap.value("lenght").toUInt();
vidInfo.uiVidId = contentMap.value("id").toUInt();
vidInfo.bProtected = (contentMap.value("vis").toString() != "on") ? true : false;
vidInfo.sCountry = contentMap.value("country").toMap().value("name").toString();
foreach (const QVariant& lVideo, contentMap.value("videos").toList())
{
QVariantMap mVideo = lVideo.toMap();
fInfo.iHeight = mVideo.value("height").toInt();
fInfo.iId = mVideo.value("id").toInt();
fInfo.iLength = mVideo.value("length").toInt();
fInfo.iSize = mVideo.value("size").toInt();
fInfo.iWidth = mVideo.value("width").toInt();
fInfo.sCodec = mVideo.value("codec").toString();
fInfo.sFormat = mVideo.value("format").toString();
fInfo.sTitle = mVideo.value("title").toString();
fInfo.sUrl = mVideo.value("url").toString();
vidInfo.vVodFiles.append(fInfo);
}
}
else
{
emit sigError((int)Msg::Error, tr("Error in %1").arg(__FUNCTION__),
tr("QtJson parser error in %1 %2():%3")
.arg(__FILE__).arg(__FUNCTION__).arg(__LINE__));
iRV = -1;
}
return iRV;
}
//---------------------------------------------------------------------------
//
//! \brief parse epg response response
//
//! \author Jo2003
//! \date 15.04.2013
//
//! \param sResp (const QString &) ref. to response string
//! \param epgList (QVector<cparser::SEpg> &) ref. to epg data vector
//
//! \return 0 --> ok; -1 --> any error
//---------------------------------------------------------------------------
int CNovoeParser::parseEpg (const QString &sResp, QVector<cparser::SEpg> &epgList)
{
int iRV = 0;
bool bOk = false;
cparser::SEpg entry;
QVariantMap contentMap;
QString sTmp;
// clear vector ...
epgList.clear();
contentMap = QtJson::parse(sResp, bOk).toMap();
if (bOk)
{
foreach (const QVariant& lEpg, contentMap.value("epg").toList())
{
QVariantMap mEpg = lEpg.toMap();
entry.sDescr = "";
entry.uiGmt = mEpg.value("ut_start").toUInt();
entry.uiEnd = mEpg.value("ut_end").toUInt();
sTmp = mEpg.value("progname").toString();
if (sTmp.contains('\n'))
{
entry.sName = sTmp.left(sTmp.indexOf('\n'));
entry.sDescr = sTmp.mid(sTmp.indexOf('\n') + 1);
}
else
{
entry.sName = sTmp;
}
if (mEpg.contains("pdescr"))
{
entry.sDescr = mEpg.value("pdescr").toString();
}
epgList.append(entry);
}
}
else
{
emit sigError((int)Msg::Error, tr("Error in %1").arg(__FUNCTION__),
tr("QtJson parser error in %1 %2():%3")
.arg(__FILE__).arg(__FUNCTION__).arg(__LINE__));
iRV = -1;
}
return iRV;
}
//---------------------------------------------------------------------------
//
//! \brief parse one setting entry sent in login response
//
//! \author Jo2003
//! \date 15.04.2013
//
//! \param sResp (const QString &) ref. to response string
//! \param sName (const QString &) ref. to setting name
//! \param vValues (QVector<int>&) ref. to value vector
//! \param iActVal (int&) ref. to current value
//
//! \return 0 --> ok; -1 --> any error
//---------------------------------------------------------------------------
int CNovoeParser::parseSetting(const QString& sResp, const QString &sName, QVector<int>& vValues, int& iActVal)
{
// all settings are faked only -> ignore them!
Q_UNUSED(sResp)
Q_UNUSED(sName)
vValues.clear();
iActVal = -1;
return 0;
}
//---------------------------------------------------------------------------
//
//! \brief parse current epg current response
//
//! \author Jo2003
//! \date 01.08.2013
//
//! \param sResp (const QString &) ref. to response string
//! \param currentEpg (QCurrentMap &) ref. to epg data map
//
//! \return 0 --> ok; -1 --> any error
//---------------------------------------------------------------------------
int CNovoeParser::parseEpgCurrent (const QString& sResp, QCurrentMap ¤tEpg)
{
int iRV = 0, cid;
bool bOk = false;
cparser::SEpgCurrent entry;
QVector<cparser::SEpgCurrent> vEntries;
QVariantMap contentMap;
// clear map ...
currentEpg.clear();
contentMap = QtJson::parse(sResp, bOk).toMap();
if (bOk)
{
foreach (const QVariant& lEpg1, contentMap.value("epg").toList())
{
QVariantMap mEpg1 = lEpg1.toMap();
vEntries.clear();
cid = mEpg1.value("cid").toInt();
foreach (const QVariant& lEpg2, mEpg1.value("epg").toList())
{
QVariantMap mEpg2 = lEpg2.toMap();
entry.sShow = mEpg2.value("epg_progname").toString();
entry.uiStart = mEpg2.value("epg_start").toUInt();
entry.uiEnd = mEpg2.value("epg_end").toUInt();
vEntries.append(entry);
}
currentEpg.insert(cid, vEntries);
#ifdef __TRACE
QString s;
s = tr("Update Entries for channel %1:\n").arg(cid);
for (int i = 0; i < vEntries.count(); i++)
{
s += QString("%1 - %2: %3\n")
.arg(QDateTime::fromTime_t(vEntries.at(i).uiStart).toString("dd.MM.yyyy hh:mm"))
.arg(QDateTime::fromTime_t(vEntries.at(i).uiEnd).toString("dd.MM.yyyy hh:mm"))
.arg(vEntries.at(i).sShow);
}
mInfo(s);
#endif // __TRACE
}
}
else
{
emit sigError((int)Msg::Error, tr("Error in %1").arg(__FUNCTION__),
tr("QtJson parser error in %1 %2():%3")
.arg(__FILE__).arg(__FUNCTION__).arg(__LINE__));
iRV = -1;
}
return iRV;
}