rwlogo
SourcePro 11.1

SourcePro® C++ API Reference Guide



   SourcePro C++
Documentation Home

RWDirectoryIterator< RWCString > Struct Template Reference
[File System]

Provides a specialization of the class template for RWCString, with recursive iteration of subdirectories. More...

#include <rw/directory.h>

Inherits RWHandle.

List of all members.

Public Types

typedef RWCString value_type

Public Member Functions

 RWDirectoryIterator ()
 RWDirectoryIterator (const char *cs, int depth=0)
 RWDirectoryIterator (const RWDirectoryIterator &it)
RWDirectoryIterator & operator= (const RWDirectoryIterator &)
 ~RWDirectoryIterator ()
RWDirectoryIterator & operator++ ()
RWDirectoryIterator operator++ (int)
value_typeoperator* () const

Friends

bool operator== (const RWDirectoryIterator< RWCString > &, const RWDirectoryIterator< RWCString > &)
bool operator!= (const RWDirectoryIterator< RWCString > &, const RWDirectoryIterator< RWCString > &)

Detailed Description

template<>
struct RWDirectoryIterator< RWCString >

The Essential Tools library provides two specializations of the class template: this class, RWDirectoryIterator<RWCString>, for RWCString with recursive iteration of subdirectories; and RWDirectoryIterator<const char*> for const char* which acts like a flat iterator , i.e. no iteration of subdirectories. Neither follow symbolic links.

Both iterators are refinements of the Input Iterator concept. One limitation is that they are usable only in single-pass algorithms.

The nature of the API for manipulating files and directories requires special attention to synchronization issues. These classes are:

Synopsis

 #include <rw/directory.h>
 RWDirectoryIterator<RWCString> it;

Persistence

None


Member Typedef Documentation

typedef RWCString RWDirectoryIterator< RWCString >::value_type

Typedef for the type on which self is specialized.


Constructor & Destructor Documentation

RWDirectoryIterator< RWCString >::RWDirectoryIterator (  ) 

Constructs an iterator that compares equal with any past-the-end iterator.

RWDirectoryIterator< RWCString >::RWDirectoryIterator ( const char *  cs,
int  depth = 0 
) [explicit]

Constructs an iterator over the content of the directory name passed as argument cs. The depth argument controls how deep to iterate within the directory hierarchy. The default is to behave as a flat iterator. Passing an argument value of -1 iterates to the full depth of the hierarchy.

Exceptions:
RWInternalErr or one of its derived types, thrown if the argument is not a directory.
RWDirectoryIterator< RWCString >::RWDirectoryIterator ( const RWDirectoryIterator< RWCString > &  it  ) 

Constructs an iterator that is a copy of the iterator passed as the argument. Dereferencing each iterator yields identical results, yet they will not compare equal. See the equality comparison operators.

RWDirectoryIterator< RWCString >::~RWDirectoryIterator (  ) 

Destroys the object.


Member Function Documentation

value_type& RWDirectoryIterator< RWCString >::operator* (  )  const

Dereferencing operator. Returns the file name.

RWDirectoryIterator RWDirectoryIterator< RWCString >::operator++ ( int   ) 

Postfix increment operator. Returns an iterator that points to the entry previous to the increment operation.

RWDirectoryIterator& RWDirectoryIterator< RWCString >::operator++ (  ) 

Prefix increment operator. Returns a reference to this object.

RWDirectoryIterator& RWDirectoryIterator< RWCString >::operator= ( const RWDirectoryIterator< RWCString > &   ) 

Assignment operator. Performs the assignment of the value of the argument. Note that the objects will not compare equal unless they are both past-the-end iterators.


Friends And Related Function Documentation

bool operator!= ( const RWDirectoryIterator< RWCString > &  ,
const RWDirectoryIterator< RWCString > &   
) [friend]

Inequality operator. Equivalent to logical negation of corresponding equality operator.

bool operator== ( const RWDirectoryIterator< RWCString > &  ,
const RWDirectoryIterator< RWCString > &   
) [friend]

Equality operator. Tests equality between the two RWDirectoryIterator<RWCString> objects passed as parameters. Only past-the-end iterators compare equal.


© Copyright Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave and SourcePro are registered trademarks of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.
Contact Rogue Wave about documentation or support issues.