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 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
|
/*----------------------------------------------------------------------------
libtunepimp -- The MusicBrainz tagging library.
Let a thousand taggers bloom!
Copyright (C) Robert Kaye 2003
This file is part of libtunepimp.
libtunepimp 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.
libtunepimp 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 libtunepimp if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
$Id: fileio_win32.cpp 7953 2006-06-27 21:56:47Z luks $
----------------------------------------------------------------------------*/
#include <assert.h>
#include <errno.h>
#include <string>
#include <windows.h>
#include <io.h>
#include <direct.h>
using namespace std;
#include "../config_win32.h"
#include "utf8/utf8.h"
#include "fileio.h"
static int uniqueId = 0;
#define DB printf("%s:%d\n", __FILE__, __LINE__);
static inline int
unicodeFileNames(void)
{
static int canusewide = -1;
if (canusewide == -1) {
/* As per doc for ::GetVersion(), this is the correct test for
the Windows NT family. */
canusewide = (GetVersion() < 0x80000000) ? 1 : 0;
}
return canusewide;
}
static inline string
makeUnicodePath(const char *path)
{
if ((path[0] == '\\') && (path[1] == '\\'))
return string("\\\\?\\UNC\\") + string(path);
else
return string("\\\\?\\") + string(path);
}
#ifdef __cplusplus
extern "C"
{
#endif
static const char *dirSep = "\\";
static const char dirSepChar = '\\';
static int copyAndDelete(const char *from, const char *to, const char *encoding);
#define BUF_SIZE 4096
// For some reason MSVC++ can't find the prototype for this function
//int access(const char *, int);
#define F_OK 0
typedef struct _modeMapping
{
char *code;
int flags;
int dwCreationDispositionIsALousyName;
} modeMapping;
const int numModeMappings = 6;
const modeMapping modeMappings[numModeMappings] =
{
{ "r", GENERIC_READ, OPEN_EXISTING },
{ "r+", GENERIC_READ | GENERIC_WRITE, OPEN_EXISTING },
{ "w", GENERIC_WRITE, CREATE_ALWAYS },
{ "w+", GENERIC_READ | GENERIC_WRITE, CREATE_ALWAYS },
{ "a", GENERIC_WRITE, OPEN_ALWAYS },
{ "a+", GENERIC_READ | GENERIC_WRITE, OPEN_ALWAYS }
};
TFILE *topen(const char *path, const char *modeArg, const char *encoding)
{
HANDLE fh = INVALID_HANDLE_VALUE;
int i;
char *ptr, mode[12];
strcpy(mode, modeArg);
ptr = strchr(mode, 'b');
if (ptr)
memmove(ptr, ptr+1, strlen(ptr));
for(i = 0; i < numModeMappings; i++)
if (strcmp(mode, modeMappings[i].code) == 0)
break;
assert(i != numModeMappings);
// NT/2k/XP
if (unicodeFileNames())
{
string fileName = makeUnicodePath(path);
LPWSTR wFileName = new WCHAR[fileName.size() + 1];
MultiByteToWideChar(CP_UTF8, 0, fileName.c_str(), -1, wFileName, fileName.size() + 1);
fh = CreateFileW(wFileName, modeMappings[i].flags, 0, NULL,
modeMappings[i].dwCreationDispositionIsALousyName, 0, NULL);
delete [] wFileName;
}
// Me/9x
else
{
LPSTR fileName = NULL;
if (!utf8_decode(path, &fileName))
{
fh = CreateFileA(fileName, modeMappings[i].flags, 0, NULL,
modeMappings[i].dwCreationDispositionIsALousyName, 0, NULL);
free(fileName);
}
}
if (fh == INVALID_HANDLE_VALUE)
return (TFILE*)NULL;
if (strchr(mode, 'a'))
SetFilePointer(fh, 0, NULL, FILE_END);
return (TFILE *)fh;
}
size_t tread(void *ptr, size_t size, size_t nmemb, TFILE *stream)
{
DWORD numRead;
if (nmemb == 0)
return 0;
ReadFile((HANDLE)stream, ptr, (DWORD)size * (DWORD)nmemb, &numRead, NULL);
return numRead / (DWORD)size;
}
size_t twrite(const void *ptr, size_t size, size_t nmemb, TFILE *stream)
{
DWORD numRead;
if (nmemb == 0)
return 0;
WriteFile((HANDLE)stream, ptr, (DWORD)size * (DWORD)nmemb, &numRead, NULL);
return numRead / (DWORD)size;
}
int tseek(TFILE *stream, long offset, int whence)
{
DWORD newPos;
newPos = SetFilePointer((HANDLE)stream, offset, NULL, whence);
if (newPos == INVALID_SET_FILE_POINTER)
return -1;
return 0;
}
long ttell(TFILE *stream)
{
DWORD ret;
ret = SetFilePointer((HANDLE)stream, 0, NULL, FILE_CURRENT);
if (ret == INVALID_SET_FILE_POINTER)
return -1;
return ret;
}
int tclose(TFILE *stream)
{
return (int)CloseHandle((HANDLE)stream) - 1;
}
int tflush(TFILE *stream)
{
return (int)FlushFileBuffers((HANDLE)stream) - 1;
}
int tunlink(const char *pathname, const char *encoding)
{
int ret = 0;
// NT/2k/XP
if (unicodeFileNames())
{
string newFileName = makeUnicodePath(pathname);
LPWSTR wFileName = new WCHAR[newFileName.size() + 1];
MultiByteToWideChar(CP_UTF8, 0, newFileName.c_str(), -1, wFileName, newFileName.size() + 1);
ret = (int)DeleteFileW(wFileName);
delete [] wFileName;
}
// Me/9x
else
{
LPSTR fileName;
if (!utf8_decode(pathname, &fileName))
{
ret = (int)DeleteFileA(fileName);
free(fileName);
}
}
return ret - 1;
}
int trename(const char *oldpath, const char *newpath, const char *encoding)
{
int ret = 0;
// NT/2k/XP
if (unicodeFileNames())
{
string newFileName = makeUnicodePath(newpath);
string oldFileName = makeUnicodePath(oldpath);
LPWSTR wNewFileName = new WCHAR[newFileName.size() + 1];
LPWSTR wOldFileName = new WCHAR[oldFileName.size() + 1];
MultiByteToWideChar(CP_UTF8, 0, newFileName.c_str(), -1, wNewFileName, newFileName.size() + 1);
MultiByteToWideChar(CP_UTF8, 0, oldFileName.c_str(), -1, wOldFileName, oldFileName.size() + 1);
ret = MoveFileW(wOldFileName, wNewFileName);
delete [] wNewFileName;
delete [] wOldFileName;
}
// Me/9x
else
{
LPSTR newFileName = NULL;
LPSTR oldFileName = NULL;
if (!utf8_decode(newpath, &newFileName))
{
if (!utf8_decode(oldpath, &oldFileName))
{
ret = MoveFileA(oldFileName, newFileName);
free(oldFileName);
}
free(newFileName);
}
}
if (!ret && GetLastError() == ERROR_FILE_EXISTS)
errno = EEXIST;
if (!ret && GetLastError() == ERROR_NOT_SAME_DEVICE)
return copyAndDelete(oldpath, newpath, encoding);
return (int)ret - 1;
}
int tmkdir(const char *pathname, const char *encoding)
{
int ret = 0;
// NT/2k/XP
if (unicodeFileNames())
{
string newFileName = makeUnicodePath(pathname);
LPWSTR wFileName = new WCHAR[newFileName.size() + 1];
MultiByteToWideChar(CP_UTF8, 0, newFileName.c_str(), -1, wFileName, newFileName.size() + 1);
ret = (int)CreateDirectoryW(wFileName, NULL);
delete [] wFileName;
}
// Me/9x
else
{
LPSTR fileName;
if (!utf8_decode(pathname, &fileName))
{
ret = (int)CreateDirectoryA(fileName, NULL);
free(fileName);
}
}
if (ret == 0 && GetLastError() == ERROR_ALREADY_EXISTS)
ret = 1;
return (int)ret - 1;
}
int trmdir(const char *pathname, const char *encoding)
{
int ret = 0;
// NT/2k/XP
if (unicodeFileNames())
{
string newFileName = makeUnicodePath(pathname);
LPWSTR wFileName = new WCHAR[newFileName.size() + 1];
MultiByteToWideChar(CP_UTF8, 0, newFileName.c_str(), -1, wFileName, newFileName.size() + 1);
ret = (int)RemoveDirectoryW(wFileName);
delete [] wFileName;
}
// Me/9x
else
{
LPSTR fileName;
if (!utf8_decode(pathname, &fileName))
{
ret = (int)RemoveDirectoryA(fileName);
free(fileName);
}
}
return (int)ret - 1;
}
int taccess(const char *pathname, int mode, const char *encoding)
{
DWORD ret = INVALID_FILE_ATTRIBUTES;
assert(mode == F_OK);
// NT/2k/XP
if (unicodeFileNames())
{
string newFileName = makeUnicodePath(pathname);
LPWSTR wFileName = new WCHAR[newFileName.size() + 1];
MultiByteToWideChar(CP_UTF8, 0, newFileName.c_str(), -1, wFileName, newFileName.size() + 1);
ret = GetFileAttributesW(wFileName);
delete [] wFileName;
}
// Me/9x
else
{
LPSTR fileName;
if (!utf8_decode(pathname, &fileName))
{
ret = (int)GetFileAttributesA(fileName);
free(fileName);
}
}
return (ret == INVALID_FILE_ATTRIBUTES) ? -1 : 0;
}
void tmktempname(const char *path, char *newPath, int newPathLen)
{
char *ptr, *temp;
temp = (char *)malloc(strlen(path) + 32);
ptr = strrchr((char *)path, dirSepChar);
if (ptr)
{
int len = (int)(ptr - path);
strncpy(temp, path, len);
temp[len] = 0;
}
else
strcpy(temp, ".");
strcat(temp, dirSep);
sprintf(temp + strlen(temp), "libtp%d%d.temp", (int)GetCurrentProcessId(), uniqueId++);
strncpy(newPath, temp, newPathLen - 1);
newPath[newPathLen - 1] = 0;
free(temp);
}
//---------------------------------------------------------------------------
static int copyAndDelete(const char *from, const char *to, const char *encoding)
{
TFILE *in, *out;
int ret = 0;
errno = 0;
in = topen(from, "rb", encoding);
if (in == NULL)
return -1;
out = topen(to, "wb", encoding);
if (out == NULL)
{
tclose(in);
return -1;
}
char *buf = new char[BUF_SIZE];
for(;;)
{
int numRead = tread(buf, sizeof(char), BUF_SIZE, in);
if (numRead <= 0)
break;
int numWritten = twrite(buf, sizeof(char), numRead, out);
if (numWritten != numRead)
{
//err = string("Could not write file to destination directory. Disk full?");
ret = -1;
break;
}
}
tclose(in);
tclose(out);
delete [] buf;
if (ret == 0)
{
ret = tunlink(from, encoding);
if (ret < 0)
{
//err = string("Could remove old file: '") + from + string("'.");
tunlink(to, encoding);
}
}
return ret;
}
#ifdef __cplusplus
}
#endif
|