mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 13:14:59 -06:00
140 lines
3.6 KiB
C++
140 lines
3.6 KiB
C++
// RegistryPlugins.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "../../../Windows/DLL.h"
|
|
#include "../../../Windows/FileFind.h"
|
|
#include "../../../Windows/PropVariant.h"
|
|
|
|
#include "IFolder.h"
|
|
#include "RegistryPlugins.h"
|
|
|
|
using namespace NWindows;
|
|
using namespace NFile;
|
|
|
|
/*
|
|
static LPCTSTR const kLMBasePath = TEXT("Software\\7-Zip\\FM");
|
|
|
|
static LPCTSTR const kPluginsKeyName = TEXT("Plugins");
|
|
static LPCTSTR const kPluginsOpenClassIDValue = TEXT("CLSID");
|
|
static LPCTSTR const kPluginsOptionsClassIDValue = TEXT("Options");
|
|
static LPCTSTR const kPluginsTypeValue = TEXT("Type");
|
|
|
|
static CSysString GetFileFolderPluginsKeyName()
|
|
{
|
|
return CSysString(kLMBasePath) + CSysString(TEXT('\\')) +
|
|
CSysString(kPluginsKeyName);
|
|
}
|
|
|
|
*/
|
|
|
|
typedef UINT32 (WINAPI * GetPluginPropertyFunc)(PROPID propID, PROPVARIANT *value);
|
|
|
|
static bool ReadPluginInfo(CPluginInfo &pluginInfo, bool needCheckDll)
|
|
{
|
|
if (needCheckDll)
|
|
{
|
|
NDLL::CLibrary lib;
|
|
if (!lib.LoadEx(pluginInfo.FilePath, LOAD_LIBRARY_AS_DATAFILE))
|
|
return false;
|
|
}
|
|
NDLL::CLibrary lib;
|
|
if (!lib.Load(pluginInfo.FilePath))
|
|
return false;
|
|
GetPluginPropertyFunc getPluginProperty = (GetPluginPropertyFunc)lib.GetProc("GetPluginProperty");
|
|
if (getPluginProperty == NULL)
|
|
return false;
|
|
|
|
NCOM::CPropVariant prop;
|
|
if (getPluginProperty(NPlugin::kName, &prop) != S_OK)
|
|
return false;
|
|
if (prop.vt != VT_BSTR)
|
|
return false;
|
|
pluginInfo.Name = prop.bstrVal;
|
|
prop.Clear();
|
|
|
|
if (getPluginProperty(NPlugin::kClassID, &prop) != S_OK)
|
|
return false;
|
|
if (prop.vt == VT_EMPTY)
|
|
pluginInfo.ClassIDDefined = false;
|
|
else if (prop.vt != VT_BSTR)
|
|
return false;
|
|
else
|
|
{
|
|
pluginInfo.ClassIDDefined = true;
|
|
pluginInfo.ClassID = *(const GUID *)(const void *)prop.bstrVal;
|
|
}
|
|
prop.Clear();
|
|
|
|
if (getPluginProperty(NPlugin::kOptionsClassID, &prop) != S_OK)
|
|
return false;
|
|
if (prop.vt == VT_EMPTY)
|
|
pluginInfo.OptionsClassIDDefined = false;
|
|
else if (prop.vt != VT_BSTR)
|
|
return false;
|
|
else
|
|
{
|
|
pluginInfo.OptionsClassIDDefined = true;
|
|
pluginInfo.OptionsClassID = *(const GUID *)(const void *)prop.bstrVal;
|
|
}
|
|
prop.Clear();
|
|
|
|
if (getPluginProperty(NPlugin::kType, &prop) != S_OK)
|
|
return false;
|
|
if (prop.vt == VT_EMPTY)
|
|
pluginInfo.Type = kPluginTypeFF;
|
|
else if (prop.vt == VT_UI4)
|
|
pluginInfo.Type = (EPluginType)prop.ulVal;
|
|
else
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
void ReadPluginInfoList(CObjectVector<CPluginInfo> &plugins)
|
|
{
|
|
plugins.Clear();
|
|
|
|
FString baseFolderPrefix = NDLL::GetModuleDirPrefix();
|
|
{
|
|
CPluginInfo pluginInfo;
|
|
pluginInfo.FilePath = baseFolderPrefix + FTEXT("7-zip.dll");
|
|
if (::ReadPluginInfo(pluginInfo, false))
|
|
plugins.Add(pluginInfo);
|
|
}
|
|
FString folderPath = baseFolderPrefix;
|
|
folderPath += "Plugins" STRING_PATH_SEPARATOR;
|
|
NFind::CEnumerator enumerator;
|
|
enumerator.SetDirPrefix(folderPath);
|
|
NFind::CFileInfo fileInfo;
|
|
while (enumerator.Next(fileInfo))
|
|
{
|
|
if (fileInfo.IsDir())
|
|
continue;
|
|
CPluginInfo pluginInfo;
|
|
pluginInfo.FilePath = folderPath + fileInfo.Name;
|
|
if (::ReadPluginInfo(pluginInfo, true))
|
|
plugins.Add(pluginInfo);
|
|
}
|
|
}
|
|
|
|
void ReadFileFolderPluginInfoList(CObjectVector<CPluginInfo> &plugins)
|
|
{
|
|
ReadPluginInfoList(plugins);
|
|
for (unsigned i = 0; i < plugins.Size();)
|
|
if (plugins[i].Type != kPluginTypeFF)
|
|
plugins.Delete(i);
|
|
else
|
|
i++;
|
|
{
|
|
CPluginInfo p;
|
|
// p.FilePath.Empty();
|
|
p.Type = kPluginTypeFF;
|
|
p.Name = "7-Zip";
|
|
// p.ClassID = CLSID_CAgentArchiveHandler;
|
|
p.ClassIDDefined = true;
|
|
// p.OptionsClassID;
|
|
p.OptionsClassIDDefined = false;
|
|
plugins.Add(p);
|
|
}
|
|
}
|