forked from rainmeter/rainmeter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMeasurePlugin.cpp
405 lines (363 loc) · 9.3 KB
/
MeasurePlugin.cpp
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
/* Copyright (C) 2001 Rainmeter Project Developers
*
* This Source Code Form is subject to the terms of the GNU General Public
* License; either version 2 of the License, or (at your option) any later
* version. If a copy of the GPL was not distributed with this file, You can
* obtain one at <https://www.gnu.org/licenses/gpl-2.0.html>. */
#include "StdAfx.h"
#include "MeasurePlugin.h"
#include "Rainmeter.h"
#include "Export.h"
#include "System.h"
std::unordered_map<std::wstring, UINT> MeasurePlugin::s_PluginReferences;
MeasurePlugin::MeasurePlugin(Skin* skin, const WCHAR* name) : Measure(skin, name),
m_Plugin(),
m_ReloadFunc(),
m_ID(),
m_Update2(false),
m_PluginData(),
m_UpdateFunc(),
m_GetStringFunc(),
m_ExecuteBangFunc()
{
}
MeasurePlugin::~MeasurePlugin()
{
if (m_Plugin)
{
FARPROC finalizeFunc = GetProcAddress(m_Plugin, "Finalize");
if (finalizeFunc)
{
if (IsNewApi())
{
((NEWFINALIZE)finalizeFunc)(m_PluginData);
}
else
{
((FINALIZE)finalizeFunc)(m_Plugin, m_ID);
}
}
// Debug mode
if (GetRainmeter().GetDebug())
{
WCHAR pluginPath[MAX_PATH] = { 0 };
if (GetModuleFileName(m_Plugin, pluginPath, _countof(pluginPath)) > 0UL)
{
// Sometimes GetModuleFileName and/or LoadLibrary retrieves portions of the path
// in the wrong case (ex. ".DLL", instead of ".dll"), so get the actual file path
if (GetLongPathName(pluginPath, pluginPath, _countof(pluginPath)) > 0UL)
{
std::wstring tmpStr = pluginPath;
StringUtil::ToLowerCase(tmpStr);
auto iter = s_PluginReferences.find(tmpStr);
if (iter != s_PluginReferences.end())
{
--iter->second;
if (iter->second == 0)
{
if (GetRainmeter().GetDebug())
{
LogDebugF(L"Plugin unloaded: %s", pluginPath);
}
s_PluginReferences.erase(tmpStr);
}
}
}
}
}
FreeLibrary(m_Plugin);
m_Plugin = nullptr;
}
}
/*
** Gets the current value from the plugin
**
*/
void MeasurePlugin::UpdateValue()
{
if (m_UpdateFunc)
{
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);
}
}
// Reset to default
System::ResetWorkingDirectory();
}
}
/*
** Reads the options and loads the plugin
**
*/
void MeasurePlugin::ReadOptions(ConfigParser& parser, const WCHAR* section)
{
static UINT id = 0;
Measure::ReadOptions(parser, section);
if (m_Initialized)
{
if (IsNewApi())
{
((NEWRELOAD)m_ReloadFunc)(m_PluginData, this, &m_MaxValue);
}
// DynamicVariables doesn't work with old plugins
return;
}
const std::wstring& plugin = parser.ReadString(section, L"Plugin", L"");
size_t pos = plugin.find_last_of(L"\\/");
std::wstring pluginName;
if (pos != std::wstring::npos)
{
pluginName.assign(plugin, pos, plugin.length() - pos);
}
else
{
pluginName = plugin;
}
// Append ".dll" if it doesn't exist (for debug mode)
if (GetRainmeter().GetDebug())
{
if (_wcsicmp(PathFindExtension(plugin.c_str()), L"") == 0)
{
pluginName.append(L".dll");
}
}
// First try from program path
std::wstring pluginFile = GetRainmeter().GetPluginPath();
pluginFile += pluginName;
m_Plugin = System::RmLoadLibrary(pluginFile.c_str());
if (!m_Plugin)
{
if (GetRainmeter().HasUserPluginPath())
{
// Try from settings path
pluginFile = GetRainmeter().GetUserPluginPath();
pluginFile += pluginName;
m_Plugin = System::RmLoadLibrary(pluginFile.c_str());
}
if (!m_Plugin)
{
LogErrorF(
this, L"Plugin: Unable to load \"%s\" (error %ld)",
pluginName.c_str(), GetLastError());
return;
}
}
// Log plugin references (debug mode)
if (GetRainmeter().GetDebug())
{
WCHAR pluginPath[MAX_PATH] = { 0 };
if (GetModuleFileName(m_Plugin, pluginPath, _countof(pluginPath)) > 0UL)
{
// Sometimes GetModuleFileName and/or LoadLibrary retrieves portions of the path
// in the wrong case (ex. ".DLL", instead of ".dll"), so get the actual file path
if (GetLongPathName(pluginPath, pluginPath, _countof(pluginPath)) > 0UL)
{
std::wstring tmpStr = pluginPath;
StringUtil::ToLowerCase(tmpStr);
auto iter = s_PluginReferences.find(tmpStr);
if (iter == s_PluginReferences.end())
{
s_PluginReferences.emplace(tmpStr, 1U);
if (GetRainmeter().GetDebug())
{
LogDebugF(L"Plugin loaded: %s", pluginPath);
}
}
else
{
++iter->second;
}
}
}
}
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");
// Remove current directory from DLL search path
SetDllDirectory(L"");
double maxValue = 0.0;
if (IsNewApi())
{
{
// Suppress C4312: 'type cast': conversion from 'UINT' to 'void*' of greater size
#pragma warning(suppress: 4312)
m_PluginData = (void*)id;
}
if (initializeFunc)
{
((NEWINITIALIZE)initializeFunc)(&m_PluginData, this);
}
((NEWRELOAD)m_ReloadFunc)(m_PluginData, this, &maxValue);
}
else
{
m_ID = id;
if (!m_UpdateFunc)
{
m_UpdateFunc = GetProcAddress(m_Plugin, "Update2");
m_Update2 = true;
}
if (initializeFunc)
{
maxValue = ((INITIALIZE)initializeFunc)(m_Plugin, m_Skin->GetFilePath().c_str(), section, m_ID);
}
}
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;
}
}
// Reset to default
SetDllDirectory(L"");
System::ResetWorkingDirectory();
++id;
}
/*
** Gets the string value from the plugin.
**
*/
const WCHAR* MeasurePlugin::GetStringValue()
{
if (m_GetStringFunc)
{
const WCHAR* ret;
if (IsNewApi())
{
ret = ((NEWGETSTRING)m_GetStringFunc)(m_PluginData);
}
else
{
ret = ((GETSTRING)m_GetStringFunc)(m_ID, 0);
}
if (ret) return CheckSubstitute(ret);
}
return nullptr;
}
/*
** Sends a bang to the plugin
**
*/
void MeasurePlugin::Command(const std::wstring& command)
{
if (m_ExecuteBangFunc)
{
const WCHAR* str = command.c_str();
if (IsNewApi())
{
((NEWEXECUTEBANG)m_ExecuteBangFunc)(m_PluginData, str);
}
else
{
((EXECUTEBANG)m_ExecuteBangFunc)(str, m_ID);
}
}
else
{
Measure::Command(command);
}
}
bool MeasurePlugin::CommandWithReturn(const std::wstring& command, std::wstring& strValue, void* delayedLogEntry)
{
if (!m_Initialized)
{
strValue = L"0";
return true;
}
WCHAR errMsg[MAX_LINE_LENGTH];
size_t sPos = command.find_first_of(L'(');
if (sPos != std::wstring::npos)
{
size_t ePos = command.find_last_of(L')');
if (ePos == std::wstring::npos ||
sPos > ePos ||
command.size() < 3)
{
_snwprintf_s(errMsg, _TRUNCATE, L"Invalid function call: %s", command.c_str());
if (delayedLogEntry)
{
std::wstring source = m_Skin->GetSkinPath();
source += L" - [";
source += GetOriginalName();
source += L']';
// Since plugins can accept single brackets as input, the nested variable parser
// can send incomplete section variable to the plugin, so store a delayed message
// in case the "actual" section variable is invalid. If the "final" variable the
// parser finds is a valid variable, this error message will not be logged.
// See: |ConfigParser::ParseVariables|
auto* log = (Logger::Entry*)delayedLogEntry;
*log = { Logger::Level::Error, L"", source.c_str(), errMsg };
}
else
{
LogErrorF(this, errMsg);
}
return false;
}
// Prevent calling known API functions
std::string function = StringUtil::Narrow(command.substr(0, sPos));
if (function == "Initialize" ||
function == "Reload" ||
function == "Update" ||
function == "GetString" ||
function == "ExecuteBang" ||
function == "Finalize" ||
function == "Update2" || // Old API
function == "GetPluginAuthor" || // Old API
function == "GetPluginVersion") // Old API
return false;
// Parse arguments
auto _args = ConfigParser::Tokenize2(
command.substr(sPos + 1, ePos - sPos - 1),
L',',
PairedPunctuation::BothQuotes);
// Convert strings in array to raw type
std::vector<LPCWSTR> args;
for (auto& str : _args)
{
StringUtil::StripLeadingAndTrailingQuotes(str, true);
args.emplace_back(str.c_str());
}
void* custom = GetProcAddress(m_Plugin, function.c_str());
if (custom)
{
LPCWSTR result = ((CUSTOMFUNCTION)custom)(m_PluginData, (const int)args.size(), args.data());
if (result)
{
strValue = result;
return true;
}
else
{
LogErrorF(this, L"Invalid return type in function: %s", command.substr(0, sPos).c_str());
}
}
else
{
LogErrorF(this, L"Cannot find function: %s", command.substr(0, sPos).c_str());
}
}
return false;
}