-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilesystem.ino
223 lines (171 loc) · 5.41 KB
/
filesystem.ino
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
#include <FS.h>
#include <FFat.h>
#include <SPIFFS.h>
#include <LITTLEFS.h>
#include <esp_littlefs.h>
//--------------------------------------------------------------------------------
FBuf *findFBuf( String filename ){
for( int i=0; i < FBUFSIZE; ++i ){
if ( FBFiles[i].filename == filename ) return (&FBFiles[i]);
}
return( NULL );
}
//--------------------------------------------------------------------------------
FBuf *newFBuf( String filename ){
for( int i=0; i < FBUFSIZE; ++i ){
if ( FBFiles[i].filename == "" ) return (&FBFiles[i]);
}
return( NULL );
}
//--------------------------------------------------------------------------------
bool delFBuf( String filename ){
FBuf *dbuf = findFBuf( filename );
if ( dbuf ) {
dbuf->filename = "";
dbuf->size = 0;
free( dbuf->buffer );
dbuf->buffer = NULL;
log_d("deleted buffer for %s", filename.c_str() );
return( true );
}
log_d("could not find buffer for %s", filename.c_str() );
return( false );
}
//--------------------------------------------------------------------------------
FBuf *addFBuf( String filename ){
if( !psramFound() ){
log_i( "No PSRAM, no file buffers");
return NULL ;
}
//log_i( "buffering %s", filename.c_str() );
FBuf *fb = findFBuf( filename );
if ( fb ){
log_i( "%s already buffered", filename.c_str() );
return fb;
}
fb = newFBuf( filename );
if ( fb == NULL ) {
log_e( "no file buffers left for %s", filename.c_str() );
return NULL;
}
File sourcefile;
size_t filesize;
sourcefile = RadioFS.open ( filename, FILE_READ );
if ( !sourcefile ){ log_e( "Error opening %s for read ", filename.c_str()); return( NULL );}
filesize = sourcefile.size();
//log_i( "Opened %s for read, filesize %u \n",filename.c_str(), filesize);
fb->buffer = (uint8_t *) ps_calloc( filesize ,1 );
if ( ! fb->buffer ) {
sourcefile.close();
return (NULL);
}
size_t totalbytesread=0;
int bytesread = 0;
uint8_t *endpsbuffer = fb->buffer;
while( sourcefile.available() ){
bytesread = sourcefile.read( endpsbuffer, (filesize - totalbytesread) );
if ( bytesread < 0 ){
sourcefile.close();
free ( fb->buffer );
log_e( "Read returned < 0 while reading file %s ", filename.c_str() );
return( NULL );
}
totalbytesread += bytesread;
endpsbuffer += bytesread;
}
sourcefile.close();
fb->size = endpsbuffer - fb->buffer;
fb->filename = filename;
return ( fb );
}
//---------------------------------------------------------------------------
void FBuffAll ( const char *path ){
fs::File dir = RadioFS.open( path );
fs::File entry;
if ( !dir.isDirectory() ){
dir.close();
return;
}
char *fname;
bool isdir;
while ( entry = dir.openNextFile() ){
fname = ps_strdup( entry.name() );
isdir = entry.isDirectory();
entry.close();
if ( isdir ){
FBuffAll(fname);
}else{
if ( !String(fname).endsWith(".bin") && !String(fname).endsWith(".plg") && !String(fname).endsWith(".txt") && !String(fname).endsWith("stations.json")){
//log_i( "add fbuf %s", fname );
if ( strcasecmp( (fname + strlen(fname) - 4), ".bmp" ) ){
addFBuf( String(fname) );
}else{
drawBmp( fname, 0, 0, NULL, false);
}
}else{
//log_i( "%s not buffered, wrong type", fname );
}
}
free(fname);
}
dir.close();
}
/*-----------------------------------------------------------------*/
void showFBuf(AsyncWebServerRequest *request)
{
String output = "{ \"bufferedfiles\" : [\r\n";
uint32_t foundcount = 0, totalsize=0;
for ( int i=0; i < FBUFSIZE; ++i ){
if ( FBFiles[i].size != 0 ){
totalsize += FBFiles[i].size;
if ( foundcount) output += ",\r\n";
foundcount++;
output += " {\"filename\" : \"";
output += FBFiles[i].filename;
output += "\"," ;
output += "\"size\" : ";
output += FBFiles[i].size;
output += "}" ;
}
}
output += "],\r\n" ;
output += "\"buffercount\" : " ;
output += foundcount;
output += ",\r\n" ;
output += "\"totalsize\" : " ;
output += totalsize;
output += "}\r\n" ;
request->send(200, "application/json;charset=UTF-8", output);
}
//-----------------------------------------------------
int syslog( char *message){
FILE *slog=NULL;
time_t now;
now = time(nullptr);
char tijd[32];
char filename[128];
struct stat buf;
sprintf( filename, "%s/syslog.txt", RadioMount);
slog = fopen( filename, "a");
if ( slog == NULL) {
log_d("Couldn't open %s (errno %d) for append, trying for write", filename, errno );
slog = fopen( filename, "w");
if ( slog == NULL) {
log_d("Couldn't open %s (errno %d) for write either", filename, errno );
return(-1);
}
}
int fd = fileno( slog );
fstat(fd, &buf);
if ( buf.st_size > 20000 ){
fclose( slog );
log_i("remove syslog.txt, as it was larger than 20k");
remove( filename );
slog = fopen( filename, "w");
}
sprintf( tijd,"%s", asctime( localtime(&now)) );
tijd[ strlen(tijd) - 1 ] = 0;
fprintf( slog,"%s - %s\n", tijd, message);
fclose(slog);
return(0);
}