summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qfilesystemengine_symbian.cpp
diff options
context:
space:
mode:
authorShane Kearns <shane.kearns@accenture.com>2010-09-13 16:27:32 +0100
committerShane Kearns <shane.kearns@accenture.com>2010-09-13 16:27:32 +0100
commit71d1d710d5e25be4b74af10a8dfcc3c53bd42ef1 (patch)
treef9d24e38d0e96a6adf36df57c6fb1dbfb626cb78 /src/corelib/io/qfilesystemengine_symbian.cpp
parent9bdc685da9d1e1aac165711197e3b7b887e19da3 (diff)
Fixes for canonicalPath and exists on symbian
QDir::cleanPath does not do what we need for some types of path, for example c:/../. However, changing the cleanPath() function isn't easy because so many places rely on the current behaviour. RFs::Att() doesn't work for root directories, so instead to check whether a file exists, we now use the normal fillMetaData() function. Also fixed some compiler warnings in the file. Reviewed-By: mread
Diffstat (limited to 'src/corelib/io/qfilesystemengine_symbian.cpp')
-rw-r--r--src/corelib/io/qfilesystemengine_symbian.cpp61
1 files changed, 42 insertions, 19 deletions
diff --git a/src/corelib/io/qfilesystemengine_symbian.cpp b/src/corelib/io/qfilesystemengine_symbian.cpp
index c339dc4e23..dc7fcbf6b3 100644
--- a/src/corelib/io/qfilesystemengine_symbian.cpp
+++ b/src/corelib/io/qfilesystemengine_symbian.cpp
@@ -52,6 +52,36 @@ bool QFileSystemEngine::isCaseSensitive()
return false;
}
+//TODO: resolve this with QDir::cleanPath, without breaking the behaviour of that
+//function which is documented only by autotest
+//input: a dirty absolute path, e.g. c:/../../foo/./
+//output: a clean absolute path, e.g. c:/foo/
+static QString symbianCleanAbsolutePath(const QString& path)
+{
+ bool isDir = path.endsWith(QLatin1Char('/'));
+ //using SkipEmptyParts flag to eliminate duplicated slashes
+ QStringList components = path.split(QLatin1Char('/'), QString::SkipEmptyParts);
+ int cdups = 0;
+ for(int i=components.count() - 1; i>=0; --i) {
+ if(components.at(i) == QLatin1String("..")) {
+ components.removeAt(i);
+ cdups++;
+ }
+ else if(components.at(i) == QLatin1String(".")) {
+ components.removeAt(i);
+ }
+ else if(cdups && i > 0) {
+ --cdups;
+ components.removeAt(i);
+ }
+ }
+ QString result = components.join(QLatin1String("/"));
+ if ((isDir&& !result.endsWith(QLatin1Char('/')))
+ || (result.length() == 2 && result.at(1).unicode() == ':'))
+ result.append(QLatin1Char('/'));
+ return result;
+}
+
//static
QFileSystemEntry QFileSystemEngine::getLinkTarget(const QFileSystemEntry &link, QFileSystemMetaData &data)
{
@@ -65,15 +95,12 @@ QFileSystemEntry QFileSystemEngine::canonicalName(const QFileSystemEntry &entry)
return entry;
QFileSystemEntry result = absoluteName(entry);
- RFs& fs(qt_s60GetRFs());
- TUint e;
- //Att is faster than Entry for determining if a file exists, due to smaller IPC
- TInt r = fs.Att(qt_QString2TPtrC(result.nativeFilePath()), e);
-
- if (r == KErrNone) {
- return result;
- } else { // file doesn't exist
+ QFileSystemMetaData meta;
+ if (!fillMetaData(result, meta, QFileSystemMetaData::ExistsAttribute) || !meta.exists()) {
+ // file doesn't exist
return QFileSystemEntry();
+ } else {
+ return result;
}
}
@@ -109,30 +136,26 @@ QFileSystemEntry QFileSystemEngine::absoluteName(const QFileSystemEntry &entry)
}
}
if (!orig.isEmpty() && !(orig.length() == 1 && orig.at(0).unicode() == '.')) {
- if (!result.isEmpty() && !result.endsWith('/'))
- result.append('/');
+ if (!result.isEmpty() && !result.endsWith(QLatin1Char('/')))
+ result.append(QLatin1Char('/'));
result.append(orig);
}
- const bool isDir = result.endsWith('/');
- const bool isRoot = entry.isRoot();
-
- result = QDir::cleanPath(result);
- if (isDir && !isRoot)
- result.append(QLatin1Char('/'));
- return QFileSystemEntry(result);
+ return symbianCleanAbsolutePath(result);
}
//static
QString QFileSystemEngine::resolveUserName(uint userId)
{
- return QString(); // TODO
+ Q_UNUSED(userId)
+ return QString(); // no users or groups on symbian
}
//static
QString QFileSystemEngine::resolveGroupName(uint groupId)
{
- return QString(); // TODO
+ Q_UNUSED(groupId)
+ return QString(); // no users or groups on symbian
}
//static