2007-09-14 22:16:22 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Dominik Wenger
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "utils.h"
|
2009-08-10 19:46:51 +00:00
|
|
|
#include "system.h"
|
|
|
|
#include "rbsettings.h"
|
|
|
|
|
2008-06-29 07:45:33 +00:00
|
|
|
#ifdef UNICODE
|
|
|
|
#define _UNICODE
|
|
|
|
#endif
|
2007-09-14 22:16:22 +00:00
|
|
|
|
2008-06-21 10:28:10 +00:00
|
|
|
#include <QtCore>
|
|
|
|
#include <QDebug>
|
2008-03-18 23:22:08 +00:00
|
|
|
#include <cstdlib>
|
2008-06-21 10:28:10 +00:00
|
|
|
#include <stdio.h>
|
2007-09-14 22:16:22 +00:00
|
|
|
|
2008-06-29 07:45:33 +00:00
|
|
|
#if defined(Q_OS_WIN32)
|
|
|
|
#include <windows.h>
|
|
|
|
#include <tchar.h>
|
|
|
|
#include <winioctl.h>
|
|
|
|
#endif
|
2009-01-07 13:31:19 +00:00
|
|
|
#if defined(Q_OS_LINUX) || defined(Q_OS_MACX)
|
2008-12-13 20:09:31 +00:00
|
|
|
#include <sys/statvfs.h>
|
|
|
|
#endif
|
2008-06-29 07:45:33 +00:00
|
|
|
|
2007-09-14 22:16:22 +00:00
|
|
|
// recursive function to delete a dir with files
|
|
|
|
bool recRmdir( const QString &dirName )
|
|
|
|
{
|
2007-10-12 16:54:51 +00:00
|
|
|
QString dirN = dirName;
|
|
|
|
QDir dir(dirN);
|
|
|
|
// make list of entries in directory
|
|
|
|
QStringList list = dir.entryList(QDir::AllEntries | QDir::NoDotAndDotDot);
|
|
|
|
QFileInfo fileInfo;
|
|
|
|
QString curItem, lstAt;
|
|
|
|
for(int i = 0; i < list.size(); i++){ // loop through all items of list
|
|
|
|
QString name = list.at(i);
|
|
|
|
curItem = dirN + "/" + name;
|
|
|
|
fileInfo.setFile(curItem);
|
|
|
|
if(fileInfo.isDir()) // is directory
|
|
|
|
recRmdir(curItem); // call recRmdir() recursively for deleting subdirectory
|
|
|
|
else // is file
|
|
|
|
QFile::remove(curItem); // ok, delete file
|
2007-09-14 22:16:22 +00:00
|
|
|
}
|
2007-10-12 16:54:51 +00:00
|
|
|
dir.cdUp();
|
|
|
|
return dir.rmdir(dirN); // delete empty dir and return if (now empty) dir-removing was successfull
|
2007-09-14 22:16:22 +00:00
|
|
|
}
|
2008-01-23 21:54:40 +00:00
|
|
|
|
|
|
|
|
2008-04-01 20:30:41 +00:00
|
|
|
//! @brief resolves the given path, ignoring case.
|
|
|
|
//! @param path absolute path to resolve.
|
|
|
|
//! @return returns exact casing of path, empty string if path not found.
|
|
|
|
QString resolvePathCase(QString path)
|
|
|
|
{
|
|
|
|
QStringList elems;
|
2008-04-05 23:49:23 +00:00
|
|
|
QString realpath;
|
|
|
|
|
2008-04-01 20:30:41 +00:00
|
|
|
elems = path.split("/", QString::SkipEmptyParts);
|
2008-04-05 23:49:23 +00:00
|
|
|
int start;
|
|
|
|
#if defined(Q_OS_WIN32)
|
|
|
|
// on windows we must make sure to start with the first entry (i.e. the
|
|
|
|
// drive letter) instead of a single / to make resolving work.
|
|
|
|
start = 1;
|
|
|
|
realpath = elems.at(0) + "/";
|
|
|
|
#else
|
|
|
|
start = 0;
|
|
|
|
realpath = "/";
|
|
|
|
#endif
|
2008-04-01 20:30:41 +00:00
|
|
|
|
2008-04-05 23:49:23 +00:00
|
|
|
for(int i = start; i < elems.size(); i++) {
|
2008-04-06 19:50:24 +00:00
|
|
|
QStringList direlems
|
2008-12-13 20:09:31 +00:00
|
|
|
= QDir(realpath).entryList(QDir::AllEntries|QDir::Hidden|QDir::System);
|
2008-04-01 20:30:41 +00:00
|
|
|
if(direlems.contains(elems.at(i), Qt::CaseInsensitive)) {
|
|
|
|
// need to filter using QRegExp as QStringList::filter(QString)
|
|
|
|
// matches any substring
|
|
|
|
QString expr = QString("^" + elems.at(i) + "$");
|
|
|
|
QRegExp rx = QRegExp(expr, Qt::CaseInsensitive);
|
|
|
|
QStringList a = direlems.filter(rx);
|
|
|
|
|
|
|
|
if(a.size() != 1)
|
|
|
|
return QString("");
|
|
|
|
if(!realpath.endsWith("/"))
|
|
|
|
realpath += "/";
|
|
|
|
realpath += a.at(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return QString("");
|
|
|
|
}
|
2009-10-29 19:43:48 +00:00
|
|
|
qDebug() << "[Utils] resolving path" << path << "->" << realpath;
|
2008-04-01 20:30:41 +00:00
|
|
|
return realpath;
|
|
|
|
}
|
|
|
|
|
2008-12-13 20:09:31 +00:00
|
|
|
|
|
|
|
//! @brief figure the free disk space on a filesystem
|
|
|
|
//! @param path path on the filesystem to check
|
|
|
|
//! @return size in bytes
|
|
|
|
qulonglong filesystemFree(QString path)
|
|
|
|
{
|
|
|
|
qlonglong size = 0;
|
2009-01-07 13:31:19 +00:00
|
|
|
#if defined(Q_OS_LINUX) || defined(Q_OS_MACX)
|
2008-12-13 20:09:31 +00:00
|
|
|
// the usage of statfs() is deprecated by the LSB so use statvfs().
|
|
|
|
struct statvfs fs;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = statvfs(qPrintable(path), &fs);
|
|
|
|
|
|
|
|
if(ret == 0)
|
2009-11-21 18:54:34 +00:00
|
|
|
size = (qulonglong)fs.f_frsize * (qulonglong)fs.f_bavail;
|
2008-12-13 20:09:31 +00:00
|
|
|
#endif
|
|
|
|
#if defined(Q_OS_WIN32)
|
|
|
|
BOOL ret;
|
|
|
|
ULARGE_INTEGER freeAvailBytes;
|
|
|
|
|
|
|
|
ret = GetDiskFreeSpaceExW((LPCTSTR)path.utf16(), &freeAvailBytes, NULL, NULL);
|
|
|
|
if(ret)
|
|
|
|
size = freeAvailBytes.QuadPart;
|
|
|
|
#endif
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2009-04-29 21:27:01 +00:00
|
|
|
//! \brief searches for a Executable in the Environement Path
|
|
|
|
QString findExecutable(QString name)
|
|
|
|
{
|
|
|
|
QString exepath;
|
|
|
|
//try autodetect tts
|
|
|
|
#if defined(Q_OS_LINUX) || defined(Q_OS_MACX) || defined(Q_OS_OPENBSD)
|
|
|
|
QStringList path = QString(getenv("PATH")).split(":", QString::SkipEmptyParts);
|
|
|
|
#elif defined(Q_OS_WIN)
|
|
|
|
QStringList path = QString(getenv("PATH")).split(";", QString::SkipEmptyParts);
|
|
|
|
#endif
|
2009-10-29 19:43:48 +00:00
|
|
|
qDebug() << "[Utils] system path:" << path;
|
2009-04-29 21:27:01 +00:00
|
|
|
for(int i = 0; i < path.size(); i++)
|
|
|
|
{
|
|
|
|
QString executable = QDir::fromNativeSeparators(path.at(i)) + "/" + name;
|
|
|
|
#if defined(Q_OS_WIN)
|
|
|
|
executable += ".exe";
|
|
|
|
QStringList ex = executable.split("\"", QString::SkipEmptyParts);
|
|
|
|
executable = ex.join("");
|
|
|
|
#endif
|
2009-10-29 19:43:48 +00:00
|
|
|
qDebug() << "[Utils] executable:" << executable;
|
2009-04-29 21:27:01 +00:00
|
|
|
if(QFileInfo(executable).isExecutable())
|
|
|
|
{
|
|
|
|
return QDir::toNativeSeparators(executable);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-10 19:46:51 +00:00
|
|
|
/** @brief checks different Enviroment things. Ask if user wants to continue.
|
|
|
|
* @param settings A pointer to rbutils settings class
|
|
|
|
* @param permission if it should check for permission
|
|
|
|
* @param targetId the targetID to check for. if it is -1 no check is done.
|
|
|
|
* @return string with error messages if problems occurred, empty strings if none.
|
|
|
|
*/
|
|
|
|
QString check(bool permission)
|
|
|
|
{
|
|
|
|
QString text = "";
|
|
|
|
|
|
|
|
// check permission
|
|
|
|
if(permission)
|
|
|
|
{
|
|
|
|
#if defined(Q_OS_WIN32)
|
2009-08-11 20:40:02 +00:00
|
|
|
if(System::userPermissions() != System::ADMIN)
|
2009-08-10 19:46:51 +00:00
|
|
|
{
|
|
|
|
text += QObject::tr("<li>Permissions insufficient for bootloader "
|
|
|
|
"installation.\nAdministrator priviledges are necessary.</li>");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check TargetId
|
|
|
|
RockboxInfo rbinfo(RbSettings::value(RbSettings::Mountpoint).toString());
|
|
|
|
QString installed = rbinfo.target();
|
|
|
|
if(!installed.isEmpty() && installed != RbSettings::value(RbSettings::CurConfigureModel).toString())
|
|
|
|
{
|
|
|
|
text += QObject::tr("<li>Target mismatch detected.\n"
|
|
|
|
"Installed target: %1, selected target: %2.</li>")
|
|
|
|
.arg(installed, RbSettings::value(RbSettings::CurPlatformName).toString());
|
|
|
|
// FIXME: replace installed by human-friendly name
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!text.isEmpty())
|
|
|
|
return QObject::tr("Problem detected:") + "<ul>" + text + "</ul>";
|
|
|
|
else
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-21 16:30:40 +00:00
|
|
|
RockboxInfo::RockboxInfo(QString mountpoint)
|
|
|
|
{
|
2009-08-10 19:20:53 +00:00
|
|
|
qDebug() << "[RockboxInfo] trying to find rockbox-info at" << mountpoint;
|
|
|
|
QFile file(mountpoint + "/.rockbox/rockbox-info.txt");
|
|
|
|
m_success = false;
|
2009-03-21 16:30:40 +00:00
|
|
|
if(!file.exists())
|
2009-08-10 19:20:53 +00:00
|
|
|
return;
|
2009-04-16 20:56:52 +00:00
|
|
|
|
2009-03-21 16:30:40 +00:00
|
|
|
if(!file.open(QIODevice::ReadOnly | QIODevice::Text))
|
2009-08-10 19:20:53 +00:00
|
|
|
return;
|
2009-04-16 20:56:52 +00:00
|
|
|
|
2009-03-21 16:30:40 +00:00
|
|
|
// read file contents
|
|
|
|
while (!file.atEnd())
|
|
|
|
{
|
|
|
|
QString line = file.readLine();
|
|
|
|
|
|
|
|
if(line.contains("Version:"))
|
|
|
|
{
|
|
|
|
m_version = line.remove("Version:").trimmed();
|
|
|
|
}
|
|
|
|
else if(line.contains("Target: "))
|
|
|
|
{
|
|
|
|
m_target = line.remove("Target: ").trimmed();
|
|
|
|
}
|
|
|
|
else if(line.contains("Features:"))
|
|
|
|
{
|
|
|
|
m_features = line.remove("Features:").trimmed();
|
|
|
|
}
|
|
|
|
else if(line.contains("Target id:"))
|
|
|
|
{
|
|
|
|
m_targetid = line.remove("Target id:").trimmed();
|
2009-09-25 15:26:59 +00:00
|
|
|
}
|
|
|
|
else if(line.contains("Memory:"))
|
|
|
|
{
|
|
|
|
m_ram = line.remove("Memory:").trimmed().toInt();
|
|
|
|
}
|
2009-03-21 16:30:40 +00:00
|
|
|
}
|
2009-08-10 19:20:53 +00:00
|
|
|
|
2009-03-21 16:30:40 +00:00
|
|
|
file.close();
|
2009-08-10 19:20:53 +00:00
|
|
|
m_success = true;
|
|
|
|
return;
|
2009-03-21 16:30:40 +00:00
|
|
|
}
|
2009-08-10 19:20:53 +00:00
|
|
|
|