-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresource.cpp
More file actions
224 lines (195 loc) · 5.64 KB
/
resource.cpp
File metadata and controls
224 lines (195 loc) · 5.64 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
217
218
219
220
221
222
223
224
#include "resource.h"
#include <QDebug>
// RESOURCE - STATIC
QStringList Resource::mSupportedVideoFormats = QStringList() << "*.avi" << "*.m4v" << "*.mp4" << "*.mkv";
QStringList Resource::mSupportedImageFormats = QStringList() << "*.jpg" << "*.jpeg" << "*.png";
bool Resource::isResourceDirValid(const QDir &dir)
{
return dirContainsVideo(dir);
}
bool Resource::dirContainsImage(const QDir &dir)
{
return dir.exists()
&& QDirIterator(dir.absolutePath(),mSupportedImageFormats,QDir::Files).hasNext();
}
bool Resource::dirContainsVideo(const QDir &dir)
{
return dir.exists()
&& QDirIterator(dir.absolutePath(),mSupportedVideoFormats,QDir::Files).hasNext();
}
bool Resource::isDirValid(const QDir &dir)
{
return dir.exists()
&& dir.absolutePath() != dir.currentPath()
&& isResourceDirValid(dir);
}
// RESOURCE
Resource::Resource(const QString &path) :
mPath(isDirValid(QDir(path)) ? new QDir(path) : 0),
mName(mPath ? new QString(mPath->absolutePath()) : 0),
mFile(0),
mImage(0)
{}
Resource::Resource(const Resource &other) :
mPath(isDirValid(*other.mPath) ? new QDir(*other.mPath) : 0),
mName(mPath ? new QString(mPath->absolutePath()) : 0),
mFile(0),
mImage(0)
{}
Resource::~Resource()
{
delete mPath;
delete mName;
delete mFile;
delete mImage;
}
bool Resource::operator ==(const Resource &other)
{
return mPath && other.mPath && mPath == other.mPath;
}
const QDir* Resource::dir() const
{
return mPath;
}
const QString* Resource::name() const
{
return mName;
}
const QFileInfo* Resource::file()
{
if (!mFile && isValid()) {
QFileInfoList tmp = mPath->entryInfoList(mSupportedVideoFormats,QDir::Files,QDir::Name);
if (!tmp.isEmpty()) {
mFile = new QFileInfo(tmp.first().absoluteFilePath());
}
}
return mFile;
}
const QImage* Resource::image()
{
if (!mImage && isValid()) {
QFileInfoList tmp = mPath->entryInfoList(mSupportedImageFormats,QDir::Files,QDir::Name);
if (!tmp.isEmpty()) {
mImage = new QImage(tmp.first().absoluteFilePath());
}
}
return mImage;
}
bool Resource::isValid() const
{
return mPath;
}
// RESOURCECONTAINER
ResourceContainer::ResourceContainer(const QStringList &paths, QObject *parent) :
AbstractResourceContainer(parent),
mWatcher(new QFileSystemWatcher)
{
storePaths(paths);
connectSignals();
loadResource();
}
ResourceContainer::~ResourceContainer()
{
delete mWatcher;
foreach (const QString &item, pathList())
removeDataInfo(item);
}
QStringList ResourceContainer::folderList(const QString &path) const
{
QStringList out;
foreach (const QString &item, filterPathList(path)) {
const ResourceList *list = mPathInfo.value(item,0);
if (list)
foreach (const Resource &resource, *list)
out.append(*resource.name());
}
return out;
}
QStringList ResourceContainer::pathList() const
{
return mPathInfo.keys();
}
void ResourceContainer::loadResource(const QString &path)
{
QStringList filter = filterPathList(path);
if (filter.isEmpty())
removeDataInfo(path);
else
foreach (const QString &item, filter)
checkPathAndUpdate(item);
emitList();
}
QStringList ResourceContainer::filterPathList(const QString &path) const
{
QStringList dirList = mWatcher->directories();
return !path.isEmpty() ?
dirList.filter(QRegExp(path,Qt::CaseSensitive,QRegExp::Wildcard)) :
dirList;
}
void ResourceContainer::storePaths(const QStringList &paths)
{
if (mWatcher)
foreach (const QString &item, paths)
if (!item.isEmpty() && QFileInfo(item).isDir())
mWatcher->addPath(item);
}
void ResourceContainer::checkPathAndUpdate(const QString &path)
{
if (!QDir(path).exists())
removePath(path);
else
updatePath(path);
}
void ResourceContainer::removePath(const QString &path)
{
removeDataInfo(path);
if (mWatcher)
mWatcher->removePath(path);
}
void ResourceContainer::updatePath(const QString &path)
{
createOrClearDataInfo(path);
QDirIterator it(QDir(path).absolutePath());
while (it.hasNext())
appendPathToDataInfo(path,it.next());
}
void ResourceContainer::connectSignals()
{
if (mWatcher && !mWatcher->directories().isEmpty())
connect(mWatcher,SIGNAL(directoryChanged(QString)),
this,SLOT(loadResource(QString)));
}
void ResourceContainer::createOrClearDataInfo(const QString &key)
{
ResourceList *tmp = const_cast<ResourceList*>(mPathInfo.value(key,0));
if (tmp)
tmp->clear();
else
mPathInfo.insert(key,new ResourceList);
}
void ResourceContainer::removeDataInfo(const QString &key)
{
if (!key.isEmpty()) {
ResourceList *tmp = const_cast<ResourceList*>(mPathInfo.value(key,0));
if (tmp) {
tmp->clear();
delete tmp;
}
mPathInfo.remove(key);
}
}
void ResourceContainer::appendPathToDataInfo(const QString &key, const QString &path)
{
if (!key.isEmpty()) {
ResourceList *tmp = const_cast<ResourceList*>(mPathInfo.value(key,0));
if (tmp) {
Resource resource(path);
if (resource.isValid() && !tmp->contains(resource))
tmp->append(resource);
}
}
}
void ResourceContainer::emitList()
{
emit folderListChanged(folderList());
}