mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Fixed line endings and applied gitignore
This commit is contained in:
@ -1,40 +1,40 @@
|
||||
#include <VerRsrc.h>
|
||||
#include "../../Version.h"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Version
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,1,0,0
|
||||
PRODUCTVERSION PRODUCTVER
|
||||
FILEFLAGSMASK 0x17L
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS VS_FF_DEBUG
|
||||
#else
|
||||
FILEFLAGS 0x0L
|
||||
#endif
|
||||
FILEOS VOS_NT_WINDOWS32
|
||||
FILETYPE VFT_DLL
|
||||
FILESUBTYPE VFT_UNKNOWN
|
||||
{
|
||||
BLOCK "StringFileInfo"
|
||||
{
|
||||
BLOCK "040904E4"
|
||||
{
|
||||
VALUE "FileVersion", "1.1.0.0"
|
||||
VALUE "LegalCopyright", "<22> 2010 - Rainy"
|
||||
VALUE "ProductName", "Rainmeter"
|
||||
#ifdef _WIN64
|
||||
VALUE "ProductVersion", STRPRODUCTVER " (64-bit)"
|
||||
#else
|
||||
VALUE "ProductVersion", STRPRODUCTVER " (32-bit)"
|
||||
#endif //_WIN64
|
||||
}
|
||||
}
|
||||
BLOCK "VarFileInfo"
|
||||
{
|
||||
VALUE "Translation", 0x409, 1252
|
||||
}
|
||||
}
|
||||
#include <VerRsrc.h>
|
||||
#include "../../Version.h"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Version
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,1,0,0
|
||||
PRODUCTVERSION PRODUCTVER
|
||||
FILEFLAGSMASK 0x17L
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS VS_FF_DEBUG
|
||||
#else
|
||||
FILEFLAGS 0x0L
|
||||
#endif
|
||||
FILEOS VOS_NT_WINDOWS32
|
||||
FILETYPE VFT_DLL
|
||||
FILESUBTYPE VFT_UNKNOWN
|
||||
{
|
||||
BLOCK "StringFileInfo"
|
||||
{
|
||||
BLOCK "040904E4"
|
||||
{
|
||||
VALUE "FileVersion", "1.1.0.0"
|
||||
VALUE "LegalCopyright", "<22> 2010 - Rainy"
|
||||
VALUE "ProductName", "Rainmeter"
|
||||
#ifdef _WIN64
|
||||
VALUE "ProductVersion", STRPRODUCTVER " (64-bit)"
|
||||
#else
|
||||
VALUE "ProductVersion", STRPRODUCTVER " (32-bit)"
|
||||
#endif //_WIN64
|
||||
}
|
||||
}
|
||||
BLOCK "VarFileInfo"
|
||||
{
|
||||
VALUE "Translation", 0x409, 1252
|
||||
}
|
||||
}
|
||||
|
@ -1,40 +1,40 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(SolutionDir)Build\VS\Rainmeter.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{C029E0CF-F203-41D0-9608-A3EA2CF0ED1F}</ProjectGuid>
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<TargetName>QuotePlugin</TargetName>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<Import Project="$(SolutionDir)Build\VS\Rainmeter.Cpp.props" />
|
||||
<Import Project="$(SolutionDir)Build\VS\RainmeterPlugin.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>shlwapi.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="PluginQuote.rc" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\Common\StringUtil.cpp" />
|
||||
<ClCompile Include="Quote.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\Common\StringUtil.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(SolutionDir)Build\VS\Rainmeter.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{C029E0CF-F203-41D0-9608-A3EA2CF0ED1F}</ProjectGuid>
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<TargetName>QuotePlugin</TargetName>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<Import Project="$(SolutionDir)Build\VS\Rainmeter.Cpp.props" />
|
||||
<Import Project="$(SolutionDir)Build\VS\RainmeterPlugin.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>shlwapi.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="PluginQuote.rc" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\Common\StringUtil.cpp" />
|
||||
<ClCompile Include="Quote.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\Common\StringUtil.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
@ -1,329 +1,329 @@
|
||||
/*
|
||||
Copyright (C) 2005 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.
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <time.h>
|
||||
#include <shlwapi.h>
|
||||
#include "../API/RainmeterAPI.h"
|
||||
#include "../../Common/StringUtil.h"
|
||||
|
||||
#define BUFFER_SIZE 4096
|
||||
|
||||
struct MeasureData
|
||||
{
|
||||
std::wstring pathname;
|
||||
std::wstring separator;
|
||||
std::vector<std::wstring> files;
|
||||
std::wstring value;
|
||||
};
|
||||
|
||||
void ScanFolder(std::vector<std::wstring>& files, std::vector<std::wstring>& filters, bool bSubfolders, const std::wstring& path)
|
||||
{
|
||||
// Get folder listing
|
||||
WIN32_FIND_DATA fileData; // Data structure describes the file found
|
||||
HANDLE hSearch; // Search handle returned by FindFirstFile
|
||||
|
||||
std::wstring searchPath = path + L"*";
|
||||
|
||||
hSearch = FindFirstFile(searchPath.c_str(), &fileData);
|
||||
if (hSearch == INVALID_HANDLE_VALUE) return; // No more files found
|
||||
|
||||
do
|
||||
{
|
||||
if (fileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
|
||||
{
|
||||
if (bSubfolders &&
|
||||
wcscmp(fileData.cFileName, L".") != 0 &&
|
||||
wcscmp(fileData.cFileName, L"..") != 0)
|
||||
{
|
||||
ScanFolder(files, filters, bSubfolders, path + fileData.cFileName + L"\\");
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!filters.empty())
|
||||
{
|
||||
for (size_t i = 0; i < filters.size(); ++i)
|
||||
{
|
||||
if (!filters[i].empty() && PathMatchSpec(fileData.cFileName, filters[i].c_str()))
|
||||
{
|
||||
files.push_back(path + fileData.cFileName);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
files.push_back(path + fileData.cFileName);
|
||||
}
|
||||
}
|
||||
}
|
||||
while (FindNextFile(hSearch, &fileData));
|
||||
|
||||
FindClose(hSearch);
|
||||
}
|
||||
|
||||
PLUGIN_EXPORT void Initialize(void** data, void* rm)
|
||||
{
|
||||
MeasureData* measure = new MeasureData;
|
||||
*data = measure;
|
||||
}
|
||||
|
||||
PLUGIN_EXPORT void Reload(void* data, void* rm, double* maxValue)
|
||||
{
|
||||
MeasureData* measure = (MeasureData*)data;
|
||||
|
||||
measure->pathname = RmReadPath(rm, L"PathName", L"");
|
||||
|
||||
if (PathIsDirectory(measure->pathname.c_str()))
|
||||
{
|
||||
std::vector<std::wstring> fileFilters;
|
||||
LPCWSTR filter = RmReadString(rm, L"FileFilter", L"");
|
||||
if (*filter)
|
||||
{
|
||||
std::wstring ext = filter;
|
||||
|
||||
size_t start = 0;
|
||||
size_t pos = ext.find(L';');
|
||||
while (pos != std::wstring::npos)
|
||||
{
|
||||
fileFilters.push_back(ext.substr(start, pos - start));
|
||||
start = pos + 1;
|
||||
pos = ext.find(L';', pos + 1);
|
||||
}
|
||||
fileFilters.push_back(ext.substr(start));
|
||||
}
|
||||
|
||||
if (measure->pathname[measure->pathname.size() - 1] != L'\\')
|
||||
{
|
||||
measure->pathname += L"\\";
|
||||
}
|
||||
|
||||
// Scan files
|
||||
measure->files.clear();
|
||||
bool bSubfolders = RmReadInt(rm, L"Subfolders", 1) == 1;
|
||||
ScanFolder(measure->files, fileFilters, bSubfolders, measure->pathname);
|
||||
}
|
||||
else
|
||||
{
|
||||
measure->separator = RmReadString(rm, L"Separator", L"\n");
|
||||
}
|
||||
|
||||
srand((unsigned)time(nullptr));
|
||||
}
|
||||
|
||||
PLUGIN_EXPORT double Update(void* data)
|
||||
{
|
||||
MeasureData* measure = (MeasureData*)data;
|
||||
|
||||
if (measure->files.empty())
|
||||
{
|
||||
BYTE buffer[BUFFER_SIZE + 2];
|
||||
buffer[BUFFER_SIZE] = 0;
|
||||
|
||||
// Read the file
|
||||
FILE* file = _wfopen(measure->pathname.c_str(), L"r");
|
||||
if (file)
|
||||
{
|
||||
// Check if the file is unicode or ascii
|
||||
fread(buffer, sizeof(WCHAR), 1, file);
|
||||
|
||||
fseek(file, 0, SEEK_END);
|
||||
long size = ftell(file);
|
||||
|
||||
if (size > 0)
|
||||
{
|
||||
// Go to a random place
|
||||
int pos = rand() % size;
|
||||
fseek(file, (pos / 2) * 2, SEEK_SET);
|
||||
|
||||
measure->value.clear();
|
||||
|
||||
if (0xFEFF == *(WCHAR*)buffer)
|
||||
{
|
||||
// It's unicode
|
||||
WCHAR* wBuffer = (WCHAR*)buffer;
|
||||
|
||||
// Read until we find the first separator
|
||||
WCHAR* sepPos1 = nullptr;
|
||||
WCHAR* sepPos2 = nullptr;
|
||||
do
|
||||
{
|
||||
size_t len = fread(buffer, sizeof(BYTE), BUFFER_SIZE, file);
|
||||
buffer[len] = 0;
|
||||
buffer[len + 1] = 0;
|
||||
|
||||
sepPos1 = wcsstr(wBuffer, measure->separator.c_str());
|
||||
if (sepPos1 == nullptr)
|
||||
{
|
||||
// The separator wasn't found
|
||||
if (feof(file))
|
||||
{
|
||||
// End of file reached -> read from start
|
||||
fseek(file, 2, SEEK_SET);
|
||||
len = fread(buffer, sizeof(BYTE), BUFFER_SIZE, file);
|
||||
buffer[len] = 0;
|
||||
buffer[len + 1] = 0;
|
||||
sepPos1 = wBuffer;
|
||||
}
|
||||
// else continue reading
|
||||
}
|
||||
else
|
||||
{
|
||||
sepPos1 += measure->separator.size();
|
||||
}
|
||||
}
|
||||
while (sepPos1 == nullptr);
|
||||
|
||||
// Find the second separator
|
||||
do
|
||||
{
|
||||
sepPos2 = wcsstr(sepPos1, measure->separator.c_str());
|
||||
if (sepPos2 == nullptr)
|
||||
{
|
||||
// The separator wasn't found
|
||||
if (feof(file))
|
||||
{
|
||||
// End of file reached -> read the rest
|
||||
measure->value += sepPos1;
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
measure->value += sepPos1;
|
||||
|
||||
// else continue reading
|
||||
size_t len = fread(buffer, sizeof(BYTE), BUFFER_SIZE, file);
|
||||
buffer[len] = 0;
|
||||
buffer[len + 1] = 0;
|
||||
sepPos1 = wBuffer;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (sepPos2)
|
||||
{
|
||||
*sepPos2 = 0;
|
||||
}
|
||||
|
||||
// Read until we find the second separator
|
||||
measure->value += sepPos1;
|
||||
}
|
||||
}
|
||||
while (sepPos2 == nullptr);
|
||||
}
|
||||
else
|
||||
{
|
||||
// It's ascii
|
||||
char* aBuffer = (char*)buffer;
|
||||
|
||||
const std::string separator = StringUtil::Narrow(measure->separator);
|
||||
const char* separatorSz = separator.c_str();
|
||||
|
||||
// Read until we find the first separator
|
||||
char* sepPos1 = nullptr;
|
||||
char* sepPos2 = nullptr;
|
||||
do
|
||||
{
|
||||
size_t len = fread(buffer, sizeof(char), BUFFER_SIZE, file);
|
||||
aBuffer[len] = 0;
|
||||
|
||||
sepPos1 = strstr(aBuffer, separatorSz);
|
||||
if (sepPos1 == nullptr)
|
||||
{
|
||||
// The separator wasn't found
|
||||
if (feof(file))
|
||||
{
|
||||
// End of file reached -> read from start
|
||||
fseek(file, 0, SEEK_SET);
|
||||
len = fread(buffer, sizeof(char), BUFFER_SIZE, file);
|
||||
aBuffer[len] = 0;
|
||||
sepPos1 = aBuffer;
|
||||
}
|
||||
// else continue reading
|
||||
}
|
||||
else
|
||||
{
|
||||
sepPos1 += separator.size();
|
||||
}
|
||||
}
|
||||
while (sepPos1 == nullptr);
|
||||
|
||||
// Find the second separator
|
||||
do
|
||||
{
|
||||
sepPos2 = strstr(sepPos1, separatorSz);
|
||||
if (sepPos2 == nullptr)
|
||||
{
|
||||
// The separator wasn't found
|
||||
if (feof(file))
|
||||
{
|
||||
// End of file reached -> read the rest
|
||||
measure->value += StringUtil::Widen(sepPos1);
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
measure->value += StringUtil::Widen(sepPos1);
|
||||
|
||||
// else continue reading
|
||||
size_t len = fread(buffer, sizeof(char), BUFFER_SIZE, file);
|
||||
aBuffer[len] = 0;
|
||||
sepPos1 = aBuffer;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (sepPos2)
|
||||
{
|
||||
*sepPos2 = 0;
|
||||
}
|
||||
|
||||
// Read until we find the second separator
|
||||
measure->value += StringUtil::Widen(sepPos1);
|
||||
}
|
||||
}
|
||||
while (sepPos2 == nullptr);
|
||||
}
|
||||
}
|
||||
|
||||
fclose(file);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// Select the filename
|
||||
measure->value = measure->files[rand() % measure->files.size()];
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
PLUGIN_EXPORT LPCWSTR GetString(void* data)
|
||||
{
|
||||
MeasureData* measure = (MeasureData*)data;
|
||||
return measure->value.c_str();
|
||||
}
|
||||
|
||||
PLUGIN_EXPORT void Finalize(void* data)
|
||||
{
|
||||
MeasureData* measure = (MeasureData*)data;
|
||||
delete measure;
|
||||
/*
|
||||
Copyright (C) 2005 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.
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <time.h>
|
||||
#include <shlwapi.h>
|
||||
#include "../API/RainmeterAPI.h"
|
||||
#include "../../Common/StringUtil.h"
|
||||
|
||||
#define BUFFER_SIZE 4096
|
||||
|
||||
struct MeasureData
|
||||
{
|
||||
std::wstring pathname;
|
||||
std::wstring separator;
|
||||
std::vector<std::wstring> files;
|
||||
std::wstring value;
|
||||
};
|
||||
|
||||
void ScanFolder(std::vector<std::wstring>& files, std::vector<std::wstring>& filters, bool bSubfolders, const std::wstring& path)
|
||||
{
|
||||
// Get folder listing
|
||||
WIN32_FIND_DATA fileData; // Data structure describes the file found
|
||||
HANDLE hSearch; // Search handle returned by FindFirstFile
|
||||
|
||||
std::wstring searchPath = path + L"*";
|
||||
|
||||
hSearch = FindFirstFile(searchPath.c_str(), &fileData);
|
||||
if (hSearch == INVALID_HANDLE_VALUE) return; // No more files found
|
||||
|
||||
do
|
||||
{
|
||||
if (fileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
|
||||
{
|
||||
if (bSubfolders &&
|
||||
wcscmp(fileData.cFileName, L".") != 0 &&
|
||||
wcscmp(fileData.cFileName, L"..") != 0)
|
||||
{
|
||||
ScanFolder(files, filters, bSubfolders, path + fileData.cFileName + L"\\");
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!filters.empty())
|
||||
{
|
||||
for (size_t i = 0; i < filters.size(); ++i)
|
||||
{
|
||||
if (!filters[i].empty() && PathMatchSpec(fileData.cFileName, filters[i].c_str()))
|
||||
{
|
||||
files.push_back(path + fileData.cFileName);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
files.push_back(path + fileData.cFileName);
|
||||
}
|
||||
}
|
||||
}
|
||||
while (FindNextFile(hSearch, &fileData));
|
||||
|
||||
FindClose(hSearch);
|
||||
}
|
||||
|
||||
PLUGIN_EXPORT void Initialize(void** data, void* rm)
|
||||
{
|
||||
MeasureData* measure = new MeasureData;
|
||||
*data = measure;
|
||||
}
|
||||
|
||||
PLUGIN_EXPORT void Reload(void* data, void* rm, double* maxValue)
|
||||
{
|
||||
MeasureData* measure = (MeasureData*)data;
|
||||
|
||||
measure->pathname = RmReadPath(rm, L"PathName", L"");
|
||||
|
||||
if (PathIsDirectory(measure->pathname.c_str()))
|
||||
{
|
||||
std::vector<std::wstring> fileFilters;
|
||||
LPCWSTR filter = RmReadString(rm, L"FileFilter", L"");
|
||||
if (*filter)
|
||||
{
|
||||
std::wstring ext = filter;
|
||||
|
||||
size_t start = 0;
|
||||
size_t pos = ext.find(L';');
|
||||
while (pos != std::wstring::npos)
|
||||
{
|
||||
fileFilters.push_back(ext.substr(start, pos - start));
|
||||
start = pos + 1;
|
||||
pos = ext.find(L';', pos + 1);
|
||||
}
|
||||
fileFilters.push_back(ext.substr(start));
|
||||
}
|
||||
|
||||
if (measure->pathname[measure->pathname.size() - 1] != L'\\')
|
||||
{
|
||||
measure->pathname += L"\\";
|
||||
}
|
||||
|
||||
// Scan files
|
||||
measure->files.clear();
|
||||
bool bSubfolders = RmReadInt(rm, L"Subfolders", 1) == 1;
|
||||
ScanFolder(measure->files, fileFilters, bSubfolders, measure->pathname);
|
||||
}
|
||||
else
|
||||
{
|
||||
measure->separator = RmReadString(rm, L"Separator", L"\n");
|
||||
}
|
||||
|
||||
srand((unsigned)time(nullptr));
|
||||
}
|
||||
|
||||
PLUGIN_EXPORT double Update(void* data)
|
||||
{
|
||||
MeasureData* measure = (MeasureData*)data;
|
||||
|
||||
if (measure->files.empty())
|
||||
{
|
||||
BYTE buffer[BUFFER_SIZE + 2];
|
||||
buffer[BUFFER_SIZE] = 0;
|
||||
|
||||
// Read the file
|
||||
FILE* file = _wfopen(measure->pathname.c_str(), L"r");
|
||||
if (file)
|
||||
{
|
||||
// Check if the file is unicode or ascii
|
||||
fread(buffer, sizeof(WCHAR), 1, file);
|
||||
|
||||
fseek(file, 0, SEEK_END);
|
||||
long size = ftell(file);
|
||||
|
||||
if (size > 0)
|
||||
{
|
||||
// Go to a random place
|
||||
int pos = rand() % size;
|
||||
fseek(file, (pos / 2) * 2, SEEK_SET);
|
||||
|
||||
measure->value.clear();
|
||||
|
||||
if (0xFEFF == *(WCHAR*)buffer)
|
||||
{
|
||||
// It's unicode
|
||||
WCHAR* wBuffer = (WCHAR*)buffer;
|
||||
|
||||
// Read until we find the first separator
|
||||
WCHAR* sepPos1 = nullptr;
|
||||
WCHAR* sepPos2 = nullptr;
|
||||
do
|
||||
{
|
||||
size_t len = fread(buffer, sizeof(BYTE), BUFFER_SIZE, file);
|
||||
buffer[len] = 0;
|
||||
buffer[len + 1] = 0;
|
||||
|
||||
sepPos1 = wcsstr(wBuffer, measure->separator.c_str());
|
||||
if (sepPos1 == nullptr)
|
||||
{
|
||||
// The separator wasn't found
|
||||
if (feof(file))
|
||||
{
|
||||
// End of file reached -> read from start
|
||||
fseek(file, 2, SEEK_SET);
|
||||
len = fread(buffer, sizeof(BYTE), BUFFER_SIZE, file);
|
||||
buffer[len] = 0;
|
||||
buffer[len + 1] = 0;
|
||||
sepPos1 = wBuffer;
|
||||
}
|
||||
// else continue reading
|
||||
}
|
||||
else
|
||||
{
|
||||
sepPos1 += measure->separator.size();
|
||||
}
|
||||
}
|
||||
while (sepPos1 == nullptr);
|
||||
|
||||
// Find the second separator
|
||||
do
|
||||
{
|
||||
sepPos2 = wcsstr(sepPos1, measure->separator.c_str());
|
||||
if (sepPos2 == nullptr)
|
||||
{
|
||||
// The separator wasn't found
|
||||
if (feof(file))
|
||||
{
|
||||
// End of file reached -> read the rest
|
||||
measure->value += sepPos1;
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
measure->value += sepPos1;
|
||||
|
||||
// else continue reading
|
||||
size_t len = fread(buffer, sizeof(BYTE), BUFFER_SIZE, file);
|
||||
buffer[len] = 0;
|
||||
buffer[len + 1] = 0;
|
||||
sepPos1 = wBuffer;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (sepPos2)
|
||||
{
|
||||
*sepPos2 = 0;
|
||||
}
|
||||
|
||||
// Read until we find the second separator
|
||||
measure->value += sepPos1;
|
||||
}
|
||||
}
|
||||
while (sepPos2 == nullptr);
|
||||
}
|
||||
else
|
||||
{
|
||||
// It's ascii
|
||||
char* aBuffer = (char*)buffer;
|
||||
|
||||
const std::string separator = StringUtil::Narrow(measure->separator);
|
||||
const char* separatorSz = separator.c_str();
|
||||
|
||||
// Read until we find the first separator
|
||||
char* sepPos1 = nullptr;
|
||||
char* sepPos2 = nullptr;
|
||||
do
|
||||
{
|
||||
size_t len = fread(buffer, sizeof(char), BUFFER_SIZE, file);
|
||||
aBuffer[len] = 0;
|
||||
|
||||
sepPos1 = strstr(aBuffer, separatorSz);
|
||||
if (sepPos1 == nullptr)
|
||||
{
|
||||
// The separator wasn't found
|
||||
if (feof(file))
|
||||
{
|
||||
// End of file reached -> read from start
|
||||
fseek(file, 0, SEEK_SET);
|
||||
len = fread(buffer, sizeof(char), BUFFER_SIZE, file);
|
||||
aBuffer[len] = 0;
|
||||
sepPos1 = aBuffer;
|
||||
}
|
||||
// else continue reading
|
||||
}
|
||||
else
|
||||
{
|
||||
sepPos1 += separator.size();
|
||||
}
|
||||
}
|
||||
while (sepPos1 == nullptr);
|
||||
|
||||
// Find the second separator
|
||||
do
|
||||
{
|
||||
sepPos2 = strstr(sepPos1, separatorSz);
|
||||
if (sepPos2 == nullptr)
|
||||
{
|
||||
// The separator wasn't found
|
||||
if (feof(file))
|
||||
{
|
||||
// End of file reached -> read the rest
|
||||
measure->value += StringUtil::Widen(sepPos1);
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
measure->value += StringUtil::Widen(sepPos1);
|
||||
|
||||
// else continue reading
|
||||
size_t len = fread(buffer, sizeof(char), BUFFER_SIZE, file);
|
||||
aBuffer[len] = 0;
|
||||
sepPos1 = aBuffer;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (sepPos2)
|
||||
{
|
||||
*sepPos2 = 0;
|
||||
}
|
||||
|
||||
// Read until we find the second separator
|
||||
measure->value += StringUtil::Widen(sepPos1);
|
||||
}
|
||||
}
|
||||
while (sepPos2 == nullptr);
|
||||
}
|
||||
}
|
||||
|
||||
fclose(file);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// Select the filename
|
||||
measure->value = measure->files[rand() % measure->files.size()];
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
PLUGIN_EXPORT LPCWSTR GetString(void* data)
|
||||
{
|
||||
MeasureData* measure = (MeasureData*)data;
|
||||
return measure->value.c_str();
|
||||
}
|
||||
|
||||
PLUGIN_EXPORT void Finalize(void* data)
|
||||
{
|
||||
MeasureData* measure = (MeasureData*)data;
|
||||
delete measure;
|
||||
}
|
Reference in New Issue
Block a user