-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcpixloader.cpp
More file actions
216 lines (197 loc) · 5.1 KB
/
cpixloader.cpp
File metadata and controls
216 lines (197 loc) · 5.1 KB
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
/*********************** Information *************************\
| $HeadURL$
|
| Author: Jo2003
|
| Begin: 18.01.2010 / 16:17:24
|
| Last edited by: $Author$
|
| $Id$
\*************************************************************/
#include "cpixloader.h"
#include "defdef.h"
/* -----------------------------------------------------------------\
| Method: CPixLoader / constructor
| Begin: 18.01.2010 / 16:17:51
| Author: Jo2003
| Description: init values
|
| Parameters: pointer to parent object
|
| Returns: --
\----------------------------------------------------------------- */
CPixLoader::CPixLoader(QObject *parent) : QObject(parent)
{
_pSettings = NULL;
bRun = false;
}
/* -----------------------------------------------------------------\
| Method: ~CPixLoader / destructor
| Begin: 18.01.2010 / 16:18:13
| Author: Jo2003
| Description: clean on destruction
|
| Parameters: --
|
| Returns: --
\----------------------------------------------------------------- */
CPixLoader::~CPixLoader()
{
}
//---------------------------------------------------------------------------
//
//! \brief import settings dialog (used for API Server)
//
//! \author Jo2003
//! \date 11.11.2013
//
//! \param pSetDlg (CSettingsDlg *) pointer to settings dialog
//
//! \return --
//---------------------------------------------------------------------------
void CPixLoader::importSettings(CSettingsDlg *pSetDlg)
{
_pSettings = pSetDlg;
}
/* -----------------------------------------------------------------\
| Method: startDownLoad
| Begin: 18.01.2010 / 16:19:04
| Author: Jo2003
| Description: download picture if not exists
|
| Parameters: --
|
| Returns: --
\----------------------------------------------------------------- */
void CPixLoader::startDownLoad()
{
int iCount = 0;
PixCache::SPixDesc desc;
// get first most entry ...
mtxCacheQueue.lock();
desc = cacheQueue[0];
mtxCacheQueue.unlock();
QFileInfo info(desc.sRemote);
if (!QFile::exists(QString("%1/%2").arg(desc.sLocal).arg(info.fileName())))
{
// request download ...
if (desc.sRemote.contains("http"))
{
// full url ...
emit sigLoadImage(desc.sRemote);
}
else
{
emit sigLoadImage(QString("http://%1%2").arg(_pSettings->GetAPIServer()).arg(desc.sRemote));
}
}
else
{
// file exists, remove requested item
// and download next ...
mtxCacheQueue.lock();
cacheQueue.remove(0);
iCount = cacheQueue.count();
mtxCacheQueue.unlock();
if (iCount > 0)
{
// recursive call ...
startDownLoad();
}
else
{
// empty queue ...
bRun = false;
emit allDone();
}
}
}
/* -----------------------------------------------------------------\
| Method: slotImage (slot)
| Begin: 18.03.2013
| Author: Jo2003
| Description: check http response (answer)
|
| Parameters: image as byte array
|
| Returns: --
\----------------------------------------------------------------- */
void CPixLoader::slotImage(const QByteArray &ba)
{
int iCount = 0;
PixCache::SPixDesc desc;
// is this a gif file ... ?
if (ba.size() > 0)
{
mtxCacheQueue.lock();
desc = cacheQueue[0];
mtxCacheQueue.unlock();
QFileInfo info(desc.sRemote);
QFile pic(QString("%1/%2").arg(desc.sLocal).arg(info.fileName()));
if (pic.open(QIODevice::WriteOnly))
{
// write content ...
pic.write(ba);
pic.close();
}
}
// remove requested item ...
mtxCacheQueue.lock();
cacheQueue.remove(0);
iCount = cacheQueue.count();
mtxCacheQueue.unlock();
if (iCount > 0)
{
// download next ...
startDownLoad();
}
else
{
// last item ... download finished ...
bRun = false;
emit allDone();
}
}
/* -----------------------------------------------------------------\
| Method: enqueuePic
| Begin: 31.05.2012
| Author: Jo2003
| Description: queue in picture to load
|
| Parameters: remote url, local folder
|
| Returns: --
\----------------------------------------------------------------- */
void CPixLoader::enqueuePic(const QString &sRemote, const QString &sLocal)
{
PixCache::SPixDesc desc;
desc.sLocal = sLocal;
desc.sRemote = sRemote;
mtxCacheQueue.lock();
cacheQueue.append(desc);
mtxCacheQueue.unlock();
if (!bRun)
{
bRun = true;
startDownLoad();
}
}
/* -----------------------------------------------------------------\
| Method: busy
| Begin: 31.05.2012
| Author: Jo2003
| Description: is any download in progress
|
| Parameters: --
|
| Returns: true --> yes
| false --> no
\----------------------------------------------------------------- */
bool CPixLoader::busy()
{
return bRun;
}
/************************* History ***************************\
| $Log$
\*************************************************************/