qfileinfo_p.h: removed unnecessary dependency on QFSFileEngine
[qt-netbsd.git] / src / corelib / io / qfileinfo_p.h
blobbf02aaaced256b7cf50bca7016423702b395aece
1 /****************************************************************************
2 **
3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the QtCore module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file. Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights. These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
38 ** $QT_END_LICENSE$
40 ****************************************************************************/
42 #ifndef QFILEINFO_P_H
43 #define QFILEINFO_P_H
46 // W A R N I N G
47 // -------------
49 // This file is not part of the Qt API. It exists purely as an
50 // implementation detail. This header file may change from version to
51 // version without notice, or even be removed.
53 // We mean it.
56 #include "qfileinfo.h"
57 #include "qabstractfileengine.h"
58 #include "qdatetime.h"
59 #include "qatomic.h"
61 QT_BEGIN_NAMESPACE
63 class QFileInfoPrivate
65 public:
66 QFileInfoPrivate(const QFileInfo *copy=0);
67 ~QFileInfoPrivate();
69 void initFileEngine(const QString &);
71 enum Access {
72 ReadAccess,
73 WriteAccess,
74 ExecuteAccess
76 bool hasAccess(Access access) const;
78 uint getFileFlags(QAbstractFileEngine::FileFlags) const;
79 QDateTime &getFileTime(QAbstractFileEngine::FileTime) const;
80 QString getFileName(QAbstractFileEngine::FileName) const;
82 enum { CachedFileFlags=0x01, CachedLinkTypeFlag=0x02, CachedBundleTypeFlag=0x04,
83 CachedMTime=0x10, CachedCTime=0x20, CachedATime=0x40,
84 CachedSize =0x08, CachedPerms=0x80 };
85 struct Data {
86 inline Data()
87 : ref(1), fileEngine(0),
88 cachedFlags(0), cache_enabled(1), fileFlags(0), fileSize(0)
90 inline Data(const Data &copy)
91 : ref(1), fileEngine(QAbstractFileEngine::create(copy.fileName)),
92 fileName(copy.fileName),
93 cachedFlags(0), cache_enabled(copy.cache_enabled), fileFlags(0), fileSize(0)
95 inline ~Data() { delete fileEngine; }
96 inline void clearFlags() {
97 fileFlags = 0;
98 cachedFlags = 0;
99 if (fileEngine)
100 (void)fileEngine->fileFlags(QAbstractFileEngine::Refresh);
102 inline void clear() {
103 clearFlags();
104 for (int i = QAbstractFileEngine::NFileNames - 1 ; i >= 0 ; --i)
105 fileNames[i].clear();
107 mutable QAtomicInt ref;
109 QAbstractFileEngine *fileEngine;
110 mutable QString fileName;
111 mutable QString fileNames[QAbstractFileEngine::NFileNames];
113 mutable uint cachedFlags : 31;
114 mutable uint cache_enabled : 1;
115 mutable uint fileFlags;
116 mutable qint64 fileSize;
117 mutable QDateTime fileTimes[3];
118 inline bool getCachedFlag(uint c) const
119 { return cache_enabled ? (cachedFlags & c) : 0; }
120 inline void setCachedFlag(uint c)
121 { if (cache_enabled) cachedFlags |= c; }
122 } *data;
123 inline void reset() {
124 detach();
125 data->clear();
127 void detach();
130 QT_END_NAMESPACE
132 #endif // QFILEINFO_P_H