2011-01-27 22:10:51 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2015-01-01 18:06:21 +01:00
|
|
|
// Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
|
2011-01-27 22:10:51 +01:00
|
|
|
//
|
|
|
|
// 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
|
2013-10-23 20:56:57 +02:00
|
|
|
// (at your option) any later version, but always including the *additional*
|
|
|
|
// restrictions defined in the "License.txt" file.
|
2011-01-27 22:10:51 +01:00
|
|
|
//
|
|
|
|
// 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, write to the Free Software Foundation, Inc.,
|
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
// http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "ShellIntegration.h"
|
|
|
|
|
2014-11-25 02:14:42 +01:00
|
|
|
//Internal
|
|
|
|
#include "Global.h"
|
|
|
|
#include "Registry_Decoder.h"
|
|
|
|
|
|
|
|
//MUtils
|
|
|
|
#include <MUtils/Global.h>
|
2014-11-30 21:32:23 +01:00
|
|
|
#include <MUtils/Exception.h>
|
2015-05-03 18:16:34 +02:00
|
|
|
#include <MUtils/OSSupport.h>
|
|
|
|
#include <MUtils/Registry.h>
|
2014-11-25 02:14:42 +01:00
|
|
|
|
|
|
|
//Qt
|
2011-01-27 22:10:51 +01:00
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QRegExp>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QDir>
|
2011-01-29 00:40:29 +01:00
|
|
|
#include <QMutexLocker>
|
2011-07-15 13:44:32 +02:00
|
|
|
#include <QtConcurrentRun>
|
2011-01-27 22:10:51 +01:00
|
|
|
|
|
|
|
//Const
|
|
|
|
static const char *g_lamexpShellAction = "ConvertWithLameXP";
|
2015-05-03 18:16:34 +02:00
|
|
|
static const char *g_lamexpFileType = "LameXP.SupportedAudioFile";
|
2011-01-27 22:10:51 +01:00
|
|
|
|
2011-01-29 00:40:29 +01:00
|
|
|
//Mutex
|
|
|
|
QMutex ShellIntegration::m_mutex;
|
|
|
|
|
|
|
|
//Macros
|
2011-01-29 21:57:53 +01:00
|
|
|
#define REG_WRITE_STRING(KEY, STR) RegSetValueEx(key, NULL, NULL, REG_SZ, reinterpret_cast<const BYTE*>(STR.utf16()), (STR.size() + 1) * sizeof(wchar_t))
|
2011-01-29 00:40:29 +01:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Constructor
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
2011-07-15 13:44:32 +02:00
|
|
|
ShellIntegration::ShellIntegration(void)
|
2011-01-29 00:40:29 +01:00
|
|
|
{
|
2014-11-30 21:32:23 +01:00
|
|
|
MUTILS_THROW("Cannot create instance of this class, sorry!");
|
2011-01-29 00:40:29 +01:00
|
|
|
}
|
|
|
|
|
2011-01-27 22:10:51 +01:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Public Functions
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
2011-01-29 00:40:29 +01:00
|
|
|
void ShellIntegration::install(bool async)
|
2011-01-27 22:10:51 +01:00
|
|
|
{
|
2011-01-29 00:40:29 +01:00
|
|
|
//Install asynchronously
|
|
|
|
if(async)
|
|
|
|
{
|
2011-07-15 13:44:32 +02:00
|
|
|
QFuture<void>(QtConcurrent::run(install, false));
|
2011-01-29 00:40:29 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Serialize
|
|
|
|
QMutexLocker lock(&m_mutex);
|
|
|
|
|
|
|
|
//Init some consts
|
2011-01-27 22:10:51 +01:00
|
|
|
const QString lamexpFileType(g_lamexpFileType);
|
|
|
|
const QString lamexpFileInfo(tr("Audio File supported by LameXP"));
|
2011-01-29 00:40:29 +01:00
|
|
|
const QString lamexpShellText(tr("Convert this file with LameXP v%1").arg(QString().sprintf("%d.%02d", lamexp_version_major(), lamexp_version_minor())));
|
2015-01-04 17:04:26 +01:00
|
|
|
const QString lamexpShellCommand = QString("\"%1\" \"--add=%2\"").arg(QDir::toNativeSeparators(QFileInfo(QApplication::applicationFilePath()).canonicalFilePath()), "%1");
|
2011-01-27 22:10:51 +01:00
|
|
|
const QString lamexpShellAction(g_lamexpShellAction);
|
|
|
|
|
|
|
|
//Register the LameXP file type
|
2015-05-03 18:16:34 +02:00
|
|
|
MUtils::Registry::reg_value_write(MUtils::Registry::root_user, QString("Software\\Classes\\%1") .arg(lamexpFileType), QString(), lamexpFileInfo);
|
|
|
|
MUtils::Registry::reg_value_write(MUtils::Registry::root_user, QString("Software\\Classes\\%1\\shell") .arg(lamexpFileType), QString(), lamexpShellAction);
|
|
|
|
MUtils::Registry::reg_value_write(MUtils::Registry::root_user, QString("Software\\Classes\\%1\\shell\\%2") .arg(lamexpFileType, lamexpShellAction), QString(), lamexpShellText);
|
|
|
|
MUtils::Registry::reg_value_write(MUtils::Registry::root_user, QString("Software\\Classes\\%1\\shell\\%2\\command").arg(lamexpFileType, lamexpShellAction), QString(), lamexpShellCommand);
|
2011-01-27 22:10:51 +01:00
|
|
|
|
|
|
|
//Detect supported file types
|
2015-05-03 18:16:34 +02:00
|
|
|
QStringList types;
|
|
|
|
detectTypes(lamexpFileType, lamexpShellAction, types);
|
2011-01-27 22:10:51 +01:00
|
|
|
|
|
|
|
//Add LameXP shell action to all supported file types
|
2015-05-03 18:16:34 +02:00
|
|
|
while(!types.isEmpty())
|
2011-01-27 22:10:51 +01:00
|
|
|
{
|
2015-05-03 18:16:34 +02:00
|
|
|
QString currentType = types.takeFirst();
|
|
|
|
MUtils::Registry::reg_value_write(MUtils::Registry::root_user, QString("Software\\Classes\\%1\\shell\\%2") .arg(currentType, lamexpShellAction), QString(), lamexpShellText);
|
|
|
|
MUtils::Registry::reg_value_write(MUtils::Registry::root_user, QString("Software\\Classes\\%1\\shell\\%2\\command").arg(currentType, lamexpShellAction), QString(), lamexpShellCommand);
|
2011-01-27 22:10:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//Shell notification
|
2015-05-03 18:16:34 +02:00
|
|
|
MUtils::OS::shell_change_notification();
|
2011-01-27 22:10:51 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 00:40:29 +01:00
|
|
|
void ShellIntegration::remove(bool async)
|
2011-01-27 22:10:51 +01:00
|
|
|
{
|
2011-01-29 00:40:29 +01:00
|
|
|
//Remove asynchronously
|
|
|
|
if(async)
|
|
|
|
{
|
2011-07-15 13:44:32 +02:00
|
|
|
QFuture<void>(QtConcurrent::run(remove, false));
|
2011-01-29 00:40:29 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Serialize
|
|
|
|
QMutexLocker lock(&m_mutex);
|
|
|
|
|
|
|
|
//Init some consts
|
|
|
|
const QString lamexpFileType(g_lamexpFileType);
|
|
|
|
const QString lamexpShellAction(g_lamexpShellAction);
|
|
|
|
|
|
|
|
//Initialization
|
|
|
|
QStringList fileTypes;
|
|
|
|
|
|
|
|
//Find all registered file types
|
2015-05-03 18:16:34 +02:00
|
|
|
if(!MUtils::Registry::reg_enum_subkeys(MUtils::Registry::root_user, "Software\\Classes", fileTypes))
|
2011-01-29 00:40:29 +01:00
|
|
|
{
|
2015-05-03 18:16:34 +02:00
|
|
|
qWarning("Failed to enumerate file types!");
|
|
|
|
return;
|
2011-01-29 00:40:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//Remove shell action from all file types
|
|
|
|
while(!fileTypes.isEmpty())
|
|
|
|
{
|
2015-05-03 18:16:34 +02:00
|
|
|
MUtils::Registry::reg_key_delete(MUtils::Registry::root_user, QString("Software\\Classes\\%1\\shell\\%2").arg(fileTypes.takeFirst(), lamexpShellAction));
|
2011-01-29 00:40:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//Unregister LameXP file type
|
2015-05-03 18:16:34 +02:00
|
|
|
MUtils::Registry::reg_key_delete(MUtils::Registry::root_user, QString("Software\\Classes\\%1").arg(lamexpFileType));
|
2011-01-29 00:40:29 +01:00
|
|
|
|
|
|
|
//Shell notification
|
2015-05-03 18:16:34 +02:00
|
|
|
MUtils::OS::shell_change_notification();
|
2011-01-27 22:10:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Private Functions
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
2015-05-03 18:16:34 +02:00
|
|
|
void ShellIntegration::detectTypes(const QString &lamexpFileType, const QString &lamexpShellAction, QStringList &nativeTypes)
|
2011-01-27 22:10:51 +01:00
|
|
|
{
|
2015-05-03 18:16:34 +02:00
|
|
|
nativeTypes.clear();
|
2011-01-27 22:10:51 +01:00
|
|
|
QStringList supportedTypes = DecoderRegistry::getSupportedTypes();
|
|
|
|
QStringList extensions;
|
|
|
|
|
|
|
|
QRegExp regExp1("\\((.+)\\)");
|
|
|
|
QRegExp regExp2("(\\.\\w+)");
|
|
|
|
|
|
|
|
//Find all supported file extensions
|
|
|
|
while(!supportedTypes.isEmpty())
|
|
|
|
{
|
|
|
|
if(regExp1.lastIndexIn(supportedTypes.takeFirst()) > 0)
|
|
|
|
{
|
|
|
|
int lastIndex = 0;
|
|
|
|
while((lastIndex = regExp2.indexIn(regExp1.cap(1), lastIndex) + 1) >= 1)
|
|
|
|
{
|
|
|
|
extensions.append(regExp2.cap(1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Map supported extensions to native types
|
|
|
|
while(!extensions.isEmpty())
|
|
|
|
{
|
2015-05-03 18:16:34 +02:00
|
|
|
const QString currentExt = extensions.takeFirst();
|
2011-01-27 22:10:51 +01:00
|
|
|
|
2015-05-03 18:16:34 +02:00
|
|
|
QString currentType;
|
|
|
|
if(MUtils::Registry::reg_value_read(MUtils::Registry::root_classes, currentExt, QString(), currentType))
|
2011-01-27 22:10:51 +01:00
|
|
|
{
|
2015-05-03 18:16:34 +02:00
|
|
|
if((currentType.compare(lamexpFileType, Qt::CaseInsensitive) != 0) && (!nativeTypes.contains(currentType, Qt::CaseInsensitive)))
|
2011-01-27 22:10:51 +01:00
|
|
|
{
|
2015-05-03 18:16:34 +02:00
|
|
|
nativeTypes.append(currentType);
|
2011-01-27 22:10:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-05-03 18:16:34 +02:00
|
|
|
MUtils::Registry::reg_value_write(MUtils::Registry::root_user, currentExt, QString(), lamexpFileType);
|
2011-01-27 22:10:51 +01:00
|
|
|
}
|
2011-01-29 00:40:29 +01:00
|
|
|
|
2015-05-03 18:16:34 +02:00
|
|
|
if(MUtils::Registry::reg_value_read(MUtils::Registry::root_user, QString("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts\\%1\\UserChoice").arg(currentExt), QString(), currentType))
|
2011-01-29 00:40:29 +01:00
|
|
|
{
|
2015-05-03 18:16:34 +02:00
|
|
|
if((currentType.compare(lamexpFileType, Qt::CaseInsensitive) != 0) && (!nativeTypes.contains(currentType, Qt::CaseInsensitive)))
|
2011-01-29 00:40:29 +01:00
|
|
|
{
|
2015-05-03 18:16:34 +02:00
|
|
|
nativeTypes.append(currentType);
|
2011-01-29 00:40:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-03 18:16:34 +02:00
|
|
|
if(MUtils::Registry::reg_value_read(MUtils::Registry::root_user, QString("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts\\%1\\OpenWithProgids").arg(currentExt), QString(), currentType))
|
2011-01-29 00:40:29 +01:00
|
|
|
{
|
2015-05-03 18:16:34 +02:00
|
|
|
if((currentType.compare(lamexpFileType, Qt::CaseInsensitive) != 0) && (!nativeTypes.contains(currentType, Qt::CaseInsensitive)))
|
2011-01-29 00:40:29 +01:00
|
|
|
{
|
2015-05-03 18:16:34 +02:00
|
|
|
nativeTypes.append(currentType);
|
2011-01-29 00:40:29 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-27 22:10:51 +01:00
|
|
|
}
|
|
|
|
}
|