2021-10-17 01:09:26 +00:00
|
|
|
#include <nrf_log.h>
|
|
|
|
#include "FSService.h"
|
2021-10-17 16:04:23 +00:00
|
|
|
#include "components/ble/BleController.h"
|
2021-10-20 01:30:04 +00:00
|
|
|
#include "systemtask/SystemTask.h"
|
2021-10-17 01:09:26 +00:00
|
|
|
|
|
|
|
using namespace Pinetime::Controllers;
|
|
|
|
|
2021-10-18 04:20:26 +00:00
|
|
|
constexpr ble_uuid16_t FSService::fsServiceUuid;
|
2021-10-17 01:09:26 +00:00
|
|
|
constexpr ble_uuid128_t FSService::fsVersionUuid;
|
|
|
|
constexpr ble_uuid128_t FSService::fsTransferUuid;
|
|
|
|
|
|
|
|
int FSServiceCallback(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt* ctxt, void* arg) {
|
|
|
|
auto* fsService = static_cast<FSService*>(arg);
|
|
|
|
return fsService->OnFSServiceRequested(conn_handle, attr_handle, ctxt);
|
|
|
|
}
|
|
|
|
|
2021-10-20 01:30:04 +00:00
|
|
|
FSService::FSService(Pinetime::System::SystemTask& systemTask, Pinetime::Controllers::FS& fs)
|
|
|
|
: systemTask {systemTask},
|
|
|
|
fs {fs},
|
2021-10-17 16:04:23 +00:00
|
|
|
characteristicDefinition {{.uuid = &fsVersionUuid.u,
|
2021-10-17 01:09:26 +00:00
|
|
|
.access_cb = FSServiceCallback,
|
|
|
|
.arg = this,
|
|
|
|
.flags = BLE_GATT_CHR_F_READ,
|
|
|
|
.val_handle = &versionCharacteristicHandle},
|
|
|
|
{
|
|
|
|
.uuid = &fsTransferUuid.u,
|
|
|
|
.access_cb = FSServiceCallback,
|
|
|
|
.arg = this,
|
|
|
|
.flags = BLE_GATT_CHR_F_WRITE | BLE_GATT_CHR_F_READ | BLE_GATT_CHR_F_NOTIFY,
|
2021-10-17 16:04:23 +00:00
|
|
|
.val_handle = &transferCharacteristicHandle,
|
2021-10-17 01:09:26 +00:00
|
|
|
},
|
|
|
|
{0}},
|
|
|
|
serviceDefinition {
|
|
|
|
{/* Device Information Service */
|
|
|
|
.type = BLE_GATT_SVC_TYPE_PRIMARY,
|
|
|
|
.uuid = &fsServiceUuid.u,
|
|
|
|
.characteristics = characteristicDefinition},
|
|
|
|
{0},
|
|
|
|
} {
|
|
|
|
}
|
|
|
|
|
|
|
|
void FSService::Init() {
|
|
|
|
int res = 0;
|
|
|
|
res = ble_gatts_count_cfg(serviceDefinition);
|
|
|
|
ASSERT(res == 0);
|
|
|
|
|
|
|
|
res = ble_gatts_add_svcs(serviceDefinition);
|
|
|
|
ASSERT(res == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int FSService::OnFSServiceRequested(uint16_t connectionHandle, uint16_t attributeHandle, ble_gatt_access_ctxt* context) {
|
|
|
|
if (attributeHandle == versionCharacteristicHandle) {
|
|
|
|
NRF_LOG_INFO("FS_S : handle = %d", versionCharacteristicHandle);
|
|
|
|
int res = os_mbuf_append(context->om, &fsVersion, sizeof(fsVersion));
|
|
|
|
return (res == 0) ? 0 : BLE_ATT_ERR_INSUFFICIENT_RES;
|
|
|
|
}
|
2021-10-17 16:04:23 +00:00
|
|
|
if (attributeHandle == transferCharacteristicHandle) {
|
|
|
|
return FSCommandHandler(connectionHandle, context->om);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int FSService::FSCommandHandler(uint16_t connectionHandle, os_mbuf* om) {
|
|
|
|
auto command = static_cast<commands>(om->om_data[0]);
|
2021-10-20 01:30:04 +00:00
|
|
|
NRF_LOG_INFO("[FS_S] -> FSCommandHandler Command %d", command);
|
|
|
|
// Just always make sure we are awake...
|
|
|
|
systemTask.PushMessage(Pinetime::System::Messages::StartFileTransfer);
|
|
|
|
vTaskDelay(10);
|
|
|
|
while (systemTask.IsSleeping()) {
|
|
|
|
vTaskDelay(100); // 50ms
|
|
|
|
}
|
2021-11-21 21:35:41 +00:00
|
|
|
lfs_dir_t dir = {0};
|
|
|
|
lfs_info info = {0};
|
|
|
|
lfs_file f = {0};
|
2021-10-17 16:04:23 +00:00
|
|
|
switch (command) {
|
2021-10-18 04:20:26 +00:00
|
|
|
case commands::READ: {
|
|
|
|
NRF_LOG_INFO("[FS_S] -> Read");
|
|
|
|
auto* header = (ReadHeader*) om->om_data;
|
|
|
|
uint16_t plen = header->pathlen;
|
2021-10-22 03:34:23 +00:00
|
|
|
if (plen > maxpathlen) { //> counts for null term
|
2021-10-18 04:20:26 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
memcpy(filepath, header->pathstr, plen);
|
2022-05-31 19:17:36 +00:00
|
|
|
filepath[plen] = 0; // Copy and null terminate string
|
2021-10-18 04:20:26 +00:00
|
|
|
ReadResponse resp;
|
2021-10-25 03:02:02 +00:00
|
|
|
os_mbuf* om;
|
2021-10-18 04:20:26 +00:00
|
|
|
resp.command = commands::READ_DATA;
|
|
|
|
resp.status = 0x01;
|
2021-10-22 03:34:23 +00:00
|
|
|
resp.chunkoff = header->chunkoff;
|
2021-10-18 04:20:26 +00:00
|
|
|
int res = fs.Stat(filepath, &info);
|
|
|
|
if (res == LFS_ERR_NOENT && info.type != LFS_TYPE_DIR) {
|
2021-11-20 20:18:14 +00:00
|
|
|
resp.status = (int8_t) res;
|
2021-10-18 04:20:26 +00:00
|
|
|
resp.chunklen = 0;
|
|
|
|
resp.totallen = 0;
|
2021-10-25 03:02:02 +00:00
|
|
|
om = ble_hs_mbuf_from_flat(&resp, sizeof(ReadResponse));
|
2021-10-18 04:20:26 +00:00
|
|
|
} else {
|
2021-10-22 03:34:23 +00:00
|
|
|
resp.chunklen = std::min(header->chunksize, info.size); // TODO add mtu somehow
|
2021-10-18 04:20:26 +00:00
|
|
|
resp.totallen = info.size;
|
|
|
|
fs.FileOpen(&f, filepath, LFS_O_RDONLY);
|
|
|
|
fs.FileSeek(&f, header->chunkoff);
|
2021-11-21 21:35:41 +00:00
|
|
|
uint8_t fileData[resp.chunklen] = {0};
|
2021-10-22 03:34:23 +00:00
|
|
|
resp.chunklen = fs.FileRead(&f, fileData, resp.chunklen);
|
|
|
|
om = ble_hs_mbuf_from_flat(&resp, sizeof(ReadResponse));
|
|
|
|
os_mbuf_append(om, fileData, resp.chunklen);
|
2021-10-25 03:02:02 +00:00
|
|
|
fs.FileClose(&f);
|
2021-10-18 04:20:26 +00:00
|
|
|
}
|
2021-10-25 03:02:02 +00:00
|
|
|
|
2021-10-22 03:34:23 +00:00
|
|
|
ble_gattc_notify_custom(connectionHandle, transferCharacteristicHandle, om);
|
|
|
|
break;
|
2021-10-18 04:20:26 +00:00
|
|
|
}
|
|
|
|
case commands::READ_PACING: {
|
2021-10-22 03:34:23 +00:00
|
|
|
NRF_LOG_INFO("[FS_S] -> Readpacing");
|
|
|
|
auto* header = (ReadHeader*) om->om_data;
|
|
|
|
ReadResponse resp;
|
2021-10-18 04:20:26 +00:00
|
|
|
resp.command = commands::READ_DATA;
|
|
|
|
resp.status = 0x01;
|
2021-10-22 03:34:23 +00:00
|
|
|
resp.chunkoff = header->chunkoff;
|
2021-10-18 04:20:26 +00:00
|
|
|
int res = fs.Stat(filepath, &info);
|
|
|
|
if (res == LFS_ERR_NOENT && info.type != LFS_TYPE_DIR) {
|
2021-11-20 20:18:14 +00:00
|
|
|
resp.status = (int8_t) res;
|
2021-10-18 04:20:26 +00:00
|
|
|
resp.chunklen = 0;
|
|
|
|
resp.totallen = 0;
|
|
|
|
} else {
|
2021-10-22 03:34:23 +00:00
|
|
|
resp.chunklen = std::min(header->chunksize, info.size); // TODO add mtu somehow
|
2021-10-18 04:20:26 +00:00
|
|
|
resp.totallen = info.size;
|
|
|
|
fs.FileOpen(&f, filepath, LFS_O_RDONLY);
|
|
|
|
fs.FileSeek(&f, header->chunkoff);
|
|
|
|
}
|
2021-10-22 03:34:23 +00:00
|
|
|
os_mbuf* om;
|
|
|
|
if (resp.chunklen > 0) {
|
2021-11-21 21:35:41 +00:00
|
|
|
uint8_t fileData[resp.chunklen] = {0};
|
2021-10-22 03:34:23 +00:00
|
|
|
resp.chunklen = fs.FileRead(&f, fileData, resp.chunklen);
|
|
|
|
om = ble_hs_mbuf_from_flat(&resp, sizeof(ReadResponse));
|
|
|
|
os_mbuf_append(om, fileData, resp.chunklen);
|
|
|
|
} else {
|
|
|
|
resp.chunklen = 0;
|
|
|
|
om = ble_hs_mbuf_from_flat(&resp, sizeof(ReadResponse));
|
2021-10-18 04:20:26 +00:00
|
|
|
}
|
2021-10-22 03:34:23 +00:00
|
|
|
fs.FileClose(&f);
|
|
|
|
ble_gattc_notify_custom(connectionHandle, transferCharacteristicHandle, om);
|
|
|
|
break;
|
2021-10-18 04:20:26 +00:00
|
|
|
}
|
|
|
|
case commands::WRITE: {
|
2021-10-25 03:02:02 +00:00
|
|
|
NRF_LOG_INFO("[FS_S] -> Write");
|
|
|
|
auto* header = (WriteHeader*) om->om_data;
|
|
|
|
uint16_t plen = header->pathlen;
|
|
|
|
if (plen > maxpathlen) { //> counts for null term
|
2021-11-21 03:33:00 +00:00
|
|
|
return -1; // TODO make this actually return a BLE notif
|
2021-10-18 04:20:26 +00:00
|
|
|
}
|
2021-10-25 03:02:02 +00:00
|
|
|
memcpy(filepath, header->pathstr, plen);
|
2022-05-31 19:17:36 +00:00
|
|
|
filepath[plen] = 0; // Copy and null terminate string
|
2021-10-25 03:02:02 +00:00
|
|
|
fileSize = header->totalSize;
|
|
|
|
WriteResponse resp;
|
|
|
|
resp.command = commands::WRITE_PACING;
|
|
|
|
resp.offset = header->offset;
|
|
|
|
resp.modTime = 0;
|
2021-11-21 03:33:00 +00:00
|
|
|
|
2021-11-21 06:17:07 +00:00
|
|
|
int res = fs.FileOpen(&f, filepath, LFS_O_RDWR | LFS_O_CREAT);
|
|
|
|
if (res == 0) {
|
2021-11-21 03:33:00 +00:00
|
|
|
fs.FileClose(&f);
|
|
|
|
resp.status = (res == 0) ? 0x01 : (int8_t) res;
|
|
|
|
}
|
2021-10-25 03:02:02 +00:00
|
|
|
resp.freespace = std::min(fs.getSize() - (fs.GetFSSize() * fs.getBlockSize()), fileSize - header->offset);
|
|
|
|
auto* om = ble_hs_mbuf_from_flat(&resp, sizeof(WriteResponse));
|
|
|
|
ble_gattc_notify_custom(connectionHandle, transferCharacteristicHandle, om);
|
|
|
|
break;
|
2021-10-18 04:20:26 +00:00
|
|
|
}
|
2021-10-25 03:02:02 +00:00
|
|
|
case commands::WRITE_DATA: {
|
|
|
|
NRF_LOG_INFO("[FS_S] -> WriteData");
|
|
|
|
auto* header = (WritePacing*) om->om_data;
|
|
|
|
WriteResponse resp;
|
|
|
|
resp.command = commands::WRITE_PACING;
|
|
|
|
resp.offset = header->offset;
|
2021-11-21 03:33:00 +00:00
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
if (!(res = fs.FileOpen(&f, filepath, LFS_O_RDWR | LFS_O_CREAT))) {
|
2021-11-21 21:35:41 +00:00
|
|
|
if ((res = fs.FileSeek(&f, header->offset)) >= 0) {
|
2021-11-21 03:33:00 +00:00
|
|
|
res = fs.FileWrite(&f, header->data, header->dataSize);
|
|
|
|
}
|
|
|
|
fs.FileClose(&f);
|
|
|
|
}
|
2021-11-20 20:18:14 +00:00
|
|
|
if (res < 0) {
|
|
|
|
resp.status = (int8_t) res;
|
2021-11-20 04:57:02 +00:00
|
|
|
}
|
2021-10-25 03:02:02 +00:00
|
|
|
resp.freespace = std::min(fs.getSize() - (fs.GetFSSize() * fs.getBlockSize()), fileSize - header->offset);
|
|
|
|
auto* om = ble_hs_mbuf_from_flat(&resp, sizeof(WriteResponse));
|
|
|
|
ble_gattc_notify_custom(connectionHandle, transferCharacteristicHandle, om);
|
|
|
|
break;
|
2021-10-18 04:20:26 +00:00
|
|
|
}
|
2021-10-17 23:07:43 +00:00
|
|
|
case commands::DELETE: {
|
|
|
|
NRF_LOG_INFO("[FS_S] -> Delete");
|
2021-10-18 04:20:26 +00:00
|
|
|
auto* header = (DelHeader*) om->om_data;
|
2021-10-17 23:07:43 +00:00
|
|
|
uint16_t plen = header->pathlen;
|
2021-11-21 21:35:41 +00:00
|
|
|
char path[plen + 1] = {0};
|
2021-10-21 04:02:50 +00:00
|
|
|
memcpy(path, header->pathstr, plen);
|
2022-05-31 19:17:36 +00:00
|
|
|
path[plen] = 0; // Copy and null terminate string
|
2021-10-21 04:02:50 +00:00
|
|
|
DelResponse resp {};
|
2021-10-17 23:07:43 +00:00
|
|
|
resp.command = commands::DELETE_STATUS;
|
2021-11-20 04:57:02 +00:00
|
|
|
int res = fs.FileDelete(path);
|
2021-11-20 20:18:14 +00:00
|
|
|
resp.status = (res == 0) ? 0x01 : (int8_t) res;
|
2021-10-17 23:07:43 +00:00
|
|
|
auto* om = ble_hs_mbuf_from_flat(&resp, sizeof(DelResponse));
|
|
|
|
ble_gattc_notify_custom(connectionHandle, transferCharacteristicHandle, om);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case commands::MKDIR: {
|
|
|
|
NRF_LOG_INFO("[FS_S] -> MKDir");
|
|
|
|
auto* header = (MKDirHeader*) om->om_data;
|
|
|
|
uint16_t plen = header->pathlen;
|
2021-11-21 21:35:41 +00:00
|
|
|
char path[plen + 1] = {0};
|
2021-10-17 23:07:43 +00:00
|
|
|
memcpy(path, header->pathstr, plen);
|
2022-05-31 19:17:36 +00:00
|
|
|
path[plen] = 0; // Copy and null terminate string
|
2021-10-21 04:02:50 +00:00
|
|
|
MKDirResponse resp {};
|
2021-10-17 23:07:43 +00:00
|
|
|
resp.command = commands::MKDIR_STATUS;
|
2021-10-21 04:02:50 +00:00
|
|
|
resp.modification_time = 0;
|
2021-11-20 04:57:02 +00:00
|
|
|
int res = fs.DirCreate(path);
|
2021-11-20 20:18:14 +00:00
|
|
|
resp.status = (res == 0) ? 0x01 : (int8_t) res;
|
2021-10-17 23:07:43 +00:00
|
|
|
auto* om = ble_hs_mbuf_from_flat(&resp, sizeof(MKDirResponse));
|
|
|
|
ble_gattc_notify_custom(connectionHandle, transferCharacteristicHandle, om);
|
|
|
|
break;
|
2021-10-21 04:02:50 +00:00
|
|
|
}
|
2021-10-17 16:04:23 +00:00
|
|
|
case commands::LISTDIR: {
|
|
|
|
NRF_LOG_INFO("[FS_S] -> ListDir");
|
2021-10-18 04:20:26 +00:00
|
|
|
ListDirHeader* header = (ListDirHeader*) om->om_data;
|
2021-10-17 16:04:23 +00:00
|
|
|
uint16_t plen = header->pathlen;
|
2021-11-21 21:35:41 +00:00
|
|
|
char path[plen + 1] = {0};
|
2022-05-31 19:17:36 +00:00
|
|
|
path[plen] = 0; // Copy and null terminate string
|
2021-10-17 16:04:23 +00:00
|
|
|
memcpy(path, header->pathstr, plen);
|
2021-10-20 01:30:04 +00:00
|
|
|
|
2021-10-21 04:02:50 +00:00
|
|
|
ListDirResponse resp {};
|
2021-10-17 16:04:23 +00:00
|
|
|
|
2021-10-17 23:07:43 +00:00
|
|
|
resp.command = commands::LISTDIR_ENTRY;
|
2021-11-20 20:18:14 +00:00
|
|
|
resp.status = 0x01;
|
2021-10-17 16:04:23 +00:00
|
|
|
resp.totalentries = 0;
|
|
|
|
resp.entry = 0;
|
2021-10-26 03:42:34 +00:00
|
|
|
resp.modification_time = 0;
|
2021-11-20 04:57:02 +00:00
|
|
|
int res = fs.DirOpen(path, &dir);
|
|
|
|
if (res != 0) {
|
2021-11-20 20:18:14 +00:00
|
|
|
resp.status = (int8_t) res;
|
2021-10-21 04:02:50 +00:00
|
|
|
auto* om = ble_hs_mbuf_from_flat(&resp, sizeof(ListDirResponse));
|
|
|
|
ble_gattc_notify_custom(connectionHandle, transferCharacteristicHandle, om);
|
|
|
|
break;
|
|
|
|
};
|
2021-10-17 16:04:23 +00:00
|
|
|
while (fs.DirRead(&dir, &info)) {
|
|
|
|
resp.totalentries++;
|
|
|
|
}
|
2021-10-17 20:48:34 +00:00
|
|
|
fs.DirRewind(&dir);
|
2021-10-21 04:02:50 +00:00
|
|
|
while (true) {
|
2021-11-20 04:57:02 +00:00
|
|
|
res = fs.DirRead(&dir, &info);
|
2021-10-20 01:30:04 +00:00
|
|
|
if (res <= 0) {
|
2021-10-18 04:20:26 +00:00
|
|
|
break;
|
|
|
|
}
|
2021-10-17 23:07:43 +00:00
|
|
|
switch (info.type) {
|
|
|
|
case LFS_TYPE_REG: {
|
2021-10-17 16:04:23 +00:00
|
|
|
resp.flags = 0;
|
|
|
|
resp.file_size = info.size;
|
|
|
|
break;
|
2021-10-17 23:07:43 +00:00
|
|
|
}
|
|
|
|
case LFS_TYPE_DIR: {
|
|
|
|
resp.flags = 1;
|
|
|
|
resp.file_size = 0;
|
|
|
|
break;
|
2021-10-17 16:04:23 +00:00
|
|
|
}
|
|
|
|
}
|
2021-10-21 04:02:50 +00:00
|
|
|
|
2021-10-22 03:34:23 +00:00
|
|
|
// strcpy(resp.path, info.name);
|
2021-10-17 16:04:23 +00:00
|
|
|
resp.path_length = strlen(info.name);
|
2021-10-21 04:02:50 +00:00
|
|
|
auto* om = ble_hs_mbuf_from_flat(&resp, sizeof(ListDirResponse));
|
2021-10-22 03:34:23 +00:00
|
|
|
os_mbuf_append(om, info.name, resp.path_length);
|
2021-10-17 23:07:43 +00:00
|
|
|
ble_gattc_notify_custom(connectionHandle, transferCharacteristicHandle, om);
|
2021-10-21 04:02:50 +00:00
|
|
|
/*
|
2021-10-22 03:34:23 +00:00
|
|
|
* Todo Figure out how to know when the previous Notify was TX'd
|
|
|
|
* For now just delay 100ms to make sure that the data went out...
|
|
|
|
*/
|
2021-10-20 01:30:04 +00:00
|
|
|
vTaskDelay(100); // Allow stuff to actually go out over the BLE conn
|
2021-10-17 16:04:23 +00:00
|
|
|
resp.entry++;
|
|
|
|
}
|
2021-10-21 04:02:50 +00:00
|
|
|
assert(fs.DirClose(&dir) == 0);
|
2021-10-17 16:04:23 +00:00
|
|
|
resp.file_size = 0;
|
|
|
|
resp.path_length = 0;
|
|
|
|
resp.flags = 0;
|
2021-10-21 04:02:50 +00:00
|
|
|
auto* om = ble_hs_mbuf_from_flat(&resp, sizeof(ListDirResponse));
|
2021-10-17 23:07:43 +00:00
|
|
|
ble_gattc_notify_custom(connectionHandle, transferCharacteristicHandle, om);
|
2021-10-17 22:07:43 +00:00
|
|
|
break;
|
2021-10-17 16:04:23 +00:00
|
|
|
}
|
2021-11-16 04:32:53 +00:00
|
|
|
case commands::MOVE: {
|
|
|
|
NRF_LOG_INFO("[FS_S] -> Move");
|
|
|
|
MoveHeader* header = (MoveHeader*) om->om_data;
|
|
|
|
uint16_t plen = header->OldPathLength;
|
|
|
|
// Null Terminate string
|
|
|
|
header->pathstr[plen] = 0;
|
2021-11-21 21:35:41 +00:00
|
|
|
char path[header->NewPathLength + 1] = {0};
|
2021-11-16 04:32:53 +00:00
|
|
|
memcpy(path, &header->pathstr[plen + 1], header->NewPathLength);
|
2022-05-31 19:17:36 +00:00
|
|
|
path[header->NewPathLength] = 0; // Copy and null terminate string
|
2021-11-16 04:32:53 +00:00
|
|
|
MoveResponse resp {};
|
|
|
|
resp.command = commands::MOVE_STATUS;
|
2021-11-20 20:18:14 +00:00
|
|
|
int8_t res = (int8_t) fs.Rename(header->pathstr, path);
|
2021-11-20 04:57:02 +00:00
|
|
|
resp.status = (res == 0) ? 1 : res;
|
2021-11-16 04:32:53 +00:00
|
|
|
auto* om = ble_hs_mbuf_from_flat(&resp, sizeof(MoveResponse));
|
|
|
|
ble_gattc_notify_custom(connectionHandle, transferCharacteristicHandle, om);
|
|
|
|
}
|
2021-10-21 04:02:50 +00:00
|
|
|
default:
|
|
|
|
break;
|
2021-10-17 16:04:23 +00:00
|
|
|
}
|
2021-10-21 04:02:50 +00:00
|
|
|
NRF_LOG_INFO("[FS_S] -> done ");
|
2021-10-20 01:30:04 +00:00
|
|
|
systemTask.PushMessage(Pinetime::System::Messages::StopFileTransfer);
|
2021-10-17 01:09:26 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2021-10-21 04:02:50 +00:00
|
|
|
|
2021-10-18 04:20:26 +00:00
|
|
|
// Loads resp with file data given a valid filepath header and resp
|
|
|
|
void FSService::prepareReadDataResp(ReadHeader* header, ReadResponse* resp) {
|
2021-10-21 04:02:50 +00:00
|
|
|
// uint16_t plen = header->pathlen;
|
2021-10-18 04:20:26 +00:00
|
|
|
resp->command = commands::READ_DATA;
|
|
|
|
resp->chunkoff = header->chunkoff;
|
|
|
|
resp->status = 0x01;
|
|
|
|
struct lfs_info info = {};
|
|
|
|
int res = fs.Stat(filepath, &info);
|
|
|
|
if (res == LFS_ERR_NOENT && info.type != LFS_TYPE_DIR) {
|
|
|
|
resp->status = 0x03;
|
|
|
|
resp->chunklen = 0;
|
|
|
|
resp->totallen = 0;
|
|
|
|
} else {
|
|
|
|
lfs_file f;
|
|
|
|
resp->chunklen = std::min(header->chunksize, info.size);
|
|
|
|
resp->totallen = info.size;
|
|
|
|
fs.FileOpen(&f, filepath, LFS_O_RDONLY);
|
|
|
|
fs.FileSeek(&f, header->chunkoff);
|
|
|
|
resp->chunklen = fs.FileRead(&f, resp->chunk, resp->chunklen);
|
|
|
|
fs.FileClose(&f);
|
|
|
|
}
|
|
|
|
}
|