You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
428 lines
9.9 KiB
428 lines
9.9 KiB
2 years ago
|
/*
|
||
|
* EEZ Modular Firmware
|
||
|
* Copyright (C) 2015-present, Envox d.o.o.
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
#include <eez/fs/fs.h>
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <chrono>
|
||
|
#include <ctime>
|
||
|
|
||
|
#ifdef EEZ_PLATFORM_SIMULATOR_WIN32
|
||
|
|
||
|
#undef INPUT
|
||
|
#undef OUTPUT
|
||
|
#include <direct.h>
|
||
|
#include <io.h>
|
||
|
#include <sys/stat.h>
|
||
|
#define WIN32_LEAN_AND_MEAN
|
||
|
#include <Windows.h>
|
||
|
|
||
|
#else
|
||
|
|
||
|
#include <dirent.h>
|
||
|
#include <errno.h>
|
||
|
#include <sys/stat.h> // mkdir
|
||
|
#include <sys/statvfs.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#include <eez/core/util.h>
|
||
|
|
||
|
#if OPTION_SCPI
|
||
|
#include <scpi/scpi.h>
|
||
|
#else
|
||
|
#define SCPI_ERROR_MASS_STORAGE_ERROR -321
|
||
|
#define SCPI_RES_OK -161
|
||
|
#endif
|
||
|
|
||
|
namespace eez {
|
||
|
|
||
|
std::string getRealPath(const char *path) {
|
||
|
std::string realPath;
|
||
|
|
||
|
realPath = "sd_card";
|
||
|
|
||
|
if (path[0] >= '0' && path[0] <= '9' && path[1] == ':') {
|
||
|
if (path[0] >= '1') {
|
||
|
realPath += "_slot_";
|
||
|
realPath += path[0];
|
||
|
}
|
||
|
path += 2;
|
||
|
}
|
||
|
|
||
|
if (path[0]) {
|
||
|
if (path[0] != '/') {
|
||
|
realPath += "/";
|
||
|
}
|
||
|
|
||
|
realPath += path;
|
||
|
}
|
||
|
|
||
|
// remove trailing slash
|
||
|
if (realPath[realPath.size() - 1] == '/') {
|
||
|
realPath = realPath.substr(0, realPath.size() - 1);
|
||
|
}
|
||
|
|
||
|
return getConfFilePath(realPath.c_str());
|
||
|
}
|
||
|
|
||
|
bool pathExists(const char *path) {
|
||
|
try {
|
||
|
std::string realPath = getRealPath(path);
|
||
|
return std::filesystem::exists(realPath);
|
||
|
} catch (...) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
FileInfo::FileInfo() {
|
||
|
}
|
||
|
|
||
|
SdFatResult FileInfo::fstat(const char *filePath) {
|
||
|
try {
|
||
|
std::string realPath = getRealPath(filePath);
|
||
|
m_entry = std::filesystem::directory_entry(realPath);
|
||
|
return SD_FAT_RESULT_OK;
|
||
|
} catch (...) {
|
||
|
return SD_FAT_RESULT_DISK_ERR;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
FileInfo::operator bool() {
|
||
|
try {
|
||
|
return m_entry.exists();
|
||
|
} catch (...) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
bool FileInfo::isDirectory() {
|
||
|
try {
|
||
|
return m_entry.is_directory();
|
||
|
} catch (...) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void FileInfo::getName(char *name, size_t size) {
|
||
|
try {
|
||
|
stringCopy(name, size, m_entry.path().filename().generic_string().c_str());
|
||
|
} catch (...) {
|
||
|
*name = 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
size_t FileInfo::getSize() {
|
||
|
try {
|
||
|
if (m_entry.is_directory()) {
|
||
|
return 0;
|
||
|
}
|
||
|
return m_entry.file_size();
|
||
|
} catch (...) {
|
||
|
return 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
bool FileInfo::isHiddenOrSystemFile() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
static tm *getGmTime(FileInfo *fileInfo) {
|
||
|
try {
|
||
|
using namespace std::chrono;
|
||
|
time_t t = duration_cast<seconds>(fileInfo->m_entry.last_write_time().time_since_epoch() - 11644473600s).count();
|
||
|
return gmtime(&t);
|
||
|
} catch (...) {
|
||
|
return nullptr;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
int FileInfo::getModifiedYear() {
|
||
|
tm *tm = getGmTime(this);
|
||
|
return tm ? tm->tm_year + 1900 : 0;
|
||
|
}
|
||
|
|
||
|
int FileInfo::getModifiedMonth() {
|
||
|
struct tm *tm = getGmTime(this);
|
||
|
return tm ? tm->tm_mon + 1 : 0;
|
||
|
}
|
||
|
|
||
|
int FileInfo::getModifiedDay() {
|
||
|
struct tm *tm = getGmTime(this);
|
||
|
return tm ? tm->tm_mday : 0;
|
||
|
}
|
||
|
|
||
|
int FileInfo::getModifiedHour() {
|
||
|
struct tm *tm = getGmTime(this);
|
||
|
return tm ? tm->tm_hour : 0;
|
||
|
}
|
||
|
|
||
|
int FileInfo::getModifiedMinute() {
|
||
|
struct tm *tm = getGmTime(this);
|
||
|
return tm ? tm->tm_min : 0;
|
||
|
}
|
||
|
|
||
|
int FileInfo::getModifiedSecond() {
|
||
|
struct tm *tm = getGmTime(this);
|
||
|
return tm ? tm->tm_sec : 0;
|
||
|
}
|
||
|
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
Directory::Directory() {
|
||
|
}
|
||
|
|
||
|
Directory::~Directory() {
|
||
|
}
|
||
|
|
||
|
void Directory::close() {
|
||
|
}
|
||
|
|
||
|
SdFatResult Directory::findFirst(const char *path, FileInfo &fileInfo) {
|
||
|
try {
|
||
|
std::string realPath = getRealPath(path);
|
||
|
m_it = std::filesystem::directory_iterator(std::filesystem::path(realPath));
|
||
|
if (m_it != std::filesystem::directory_iterator()) {
|
||
|
fileInfo.m_entry = *m_it;
|
||
|
return SD_FAT_RESULT_OK;
|
||
|
}
|
||
|
} catch (...) {
|
||
|
}
|
||
|
return SD_FAT_RESULT_DISK_ERR;
|
||
|
}
|
||
|
|
||
|
SdFatResult Directory::findNext(FileInfo &fileInfo) {
|
||
|
try {
|
||
|
m_it++;
|
||
|
if (m_it != std::filesystem::directory_iterator()) {
|
||
|
fileInfo.m_entry = *m_it;
|
||
|
return SD_FAT_RESULT_OK;
|
||
|
}
|
||
|
} catch (...) {
|
||
|
}
|
||
|
return SD_FAT_RESULT_DISK_ERR;
|
||
|
}
|
||
|
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
File::File() {}
|
||
|
|
||
|
bool File::open(const char *path, uint8_t mode) {
|
||
|
const char *fmode;
|
||
|
|
||
|
fmode = "";
|
||
|
|
||
|
if (mode == (FILE_OPEN_EXISTING | FILE_READ)) {
|
||
|
fmode = "rb";
|
||
|
} else if (mode == (FILE_OPEN_ALWAYS | FILE_WRITE)) {
|
||
|
fmode = "r+b";
|
||
|
m_fp = fopen(getRealPath(path).c_str(), fmode);
|
||
|
if (m_fp) {
|
||
|
return true;
|
||
|
}
|
||
|
fmode = "wb";
|
||
|
} else if (mode == (FILE_OPEN_APPEND | FILE_WRITE)) {
|
||
|
fmode = "ab";
|
||
|
} else if (mode == (FILE_CREATE_ALWAYS | FILE_WRITE)) {
|
||
|
fmode = "wb";
|
||
|
}
|
||
|
|
||
|
m_fp = fopen(getRealPath(path).c_str(), fmode);
|
||
|
|
||
|
m_isOpen = m_fp != nullptr;
|
||
|
|
||
|
return m_fp != nullptr;
|
||
|
}
|
||
|
|
||
|
File::~File() {
|
||
|
close();
|
||
|
}
|
||
|
|
||
|
bool File::close() {
|
||
|
int result = 0;
|
||
|
if (m_fp) {
|
||
|
result = fclose(m_fp);
|
||
|
m_fp = NULL;
|
||
|
}
|
||
|
m_isOpen = false;
|
||
|
return !result;
|
||
|
}
|
||
|
|
||
|
bool File::isOpen() {
|
||
|
return m_isOpen;
|
||
|
}
|
||
|
|
||
|
bool File::truncate(uint32_t length) {
|
||
|
#ifdef EEZ_PLATFORM_SIMULATOR_WIN32
|
||
|
return _chsize(_fileno(m_fp), length) == 0;
|
||
|
#else
|
||
|
return ftruncate(fileno(m_fp), length) == 0;
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
size_t File::size() {
|
||
|
uint32_t curpos = ftell(m_fp);
|
||
|
fseek(m_fp, 0, SEEK_END);
|
||
|
uint32_t size = ftell(m_fp);
|
||
|
fseek(m_fp, curpos, SEEK_SET);
|
||
|
return size;
|
||
|
}
|
||
|
|
||
|
bool File::available() {
|
||
|
return peek() != EOF;
|
||
|
}
|
||
|
|
||
|
bool File::seek(uint32_t pos) {
|
||
|
return fseek(m_fp, pos, SEEK_SET) == 0;
|
||
|
}
|
||
|
|
||
|
size_t File::tell() {
|
||
|
return ftell(m_fp);
|
||
|
}
|
||
|
|
||
|
int File::peek() {
|
||
|
int c = getc(m_fp);
|
||
|
|
||
|
if (c == EOF) {
|
||
|
return EOF;
|
||
|
}
|
||
|
|
||
|
ungetc(c, m_fp);
|
||
|
|
||
|
return c;
|
||
|
}
|
||
|
|
||
|
int File::read() {
|
||
|
return getc(m_fp);
|
||
|
}
|
||
|
|
||
|
size_t File::read(void *buf, uint32_t nbyte) {
|
||
|
return fread(buf, 1, nbyte, m_fp);
|
||
|
}
|
||
|
|
||
|
size_t File::write(const void *buf, size_t size) {
|
||
|
return fwrite(buf, 1, size, m_fp);
|
||
|
}
|
||
|
|
||
|
bool File::sync() {
|
||
|
return !fflush(m_fp);
|
||
|
}
|
||
|
|
||
|
void File::print(float value, int numDecimalDigits) {
|
||
|
fprintf(m_fp, "%.*f", numDecimalDigits, value);
|
||
|
}
|
||
|
|
||
|
void File::print(char value) {
|
||
|
fputc(value, m_fp);
|
||
|
}
|
||
|
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
bool SdFat::mount(int *err) {
|
||
|
// make sure SD card root path exists
|
||
|
mkdir("/");
|
||
|
mkdir("1:/");
|
||
|
mkdir("2:/");
|
||
|
mkdir("3:/");
|
||
|
|
||
|
if (!pathExists("/")) {
|
||
|
*err = SCPI_ERROR_MASS_STORAGE_ERROR;
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
*err = SCPI_RES_OK;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
void SdFat::unmount() {
|
||
|
}
|
||
|
|
||
|
bool SdFat::exists(const char *path) {
|
||
|
return pathExists(path);
|
||
|
}
|
||
|
|
||
|
bool SdFat::rename(const char *sourcePath, const char *destinationPath) {
|
||
|
std::string realSourcePath = getRealPath(sourcePath);
|
||
|
std::string realDestinationPath = getRealPath(destinationPath);
|
||
|
return ::rename(realSourcePath.c_str(), realDestinationPath.c_str()) == 0;
|
||
|
}
|
||
|
|
||
|
bool SdFat::remove(const char *path) {
|
||
|
std::string realPath = getRealPath(path);
|
||
|
return ::remove(realPath.c_str()) == 0;
|
||
|
}
|
||
|
|
||
|
bool SdFat::mkdir(const char *path) {
|
||
|
if (pathExists(path)) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
char parentDir[205];
|
||
|
getParentDir(path, parentDir);
|
||
|
|
||
|
if (parentDir[0]) {
|
||
|
if (!mkdir(parentDir)) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
std::string realPath = getRealPath(path);
|
||
|
|
||
|
int result;
|
||
|
#ifdef EEZ_PLATFORM_SIMULATOR_WIN32
|
||
|
result = ::_mkdir(realPath.c_str());
|
||
|
#else
|
||
|
result = ::mkdir(realPath.c_str(), 0700);
|
||
|
#endif
|
||
|
return result == 0 || result == EEXIST;
|
||
|
}
|
||
|
|
||
|
bool SdFat::rmdir(const char *path) {
|
||
|
std::string realPath = getRealPath(path);
|
||
|
#ifdef EEZ_PLATFORM_SIMULATOR_WIN32
|
||
|
int result = ::_rmdir(realPath.c_str());
|
||
|
#else
|
||
|
int result = ::rmdir(realPath.c_str());
|
||
|
#endif
|
||
|
return result == 0;
|
||
|
}
|
||
|
|
||
|
bool SdFat::getInfo(int diskDriveIndex, uint64_t &usedSpace, uint64_t &freeSpace) {
|
||
|
#ifdef EEZ_PLATFORM_SIMULATOR_WIN32
|
||
|
DWORD sectorsPerCluster, bytesPerSector, numberOfFreeClusters, totalNumberOfClusters;
|
||
|
GetDiskFreeSpaceA(getRealPath("").c_str(), §orsPerCluster, &bytesPerSector,
|
||
|
&numberOfFreeClusters, &totalNumberOfClusters);
|
||
|
usedSpace = uint64_t(bytesPerSector) * sectorsPerCluster *
|
||
|
(totalNumberOfClusters - numberOfFreeClusters);
|
||
|
freeSpace = uint64_t(bytesPerSector) * sectorsPerCluster * numberOfFreeClusters;
|
||
|
return true;
|
||
|
#else
|
||
|
struct statvfs buf;
|
||
|
statvfs(getRealPath("").c_str(), &buf);
|
||
|
usedSpace = uint64_t(buf.f_bsize) * (buf.f_blocks - buf.f_bfree);
|
||
|
freeSpace = uint64_t(buf.f_bsize) * buf.f_bfree;
|
||
|
return true;
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
} // namespace eez
|