windir.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:4k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include <stdio.h>
  36. #include <stdlib.h>
  37. #include "hlxclib/errno.h"
  38. #include "hlxclib/io.h"
  39. #include "hxtypes.h"
  40. #include "hxstrutl.h"
  41. #include "hxdirlist.h"
  42. #include "windir.h"
  43. #include "hxheap.h"
  44. #ifdef _DEBUG
  45. #undef HX_THIS_FILE
  46. static const char HX_THIS_FILE[] = __FILE__;
  47. #endif
  48. Dir_list*
  49. Dir_list::create(const char* path)
  50. {
  51.     return new Windows_dir_list(path);
  52. }
  53. Windows_dir_list::Windows_dir_list(const char* path) :
  54.     _file_handle(INVALID_HANDLE_VALUE),
  55.     _cur_filename(0),
  56.     _next_error(0),
  57.     _path(new_string(path))
  58. {
  59.     char new_path[_MAX_PATH+10]; /* Flawfinder: ignore */
  60.     SafeSprintf(new_path, _MAX_PATH+10, "%s\*.*", _path);
  61.     
  62.     _file_handle = FindFirstFile(OS_STRING(new_path), &_file_info);
  63.     if (_file_handle == INVALID_HANDLE_VALUE)
  64. _error = EINVAL;
  65. }
  66. Windows_dir_list::~Windows_dir_list()
  67. {
  68.     delete[] _path;
  69.     delete[] _cur_filename;
  70.     if (_file_handle != INVALID_HANDLE_VALUE)
  71. FindClose(_file_handle);
  72. }
  73. const char* Windows_dir_list::get_next()
  74. {
  75.     char*   return_value;
  76.     
  77.     if (_next_error != 0)
  78.     {
  79. _error = _next_error;
  80. return 0;
  81.     }
  82.     delete [] _cur_filename;
  83.     _cur_filename = new_string(OS_STRING(_file_info.cFileName));
  84.     return_value = _cur_filename;
  85.     if (FindNextFile(_file_handle,&_file_info) == 0) 
  86. _next_error = ENOENT;
  87.     return return_value;
  88. }
  89. int
  90. Windows_dir_list::valid_file_name(const char* name)
  91. {
  92.     if ( (strcmp(name, "..") == 0) || (strcmp(name, ".") == 0) )
  93.     {
  94. return 0;
  95.     }
  96.     return 1;
  97. }
  98. int
  99. Windows_dir_list::is_empty()
  100. {
  101.     int isEmpty = 1;
  102.     char new_path[_MAX_PATH+10]; /* Flawfinder: ignore */
  103.     HANDLE f_handle = INVALID_HANDLE_VALUE;
  104.     WIN32_FIND_DATA  f_info;
  105.     SafeSprintf(new_path, _MAX_PATH+10, "%s/*.*", _path);
  106.     f_handle = FindFirstFile(OS_STRING(new_path), &f_info);
  107.     if (f_handle == INVALID_HANDLE_VALUE)
  108.     {
  109. do
  110. {
  111.     if (valid_file_name(OS_STRING(f_info.cFileName)))
  112. isEmpty = 0;
  113. }
  114. while (isEmpty && (FindNextFile(f_handle, &f_info) != 0));
  115.     }
  116.     else
  117. _error = EINVAL;
  118.     FindClose(f_handle);
  119.     return isEmpty;
  120. }