forked from Duet3D/RepRapFirmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileStore.cpp
More file actions
330 lines (292 loc) · 6.4 KB
/
FileStore.cpp
File metadata and controls
330 lines (292 loc) · 6.4 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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
//------------------------------------------------------------------------------------------------
#include "RepRapFirmware.h"
#include "FileStore.h"
#include "MassStorage.h"
#include "Platform.h"
uint32_t FileStore::longestWriteTime = 0;
FileStore::FileStore(Platform* p) : platform(p)
{
}
void FileStore::Init()
{
bufferPointer = 0;
inUse = false;
writing = false;
lastBufferEntry = 0;
openCount = 0;
}
// Open a local file (for example on an SD card).
// This is protected - only Platform can access it.
bool FileStore::Open(const char* directory, const char* fileName, bool write)
{
const char* location = (directory != NULL)
? platform->GetMassStorage()->CombineName(directory, fileName)
: fileName;
writing = write;
lastBufferEntry = FileBufLen;
FRESULT openReturn = f_open(&file, location, (writing) ? FA_CREATE_ALWAYS | FA_WRITE : FA_OPEN_EXISTING | FA_READ);
if (openReturn != FR_OK)
{
// We no longer report an error if opening a file in read mode fails unless debugging is enabled, because sometimes that is quite normal.
// It is up to the caller to report an error if necessary.
if (reprap.Debug(modulePlatform))
{
platform->Message(BOTH_ERROR_MESSAGE, "Can't open %s to %s, error code %d\n", location, (writing) ? "write" : "read", openReturn);
}
return false;
}
bufferPointer = (writing) ? 0 : FileBufLen;
inUse = true;
openCount = 1;
return true;
}
void FileStore::Duplicate()
{
if (!inUse)
{
platform->Message(BOTH_ERROR_MESSAGE, "Attempt to dup a non-open file.\n");
return;
}
++openCount;
}
bool FileStore::Close()
{
if (!inUse)
{
platform->Message(BOTH_ERROR_MESSAGE, "Attempt to close a non-open file.\n");
return false;
}
--openCount;
if (openCount != 0)
{
return true;
}
bool ok = true;
if (writing)
{
ok = Flush();
}
FRESULT fr = f_close(&file);
inUse = false;
writing = false;
lastBufferEntry = 0;
return ok && fr == FR_OK;
}
bool FileStore::Seek(FilePosition pos)
{
if (!inUse)
{
platform->Message(BOTH_ERROR_MESSAGE, "Attempt to seek on a non-open file.\n");
return false;
}
if (writing)
{
WriteBuffer();
}
FRESULT fr = f_lseek(&file, pos);
bufferPointer = (writing) ? 0 : FileBufLen;
return fr == FR_OK;
}
FilePosition FileStore::GetPosition() const
{
FilePosition pos = file.fptr;
if (writing)
{
pos += bufferPointer;
}
else if (bufferPointer < lastBufferEntry)
{
pos -= (lastBufferEntry - bufferPointer);
}
return pos;
}
#if 0 // not currently used
bool FileStore::GoToEnd()
{
return Seek(Length());
}
#endif
FilePosition FileStore::Length() const
{
if (!inUse)
{
platform->Message(BOTH_ERROR_MESSAGE, "Attempt to size non-open file.\n");
return 0;
}
return file.fsize;
}
float FileStore::FractionRead() const
{
FilePosition len = Length();
if (len == 0)
{
return 0.0;
}
return (float)GetPosition() / (float)len;
}
uint8_t FileStore::Status()
{
if (!inUse)
return (uint8_t)IOStatus::nothing;
if (lastBufferEntry == FileBufLen)
return (uint8_t)IOStatus::byteAvailable;
if (bufferPointer < lastBufferEntry)
return (uint8_t)IOStatus::byteAvailable;
return (uint8_t)IOStatus::nothing;
}
bool FileStore::ReadBuffer()
{
FRESULT readStatus = f_read(&file, GetBuffer(), FileBufLen, &lastBufferEntry); // Read a chunk of file
if (readStatus)
{
platform->Message(BOTH_ERROR_MESSAGE, "Error reading file.\n");
return false;
}
bufferPointer = 0;
return true;
}
// Single character read via the buffer
bool FileStore::Read(char& b)
{
if (!inUse)
{
platform->Message(BOTH_ERROR_MESSAGE, "Attempt to read from a non-open file.\n");
return false;
}
if (bufferPointer >= FileBufLen)
{
bool ok = ReadBuffer();
if (!ok)
{
return false;
}
}
if (bufferPointer >= lastBufferEntry)
{
b = 0; // Good idea?
return false;
}
b = (char) GetBuffer()[bufferPointer];
bufferPointer++;
return true;
}
// Block read, doesn't use the buffer
int FileStore::Read(char* extBuf, unsigned int nBytes)
{
if (!inUse)
{
platform->Message(BOTH_ERROR_MESSAGE, "Attempt to read from a non-open file.\n");
return -1;
}
bufferPointer = FileBufLen; // invalidate the buffer
UINT bytes_read;
FRESULT readStatus = f_read(&file, extBuf, nBytes, &bytes_read);
if (readStatus != FR_OK)
{
platform->Message(BOTH_ERROR_MESSAGE, "Error reading file.\n");
return -1;
}
return (int)bytes_read;
}
bool FileStore::WriteBuffer()
{
if (bufferPointer != 0)
{
bool ok = InternalWriteBlock((const char*)GetBuffer(), bufferPointer);
if (!ok)
{
platform->Message(BOTH_ERROR_MESSAGE, "Cannot write to file. Disc may be full.\n");
return false;
}
bufferPointer = 0;
}
return true;
}
bool FileStore::Write(char b)
{
if (!inUse)
{
platform->Message(BOTH_ERROR_MESSAGE, "Attempt to write byte to a non-open file.\n");
return false;
}
GetBuffer()[bufferPointer] = b;
bufferPointer++;
if (bufferPointer >= FileBufLen)
{
return WriteBuffer();
}
return true;
}
bool FileStore::Write(const char* b)
{
if (!inUse)
{
platform->Message(BOTH_ERROR_MESSAGE, "Attempt to write string to a non-open file.\n");
return false;
}
int i = 0;
while (b[i])
{
if (!Write(b[i++]))
{
return false;
}
}
return true;
}
// Direct block write that bypasses the buffer. Used when uploading files.
bool FileStore::Write(const char *s, unsigned int len)
{
if (!inUse)
{
platform->Message(BOTH_ERROR_MESSAGE, "Attempt to write block to a non-open file.\n");
return false;
}
if (!WriteBuffer())
{
return false;
}
return InternalWriteBlock(s, len);
}
// Debugging variables
//extern "C" uint32_t numRead, numWrite;
//uint32_t maxRead, maxWrite;
bool FileStore::InternalWriteBlock(const char *s, unsigned int len)
{
unsigned int bytesWritten;
uint32_t time = micros();
// numRead = numWrite = 0;
FRESULT writeStatus = f_write(&file, s, len, &bytesWritten);
time = micros() - time;
if (time > longestWriteTime)
{
longestWriteTime = time;
// maxRead=numRead; maxWrite=numWrite;
}
if ((writeStatus != FR_OK) || (bytesWritten != len))
{
platform->Message(BOTH_ERROR_MESSAGE, "Cannot write to file. Disc may be full.\n");
return false;
}
return true;
}
bool FileStore::Flush()
{
if (!inUse)
{
platform->Message(BOTH_ERROR_MESSAGE, "Attempt to flush a non-open file.\n");
return false;
}
if (!WriteBuffer())
{
return false;
}
return f_sync(&file) == FR_OK;
}
float FileStore::GetAndClearLongestWriteTime()
{
float ret = (float)longestWriteTime/1000.0;
longestWriteTime = 0;
return ret;
}
// End