GM6000 Digital Heater Controller
Branch: main
SDX-1330
Main Page
Namespaces
Components
Files
File List
File Members
Cpl
Io
File
Littlefs
_api
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
"
17
#include "
Cpl/Io/File/Littlefs/Api.h
"
18
#include "
Cpl/Container/Stack.h
"
19
20
///
21
namespace
Cpl
{
22
///
23
namespace
Io {
24
///
25
namespace
File {
26
27
28
/** This private concrete does the work for Api::walkDirectory() method
29
*/
30
class
DirList_
31
{
32
protected
:
33
/// Structure to hold the directory name and depth
34
struct
DirEntry_T
35
{
36
/// The directory name
37
NameString
m_name
;
38
39
/// The depth of the directory
40
unsigned
m_depth
;
41
42
/// Constructor
43
DirEntry_T
()
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
57
protected
:
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
68
DirEntry_T
m_curDir
;
69
70
/// Pointer to the lfs instance
71
lfs*
m_lfs
;
72
73
/// Stack of directory names (so we don't use recursion)
74
Cpl::Container::Stack<DirEntry_T>
m_stack
;
75
76
/// Memory for the stack
77
DirEntry_T
m_stackMemory
[
OPTION_CPL_IO_FILE_DIRLIST_MAX_DEPTH
];
78
79
public
:
80
/// Constructor
81
DirList_
( lfs* lfs,
const
char
* rootDir,
unsigned
depth = 1,
bool
filesOnly =
false
,
bool
dirsOnly =
false
);
82
83
84
/// Destructor
85
~DirList_
();
86
87
88
public
:
89
/// Traverses a directory
90
bool
traverse
(
Api::DirectoryWalker
& callback );
91
};
92
93
94
};
// end namespaces
95
};
96
};
97
#endif
// end header latch
Api.h
Api.h
OPTION_CPL_IO_FILE_DIRLIST_MAX_DEPTH
#define OPTION_CPL_IO_FILE_DIRLIST_MAX_DEPTH
Maximum support depth for directory traversal.
Definition
Api.h:45
Stack.h
Cpl::Container::RingBufferMT
This template class implements a THREAD SAFE Ring Buffer.
Definition
RingBufferMT.h:33
Cpl::Io::File::Api::DirectoryWalker
This abstract class defines the client interface for walking the contents of a directory,...
Definition
Api.h:322
Cpl::Io::File::DirList_::DirList_
DirList_(lfs *lfs, const char *rootDir, unsigned depth=1, bool filesOnly=false, bool dirsOnly=false)
Constructor.
Cpl::Io::File::DirList_::m_filesOnly
bool m_filesOnly
internal variable
Definition
DirList_.h:39
Cpl::Io::File::DirList_::m_depth
unsigned m_depth
Maximum depth of directory traversal.
Definition
DirList_.h:59
Cpl::Io::File::DirList_::m_lfs
lfs * m_lfs
Pointer to the lfs instance.
Definition
DirList_.h:71
Cpl::Io::File::DirList_::m_curDir
DirEntry_T m_curDir
The current directory.
Definition
DirList_.h:68
Cpl::Io::File::DirList_::traverse
bool traverse(Api::DirectoryWalker &callback)
Traverses a directory.
Cpl::Io::File::DirList_::m_stack
Cpl::Container::Stack< DirEntry_T > m_stack
Stack of directory names (so we don't use recursion)
Definition
DirList_.h:74
Cpl::Io::File::DirList_::m_stackMemory
DirEntry_T m_stackMemory[OPTION_CPL_IO_FILE_DIRLIST_MAX_DEPTH]
Memory for the stack.
Definition
DirList_.h:77
Cpl::Io::File::DirList_::m_dirsOnly
bool m_dirsOnly
internal variable
Definition
DirList_.h:42
Cpl::Io::File::DirList_::~DirList_
~DirList_()
Destructor.
Cpl::Text::FString< CPL_IO_FILE_MAX_NAME >
Cpl
The 'Cpl' namespace is the root name space for the Colony.
Definition
Api16.h:20
Cpl::Io::File::DirList_::DirEntry_T
Structure to hold the directory name and depth.
Definition
DirList_.h:35
Cpl::Io::File::DirList_::DirEntry_T::DirEntry_T
DirEntry_T(const char *name, unsigned depth=1)
Constructor.
Definition
DirList_.h:50
Cpl::Io::File::DirList_::DirEntry_T::m_depth
unsigned m_depth
The depth of the directory.
Definition
DirList_.h:40
Cpl::Io::File::DirList_::DirEntry_T::DirEntry_T
DirEntry_T()
Constructor.
Definition
DirList_.h:43
Cpl::Io::File::DirList_::DirEntry_T::m_name
NameString m_name
The directory name.
Definition
DirList_.h:37
Generated on Sat Jan 18 2025 22:23:55 for GM6000 Digital Heater Controller by
1.9.8