forked from Duet3D/RepRapFirmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMassStorage.cpp
More file actions
315 lines (281 loc) · 7.8 KB
/
MassStorage.cpp
File metadata and controls
315 lines (281 loc) · 7.8 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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
#include "RepRapFirmware.h"
MassStorage::MassStorage(Platform* p) : platform(p)
{
memset(&fileSystem, 0, sizeof(fileSystem));
}
void MassStorage::Init()
{
// Initialize SD MMC stack
hsmciPinsinit();
sd_mmc_init();
delay(20);
bool abort = false;
sd_mmc_err_t err;
do {
err = sd_mmc_check(0);
if (err > SD_MMC_ERR_NO_CARD)
{
abort = true;
delay(3000); // Wait a few seconds, so users have a chance to see the following error message
}
else
{
abort = (err == SD_MMC_ERR_NO_CARD && platform->Time() > 5.0);
}
if (abort)
{
platform->Message(HOST_MESSAGE, "Cannot initialize the SD card: ");
switch (err)
{
case SD_MMC_ERR_NO_CARD:
platform->AppendMessage(HOST_MESSAGE, "Card not found\n");
break;
case SD_MMC_ERR_UNUSABLE:
platform->AppendMessage(HOST_MESSAGE, "Card is unusable, try another one\n");
break;
case SD_MMC_ERR_SLOT:
platform->AppendMessage(HOST_MESSAGE, "Slot unknown\n");
break;
case SD_MMC_ERR_COMM:
platform->AppendMessage(HOST_MESSAGE, "General communication error\n");
break;
case SD_MMC_ERR_PARAM:
platform->AppendMessage(HOST_MESSAGE, "Illegal input parameter\n");
break;
case SD_MMC_ERR_WP:
platform->AppendMessage(HOST_MESSAGE, "Card write protected\n");
break;
default:
platform->AppendMessage(HOST_MESSAGE, "Unknown (code %d)\n", err);
break;
}
return;
}
} while (err != SD_MMC_OK);
// Print some card details (optional)
/*platform->Message(HOST_MESSAGE, "SD card detected!\nCapacity: %d\n", sd_mmc_get_capacity(0));
platform->AppendMessage(HOST_MESSAGE, "Bus clock: %d\n", sd_mmc_get_bus_clock(0));
platform->AppendMessage(HOST_MESSAGE, "Bus width: %d\nCard type: ", sd_mmc_get_bus_width(0));
switch (sd_mmc_get_type(0))
{
case CARD_TYPE_SD | CARD_TYPE_HC:
platform->AppendMessage(HOST_MESSAGE, "SDHC\n");
break;
case CARD_TYPE_SD:
platform->AppendMessage(HOST_MESSAGE, "SD\n");
break;
case CARD_TYPE_MMC | CARD_TYPE_HC:
platform->AppendMessage(HOST_MESSAGE, "MMC High Density\n");
break;
case CARD_TYPE_MMC:
platform->AppendMessage(HOST_MESSAGE, "MMC\n");
break;
case CARD_TYPE_SDIO:
platform->AppendMessage(HOST_MESSAGE, "SDIO\n");
return;
case CARD_TYPE_SD_COMBO:
platform->AppendMessage(HOST_MESSAGE, "SD COMBO\n");
break;
case CARD_TYPE_UNKNOWN:
default:
platform->AppendMessage(HOST_MESSAGE, "Unknown\n");
return;
}*/
// Mount the file system
int mounted = f_mount(0, &fileSystem);
if (mounted != FR_OK)
{
platform->Message(HOST_MESSAGE, "Can't mount filesystem 0: code %d\n", mounted);
}
}
const char* MassStorage::CombineName(const char* directory, const char* fileName)
{
size_t out = 0;
size_t in = 0;
if (directory != NULL)
{
while (directory[in] != 0 && directory[in] != '\n')
{
combinedName[out] = directory[in];
in++;
out++;
if (out >= ARRAY_SIZE(combinedName))
{
platform->Message(BOTH_ERROR_MESSAGE, "CombineName() buffer overflow.");
out = 0;
}
}
}
if (in > 0 && directory[in - 1] != '/' && out < ARRAY_UPB(combinedName))
{
combinedName[out] = '/';
out++;
}
in = 0;
while (fileName[in] != 0 && fileName[in] != '\n')
{
combinedName[out] = fileName[in];
in++;
out++;
if (out >= ARRAY_SIZE(combinedName))
{
platform->Message(BOTH_ERROR_MESSAGE, "CombineName() buffer overflow.");
out = 0;
}
}
combinedName[out] = 0;
return combinedName;
}
// Open a directory to read a file list. Returns true if it contains any files, false otherwise.
bool MassStorage::FindFirst(const char *directory, FileInfo &file_info)
{
TCHAR loc[MaxFilenameLength + 1];
// Remove the trailing '/' from the directory name
size_t len = strnlen(directory, ARRAY_UPB(loc));
if (len == 0)
{
loc[0] = 0;
}
else if (directory[len - 1] == '/')
{
strncpy(loc, directory, len - 1);
loc[len - 1] = 0;
}
else
{
strncpy(loc, directory, len);
loc[len] = 0;
}
findDir.lfn = nullptr;
FRESULT res = f_opendir(&findDir, loc);
if (res == FR_OK)
{
FILINFO entry;
entry.lfname = file_info.fileName;
entry.lfsize = ARRAY_SIZE(file_info.fileName);
for(;;)
{
res = f_readdir(&findDir, &entry);
if (res != FR_OK || entry.fname[0] == 0) break;
if (StringEquals(entry.fname, ".") || StringEquals(entry.fname, "..")) continue;
file_info.isDirectory = (entry.fattrib & AM_DIR);
file_info.size = entry.fsize;
uint16_t day = entry.fdate & 0x1F;
if (day == 0)
{
// This can happen if a transfer hasn't been processed completely.
day = 1;
}
file_info.day = day;
file_info.month = (entry.fdate & 0x01E0) >> 5;
file_info.year = (entry.fdate >> 9) + 1980;
if (file_info.fileName[0] == 0)
{
strncpy(file_info.fileName, entry.fname, ARRAY_SIZE(file_info.fileName));
}
return true;
}
}
return false;
}
// Find the next file in a directory. Returns true if another file has been read.
bool MassStorage::FindNext(FileInfo &file_info)
{
FILINFO entry;
entry.lfname = file_info.fileName;
entry.lfsize = ARRAY_SIZE(file_info.fileName);
findDir.lfn = nullptr;
if (f_readdir(&findDir, &entry) != FR_OK || entry.fname[0] == 0)
{
//f_closedir(findDir);
return false;
}
file_info.isDirectory = (entry.fattrib & AM_DIR);
file_info.size = entry.fsize;
uint16_t day = entry.fdate & 0x1F;
if (day == 0)
{
// This can happen if a transfer hasn't been processed completely.
day = 1;
}
file_info.day = day;
file_info.month = (entry.fdate & 0x01E0) >> 5;
file_info.year = (entry.fdate >> 9) + 1980;
if (file_info.fileName[0] == 0)
{
strncpy(file_info.fileName, entry.fname, ARRAY_SIZE(file_info.fileName));
}
return true;
}
// Month names. The first entry is used for invalid month numbers.
static const char *monthNames[13] = { "???", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
// Returns the name of the specified month or '???' if the specified value is invalid.
const char* MassStorage::GetMonthName(const uint8_t month)
{
return (month <= 12) ? monthNames[month] : monthNames[0];
}
// Delete a file or directory
bool MassStorage::Delete(const char* directory, const char* fileName)
{
const char* location = (directory != NULL)
? platform->GetMassStorage()->CombineName(directory, fileName)
: fileName;
if (f_unlink(location) != FR_OK)
{
platform->Message(BOTH_ERROR_MESSAGE, "Can't delete file %s\n", location);
return false;
}
return true;
}
// Create a new directory
bool MassStorage::MakeDirectory(const char *parentDir, const char *dirName)
{
const char* location = platform->GetMassStorage()->CombineName(parentDir, dirName);
if (f_mkdir(location) != FR_OK)
{
platform->Message(BOTH_ERROR_MESSAGE, "Can't create directory %s\n", location);
return false;
}
return true;
}
bool MassStorage::MakeDirectory(const char *directory)
{
if (f_mkdir(directory) != FR_OK)
{
platform->Message(BOTH_ERROR_MESSAGE, "Can't create directory %s\n", directory);
return false;
}
return true;
}
// Rename a file or directory
bool MassStorage::Rename(const char *oldFilename, const char *newFilename)
{
if (f_rename(oldFilename, newFilename) != FR_OK)
{
platform->Message(BOTH_ERROR_MESSAGE, "Can't rename file or directory %s to %s\n", oldFilename, newFilename);
return false;
}
return true;
}
// Check if the specified file exists
bool MassStorage::FileExists(const char *file) const
{
FILINFO fil;
fil.lfname = nullptr;
return (f_stat(file, &fil) == FR_OK);
}
// Check if the specified directory exists
bool MassStorage::PathExists(const char *path) const
{
DIR dir;
dir.lfn = nullptr;
return (f_opendir(&dir, path) == FR_OK);
}
bool MassStorage::PathExists(const char* directory, const char* subDirectory)
{
const char* location = (directory != NULL)
? platform->GetMassStorage()->CombineName(directory, subDirectory)
: subDirectory;
return PathExists(location);
}
// End