GM6000 Digital Heater Controller Branch: main
SDX-1330
DirList_.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_DirList_x_h_
2#define Cpl_Io_File_DirList_x_h_
3/*-----------------------------------------------------------------------------
4 * This file is part of the Colony.Core Project. The Colony.Core Project is an
5 * open source project with a BSD type of licensing agreement. See the license
6 * agreement (license.txt) in the top/ directory or on the Internet at
7 * http://integerfox.com/colony.core/license.txt
8 *
9 * Copyright (c) 2014-2020 John T. Taylor
10 *
11 * Redistributions of the source code must retain the above copyright notice.
12 *----------------------------------------------------------------------------*/
13/** @file */
14
15#include "colony_config.h"
16#include "Cpl/Io/File/Api.h"
18#include "Cpl/Container/Stack.h"
19
20///
21namespace Cpl {
22///
23namespace Io {
24///
25namespace File {
26
27
28/** This private concrete does the work for Api::walkDirectory() method
29 */
30class DirList_
31{
32protected:
33 /// Structure to hold the directory name and depth
35 {
36 /// The directory name
38
39 /// The depth of the directory
40 unsigned m_depth;
41
42 /// Constructor
44 : m_name( "" )
45 , m_depth( 0 )
46 {
47 }
48
49 /// Constructor
50 DirEntry_T( const char* name, unsigned depth=1 )
51 : m_name( name )
52 , m_depth( depth )
53 {
54 }
55 };
56
57protected:
58 /// Maximum depth of directory traversal
59 unsigned m_depth;
60
61 /// Filter flag for files only
62 bool m_filesOnly;
63
64 /// Filter flag for directories only
65 bool m_dirsOnly;
66
67 /// The current directory
69
70 /// Pointer to the lfs instance
71 lfs* m_lfs;
72
73 /// Stack of directory names (so we don't use recursion)
75
76 /// Memory for the stack
78
79public:
80 /// Constructor
81 DirList_( lfs* lfs, const char* rootDir, unsigned depth = 1, bool filesOnly = false, bool dirsOnly = false );
82
83
84 /// Destructor
86
87
88public:
89 /// Traverses a directory
90 bool traverse( Api::DirectoryWalker& callback );
91};
92
93
94}; // end namespaces
95};
96};
97#endif // end header latch
#define OPTION_CPL_IO_FILE_DIRLIST_MAX_DEPTH
Maximum support depth for directory traversal.
Definition Api.h:45
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This abstract class defines the client interface for walking the contents of a directory,...
Definition Api.h:322
DirList_(lfs *lfs, const char *rootDir, unsigned depth=1, bool filesOnly=false, bool dirsOnly=false)
Constructor.
bool m_filesOnly
internal variable
Definition DirList_.h:39
unsigned m_depth
Maximum depth of directory traversal.
Definition DirList_.h:59
lfs * m_lfs
Pointer to the lfs instance.
Definition DirList_.h:71
DirEntry_T m_curDir
The current directory.
Definition DirList_.h:68
bool traverse(Api::DirectoryWalker &callback)
Traverses a directory.
Cpl::Container::Stack< DirEntry_T > m_stack
Stack of directory names (so we don't use recursion)
Definition DirList_.h:74
DirEntry_T m_stackMemory[OPTION_CPL_IO_FILE_DIRLIST_MAX_DEPTH]
Memory for the stack.
Definition DirList_.h:77
bool m_dirsOnly
internal variable
Definition DirList_.h:42
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
Structure to hold the directory name and depth.
Definition DirList_.h:35
DirEntry_T(const char *name, unsigned depth=1)
Constructor.
Definition DirList_.h:50
unsigned m_depth
The depth of the directory.
Definition DirList_.h:40
DirEntry_T()
Constructor.
Definition DirList_.h:43
NameString m_name
The directory name.
Definition DirList_.h:37