rainmeter-studio/Library/MeasurePlugin.cpp

282 lines
5.8 KiB
C++
Raw Normal View History

2009-02-10 18:37:48 +00:00
/*
Copyright (C) 2001 Kimmo Pekkola
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2009-02-10 18:37:48 +00:00
*/
#include "StdAfx.h"
2009-02-10 18:37:48 +00:00
#include "MeasurePlugin.h"
#include "Rainmeter.h"
2012-01-08 17:35:29 +00:00
#include "Export.h"
#include "System.h"
2009-02-10 18:37:48 +00:00
#include "Error.h"
extern CRainmeter* Rainmeter;
/*
** The constructor
**
*/
2011-02-15 16:26:54 +00:00
CMeasurePlugin::CMeasurePlugin(CMeterWindow* meterWindow, const WCHAR* name) : CMeasure(meterWindow, name),
m_Plugin(),
2012-01-08 17:35:29 +00:00
m_ReloadFunc(),
m_ID(),
2012-01-08 17:35:29 +00:00
m_Update2(false),
m_PluginData(),
m_UpdateFunc(),
m_GetStringFunc(),
m_ExecuteBangFunc()
2009-02-10 18:37:48 +00:00
{
m_MaxValue = 0.0;
2009-02-10 18:37:48 +00:00
}
/*
** The destructor
**
*/
2011-03-29 19:21:57 +00:00
CMeasurePlugin::~CMeasurePlugin()
2009-02-10 18:37:48 +00:00
{
if (m_Plugin)
{
2012-01-08 17:35:29 +00:00
FARPROC finalizeFunc = GetProcAddress(m_Plugin, "Finalize");
if (finalizeFunc)
{
if (IsNewApi())
{
((NEWFINALIZE)finalizeFunc)(m_PluginData);
}
else
{
((FINALIZE)finalizeFunc)(m_Plugin, m_ID);
}
}
2009-02-10 18:37:48 +00:00
FreeLibrary(m_Plugin);
}
}
/*
** Gets the current value from the plugin
**
*/
bool CMeasurePlugin::Update()
{
if (!CMeasure::PreUpdate()) return false;
2012-01-08 17:35:29 +00:00
if (m_UpdateFunc)
2009-02-10 18:37:48 +00:00
{
2012-01-08 17:35:29 +00:00
if (IsNewApi())
{
m_Value = ((NEWUPDATE)m_UpdateFunc)(m_PluginData);
}
else
{
if (m_Update2)
{
m_Value = ((UPDATE2)m_UpdateFunc)(m_ID);
}
else
{
m_Value = ((UPDATE)m_UpdateFunc)(m_ID);
}
}
2009-02-10 18:37:48 +00:00
2012-01-08 17:35:29 +00:00
// Reset to default
CSystem::ResetWorkingDirectory();
}
2009-02-10 18:37:48 +00:00
return PostUpdate();
}
/*
** Reads the configs and loads & initializes the plugin
**
*/
void CMeasurePlugin::ReadConfig(CConfigParser& parser, const WCHAR* section)
{
2012-01-08 17:35:29 +00:00
static UINT id = 0;
2009-02-10 18:37:48 +00:00
CMeasure::ReadConfig(parser, section);
2011-12-30 17:18:34 +00:00
if (m_Initialized)
{
2012-01-08 17:35:29 +00:00
if (IsNewApi())
{
((NEWRELOAD)m_ReloadFunc)(m_PluginData, this, &m_MaxValue);
}
// DynamicVariables doesn't work with old plugins
return;
}
2010-08-17 07:19:48 +00:00
2012-01-08 17:35:29 +00:00
std::wstring pluginName = parser.ReadString(section, L"Plugin", L"");
2009-02-10 18:37:48 +00:00
2012-01-08 17:35:29 +00:00
size_t pos = pluginName.rfind(L'.');
2011-03-29 19:21:57 +00:00
if (pos == std::wstring::npos)
2009-02-10 18:37:48 +00:00
{
2012-01-08 17:35:29 +00:00
pluginName += L".dll";
2009-02-10 18:37:48 +00:00
}
2012-01-08 17:35:29 +00:00
pos = pluginName.rfind(L'\\');
2011-03-29 19:21:57 +00:00
if (pos != std::wstring::npos)
2009-02-10 18:37:48 +00:00
{
2012-01-08 17:35:29 +00:00
pluginName.insert(0, L"..\\");
2009-02-10 18:37:48 +00:00
}
2012-01-08 17:35:29 +00:00
pluginName.insert(0, Rainmeter->GetPluginPath());
2011-12-30 17:18:34 +00:00
// Canonicalize the path (Workaround for C# plugins)
{
pos = 0;
while ((pos = pluginName.find(L"\\\\", pos)) != std::wstring::npos)
{
pluginName.erase(pos, 1);
}
WCHAR buffer[MAX_PATH];
if (PathCanonicalize(buffer, pluginName.c_str()))
{
pluginName = buffer;
}
else
{
LogWithArgs(LOG_WARNING, L"Plugin: Failed to canonicalize plugin path: %s", pluginName.c_str());
}
}
m_Plugin = CSystem::RmLoadLibrary(pluginName.c_str());
2011-03-29 19:21:57 +00:00
if (m_Plugin == NULL)
2009-02-10 18:37:48 +00:00
{
// Try to load from Rainmeter's folder
2012-01-08 17:35:29 +00:00
pos = pluginName.rfind(L'\\');
2011-03-29 19:21:57 +00:00
if (pos != std::wstring::npos)
2009-02-10 18:37:48 +00:00
{
2012-01-08 17:35:29 +00:00
std::wstring pluginName2 = Rainmeter->GetPath();
pluginName2.append(pluginName, pos + 1, pluginName.length() - (pos + 1));
2011-12-30 17:18:34 +00:00
m_Plugin = CSystem::RmLoadLibrary(pluginName2.c_str());
2009-02-10 18:37:48 +00:00
}
if (m_Plugin == NULL)
{
2012-01-08 17:35:29 +00:00
std::wstring error = L"Plugin: \"" + pluginName;
error += L"\" not found";
2011-11-09 09:27:06 +00:00
throw CError(error);
2009-02-10 18:37:48 +00:00
}
}
2011-03-29 19:21:57 +00:00
2012-01-08 17:35:29 +00:00
FARPROC initializeFunc = GetProcAddress(m_Plugin, "Initialize");
m_ReloadFunc = GetProcAddress(m_Plugin, "Reload");
m_UpdateFunc = GetProcAddress(m_Plugin, "Update");
m_GetStringFunc = GetProcAddress(m_Plugin, "GetString");
m_ExecuteBangFunc = GetProcAddress(m_Plugin, "ExecuteBang");
2010-11-25 15:34:49 +00:00
2012-01-08 17:35:29 +00:00
// Remove current directory from DLL search path
SetDllDirectory(L"");
if (IsNewApi())
2011-12-30 16:16:22 +00:00
{
2012-01-08 17:35:29 +00:00
m_PluginData = (void*)id;
2011-12-30 17:18:34 +00:00
2012-01-08 17:35:29 +00:00
if (initializeFunc)
{
((NEWINITIALIZE)initializeFunc)(&m_PluginData, this);
2012-01-08 17:35:29 +00:00
}
2011-12-30 17:18:34 +00:00
2012-01-08 17:35:29 +00:00
((NEWRELOAD)m_ReloadFunc)(m_PluginData, this, &m_MaxValue);
}
else
2009-02-10 18:37:48 +00:00
{
2012-01-08 17:35:29 +00:00
m_ID = id;
2011-09-29 17:14:51 +00:00
2012-01-08 17:35:29 +00:00
if (!m_UpdateFunc)
{
m_UpdateFunc = GetProcAddress(m_Plugin, "Update2");
m_Update2 = true;
}
2009-02-10 18:37:48 +00:00
2012-01-08 17:35:29 +00:00
double maxValue = 0;
if (initializeFunc)
{
maxValue = ((INITIALIZE)initializeFunc)(m_Plugin, parser.GetFilename().c_str(), section, m_ID);
}
2009-02-10 18:37:48 +00:00
const std::wstring& szMaxValue = parser.ReadString(section, L"MaxValue", L"");
if (szMaxValue.empty())
2009-02-10 18:37:48 +00:00
{
m_MaxValue = maxValue;
}
2011-12-30 16:16:22 +00:00
2012-01-08 17:35:29 +00:00
if (m_MaxValue == 0)
{
m_MaxValue = 1;
m_LogMaxValue = true;
}
2011-12-30 17:18:34 +00:00
}
2012-01-08 17:35:29 +00:00
// Reset to default
SetDllDirectory(L"");
CSystem::ResetWorkingDirectory();
++id;
2009-02-10 18:37:48 +00:00
}
/*
** Gets the string value from the plugin.
**
*/
const WCHAR* CMeasurePlugin::GetStringValue(AUTOSCALE autoScale, double scale, int decimals, bool percentual)
2009-02-10 18:37:48 +00:00
{
2012-01-08 17:35:29 +00:00
if (m_GetStringFunc)
2009-02-10 18:37:48 +00:00
{
2012-01-08 17:35:29 +00:00
const WCHAR* ret;
if (IsNewApi())
{
ret = ((NEWGETSTRING)m_GetStringFunc)(m_PluginData);
}
else
{
ret = ((GETSTRING)m_GetStringFunc)(m_ID, 0);
}
2009-02-10 18:37:48 +00:00
if (ret) return CheckSubstitute(ret);
}
return CMeasure::GetStringValue(autoScale, scale, decimals, percentual);
}
/*
** Sends a bang to the plugin
**
*/
void CMeasurePlugin::Command(const std::wstring& command)
2009-02-10 18:37:48 +00:00
{
2012-01-08 17:35:29 +00:00
if (m_ExecuteBangFunc)
2009-02-10 18:37:48 +00:00
{
const WCHAR* str = command.c_str();
2012-01-08 17:35:29 +00:00
if (IsNewApi())
{
((NEWEXECUTEBANG)m_ExecuteBangFunc)(m_PluginData, str);
2012-01-08 17:35:29 +00:00
}
else
{
((EXECUTEBANG)m_ExecuteBangFunc)(str, m_ID);
2012-01-08 17:35:29 +00:00
}
2009-02-10 18:37:48 +00:00
}
else
{
CMeasure::Command(command);
2009-02-10 18:37:48 +00:00
}
2012-01-08 17:35:29 +00:00
}