io/qresource_iterator.cpp

Source codeSwitch to Preprocessed file
LineSource CodeCoverage
1/**************************************************************************** -
2** -
3** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). -
4** Contact: http://www.qt-project.org/legal -
5** -
6** This file is part of the QtCore module of the Qt Toolkit. -
7** -
8** $QT_BEGIN_LICENSE:LGPL$ -
9** Commercial License Usage -
10** Licensees holding valid commercial Qt licenses may use this file in -
11** accordance with the commercial license agreement provided with the -
12** Software or, alternatively, in accordance with the terms contained in -
13** a written agreement between you and Digia. For licensing terms and -
14** conditions see http://qt.digia.com/licensing. For further information -
15** use the contact form at http://qt.digia.com/contact-us. -
16** -
17** GNU Lesser General Public License Usage -
18** Alternatively, this file may be used under the terms of the GNU Lesser -
19** General Public License version 2.1 as published by the Free Software -
20** Foundation and appearing in the file LICENSE.LGPL included in the -
21** packaging of this file. Please review the following information to -
22** ensure the GNU Lesser General Public License version 2.1 requirements -
23** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -
24** -
25** In addition, as a special exception, Digia gives you certain additional -
26** rights. These rights are described in the Digia Qt LGPL Exception -
27** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -
28** -
29** GNU General Public License Usage -
30** Alternatively, this file may be used under the terms of the GNU -
31** General Public License version 3.0 as published by the Free Software -
32** Foundation and appearing in the file LICENSE.GPL included in the -
33** packaging of this file. Please review the following information to -
34** ensure the GNU General Public License version 3.0 requirements will be -
35** met: http://www.gnu.org/copyleft/gpl.html. -
36** -
37** -
38** $QT_END_LICENSE$ -
39** -
40****************************************************************************/ -
41 -
42#include "qresource.h" -
43#include "qresource_iterator_p.h" -
44 -
45#include <QtCore/qvariant.h> -
46 -
47QT_BEGIN_NAMESPACE -
48 -
49QResourceFileEngineIterator::QResourceFileEngineIterator(QDir::Filters filters, -
50 const QStringList &filterNames) -
51 : QAbstractFileEngineIterator(filters, filterNames), index(-1) -
52{ -
53}
executed: }
Execution Count:17
17
54 -
55QResourceFileEngineIterator::~QResourceFileEngineIterator() -
56{ -
57} -
58 -
59QString QResourceFileEngineIterator::next() -
60{ -
61 if (!hasNext())
partially evaluated: !hasNext()
TRUEFALSE
no
Evaluation Count:0
yes
Evaluation Count:183
0-183
62 return QString();
never executed: return QString();
0
63 ++index;
executed (the execution status of this line is deduced): ++index;
-
64 return currentFilePath();
executed: return currentFilePath();
Execution Count:183
183
65} -
66 -
67bool QResourceFileEngineIterator::hasNext() const -
68{ -
69 if (index == -1) {
evaluated: index == -1
TRUEFALSE
yes
Evaluation Count:17
yes
Evaluation Count:366
17-366
70 // Lazy initialization of the iterator -
71 QResource resource(path());
executed (the execution status of this line is deduced): QResource resource(path());
-
72 if (!resource.isValid())
evaluated: !resource.isValid()
TRUEFALSE
yes
Evaluation Count:1
yes
Evaluation Count:16
1-16
73 return false;
executed: return false;
Execution Count:1
1
74 -
75 // Initialize and move to the next entry. -
76 entries = resource.children();
executed (the execution status of this line is deduced): entries = resource.children();
-
77 index = 0;
executed (the execution status of this line is deduced): index = 0;
-
78 }
executed: }
Execution Count:16
16
79 -
80 return index < entries.size();
executed: return index < entries.size();
Execution Count:382
382
81} -
82 -
83QString QResourceFileEngineIterator::currentFileName() const -
84{ -
85 if (index <= 0 || index > entries.size())
partially evaluated: index <= 0
TRUEFALSE
no
Evaluation Count:0
yes
Evaluation Count:549
partially evaluated: index > entries.size()
TRUEFALSE
no
Evaluation Count:0
yes
Evaluation Count:549
0-549
86 return QString();
never executed: return QString();
0
87 return entries.at(index - 1);
executed: return entries.at(index - 1);
Execution Count:549
549
88} -
89 -
90QT_END_NAMESPACE -
91 -
Source codeSwitch to Preprocessed file

Generated by Squish Coco Non-Commercial