From a075d35ca850f06170553d17ca464f0f5feadd97 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 8 Oct 2013 18:28:51 +0000 Subject: separate Folders handles removed from protocols git-svn-id: http://svn.miranda-ng.org/main/trunk@6405 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/modules/utils/path.cpp | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) (limited to 'src/modules/utils/path.cpp') diff --git a/src/modules/utils/path.cpp b/src/modules/utils/path.cpp index 8eebd9ef09..74d12bd3ba 100644 --- a/src/modules/utils/path.cpp +++ b/src/modules/utils/path.cpp @@ -24,9 +24,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "..\..\core\commonheaders.h" #include "../database/profilemanager.h" -extern TCHAR g_profileDir[MAX_PATH]; +#include "..\..\..\plugins\ExternalAPI\m_folders.h" -static INT_PTR replaceVars(WPARAM wParam, LPARAM lParam); +extern TCHAR g_profileDir[MAX_PATH], g_profileRoot[MAX_PATH]; + +static HANDLE hAvatarFolder; static INT_PTR pathToRelative(WPARAM wParam, LPARAM lParam) { @@ -162,22 +164,18 @@ static __forceinline char *GetProfileNameX(char *) } static __forceinline char *GetPathVarX(char *, int code) { - TCHAR szFullPath[MAX_PATH], szProfileName[MAX_PATH]; - _tcscpy(szProfileName, g_profileName); - _tcslwr(szProfileName); - TCHAR *pos = _tcsrchr(szProfileName, '.'); - if (lstrcmp(pos, _T(".dat")) == 0) - *pos = 0; + TCHAR szFullPath[MAX_PATH]; switch(code) { case 1: - mir_sntprintf(szFullPath, SIZEOF(szFullPath), _T("%s\\%s\\AvatarCache"), g_profileDir, szProfileName); + if (hAvatarFolder == NULL || FoldersGetCustomPathT(hAvatarFolder, szFullPath, SIZEOF(szFullPath), _T(""))) + mir_sntprintf(szFullPath, SIZEOF(szFullPath), _T("%s\\AvatarCache"), g_profileRoot); break; case 2: - mir_sntprintf(szFullPath, SIZEOF(szFullPath), _T("%s\\%s\\Logs"), g_profileDir, szProfileName); + mir_sntprintf(szFullPath, SIZEOF(szFullPath), _T("%s\\Logs"), g_profileRoot); break; case 3: - mir_sntprintf(szFullPath, SIZEOF(szFullPath), _T("%s\\%s"), g_profileDir, szProfileName); + _tcsncpy_s(szFullPath, SIZEOF(szFullPath), g_profileRoot, _TRUNCATE); break; } return makeFileName(szFullPath); @@ -244,21 +242,18 @@ static __forceinline TCHAR *GetProfileNameX(TCHAR *) } static __forceinline TCHAR *GetPathVarX(TCHAR *, int code) { - TCHAR szFullPath[MAX_PATH], szProfileName[MAX_PATH]; - _tcscpy(szProfileName, g_profileName); - TCHAR *pos = _tcsrchr(szProfileName, '.'); - if (lstrcmp(pos, _T(".dat")) == 0) - *pos = 0; + TCHAR szFullPath[MAX_PATH]; switch(code) { case 1: - mir_sntprintf(szFullPath, SIZEOF(szFullPath), _T("%s\\%s\\AvatarCache"), g_profileDir, szProfileName); + if (hAvatarFolder == NULL || FoldersGetCustomPathT(hAvatarFolder, szFullPath, SIZEOF(szFullPath), _T(""))) + mir_sntprintf(szFullPath, SIZEOF(szFullPath), _T("%s\\AvatarCache"), g_profileRoot); break; case 2: - mir_sntprintf(szFullPath, SIZEOF(szFullPath), _T("%s\\%s\\Logs"), g_profileDir, szProfileName); + mir_sntprintf(szFullPath, SIZEOF(szFullPath), _T("%s\\Logs"), g_profileRoot); break; case 3: - mir_sntprintf(szFullPath, SIZEOF(szFullPath), _T("%s\\%s"), g_profileDir, szProfileName); + _tcsncpy_s(szFullPath, SIZEOF(szFullPath), g_profileRoot, _TRUNCATE); break; } return mir_tstrdup(szFullPath); @@ -394,6 +389,13 @@ static INT_PTR replaceVars(WPARAM wParam, LPARAM lParam) return (INT_PTR)ReplaceVariables((char *)wParam, data); } +void InitPathVar() +{ + TCHAR szFullPath[MAX_PATH]; + mir_sntprintf(szFullPath, SIZEOF(szFullPath), _T("%s\\AvatarCache"), g_profileRoot); + hAvatarFolder = FoldersRegisterCustomPathT( LPGEN("Avatars"), LPGEN("Avatars root folder"), szFullPath); +} + int InitPathUtils(void) { CreateServiceFunction(MS_UTILS_PATHTORELATIVE, pathToRelative); -- cgit v1.2.3