-
Notifications
You must be signed in to change notification settings - Fork 6
/
fs_stream.c
299 lines (238 loc) · 6.83 KB
/
fs_stream.c
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
//
// fs_stream.c - output stream redirector (to in-memory file)
//
// v0.1 / 2022-08-29 / Io Engineering / Terje
//
/*
Copyright (c) 2022, Terje Io
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its contributors may
be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if defined(ARDUINO)
#include "../driver.h"
#include "../grbl/hal.h"
#include "../grbl/platform.h"
#include "../grbl/vfs.h"
#else
#include "driver.h"
#include "grbl/hal.h"
#include "grbl/platform.h"
#include "grbl/vfs.h"
#endif
#include <stdlib.h>
#include <string.h>
typedef struct {
const char *data;
const char *pos;
size_t len;
size_t remaining;
vfs_file_t file;
} stream_file_t;
static stream_write_ptr wrptr;
static stream_block_tx_buffer_t txbuf = {0};
static stream_file_t v_file = {0};
static driver_reset_ptr driver_reset = NULL;
static bool vf_write (void)
{
char *data = realloc((void *)v_file.data, v_file.len + txbuf.length);
if(data == NULL) {
if(v_file.data != NULL)
free((void *)v_file.data);
v_file.len = 0;
v_file.data = NULL;
return false;
}
v_file.data = data;
memcpy((void *)(v_file.data + v_file.len), txbuf.data, txbuf.length);
v_file.len += txbuf.length;
txbuf.s = txbuf.data;
txbuf.length = 0;
return true;
}
static void stream_write (const char *s)
{
size_t length = strlen(s);
if(length == 0)
return;
if(txbuf.length && (txbuf.length + length) > txbuf.max_length) {
if(!vf_write())
return;
}
while(length > txbuf.max_length) {
txbuf.length = txbuf.max_length;
memcpy(txbuf.s, s, txbuf.length);
if(!vf_write())
return;
length -= txbuf.max_length;
s += txbuf.max_length;
}
if(length) {
memcpy(txbuf.s, s, length);
txbuf.length += length;
txbuf.s += length;
}
}
static vfs_file_t *fs_open (const char *filename, const char *mode)
{
if(hal.stream.write == stream_write)
return NULL;
// if(v_file.data)
// return NULL;
if(strchr(mode, 'w')) {
wrptr = hal.stream.write;
hal.stream.write = stream_write;
txbuf.s = txbuf.data;
txbuf.length = 0;
txbuf.max_length = sizeof(txbuf.data);
v_file.len = 0;
v_file.file.handle = 1;
#if LWIP_HTTPD_FILE_STATE
v_file.state = (void *)txt_file;
#endif
if(v_file.data) {
free((void *)v_file.data);
v_file.data = NULL;
}
} else {
v_file.file.size = v_file.len;
v_file.pos = v_file.data;
v_file.remaining = v_file.len;
}
return v_file.file.handle == 0 ? NULL : &v_file.file;
}
static void fs_close (vfs_file_t *file)
{
if(hal.stream.write == stream_write) {
hal.stream.write = wrptr;
wrptr = NULL;
if(txbuf.length)
vf_write();
}
}
static size_t fs_read (void *buffer, size_t size, size_t count, vfs_file_t *file)
{
size_t rcount = 0;
if(v_file.pos) {
rcount = size * count > v_file.remaining ? v_file.remaining : size * count;
memcpy(buffer, v_file.pos, rcount);
v_file.pos += rcount;
} else
v_file.remaining = rcount = 0;
v_file.remaining -= rcount;
return rcount;
}
static size_t fs_write (const void *buffer, size_t size, size_t count, vfs_file_t *file)
{
char *s = (char *)buffer;
size_t length = size * count;
if(length == 0)
return 0;
if(txbuf.length && (txbuf.length + length) > txbuf.max_length) {
if(!vf_write())
return 0;
}
while(length > txbuf.max_length) {
txbuf.length = txbuf.max_length;
memcpy(txbuf.s, s, txbuf.length);
if(!vf_write())
return 0;
length -= txbuf.max_length;
s += txbuf.max_length;
}
if(length) {
memcpy(txbuf.s, s, length);
txbuf.length += length;
txbuf.s += length;
}
return length;
}
static size_t fs_tell (vfs_file_t *file)
{
return v_file.len - v_file.remaining;
}
static bool fs_eof (vfs_file_t *file)
{
return v_file.remaining == 0;
}
static int fs_unlink (const char *filename)
{
if(v_file.data != NULL) {
free((void *)v_file.data);
v_file.data = NULL;
}
v_file.file.handle = 0;
return 0;
}
static int fs_dirop (const char *path)
{
return -1;
}
static vfs_dir_t *fs_opendir (const char *path)
{
return NULL;
}
static void fs_closedir (vfs_dir_t *dir)
{
}
static int fs_stat (const char *filename, vfs_stat_t *st)
{
if (v_file.file.handle) {
st->st_size = v_file.len;
}
return v_file.file.handle ? 0 : -1;
}
static void fs_reset (void)
{
driver_reset();
if(hal.stream.write == stream_write) {
hal.stream.write = wrptr;
wrptr = NULL;
}
if(v_file.data != NULL) {
free((void *)v_file.data);
v_file.data = NULL;
}
v_file.file.handle = 0;
}
void fs_stream_mount (void)
{
static const vfs_t fs = {
.fopen = fs_open,
.fclose = fs_close,
.fread = fs_read,
.fwrite = fs_write,
.ftell = fs_tell,
.feof = fs_eof,
.funlink = fs_unlink,
.fmkdir = fs_dirop,
.fchdir = fs_dirop,
.frmdir = fs_dirop,
.fopendir = fs_opendir,
.fclosedir = fs_closedir,
.fstat = fs_stat
};
if(driver_reset == NULL) {
driver_reset = hal.driver_reset;
hal.driver_reset = fs_reset;
vfs_mount("/stream", &fs, (vfs_st_mode_t){ .directory = true, .hidden = true });
}
}