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 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755
|
/*****************************************************************************
* *
* PrimeSense PSCommon Library *
* Copyright (C) 2012 PrimeSense Ltd. *
* *
* This file is part of PSCommon. *
* *
* Licensed under the Apache License, Version 2.0 (the "License"); *
* you may not use this file except in compliance with the License. *
* You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
* *
*****************************************************************************/
//---------------------------------------------------------------------------
// Includes
//---------------------------------------------------------------------------
#include <XnOS.h>
#include <cstdlib>
#include <cerrno>
#include <shellapi.h>
//---------------------------------------------------------------------------
// Code
//---------------------------------------------------------------------------
XN_C_API XnStatus xnOSCountFiles(const XnChar* cpSearchPattern, XnInt32* pnFoundFiles)
{
// Local function variables
WIN32_FIND_DATA FindFileData;
XN_HANDLE hFind = NULL;
XnInt32 nFoundFiles = 0;
// Validate the input/output pointers (to make sure none of them is NULL)
XN_VALIDATE_INPUT_PTR(cpSearchPattern);
XN_VALIDATE_OUTPUT_PTR(pnFoundFiles);
// Reset the number of found files counter
*pnFoundFiles = 0;
// Get the first file matching the search pattern
hFind = FindFirstFile(cpSearchPattern, &FindFileData);
// Keep looking for files as long as we have enough space in the filelist and as long as we didnt reach the end (represented by Invalid Handle)
while (hFind != INVALID_HANDLE_VALUE)
{
// Increase the temporary number of found files counter
nFoundFiles++;
// Get the next file in the list. If there are no more, FindNextFile returns FALSE and the while loop is aborted
if (!FindNextFile(hFind, &FindFileData))
{
FindClose(hFind);
hFind = INVALID_HANDLE_VALUE;
}
}
// Close the find file list
FindClose(hFind);
// Write the temporary number of found files counter into the output
*pnFoundFiles = nFoundFiles;
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSGetFileList(const XnChar* cpSearchPattern, const XnChar* cpPrefixPath, XnChar cpFileList[][XN_FILE_MAX_PATH], const XnInt32 nMaxFiles, XnInt32* pnFoundFiles)
{
// Local function variables
WIN32_FIND_DATA FindFileData;
XN_HANDLE hFind = NULL;
XnInt32 nFoundFiles = 0;
// Validate the input/output pointers (to make sure none of them is NULL)
XN_VALIDATE_INPUT_PTR(cpSearchPattern);
XN_VALIDATE_OUTPUT_PTR(cpFileList);
XN_VALIDATE_OUTPUT_PTR(pnFoundFiles);
// Reset the number of found files counter
*pnFoundFiles = 0;
// Get the first file matching the search pattern
hFind = FindFirstFile(cpSearchPattern, &FindFileData);
// Keep looking for files as long as we have enough space in the filelist and as long as we didnt reach the end (represented by Invalid Handle)
while ((hFind != INVALID_HANDLE_VALUE) && (nFoundFiles < nMaxFiles))
{
// Copy the file string into its place in the file list
xnOSStrCopy(cpFileList[nFoundFiles], FindFileData.cFileName, XN_FILE_MAX_PATH);
if (cpPrefixPath != NULL)
{
xnOSStrPrefix(cpPrefixPath, cpFileList[nFoundFiles], XN_FILE_MAX_PATH);
}
// Increase the temporary number of found files counter
nFoundFiles++;
// Get the next file in the list. If there are no more, FindNextFile returns FALSE and the while loop is aborted
if (!FindNextFile(hFind, &FindFileData))
{
FindClose(hFind);
hFind = INVALID_HANDLE_VALUE;
}
}
// Close the find file list
FindClose(hFind);
// Return a file not found error if no files were found...
if (nFoundFiles == 0)
{
return (XN_STATUS_OS_FILE_NOT_FOUND);
}
// Write the temporary number of found files counter into the output
*pnFoundFiles = nFoundFiles;
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSOpenFile(const XnChar* cpFileName, const XnUInt32 nFlags, XN_FILE_HANDLE* pFile)
{
// Local function variables
XnUInt32 nOSOpenFlags = 0;
XnUInt32 nOSCreateFlags = OPEN_ALWAYS;
XnUInt32 nShareMode = FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE;
XnUInt32 nAttributes = FILE_ATTRIBUTE_NORMAL;
XnBool bFileExists = FALSE;
XnStatus nRetVal = XN_STATUS_OK;
// Validate the input/output pointers (to make sure none of them is NULL)
XN_VALIDATE_INPUT_PTR(cpFileName);
XN_VALIDATE_OUTPUT_PTR(pFile);
// Update the OS Create and Open flags according the user request
if (nFlags & XN_OS_FILE_READ)
{
// Add the generic read flags and also specify request that the file must exist
nOSCreateFlags = OPEN_EXISTING;
nOSOpenFlags |= GENERIC_READ;
}
if (nFlags & XN_OS_FILE_WRITE)
{
// Add the generic write flags
nOSOpenFlags |= GENERIC_WRITE;
}
if (nFlags & XN_OS_FILE_CREATE_NEW_ONLY)
{
// It's OK to create a new file, but fail if the file already exist
nOSCreateFlags = CREATE_NEW;
}
if (nFlags & XN_OS_FILE_TRUNCATE)
{
// If the file exists, we need to truncate it to zero
nRetVal = xnOSDoesFileExist(cpFileName, &bFileExists);
XN_IS_STATUS_OK(nRetVal);
if (bFileExists == TRUE)
{
nOSCreateFlags = TRUNCATE_EXISTING;
}
}
if ((nFlags & XN_OS_FILE_WRITE) && (nFlags & XN_OS_FILE_AUTO_FLUSH))
{
nAttributes |= FILE_FLAG_NO_BUFFERING;
nAttributes |= FILE_FLAG_WRITE_THROUGH;
}
// Open the file via the OS
*pFile = CreateFile(cpFileName, nOSOpenFlags, nShareMode, NULL, nOSCreateFlags, nAttributes, NULL);
// handle failure...
if (*pFile == INVALID_HANDLE_VALUE)
{
// Reset the user supplied handle
*pFile = NULL;
if ((nFlags & XN_OS_FILE_WRITE) && (nFlags & XN_OS_FILE_CREATE_NEW_ONLY))
{
// If the file was opened for write and a create new only flag was specified, this probably means the file already exist
return (XN_STATUS_OS_FILE_ALREDY_EXISTS);
}
else if (nFlags & XN_OS_FILE_WRITE)
{
// If the file was opened for write but without the create only flag, return a generic file open failure
return (XN_STATUS_OS_FILE_OPEN_FAILED);
}
else if (nFlags & XN_OS_FILE_READ)
{
// If the file was opened for read, this probably means the file doesn't exist
return (XN_STATUS_OS_FILE_NOT_FOUND);
}
}
if ((nFlags & XN_OS_FILE_WRITE) && (nFlags & XN_OS_FILE_APPEND))
{
nRetVal = xnOSSeekFile64(*pFile, XN_OS_SEEK_END, 0);
XN_IS_STATUS_OK(nRetVal);
// ZZZZ Add real error checking?
}
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSCloseFile(XN_FILE_HANDLE* pFile)
{
// Local function variables
XnBool bRetVal = FALSE;
// Validate the input/output pointers (to make sure none of them is NULL)
XN_VALIDATE_INPUT_PTR(pFile);
// Make sure the actual file handle isn't NULL
XN_RET_IF_NULL(*pFile, XN_STATUS_OS_INVALID_FILE);
// Close the file handle via the OS
bRetVal = CloseHandle(*pFile);
// Make sure it succeeded (return value is true)
if (bRetVal == TRUE)
{
// Reset the user supplied handle
*pFile = NULL;
// All is good...
return (XN_STATUS_OK);
}
else
{
// Something went wrong while trying to close the file...
return (XN_STATUS_OS_FILE_CLOSE_FAILED);
}
}
XN_C_API XnStatus xnOSReadFile(const XN_FILE_HANDLE File, void* pBuffer, XnUInt32* pnBufferSize)
{
// Note: The buffer will not always be filled to it's requested size. It's up to the caller to decide if this
// is a problem or not...
// Local function variables
XnBool bRetVal = FALSE;
// Validate the input/output pointers (to make sure none of them is NULL)
XN_VALIDATE_INPUT_PTR(pBuffer);
XN_VALIDATE_INPUT_PTR(pnBufferSize);
// Make sure the actual file handle isn't NULL
XN_RET_IF_NULL(File, XN_STATUS_OS_INVALID_FILE);
// Read a buffer from a file handle via the OS
bRetVal = ReadFile(File, pBuffer, *pnBufferSize, (DWORD*)pnBufferSize, NULL);
// Make sure it succeeded (return value is true)
if (bRetVal != TRUE)
{
return (XN_STATUS_OS_FILE_READ_FAILED);
}
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSWriteFile(const XN_FILE_HANDLE File, const void* pBuffer, const XnUInt32 nBufferSize)
{
// Local function variables
XnBool bRetVal = FALSE;
XnUInt32 nBytesToWrite = nBufferSize;
DWORD nBytesWritten = 0;
// Validate the input/output pointers (to make sure none of them is NULL)
XN_VALIDATE_OUTPUT_PTR(pBuffer);
// Make sure the actual file handle isn't NULL
XN_RET_IF_NULL(File, XN_STATUS_OS_INVALID_FILE);
// Write a buffer to a file handle via the OS
bRetVal = WriteFile(File, pBuffer, nBytesToWrite, &nBytesWritten, NULL);
// Make sure it succeeded (return value is true) and that the correct number of bytes were written
if ((bRetVal != TRUE) || (nBytesToWrite != nBytesWritten))
{
return (XN_STATUS_OS_FILE_WRITE_FAILED);
}
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSSeekFile(const XN_FILE_HANDLE File, const XnOSSeekType SeekType, const XnInt32 nOffset)
{
// Local function variables
DWORD nRealSeekType = 0;
DWORD nRetOffset = 0;
// Make sure the actual file handle isn't NULL
XN_RET_IF_NULL(File, XN_STATUS_OS_INVALID_FILE);
// Convert the ni seek type into OS seek type
switch (SeekType)
{
case XN_OS_SEEK_SET:
// Absolute seek from the file beginning
nRealSeekType = FILE_BEGIN;
break;
case XN_OS_SEEK_CUR:
// Relative seek from the current location
nRealSeekType = FILE_CURRENT;
break;
case XN_OS_SEEK_END:
// Absolute seek from the file ending
nRealSeekType = FILE_END;
break;
default:
return (XN_STATUS_OS_INVALID_SEEK_TYPE);
}
// Seek a file handle via the OS
nRetOffset = SetFilePointer(File, nOffset, NULL, nRealSeekType);
// Make sure it succeeded (return value is valid) and that we reached the expected file offset
if (nRetOffset == INVALID_SET_FILE_POINTER)
{
return (XN_STATUS_OS_FILE_SEEK_FAILED);
}
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSSeekFile64(const XN_FILE_HANDLE File, const XnOSSeekType SeekType, const XnInt64 nOffset)
{
// Local function variables
DWORD nRealSeekType = 0;
LARGE_INTEGER liPos;
BOOL bSucceeded = 0;
// Make sure the actual file handle isn't NULL
XN_RET_IF_NULL(File, XN_STATUS_OS_INVALID_FILE);
// Convert the ni seek type into OS seek type
switch (SeekType)
{
case XN_OS_SEEK_SET:
// Absolute seek from the file beginning
nRealSeekType = FILE_BEGIN;
break;
case XN_OS_SEEK_CUR:
// Relative seek from the current location
nRealSeekType = FILE_CURRENT;
break;
case XN_OS_SEEK_END:
// Absolute seek from the file ending
nRealSeekType = FILE_END;
break;
default:
return (XN_STATUS_OS_INVALID_SEEK_TYPE);
}
// Seek a file handle via the OS
liPos.QuadPart = nOffset;
bSucceeded = SetFilePointerEx(File, liPos, NULL, nRealSeekType);
// Make sure it succeeded
if (! bSucceeded)
{
return (XN_STATUS_OS_FILE_SEEK_FAILED);
}
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSTellFile(const XN_FILE_HANDLE File, XnUInt32* nFilePos)
{
LARGE_INTEGER liPos;
BOOL bSucceeded = 0;
// Validate the input/output pointers (to make sure none of them is NULL)
XN_VALIDATE_OUTPUT_PTR(nFilePos);
// Make sure the actual file handle isn't NULL
XN_RET_IF_NULL(File, XN_STATUS_OS_INVALID_FILE);
// Seek a file handle by 0 bytes in order to read the file position
liPos.QuadPart = 0;
bSucceeded = SetFilePointerEx(File, liPos, &liPos, FILE_CURRENT);
// Make sure it succeeded (return value is valid)
if (! bSucceeded)
{
return (XN_STATUS_OS_FILE_TELL_FAILED);
}
// Enforce uint32 limitation
if (liPos.HighPart)
{
return XN_STATUS_INTERNAL_BUFFER_TOO_SMALL;
}
*nFilePos = liPos.LowPart;
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSTellFile64(const XN_FILE_HANDLE File, XnUInt64* nFilePos)
{
LARGE_INTEGER liPos;
BOOL bSucceeded = 0;
// Validate the input/output pointers (to make sure none of them is NULL)
XN_VALIDATE_OUTPUT_PTR(nFilePos);
// Make sure the actual file handle isn't NULL
XN_RET_IF_NULL(File, XN_STATUS_OS_INVALID_FILE);
// Seek a file handle by 0 bytes in order to read the file position
liPos.QuadPart = 0;
bSucceeded = SetFilePointerEx(File, liPos, &liPos, FILE_CURRENT);
// Make sure it succeeded (return value is valid)
if (! bSucceeded)
{
return (XN_STATUS_OS_FILE_TELL_FAILED);
}
*nFilePos = liPos.QuadPart;
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus XN_C_DECL xnOSTruncateFile64(const XN_FILE_HANDLE File, XnUInt64 nFilePos)
{
// Make sure the actual file handle isn't NULL
XN_RET_IF_NULL(File, XN_STATUS_OS_INVALID_FILE);
// Obtain current file position.
XnUInt64 oldFilePos;
XnStatus status = xnOSTellFile64(File, &oldFilePos);
if (XN_STATUS_OK != status)
{
return status;
}
// Seek to the needed file position.
status = xnOSSeekFile64(File, XN_OS_SEEK_SET, nFilePos);
if (XN_STATUS_OK != status)
{
goto failure;
}
// Finally, truncate the physical size of the file.
BOOL retVal = SetEndOfFile(File);
if (FALSE == retVal)
{
goto failure;
}
return XN_STATUS_OK;
failure:
xnOSSeekFile64(File, XN_OS_SEEK_SET, oldFilePos);
return status;
}
XN_C_API XnStatus xnOSFlushFile(const XN_FILE_HANDLE File)
{
XnBool bRetVal = FALSE;
// Make sure the actual file handle isn't NULL
XN_RET_IF_NULL(File, XN_STATUS_OS_INVALID_FILE);
bRetVal = FlushFileBuffers(File);
if (bRetVal == FALSE)
{
return (XN_STATUS_OS_FILE_FLUSH_FAILED);
}
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSDeleteFile(const XnChar* cpFileName)
{
// Validate the input/output pointers (to make sure none of them is NULL)
XN_VALIDATE_INPUT_PTR(cpFileName);
if (!DeleteFile(cpFileName))
{
return (XN_STATUS_OS_FAILED_TO_DELETE_FILE);
}
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSDoesFileExist(const XnChar* cpFileName, XnBool* bResult)
{
// Validate the input/output pointers (to make sure none of them is NULL)
XN_VALIDATE_INPUT_PTR(cpFileName);
XN_VALIDATE_OUTPUT_PTR(bResult);
// Reset the output result
*bResult = FALSE;
// Check if the file exists and update the result accordingly
if ((_access(cpFileName, 0)) != -1)
{
*bResult = TRUE;
}
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSDoesDirectoryExist(const XnChar* cpDirName, XnBool* pbResult)
{
// Validate the input/output pointers (to make sure none of them is NULL)
XN_VALIDATE_INPUT_PTR(cpDirName);
XN_VALIDATE_OUTPUT_PTR(pbResult);
*pbResult = FALSE;
DWORD attribs = ::GetFileAttributes(cpDirName);
if (attribs != INVALID_FILE_ATTRIBUTES &&
(attribs & FILE_ATTRIBUTE_DIRECTORY) != 0)
{
*pbResult = TRUE;
}
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSGetFileSize(const XnChar* cpFileName, XnUInt32* pnFileSize)
{
// Local function variables
XN_FILE_HANDLE FileHandle;
XnStatus nRetVal = XN_STATUS_OK;
LARGE_INTEGER liSize;
BOOL bSucceeded = 0;
// Validate the input/output pointers (to make sure none of them is NULL)
XN_VALIDATE_INPUT_PTR(cpFileName);
XN_VALIDATE_OUTPUT_PTR(pnFileSize);
nRetVal = xnOSOpenFile(cpFileName, XN_OS_FILE_READ, &FileHandle);
XN_IS_STATUS_OK(nRetVal);
bSucceeded = GetFileSizeEx(FileHandle, &liSize);
if (!bSucceeded)
return XN_STATUS_OS_FILE_GET_SIZE_FAILED;
// Enforce uint32 limitation
if (liSize.HighPart)
{
return XN_STATUS_INTERNAL_BUFFER_TOO_SMALL;
}
*pnFileSize = liSize.LowPart;
nRetVal = xnOSCloseFile(&FileHandle);
XN_IS_STATUS_OK(nRetVal);
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSGetFileSize64(const XnChar* cpFileName, XnUInt64* pnFileSize)
{
// Local function variables
XN_FILE_HANDLE FileHandle;
XnStatus nRetVal = XN_STATUS_OK;
LARGE_INTEGER liSize;
BOOL bSucceeded = 0;
// Validate the input/output pointers (to make sure none of them is NULL)
XN_VALIDATE_INPUT_PTR(cpFileName);
XN_VALIDATE_OUTPUT_PTR(pnFileSize);
nRetVal = xnOSOpenFile(cpFileName, XN_OS_FILE_READ, &FileHandle);
XN_IS_STATUS_OK(nRetVal);
bSucceeded = GetFileSizeEx(FileHandle, &liSize);
if (!bSucceeded)
return XN_STATUS_OS_FILE_GET_SIZE_FAILED;
*pnFileSize = liSize.QuadPart;
nRetVal = xnOSCloseFile(&FileHandle);
XN_IS_STATUS_OK(nRetVal);
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSCreateDirectory(const XnChar* cpDirName)
{
// Local function variables
XnBool bRetVal = FALSE;
// Validate the input/output pointers (to make sure none of them is NULL)
XN_VALIDATE_INPUT_PTR(cpDirName);
bRetVal = CreateDirectory(cpDirName, NULL);
if (bRetVal == FALSE)
{
return (XN_STATUS_OS_FAILED_TO_CREATE_DIR);
}
// All is good...
return (XN_STATUS_OK);
}
XN_C_API XnStatus XN_C_DECL xnOSDeleteEmptyDirectory(const XnChar* strDirName)
{
XN_VALIDATE_INPUT_PTR(strDirName);
XnBool bRetVal = RemoveDirectory(strDirName);
if (!bRetVal)
{
return XN_STATUS_OS_FAILED_TO_DELETE_DIR;
}
return (XN_STATUS_OK);
}
XN_C_API XnStatus XN_C_DECL xnOSDeleteDirectoryTree(const XnChar* strDirName)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(strDirName);
// file name must be double-null terminated
XnChar strDirNameDoubleNull[MAX_PATH+1];
xnOSMemSet(strDirNameDoubleNull, 0, sizeof(strDirNameDoubleNull));
nRetVal = xnOSStrCopy(strDirNameDoubleNull, strDirName, MAX_PATH);
XN_IS_STATUS_OK(nRetVal);
SHFILEOPSTRUCT shOp;
shOp.hwnd = NULL;
shOp.wFunc = FO_DELETE;
shOp.pFrom = strDirNameDoubleNull;
shOp.pTo = NULL;
shOp.fFlags = FOF_NOCONFIRMATION | FOF_NOERRORUI | FOF_SILENT;
shOp.fAnyOperationsAborted = 0;
shOp.hNameMappings = NULL;
shOp.lpszProgressTitle = NULL;
int ret = SHFileOperation(&shOp);
if (ret != 0)
{
return XN_STATUS_OS_FAILED_TO_DELETE_DIR;
}
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSGetCurrentDir(XnChar* cpDirName, const XnUInt32 nBufferSize)
{
// check needed length
DWORD nNeededLength = GetCurrentDirectory(NULL, 0);
if (nNeededLength > nBufferSize)
return XN_STATUS_OUTPUT_BUFFER_OVERFLOW;
// there is enough room, take it
if (0 == GetCurrentDirectory(nBufferSize, cpDirName))
return XN_STATUS_ERROR;
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSSetCurrentDir(const XnChar* cpDirName)
{
if (0 == SetCurrentDirectory(cpDirName))
{
return (XN_STATUS_ERROR);
}
return (XN_STATUS_OK);
}
XN_C_API XnStatus xnOSGetDirName(const XnChar* cpFilePath, XnChar* cpDirName, const XnUInt32 nBufferSize)
{
char strFullPath[XN_FILE_MAX_PATH];
char* pFileName;
DWORD res = GetFullPathName(cpFilePath, XN_FILE_MAX_PATH, strFullPath, &pFileName);
if (res == 0)
{
return XN_STATUS_ERROR;
}
if (XnUInt32(pFileName - strFullPath) > nBufferSize)
{
return XN_STATUS_OUTPUT_BUFFER_OVERFLOW;
}
pFileName[0] = '\0';
xnOSStripDirSep(strFullPath);
strcpy(cpDirName, strFullPath);
return XN_STATUS_OK;
}
XN_C_API XnStatus xnOSGetFileName(const XnChar* cpFilePath, XnChar* cpFileName, const XnUInt32 nBufferSize)
{
XnChar ext[XN_FILE_MAX_PATH];
XN_VALIDATE_INPUT_PTR(cpFilePath);
XN_VALIDATE_OUTPUT_PTR(cpFileName);
errno_t err = _splitpath_s(cpFilePath, NULL, 0, NULL, 0, cpFileName, nBufferSize, ext, sizeof(ext));
if (err == ERANGE)
{
return XN_STATUS_OUTPUT_BUFFER_OVERFLOW;
}
else if (err != 0)
{
return XN_STATUS_ERROR;
}
XnStatus nRetVal = xnOSStrAppend(cpFileName, ext, nBufferSize);
XN_IS_STATUS_OK(nRetVal);
return XN_STATUS_OK;
}
XN_C_API XnStatus xnOSGetFullPathName(const XnChar* strFilePath, XnChar* strFullPath, XnUInt32 nBufferSize)
{
char* pFileName;
DWORD res = GetFullPathName(strFilePath, nBufferSize, strFullPath, &pFileName);
if (res > nBufferSize)
{
return XN_STATUS_OUTPUT_BUFFER_OVERFLOW;
}
else if (res == 0)
{
return XN_STATUS_ERROR;
}
return XN_STATUS_OK;
}
XN_C_API XnBool xnOSIsAbsoluteFilePath(const XnChar* strFilePath)
{
// If the path starts with <letter><colon><path separator>, it is absolute.
return xnOSStrLen(strFilePath) >= 3 && isalpha(strFilePath[0]) && strFilePath[1] == ':' && xnOSIsDirSep(strFilePath[2]);
}
|