rainmeter-studio/Library/MeasurePlugin.cpp

259 lines
5.2 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"
2013-05-31 14:18:52 +00:00
extern Rainmeter* g_Rainmeter;
2009-02-10 18:37:48 +00:00
/*
** The constructor
**
*/
2013-05-31 14:18:52 +00:00
MeasurePlugin::MeasurePlugin(MeterWindow* meterWindow, const WCHAR* name) : Measure(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
{
}
/*
** The destructor
**
*/
2013-05-31 14:18:52 +00:00
MeasurePlugin::~MeasurePlugin()
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
**
*/
2013-05-31 14:18:52 +00:00
void MeasurePlugin::UpdateValue()
2009-02-10 18:37:48 +00:00
{
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
2013-05-31 14:18:52 +00:00
System::ResetWorkingDirectory();
2012-01-08 17:35:29 +00:00
}
2009-02-10 18:37:48 +00:00
}
/*
** Reads the options and loads the plugin
2009-02-10 18:37:48 +00:00
**
*/
2013-05-31 14:18:52 +00:00
void MeasurePlugin::ReadOptions(ConfigParser& parser, const WCHAR* section)
2009-02-10 18:37:48 +00:00
{
2012-01-08 17:35:29 +00:00
static UINT id = 0;
2009-02-10 18:37:48 +00:00
2013-05-31 14:18:52 +00:00
Measure::ReadOptions(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
const std::wstring& plugin = parser.ReadString(section, L"Plugin", L"");
size_t pos = plugin.find_last_of(L"\\/");
std::wstring pluginName;
2011-03-29 19:21:57 +00:00
if (pos != std::wstring::npos)
2009-02-10 18:37:48 +00:00
{
pluginName.assign(plugin, pos, plugin.length() - pos);
2009-02-10 18:37:48 +00:00
}
else
{
pluginName = plugin;
}
// First try from program path
2013-05-31 14:18:52 +00:00
std::wstring pluginFile = g_Rainmeter->GetPluginPath();
2012-06-17 15:36:59 +00:00
pluginFile += pluginName;
2013-05-31 14:18:52 +00:00
m_Plugin = System::RmLoadLibrary(pluginFile.c_str());
if (!m_Plugin)
2009-02-10 18:37:48 +00:00
{
2013-05-31 14:18:52 +00:00
if (g_Rainmeter->HasUserPluginPath())
2012-06-21 09:06:17 +00:00
{
// Try from settings path
2013-05-31 14:18:52 +00:00
pluginFile = g_Rainmeter->GetUserPluginPath();
2012-06-21 09:06:17 +00:00
pluginFile += pluginName;
2013-05-31 14:18:52 +00:00
m_Plugin = System::RmLoadLibrary(pluginFile.c_str());
2012-06-21 09:06:17 +00:00
}
if (!m_Plugin)
{
2013-05-30 14:19:42 +00:00
LogErrorF(L"Plugin: \"%s\" not found", pluginName.c_str());
return;
}
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"");
2012-04-07 15:10:41 +00:00
double maxValue = 0.0;
2012-01-08 17:35:29 +00:00
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
((NEWRELOAD)m_ReloadFunc)(m_PluginData, this, &maxValue);
2012-01-08 17:35:29 +00:00
}
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
if (initializeFunc)
{
maxValue = ((INITIALIZE)initializeFunc)(m_Plugin, m_MeterWindow->GetFilePath().c_str(), section, m_ID);
2009-02-10 18:37:48 +00:00
}
}
2011-12-30 16:16:22 +00:00
const std::wstring& szMaxValue = parser.ReadString(section, L"MaxValue", L"");
if (szMaxValue.empty())
{
if (maxValue == 0.0)
{
m_MaxValue = 1.0;
m_LogMaxValue = true;
m_MedianValues.clear();
}
else
{
m_MaxValue = maxValue;
m_LogMaxValue = false;
}
2011-12-30 17:18:34 +00:00
}
2012-01-08 17:35:29 +00:00
// Reset to default
SetDllDirectory(L"");
2013-05-31 14:18:52 +00:00
System::ResetWorkingDirectory();
2012-01-08 17:35:29 +00:00
++id;
2009-02-10 18:37:48 +00:00
}
/*
** Gets the string value from the plugin.
**
*/
2013-05-31 14:18:52 +00:00
const WCHAR* MeasurePlugin::GetStringValue()
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);
}
2013-05-31 14:28:39 +00:00
return nullptr;
2009-02-10 18:37:48 +00:00
}
/*
** Sends a bang to the plugin
**
*/
2013-05-31 14:18:52 +00:00
void MeasurePlugin::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
{
2013-05-31 14:18:52 +00:00
Measure::Command(command);
2009-02-10 18:37:48 +00:00
}
2012-01-08 17:35:29 +00:00
}