
place. Removed qcma/cmaserver class and reimplemented them in cmaclient. Make sure that the scanned files are sorted by filename. Implement filters so the database doesn't pick up unsupported formats. Implement album cover display for album listing in the vita. Fixed bug with streaming of pictures in wireless mode. Some code refactoring.
163 lines
5.4 KiB
C++
163 lines
5.4 KiB
C++
/*
|
|
* QCMA: Cross-platform content manager assistant for the PS Vita
|
|
*
|
|
* Copyright (C) 2013 Codestation
|
|
*
|
|
* 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 3 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/>.
|
|
*/
|
|
|
|
#include "utils.h"
|
|
|
|
#include <QBuffer>
|
|
#include <QDebug>
|
|
#include <QDir>
|
|
#include <QImage>
|
|
|
|
#ifdef Q_OS_WIN32
|
|
#include <windows.h>
|
|
#else
|
|
#include <sys/statvfs.h>
|
|
#endif
|
|
|
|
#include <MediaInfo/MediaInfo.h>
|
|
#include <MediaInfo/File__Analyse_Automatic.h>
|
|
|
|
bool getDiskSpace(const QString &dir, quint64 *free, quint64 *total)
|
|
{
|
|
#ifdef Q_OS_WIN32
|
|
|
|
if(GetDiskFreeSpaceExW(dir.toStdWString().c_str(), free, total, NULL) != 0) {
|
|
return true;
|
|
}
|
|
|
|
#else
|
|
struct statvfs64 stat;
|
|
|
|
if(statvfs64(dir.toUtf8().data(), &stat) == 0) {
|
|
*total = stat.f_frsize * stat.f_blocks;
|
|
*free = stat.f_frsize * stat.f_bfree;
|
|
return true;
|
|
}
|
|
|
|
#endif
|
|
return false;
|
|
}
|
|
|
|
bool removeRecursively(const QString &dirName)
|
|
{
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
|
return QDir(dirName).removeRecursively();
|
|
#else
|
|
bool result = false;
|
|
QDir dir(dirName);
|
|
|
|
if(dir.exists(dirName)) {
|
|
Q_FOREACH(QFileInfo info, dir.entryInfoList(QDir::NoDotAndDotDot | QDir::System | QDir::Hidden | QDir::AllDirs | QDir::Files, QDir::DirsFirst)) {
|
|
if(info.isDir()) {
|
|
result = removeRecursively(info.absoluteFilePath());
|
|
} else {
|
|
result = QFile::remove(info.absoluteFilePath());
|
|
}
|
|
|
|
if(!result) {
|
|
return result;
|
|
}
|
|
}
|
|
result = dir.rmdir(dirName);
|
|
}
|
|
|
|
return result;
|
|
#endif
|
|
}
|
|
|
|
QByteArray findFolderAlbumArt(const QString path, metadata_t *metadata)
|
|
{
|
|
QByteArray data;
|
|
QDir folder(path);
|
|
|
|
QStringList files = folder.entryList(QDir::Files | QDir::Readable);
|
|
const QStringList cover_list = QStringList() << "album" << "cover" << "front";
|
|
const QStringList ext_list = QStringList() << "jpg" << "jpeg" << "png" << "gif";
|
|
|
|
foreach(const QString &file, files) {
|
|
foreach(const QString &cover, cover_list) {
|
|
foreach(const QString &ext, ext_list) {
|
|
if(file.compare(QString("%1.%2").arg(cover, ext), Qt::CaseInsensitive) == 0) {
|
|
qDebug() << "Trying to load album art from" << folder.absoluteFilePath(file);
|
|
QImage img;
|
|
if(img.load(folder.absoluteFilePath(file))) {
|
|
QBuffer buffer(&data);
|
|
buffer.open(QIODevice::WriteOnly);
|
|
QImage result = img.scaled(256, 250, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
result.save(&buffer, "JPEG");
|
|
metadata->data.thumbnail.width = result.width();
|
|
metadata->data.thumbnail.height = result.height();
|
|
}
|
|
// only try with the first match
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return data;
|
|
}
|
|
|
|
QByteArray getThumbnail(const QString &path, DataType type, metadata_t *metadata)
|
|
{
|
|
QByteArray data;
|
|
|
|
if(MASK_SET(type, SaveData)) {
|
|
QFile file(QDir(path).absoluteFilePath("ICON0.PNG"));
|
|
|
|
if(file.open(QIODevice::ReadOnly)) {
|
|
data = file.readAll();
|
|
}
|
|
} else if(MASK_SET(type, Photo)) {
|
|
QImage img;
|
|
|
|
if(img.load(path)) {
|
|
QBuffer buffer(&data);
|
|
buffer.open(QIODevice::WriteOnly);
|
|
QImage result = img.scaled(213, 120, Qt::KeepAspectRatio, Qt::FastTransformation);
|
|
result.save(&buffer, "JPEG");
|
|
metadata->data.thumbnail.width = result.width();
|
|
metadata->data.thumbnail.height = result.height();
|
|
}
|
|
} else if(MASK_SET(type, Music)) {
|
|
if(MASK_SET(type, Folder)) {
|
|
// TODO: try to load an album cover from one of the audio files.
|
|
data = findFolderAlbumArt(path, metadata);
|
|
} else {
|
|
MediaInfoLib::MediaInfo media;
|
|
|
|
if(media.Open(path.toStdWString())) {
|
|
QString base64 = QString::fromStdWString(media.Get(MediaInfoLib::Stream_General, 0, MediaInfoLib::General_Cover_Data));
|
|
QImage img;
|
|
|
|
if(base64.size() > 0 && img.loadFromData(QByteArray::fromBase64(base64.toUtf8()))) {
|
|
QBuffer buffer(&data);
|
|
buffer.open(QIODevice::WriteOnly);
|
|
// use smooth transformation for the ambum art since is important to display correctly
|
|
QImage result = img.scaled(256, 256, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
result.save(&buffer, "JPEG");
|
|
metadata->data.thumbnail.width = result.width();
|
|
metadata->data.thumbnail.height = result.height();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//TODO: implement thumbnails for videos
|
|
return data;
|
|
}
|