-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSDCard.cpp
More file actions
284 lines (248 loc) · 5.09 KB
/
SDCard.cpp
File metadata and controls
284 lines (248 loc) · 5.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
#include "Config.h"
#include "SDCard.h"
#include <SdFat.h>
SdFat sd;
FatFile file;
// File System Info
#define SD_MAX_WORKDIR 128
#define SD_MAX_FILENAME 32
char workDir[SD_MAX_WORKDIR] = { '/' };
char fileName[SD_MAX_FILENAME];
char shortFileName[13];
uint32_t fileSize;
bool fileIsDir;
// TXZFile Interface
unsigned long bytesRead;
byte outByte;
word outWord;
unsigned long outLong;
// Private Functions
bool isRootPath(const char* path)
{
return path[0] == '/' && path[1] == 0;
}
bool changeDir(const char* path, bool updateWorkDir)
{
if (path[0] == 0 || isRootPath(path))
{
// switch to root folder
sd.chdir(true);
FatFile::cwd()->rewind();
if (updateWorkDir)
strcpy(workDir, "/");
return true;
}
else
{
if (sd.chdir(path, true))
{
FatFile::cwd()->rewind();
if (updateWorkDir)
{
if (path[0] == '/')
strncpy(workDir, path, SD_MAX_WORKDIR - 1);
else
{
// TODO: unsafe - out of range SD_MAX_WORKDIR
strcat(workDir, path);
strcat(workDir, "/");
}
}
return true;
}
}
return false;
}
void resetCurrentFileInfo()
{
*fileName = 0;
*shortFileName = 0;
fileSize = 0;
fileIsDir = false;
}
void readCurrentFileInfo()
{
if (file.isOpen())
{
file.getName(fileName, SD_MAX_FILENAME);
file.getSFN(shortFileName);
fileSize = file.fileSize();
fileIsDir = file.isDir();
}
else
resetCurrentFileInfo();
}
// Public Functions
bool setupSD(uint8_t csPin)
{
pinMode(csPin, OUTPUT);
if (sd.begin(csPin, SPI_FULL_SPEED))
{
changeDir("/", true);
return true;
}
return false;
}
bool childDir()
{
if (changeDir(shortFileName, true))
{
resetCurrentFileInfo();
return true;
}
return false;
}
bool parentDir()
{
if (isRootPath(workDir))
return false;
// workDir looks like '/sub_folder/subsub_folder1/'
// we need to find previous slash ↑ not the last ↑
uint8_t index = 0;
for (uint8_t i = 0; workDir[i]; ++i)
{
if (workDir[i] == '/' && workDir[i + 1])
index = i + 1;
}
workDir[index] = 0;
if (changeDir(workDir, false))
{
resetCurrentFileInfo();
return true;
}
return false;
}
bool nextFile()
{
uint32_t goodPosition = FatFile::cwd()->curPosition();
if (file.openNext(FatFile::cwd(), O_READ))
{
readCurrentFileInfo();
file.close();
return true;
}
else
FatFile::cwd()->seekSet(goodPosition);
return false;
}
bool prevFile()
{
bool fileNotFound = true;
uint32_t goodPosition = FatFile::cwd()->curPosition();
uint16_t index = goodPosition / 32;
// skip self index
if (index > 0)
--index;
while (index > 0)
{
--index;
if (file.open(FatFile::cwd(), index, O_READ))
{
fileNotFound = false;
readCurrentFileInfo();
file.close();
break;
}
}
if (fileNotFound)
FatFile::cwd()->seekSet(goodPosition);
return !fileNotFound;
}
bool openFile()
{
return file.open(shortFileName, O_READ);
}
void closeFile()
{
file.close();
}
bool isDir()
{
return fileIsDir;
}
bool isFileExists()
{
return FatFile::cwd()->exists(shortFileName);
}
bool checkFileExt(const char* szExt)
{
char* szFileExt = strrchr(shortFileName, '.');
if (szFileExt)
return strcasecmp_P(szFileExt, szExt) == 0;
return false;
}
const char* getFileName()
{
return fileName;
}
uint32_t getFileSize()
{
return fileSize;
}
// I am not sure with bytes alignment, so I left the old code for WORD, LONG and DWORD
int readByte()
{
int i = 0;
if (file.seekSet(bytesRead))
{
i = file.read(&outByte, 1);
if (i == 1)
bytesRead += 1;
}
return i;
}
int readWord()
{
int i = 0;
byte out[2];
if (file.seekSet(bytesRead))
{
i = file.read(out, 2);
if (i == 2)
{
outWord = word(out[1], out[0]);
bytesRead += 2;
}
}
return i;
}
int readLong()
{
int i = 0;
byte out[3];
if (file.seekSet(bytesRead))
{
i = file.read(out, 3);
if (i == 3)
{
outLong = (word(out[2], out[1]) << 8) | out[0];
bytesRead += 3;
}
}
return i;
}
int readDword()
{
int i = 0;
byte out[4];
if (file.seekSet(bytesRead))
{
i = file.read(out, 4);
if (i == 4)
{
outLong = (word(out[3], out[2]) << 16) | word(out[1], out[0]);
bytesRead += 4;
}
}
return i;
}
bool checkFileHeader(const void* headerPtr, size_t sizeToRead, size_t sizeToCheck)
{
char buf[16] = { 0 };
if (file.seekSet(0))
{
bytesRead = file.read(buf, sizeToRead);
return memcmp_P(buf, headerPtr, sizeToCheck) == 0;
}
return false;
}