Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Edited VFSFileImpl::read to use both read/fread
  • Loading branch information
P-R-O-C-H-Y committed Mar 21, 2022
commit 24031dd89a2055619b7c9360ce6f3148e1eb36e9
25 changes: 24 additions & 1 deletion libraries/FS/src/vfs_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

using namespace fs;

#define READ_SIZE_SWITCH 128 //swithc to read func when read size > 128bytes

FileImplPtr VFSImpl::open(const char* fpath, const char* mode, const bool create)
{
if(!_mountpoint) {
Expand Down Expand Up @@ -374,7 +376,28 @@ size_t VFSFileImpl::read(uint8_t* buf, size_t size)
return 0;
}

return fread(buf, 1, size, _f);
//ERASE BYTEBUFFER and use read when size > READ_SIZE_SWITCH always
if(size > READ_SIZE_SWITCH)
{
//check some data in buffer exists –> clear buffer and move pointer to deleted data
size_t bytesinbuf = __fpending(_f);
if (bytesinbuf && (bytesinbuf != 128)) //buffer lenght is 128 bytes
{
fpurge(_f);
lseek(fileno(_f),(-128+bytesinbuf),SEEK_CUR);
}

int res = ::read(fileno(_f), buf, size);
if (res < 0) {
// an error occurred
return 0;
}
return res;
}
else
{
return fread(buf, 1, size, _f);
}
}

void VFSFileImpl::flush()
Expand Down