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
|
/*
Miranda NG: the free IM client for Microsoft* Windows*
Copyright (c) 2012-14 Miranda NG project (http://miranda-ng.org),
Copyright (c) 2000-12 Miranda IM project,
all portions of this codebase are copyrighted to the people
listed in contributors.txt.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "commonheaders.h"
static char szMirandaPath[MAX_PATH];
static WCHAR szMirandaPathW[MAX_PATH];
/////////////////////////////////////////////////////////////////////////////////////////
MIR_CORE_DLL(int) PathIsAbsolute(const char *path)
{
if (path && strlen(path) > 2)
if ((path[1] == ':' && path[2] == '\\') || (path[0] == '\\' && path[1] == '\\'))
return 1;
return 0;
}
MIR_CORE_DLL(int) PathToRelative(const char *pSrc, char *pOut, const char *pBase)
{
if (!pSrc || !pSrc[0] || strlen(pSrc) > MAX_PATH)
return 0;
if (!PathIsAbsolute(pSrc))
strncpy_s(pOut, MAX_PATH, pSrc, _TRUNCATE);
else {
if (pBase == NULL)
pBase = szMirandaPath;
size_t cbBaseLen = strlen(pBase);
if (!strnicmp(pSrc, pBase, cbBaseLen))
strncpy_s(pOut, MAX_PATH, pSrc + cbBaseLen, _TRUNCATE);
else
strncpy_s(pOut, MAX_PATH, pSrc, _TRUNCATE);
}
return (int)strlen(pOut);
}
MIR_CORE_DLL(int) PathToAbsolute(const char *pSrc, char *pOut, const char *base)
{
if (!pSrc || !pSrc[0] || strlen(pSrc) > MAX_PATH) {
*pOut = 0;
return 0;
}
char buf[MAX_PATH];
if (pSrc[0] < ' ')
return mir_snprintf(pOut, MAX_PATH, "%s", pSrc);
if (PathIsAbsolute(pSrc))
return GetFullPathNameA(pSrc, MAX_PATH, pOut, NULL);
if (base == NULL)
base = szMirandaPath;
if (pSrc[0] == '\\')
pSrc++;
mir_snprintf(buf, MAX_PATH, "%s%s", base, pSrc);
return GetFullPathNameA(buf, MAX_PATH, pOut, NULL);
}
MIR_CORE_DLL(void) CreatePathToFile(char *szFilePath)
{
char *pszLastBackslash = strrchr(szFilePath, '\\');
if (pszLastBackslash == NULL)
return;
*pszLastBackslash = '\0';
CreateDirectoryTree(szFilePath);
*pszLastBackslash = '\\';
}
MIR_CORE_DLL(int) CreateDirectoryTree(const char *szDir)
{
char szTestDir[MAX_PATH];
lstrcpynA(szTestDir, szDir, SIZEOF(szTestDir));
DWORD dwAttributes = GetFileAttributesA(szTestDir);
if (dwAttributes != INVALID_FILE_ATTRIBUTES && (dwAttributes & FILE_ATTRIBUTE_DIRECTORY))
return 0;
char *pszLastBackslash = strrchr(szTestDir, '\\');
if (pszLastBackslash == NULL)
return 0;
*pszLastBackslash = '\0';
CreateDirectoryTree(szTestDir);
*pszLastBackslash = '\\';
return (CreateDirectoryA(szTestDir, NULL) == 0) ? GetLastError() : 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
MIR_CORE_DLL(int) PathIsAbsoluteW(const WCHAR *path)
{
if (path && wcslen(path) > 2)
if ((path[1] == ':' && path[2] == '\\') || (path[0] == '\\' && path[1] == '\\'))
return 1;
return 0;
}
MIR_CORE_DLL(int) PathToRelativeW(const WCHAR *pSrc, WCHAR *pOut, const WCHAR *pBase)
{
if (!pSrc || !pSrc[0] || wcslen(pSrc) > MAX_PATH)
return 0;
if (!PathIsAbsoluteW(pSrc))
wcsncpy_s(pOut, MAX_PATH, pSrc, _TRUNCATE);
else {
if (pBase == NULL)
pBase = szMirandaPathW;
size_t cbBaseLen = wcslen(pBase);
if (!wcsnicmp(pSrc, pBase, cbBaseLen))
wcsncpy_s(pOut, MAX_PATH, pSrc + cbBaseLen, _TRUNCATE);
else
wcsncpy_s(pOut, MAX_PATH, pSrc, _TRUNCATE);
}
return (int)wcslen(pOut);
}
MIR_CORE_DLL(int) PathToAbsoluteW(const WCHAR *pSrc, WCHAR *pOut, const WCHAR *base)
{
if (!pSrc || !pSrc[0] || wcslen(pSrc) > MAX_PATH) {
*pOut = 0;
return 0;
}
WCHAR buf[MAX_PATH];
if (pSrc[0] < ' ')
return mir_sntprintf(pOut, MAX_PATH, _T("%s"), pSrc);
if (PathIsAbsoluteW(pSrc))
return GetFullPathName(pSrc, MAX_PATH, pOut, NULL);
if (base == NULL)
base = szMirandaPathW;
if (pSrc[0] == '\\')
pSrc++;
mir_sntprintf(buf, MAX_PATH, _T("%s%s"), base, pSrc);
return GetFullPathName(buf, MAX_PATH, pOut, NULL);
}
MIR_CORE_DLL(void) CreatePathToFileW(WCHAR *wszFilePath)
{
WCHAR *pszLastBackslash = wcsrchr(wszFilePath, '\\');
if (pszLastBackslash == NULL)
return;
*pszLastBackslash = '\0';
CreateDirectoryTreeW(wszFilePath);
*pszLastBackslash = '\\';
}
MIR_CORE_DLL(int) CreateDirectoryTreeW(const WCHAR *szDir)
{
WCHAR szTestDir[MAX_PATH];
lstrcpynW(szTestDir, szDir, SIZEOF(szTestDir));
DWORD dwAttributes = GetFileAttributesW(szTestDir);
if (dwAttributes != INVALID_FILE_ATTRIBUTES && (dwAttributes & FILE_ATTRIBUTE_DIRECTORY))
return 0;
WCHAR *pszLastBackslash = wcsrchr(szTestDir, '\\');
if (pszLastBackslash == NULL)
return 0;
*pszLastBackslash = '\0';
CreateDirectoryTreeW(szTestDir);
*pszLastBackslash = '\\';
return (CreateDirectoryW(szTestDir, NULL) == 0) ? GetLastError() : 0;
}
int InitPathUtils(void)
{
GetModuleFileNameA(hInst, szMirandaPath, SIZEOF(szMirandaPath));
char *p = strrchr(szMirandaPath, '\\');
if (p)
p[1] = 0;
GetModuleFileNameW(hInst, szMirandaPathW, SIZEOF(szMirandaPathW));
WCHAR *tp = wcsrchr(szMirandaPathW, '\\');
if (tp)
tp[1] = 0;
return 0;
}
|