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
|
/****************************************************************************************
* Copyright (c) 2009 Maximilian Kossick <maximilian.kossick@googlemail.com> *
* *
* This program is free software; you can redistribute it and/or modify it under *
* the terms of the GNU General Public License as published by the Free Software *
* Foundation; either version 2 of the License, or (at your option) any later *
* version. *
* *
* This program is distributed in the hope that it will be useful, but WITHOUT ANY *
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A *
* PARTICULAR PURPOSE. See the GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License along with *
* this program. If not, see <http://www.gnu.org/licenses/>. *
****************************************************************************************/
#ifndef SQLMOUNTPOINTMANAGERMOCK_H
#define SQLMOUNTPOINTMANAGERMOCK_H
#include "core-impl/collections/db/MountPointManager.h"
#include "core-impl/collections/db/sql/SqlCollection.h"
#include <QMap>
#include <QString>
//Note: this class will probably break horribly on win32
class SqlMountPointManagerMock : public MountPointManager
{
public:
SqlMountPointManagerMock( QObject *parent, QSharedPointer<SqlStorage> storage )
: MountPointManager( parent, storage )
{
}
int getIdForUrl( const QUrl &url ) override
{
QString path = url.path();
for( auto id : m_mountPoints.keys() )
{
if( path.startsWith( m_mountPoints.value( id ) ) )
{
return id;
}
}
return -1;
}
QString getAbsolutePath ( const int deviceId, const QString& relativePath ) const override
{
// This and getRelativePath include some really mystic string operations that try to replicate real
// MountPointManager and keep those tests working that should
if( deviceId == -1 )
{
//replicate MountPointManager behaviour, which always adds trailing separator to directory absolute paths
if( QFileInfo( relativePath ).isDir() )
return relativePath + QLatin1Char('/');
return relativePath.right( relativePath.length() -1 );
}
else
{
if( QFileInfo( relativePath.right( relativePath.length() ) ).isDir() )
return m_mountPoints.value( deviceId ) + relativePath.right( relativePath.length() ) + QLatin1Char('/');
return m_mountPoints.value( deviceId ) + relativePath.right( relativePath.length() -1 );
}
}
QString getRelativePath( const int deviceId, const QString& absolutePath ) const override
{
if( deviceId == -1 )
{
//replicate MountPointManager behaviour, which uses QDir::relativeFilePath, which strips trailing separator
if (absolutePath.length() > 1 && absolutePath.endsWith(QLatin1Char('/')))
return absolutePath.chopped( 1 );
return QLatin1Char('.') + absolutePath;
}
else
{
QString mp = m_mountPoints.value( deviceId );
if (absolutePath.length() > 1 && absolutePath.endsWith(QLatin1Char('/')))
return QLatin1Char('.') + absolutePath.right( mp.length() ).chopped( 1 );
return QLatin1Char('.') + absolutePath.right( mp.length() );
}
}
IdList getMountedDeviceIds() const override
{
IdList result;
result << -1;
result << m_mountPoints.keys();
return result;
}
QStringList collectionFolders() const override
{
return m_folders;
}
void setCollectionFolders( const QStringList &folders ) override
{
m_folders = folders;
}
void emitDeviceAdded( int id )
{
Q_EMIT deviceAdded( id );
}
void emitDeviceRemoved( int id )
{
Q_EMIT deviceRemoved( id );
}
QMap<int,QString> m_mountPoints;
QStringList m_folders;
};
#endif // SQLMOUNTPOINTMANAGERMOCK_H
|