C/C++ User's Journal Synesis Software STLSoft - ... Robust, Lightweight, Cross-platform, Template Software ... ATLSTL - where the Standard Template Library meets the Active Template Library COMSTL - where the Standard Template Library meets the Component Object Model UNIXSTL - Template Software for the UNIX Operating System WinSTL - where the Standard Template Library meets the Win32 API

Main Page   Modules   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

/Mappings/Cpp/reclspp_filesearch.h

Go to the documentation of this file.
00001 /* 
00002  * File:        reclspp_filesearch.h
00003  *
00004  * Purpose:     recls C++ mapping - FileSearch class.
00005  *
00006  * Created:     18th August 2003
00007  * Updated:     20th March 2004
00008  *
00009  * Author:      Matthew Wilson, Synesis Software Pty Ltd.
00010  *
00011  * License:     (Licensed under the Synesis Software Standard Source License)
00012  *
00013  *              Copyright (C) 2002-2004, Synesis Software Pty Ltd.
00014  *
00015  *              All rights reserved.
00016  *
00017  *              www:        http://www.synesis.com.au/software
00018  *                          http://www.recls.org/
00019  *
00020  *              email:      submissions@recls.org  for submissions
00021  *                          admin@recls.org        for other enquiries
00022  *
00023  *              Redistribution and use in source and binary forms, with or
00024  *              without modification, are permitted provided that the following
00025  *              conditions are met:
00026  *
00027  *              (i) Redistributions of source code must retain the above
00028  *              copyright notice and contact information, this list of
00029  *              conditions and the following disclaimer.
00030  *
00031  *              (ii) Any derived versions of this software (howsoever modified)
00032  *              remain the sole property of Synesis Software.
00033  *
00034  *              (iii) Any derived versions of this software (howsoever modified)
00035  *              remain subject to all these conditions.
00036  *
00037  *              (iv) Neither the name of Synesis Software nor the names of any
00038  *              subdivisions, employees or agents of Synesis Software, nor the
00039  *              names of any other contributors to this software may be used to
00040  *              endorse or promote products derived from this software without
00041  *              specific prior written permission.
00042  *
00043  *              This source code is provided by Synesis Software "as is" and any
00044  *              warranties, whether expressed or implied, including, but not
00045  *              limited to, the implied warranties of merchantability and
00046  *              fitness for a particular purpose are disclaimed. In no event
00047  *              shall the Synesis Software be liable for any direct, indirect,
00048  *              incidental, special, exemplary, or consequential damages
00049  *              (including, but not limited to, procurement of substitute goods
00050  *              or services; loss of use, data, or profits; or business
00051  *              interruption) however caused and on any theory of liability,
00052  *              whether in contract, strict liability, or tort (including
00053  *              negligence or otherwise) arising in any way out of the use of
00054  *              this software, even if advised of the possibility of such
00055  *              damage.
00056  *
00057  * 
00058 
00059 
00060 #ifndef RECLS_INCL_H_RECLSPP_FILESEARCH
00061 #define RECLS_INCL_H_RECLSPP_FILESEARCH
00062 
00063 /* File version */
00064 #ifndef RECLS_DOCUMENTATION_SKIP_SECTION
00065 # define RECLS_VER_H_RECLSPP_FILESEARCH_MAJOR       1
00066 # define RECLS_VER_H_RECLSPP_FILESEARCH_MINOR       1
00067 # define RECLS_VER_H_RECLSPP_FILESEARCH_REVISION    1
00068 # define RECLS_VER_H_RECLSPP_FILESEARCH_EDIT        11
00069 #endif /* !RECLS_DOCUMENTATION_SKIP_SECTION */
00070 
00075 /* 
00076  * Includes
00077  */
00078 
00079 #include "reclspp.h"
00080 #include "reclspp_fileentry.h"
00081 #include <recls_assert.h>
00082 
00083 /* 
00084  * Namespace
00085  */
00086 
00087 #if !defined(RECLS_NO_NAMESPACE)
00088 namespace recls
00089 {
00090 
00091 namespace cpp
00092 {
00093 #endif /* !RECLS_NO_NAMESPACE */
00094 
00095 /* 
00096  * Classes
00097  */
00098 
00102 class FileSearch
00103 {
00104 public:
00105 
00108 public:
00114     FileSearch(recls_char_t const *rootDir, recls_char_t const *pattern, recls_uint32_t flags);
00116     ~FileSearch();
00117 
00119 
00122 public:
00124     recls_rc_t      GetNext();
00125 
00127 
00130 public:
00132     recls_bool_t    HasMoreElements() const;
00136     FileEntry       GetCurrentEntry() const;
00137 
00139     recls_rc_t      GetLastError() const;
00140 
00142     recls_uint32_t  GetNumOutstandingDetails() const;
00143 
00145 
00146 // Implementation
00147 private:
00148 
00149 // Members
00150 private:
00151     hrecls_t /* const */    m_hSrch;
00152     mutable recls_rc_t      m_lastError;
00153 
00154 // Not to be implemented
00155 private:
00156     FileSearch(FileSearch const &rhs);
00157     FileSearch &operator =(FileSearch const &rhs);
00158 };
00159 
00160 /* 
00161  * Implementation
00162  */
00163 
00164 inline FileSearch::FileSearch(recls_char_t const *rootDir, recls_char_t const *pattern, recls_uint32_t flags)
00165     : /* m_hSrch(NULL) // This must not be initialised in the constructor
00166     , */ m_lastError((m_hSrch = NULL, Recls_Search(rootDir, pattern, flags, &const_cast<hrecls_t&>(m_hSrch))))
00167 {}
00168 
00169 inline FileSearch::~FileSearch()
00170 {
00171     if(NULL != m_hSrch)
00172     {
00173         Recls_SearchClose(m_hSrch);
00174     }
00175 }
00176 
00177 inline recls_rc_t FileSearch::GetNext()
00178 {
00179     recls_assert(NULL != m_hSrch);
00180 
00181     recls_rc_t  rc  =   Recls_GetNext(m_hSrch);
00182 
00183     if(RECLS_FAILED(rc))
00184     {
00185         Recls_SearchClose(m_hSrch);
00186         m_hSrch = NULL;
00187     }
00188 
00189     m_lastError = rc;
00190 
00191     return rc;
00192 }
00193 
00194 inline recls_bool_t FileSearch::HasMoreElements() const
00195 {
00196     return RECLS_SUCCEEDED(m_lastError);
00197 }
00198 
00199 inline FileEntry FileSearch::GetCurrentEntry() const
00200 {
00201     recls_info_t    info;
00202     recls_rc_t      rc  =   Recls_GetDetails(m_hSrch, &info);
00203 
00204     return RECLS_SUCCEEDED(m_lastError = rc) ? FileEntry(info) : FileEntry();
00205 }
00206 
00207 inline recls_rc_t FileSearch::GetLastError() const
00208 {
00209     return m_lastError;
00210 }
00211 
00212 inline recls_uint32_t FileSearch::GetNumOutstandingDetails() const
00213 {
00214     recls_uint32_t  cDetails;
00215     recls_rc_t      rc  =   Recls_OutstandingDetails(m_hSrch, &cDetails);
00216 
00217     if(RECLS_FAILED(m_lastError = rc))
00218     {
00219         cDetails = 0;
00220     }
00221 
00222     return cDetails;
00223 }
00224 
00225 /* 
00226  * Namespace
00227  */
00228 
00229 #if !defined(RECLS_NO_NAMESPACE)
00230 } /* namespace cpp */
00231 } /* namespace recls */
00232 #endif /* !RECLS_NO_NAMESPACE */
00233 
00234 /* 
00235 
00236 #endif /* !RECLS_INCL_H_RECLSPP_FILESEARCH */
00237 
00238 /* 

recls Library documentation © Synesis Software Pty Ltd, 2001-2004