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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
|
/* smplayer, GUI front-end for mplayer.
Copyright (C) 2006-2018 Ricardo Villalba <rvm@users.sourceforge.net>
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, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Winfileassoc.cpp
Handles file associations in Windows 7/Vista/XP/2000.
We assume that the code is run without administrator privileges, so the associations are done for current user only.
System-wide associations require writing to HKEY_CLASSES_ROOT and we don't want to get our hands dirty with that.
Each user on the computer can configure his own set of file associations for SMPlayer, which is extremely cool.
Optionally, during uninstall, it would be a good idea to call RestoreFileAssociations for all media types so
that we can clean up the registry and restore the old associations for current user.
Vista:
The code can only register the app as default program for selected extensions and check if it is the default.
It cannot restore 'old' default application, since this doesn't seem to be possible with the current Vista API.
Add libole32.a library if compiling with MinGW. In smplayer.pro, under 'win32 {': LIBS += libole32
Tested on: WinXP, Vista, Win7.
Author: Florin Braghis (florin@libertv.ro)
*/
#include "winfileassoc.h"
#include <QSettings>
#include <QApplication>
#include <QFileInfo>
#include <windows.h>
WinFileAssoc::WinFileAssoc(const QString ClassId, const QString AppName)
{
m_ClassId = ClassId;
m_AppName = AppName;
m_ClassId2 = QFileInfo(QApplication::applicationFilePath()).fileName();
}
// Associates all extensions in the fileExtensions list with current app.
// Returns number of extensions processed successfully.
int WinFileAssoc::CreateFileAssociations(const QStringList &fileExtensions)
{
if (QSysInfo::WindowsVersion >= QSysInfo::WV_VISTA) {
return VistaSetAppsAsDefault(fileExtensions);
}
QSettings RegCR("HKEY_CLASSES_ROOT", QSettings::NativeFormat); //Read only on NT+
QSettings RegCU("HKEY_CURRENT_USER", QSettings::NativeFormat);
if (!RegCU.isWritable() || RegCU.status() != QSettings::NoError)
return 0;
if (RegCR.status() != QSettings::NoError)
return 0;
// Check if classId exists in the registry
if (!RegCR.contains(m_ClassId) && !RegCU.contains("Software/Classes/" + m_ClassId)) {
// If doesn't exist (user didn't run the setup program), try to create the ClassId for current user.
if (!CreateClassId(QApplication::applicationFilePath(), "SMPlayer Media Player"))
return 0;
}
int count = 0;
foreach(const QString & fileExtension, fileExtensions) {
QString ExtKeyName = QString("Software/Microsoft/Windows/CurrentVersion/Explorer/FileExts/.%1").arg(fileExtension);
QString ClassesKeyName = m_ClassId;
QString BackupKeyName = ClassesKeyName + "/" + fileExtension;
QString CUKeyName = "Software/Classes/." + fileExtension;
// Save current ClassId for current user
QString KeyVal = RegCU.value(CUKeyName + "/.").toString();
if (KeyVal.length() == 0 || KeyVal == m_ClassId) {
// No registered app for this extension for current user.
// Check the system-wide (HKEY_CLASSES_ROOT) ClassId for this extension
KeyVal = RegCR.value("." + fileExtension + "/.").toString();
}
if (KeyVal != m_ClassId)
RegCU.setValue(CUKeyName + "/MPlayer_Backup", KeyVal);
// Save last ProgId and Application values from the Exts key
KeyVal = RegCU.value(ExtKeyName + "/Progid").toString();
if (KeyVal != m_ClassId && KeyVal != m_ClassId2)
RegCU.setValue(ExtKeyName + "/MPlayer_Backup_ProgId", KeyVal);
KeyVal = RegCU.value(ExtKeyName + "/Application").toString();
if (KeyVal != m_ClassId || KeyVal != m_ClassId2)
RegCU.setValue(ExtKeyName + "/MPlayer_Backup_Application", KeyVal);
// Create the associations
RegCU.setValue(CUKeyName + "/.", m_ClassId); // Extension class
RegCU.setValue(ExtKeyName + "/Progid", m_ClassId); // Explorer FileExt association
if (RegCU.status() == QSettings::NoError && RegCR.status() == QSettings::NoError)
count++;
}
return count;
}
// Checks if extensions in extensionsToCheck are registered with this application. Returns a list of registered extensions.
// Returns false if there was an error accessing the registry.
// Returns true and 0 elements in registeredExtensions if no extension is associated with current app.
bool WinFileAssoc::GetRegisteredExtensions(const QStringList &extensionsToCheck, QStringList ®isteredExtensions)
{
registeredExtensions.clear();
if (QSysInfo::WindowsVersion >= QSysInfo::WV_VISTA) {
return VistaGetDefaultApps(extensionsToCheck, registeredExtensions);
}
QSettings RegCR("HKEY_CLASSES_ROOT", QSettings::NativeFormat);
QSettings RegCU("HKEY_CURRENT_USER", QSettings::NativeFormat);
if (RegCR.status() != QSettings::NoError)
return false;
if (RegCU.status() != QSettings::NoError)
return false;
foreach(const QString & fileExtension, extensionsToCheck) {
bool bRegistered = false;
// Check the Explorer extension (Always use this program to open this kind of file...)
QString FileExtsKey = QString("Software/Microsoft/Windows/CurrentVersion/Explorer/FileExts/.%1").arg(fileExtension);
QString CurClassId = RegCU.value(FileExtsKey + "/Progid").toString();
QString CurAppId = RegCU.value(FileExtsKey + "/Application").toString();
if (CurClassId.size()) { // Registered with Open With... / ProgId ?
bRegistered = (CurClassId == m_ClassId) || (0 == CurClassId.compare(m_ClassId2, Qt::CaseInsensitive));
} else if (CurAppId.size()) {
// If user uses Open With..., explorer creates it's own ClassId under Application, usually "smplayer.exe"
bRegistered = (CurAppId == m_ClassId) || (0 == CurAppId.compare(m_ClassId2, Qt::CaseInsensitive));
} else {
// No classId means that no associations exists in Default Programs or Explorer
// Check the default per-user association
bRegistered = RegCU.value("Software/Classes/." + fileExtension + "/.").toString() == m_ClassId;
}
// Finally, check the system-wide association
if (!bRegistered)
bRegistered = RegCR.value("." + fileExtension + "/.").toString() == m_ClassId;
if (bRegistered)
registeredExtensions.append(fileExtension);
}
return true;
}
// Restores file associations to old defaults (if any) for all extensions in the fileExtensions list.
// Cleans up our backup keys from the registry.
// Returns number of extensions successfully processed (error if fileExtensions.count() != return value && count > 0).
int WinFileAssoc::RestoreFileAssociations(const QStringList &fileExtensions)
{
if (QSysInfo::WindowsVersion >= QSysInfo::WV_VISTA)
return 0; // Not supported by the API
QSettings RegCR("HKEY_CLASSES_ROOT", QSettings::NativeFormat);
QSettings RegCU("HKEY_CURRENT_USER", QSettings::NativeFormat);
if (!RegCU.isWritable() || RegCU.status() != QSettings::NoError)
return 0;
if (RegCR.status() != QSettings::NoError)
return 0;
int count = 0;
foreach(const QString & fileExtension, fileExtensions) {
QString ExtKeyName = QString("Software/Microsoft/Windows/CurrentVersion/Explorer/FileExts/.%1").arg(fileExtension);
QString OldProgId = RegCU.value(ExtKeyName + "/MPlayer_Backup_ProgId").toString();
QString OldApp = RegCU.value(ExtKeyName + "/MPlayer_Backup_Application").toString();
QString OldClassId = RegCU.value("Software/Classes/." + fileExtension + "/MPlayer_Backup").toString();
// Restore old explorer ProgId
if (!OldProgId.isEmpty() && OldProgId != m_ClassId)
RegCU.setValue(ExtKeyName + "/Progid", OldProgId);
else {
QString CurProgId = RegCU.value(ExtKeyName + "/Progid").toString();
if ((CurProgId == m_ClassId) || (0 == CurProgId.compare(m_ClassId2, Qt::CaseInsensitive))) //Only remove if we own it
RegCU.remove(ExtKeyName + "/Progid");
}
// Restore old explorer Application
if (!OldApp.isEmpty() && OldApp != m_ClassId)
RegCU.setValue(ExtKeyName + "/Application", OldApp);
else {
QString CurApp = RegCU.value(ExtKeyName + "/Application").toString();
if ((CurApp == m_ClassId) || (0 == CurApp.compare(m_ClassId2, Qt::CaseInsensitive))) //Only remove if we own it
RegCU.remove(ExtKeyName + "/Application");
}
// Restore old association for current user
if (!OldClassId.isEmpty() && OldClassId != m_ClassId)
RegCU.setValue("Software/Classes/." + fileExtension + "/.", OldClassId);
else {
if (RegCU.value("Software/Classes/." + fileExtension + "/.").toString() == m_ClassId) //Only remove if we own it
RegCU.remove("Software/Classes/." + fileExtension);
}
// Remove our keys:
// CurrentUserClasses/.ext/MPlayerBackup
// Explorer: Backup_Application and Backup_ProgId
RegCU.remove("Software/Classes/." + fileExtension + "/MPlayer_Backup");
RegCU.remove(ExtKeyName + "/MPlayer_Backup_Application");
RegCU.remove(ExtKeyName + "/MPlayer_Backup_ProgId");
}
return count;
}
// Creates a ClassId for current application.
// Note: It's better to create the classId from the installation program.
bool WinFileAssoc::CreateClassId(const QString &executablePath, const QString &friendlyName)
{
QString RootKeyName;
QString classId;
classId = "Software/Classes/" + m_ClassId;
RootKeyName = "HKEY_CURRENT_USER";
QSettings Reg(RootKeyName, QSettings::NativeFormat);
if (!Reg.isWritable() || Reg.status() != QSettings::NoError)
return false;
QString appPath = executablePath;
appPath.replace('/', '\\'); // Explorer gives 'Access Denied' if we write the path with forward slashes to the registry
// Add our ProgId to the HKCR classes
Reg.setValue(classId + "/shell/open/FriendlyAppName", friendlyName);
Reg.setValue(classId + "/shell/open/command/.", QString("\"%1\" \"%2\"").arg(appPath, "%1"));
Reg.setValue(classId + "/DefaultIcon/.", QString("\"%1\",1").arg(appPath));
// Add "Enqueue" command
Reg.setValue(classId + "/shell/enqueue/.", QObject::tr("Enqueue in SMPlayer"));
Reg.setValue(classId + "/shell/enqueue/command/.", QString("\"%1\" -add-to-playlist \"%2\"").arg(appPath, "%1"));
return true;
}
// Remove ClassId from the registry.
// Called when no associations exist. Note: It's better to do this in the Setup program.
bool WinFileAssoc::RemoveClassId()
{
QString RootKeyName;
QString classId;
classId = "Software/Classes/" + m_ClassId;
RootKeyName = "HKEY_CURRENT_USER";
QSettings RegCU(RootKeyName, QSettings::NativeFormat);
if (!RegCU.isWritable() || RegCU.status() != QSettings::NoError)
return false;
RegCU.remove(classId);
return true;
}
// Windows Vista specific implementation
#if !defined(IApplicationAssociationRegistration)
typedef enum tagASSOCIATIONLEVEL {
AL_MACHINE,
AL_EFFECTIVE,
AL_USER
} ASSOCIATIONLEVEL;
typedef enum tagASSOCIATIONTYPE {
AT_FILEEXTENSION,
AT_URLPROTOCOL,
AT_STARTMENUCLIENT,
AT_MIMETYPE
} ASSOCIATIONTYPE;
MIDL_INTERFACE("4e530b0a-e611-4c77-a3ac-9031d022281b")
IApplicationAssociationRegistration :
public IUnknown {
public:
virtual HRESULT STDMETHODCALLTYPE QueryCurrentDefault(LPCWSTR pszQuery,
ASSOCIATIONTYPE atQueryType,
ASSOCIATIONLEVEL alQueryLevel,
LPWSTR * ppszAssociation) = 0;
virtual HRESULT STDMETHODCALLTYPE QueryAppIsDefault(LPCWSTR pszQuery,
ASSOCIATIONTYPE atQueryType,
ASSOCIATIONLEVEL alQueryLevel,
LPCWSTR pszAppRegistryName,
BOOL * pfDefault) = 0;
virtual HRESULT STDMETHODCALLTYPE QueryAppIsDefaultAll(ASSOCIATIONLEVEL alQueryLevel,
LPCWSTR pszAppRegistryName,
BOOL * pfDefault) = 0;
virtual HRESULT STDMETHODCALLTYPE SetAppAsDefault(LPCWSTR pszAppRegistryName,
LPCWSTR pszSet,
ASSOCIATIONTYPE atSetType) = 0;
virtual HRESULT STDMETHODCALLTYPE SetAppAsDefaultAll(LPCWSTR pszAppRegistryName) = 0;
virtual HRESULT STDMETHODCALLTYPE ClearUserAssociations(void) = 0;
};
#endif
static const CLSID CLSID_ApplicationAssociationReg = {0x591209C7, 0x767B, 0x42B2, {0x9F, 0xBA, 0x44, 0xEE, 0x46, 0x15, 0xF2, 0xC7}};
static const IID IID_IApplicationAssociationReg = {0x4e530b0a, 0xe611, 0x4c77, {0xa3, 0xac, 0x90, 0x31, 0xd0, 0x22, 0x28, 0x1b}};
int WinFileAssoc::VistaSetAppsAsDefault(const QStringList &fileExtensions)
{
IApplicationAssociationRegistration *pAAR;
HRESULT hr = CoCreateInstance(CLSID_ApplicationAssociationReg,
NULL, CLSCTX_INPROC, IID_IApplicationAssociationReg, (void **)&pAAR);
int count = 0;
if (SUCCEEDED(hr) && (pAAR != NULL)) {
foreach(const QString & fileExtension, fileExtensions) {
hr = pAAR->SetAppAsDefault((const WCHAR *)m_AppName.utf16(),
(const WCHAR *)QString("." + fileExtension).utf16(),
AT_FILEEXTENSION);
if (SUCCEEDED(hr))
count++;
}
pAAR->Release();
}
return count;
}
bool WinFileAssoc::VistaGetDefaultApps(const QStringList &extensions, QStringList ®isteredExt)
{
IApplicationAssociationRegistration *pAAR;
HRESULT hr = CoCreateInstance(CLSID_ApplicationAssociationReg,
NULL, CLSCTX_INPROC, IID_IApplicationAssociationReg, (void **)&pAAR);
if (SUCCEEDED(hr) && (pAAR != NULL)) {
foreach(const QString & fileExtension, extensions) {
BOOL bIsDefault = false;
hr = pAAR->QueryAppIsDefault((const WCHAR *)QString("." + fileExtension).utf16(),
AT_FILEEXTENSION,
AL_EFFECTIVE,
(const WCHAR *)m_AppName.utf16(),
&bIsDefault);
if (SUCCEEDED(hr) && bIsDefault) {
registeredExt.append(fileExtension);
}
}
pAAR->Release();
return true;
}
return false;
}
|