00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064 #ifndef RECLS_DOCUMENTATION_SKIP_SECTION
00065 # define RECLS_VER_H_RECLSPP_SEARCH_MAJOR 1
00066 # define RECLS_VER_H_RECLSPP_SEARCH_MINOR 0
00067 # define RECLS_VER_H_RECLSPP_SEARCH_REVISION 2
00068 # define RECLS_VER_H_RECLSPP_SEARCH_EDIT 2
00069 #endif
00070
00075
00076
00077
00078
00079 #include "reclspp.h"
00080 #include "reclspp_fileentry.h"
00081 #include <recls_assert.h>
00082 #include <utility>
00083
00084
00085
00086
00087
00088 #if !defined(RECLS_NO_NAMESPACE)
00089 namespace recls
00090 {
00091
00092 namespace cpp
00093 {
00094 #endif
00095
00096
00097
00098
00099
00103 class Search
00104 {
00106 public:
00108 typedef Search class_type;
00110
00113 protected:
00114 typedef std::pair<hrecls_t, recls_rc_t> ctor_args_type;
00115
00119 Search(ctor_args_type args);
00120 public:
00126 virtual ~Search() = 0;
00128
00131 public:
00133 recls_rc_t GetNext();
00135
00138 public:
00140 recls_bool_t HasMoreElements() const;
00144 FileEntry GetCurrentEntry() const;
00145
00147 recls_rc_t GetLastError() const;
00148
00150 recls_uint32_t GetNumOutstandingDetails() const;
00152
00153
00154 protected:
00155
00156
00157 recls_rc_t &GetLastError_();
00158
00159
00160 private:
00161 hrecls_t m_hSrch;
00162 mutable recls_rc_t m_lastError;
00163
00164
00165 private:
00166 Search(class_type const &);
00167 class_type &operator =(class_type const &);
00168 };
00169
00170
00171
00172
00173
00174 inline Search::Search(Search::ctor_args_type args)
00175 : m_hSrch(args.first)
00176 , m_lastError(args.second)
00177 {
00178 recls_assert(NULL != m_hSrch || RECLS_FAILED(m_lastError));
00179 recls_assert(NULL == m_hSrch || RECLS_SUCCEEDED(m_lastError));
00180 }
00181
00182 inline Search::~Search()
00183 {
00184 if(NULL != m_hSrch)
00185 {
00186 Recls_SearchClose(m_hSrch);
00187 }
00188 }
00189
00190 inline recls_rc_t Search::GetNext()
00191 {
00192 recls_assert(NULL != m_hSrch);
00193
00194 recls_rc_t rc = Recls_GetNext(m_hSrch);
00195
00196 if(RECLS_FAILED(rc))
00197 {
00198 Recls_SearchClose(m_hSrch);
00199 m_hSrch = NULL;
00200 }
00201
00202 m_lastError = rc;
00203
00204 return rc;
00205 }
00206
00207 inline recls_bool_t Search::HasMoreElements() const
00208 {
00209 return RECLS_SUCCEEDED(m_lastError);
00210 }
00211
00212 inline FileEntry Search::GetCurrentEntry() const
00213 {
00214 recls_info_t info;
00215 recls_rc_t rc = Recls_GetDetails(m_hSrch, &info);
00216
00217 return RECLS_SUCCEEDED(m_lastError = rc) ? FileEntry(info) : FileEntry();
00218 }
00219
00220 inline recls_rc_t Search::GetLastError() const
00221 {
00222 return m_lastError;
00223 }
00224
00225 inline recls_uint32_t Search::GetNumOutstandingDetails() const
00226 {
00227 recls_uint32_t cDetails;
00228 recls_rc_t rc = Recls_OutstandingDetails(m_hSrch, &cDetails);
00229
00230 if(RECLS_FAILED(m_lastError = rc))
00231 {
00232 cDetails = 0;
00233 }
00234
00235 return cDetails;
00236 }
00237
00238 inline recls_rc_t &Search::GetLastError_()
00239 {
00240 return m_lastError;
00241 }
00242
00243
00244
00245
00246
00247 #if !defined(RECLS_NO_NAMESPACE)
00248 }
00249 }
00250 #endif
00251
00252
00253
00254
00255
00256