mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-21 10:26:06 +03:00
boolean -> bool
This commit is contained in:
parent
3c9d1f20bb
commit
4644c3bad0
@ -21,37 +21,42 @@
|
||||
#include "FileSystem.h"
|
||||
#include "Arduino.h"
|
||||
|
||||
boolean FSClass::mount(){
|
||||
if(_mounted) return true;
|
||||
bool FSClass::mount() {
|
||||
if (_mounted)
|
||||
return true;
|
||||
|
||||
_mounted = spiffs_mount();
|
||||
return _mounted;
|
||||
}
|
||||
|
||||
void FSClass::unmount() {
|
||||
if(!_mounted) return;
|
||||
if (!_mounted)
|
||||
return;
|
||||
|
||||
spiffs_unmount();
|
||||
_mounted = false;
|
||||
}
|
||||
|
||||
boolean FSClass::format(){
|
||||
bool FSClass::format() {
|
||||
return spiffs_format();
|
||||
}
|
||||
|
||||
boolean FSClass::exists(const char *filename){
|
||||
bool FSClass::exists(const char *filename) {
|
||||
spiffs_stat stat = {0};
|
||||
if (SPIFFS_stat(&_filesystemStorageHandle, filename, &stat) < 0) return false;
|
||||
if (SPIFFS_stat(&_filesystemStorageHandle, filename, &stat) < 0)
|
||||
return false;
|
||||
return stat.name[0] != '\0';
|
||||
}
|
||||
|
||||
boolean FSClass::create(const char *filepath){
|
||||
bool FSClass::create(const char *filepath){
|
||||
return SPIFFS_creat(&_filesystemStorageHandle, filepath, 0) == 0;
|
||||
}
|
||||
|
||||
boolean FSClass::remove(const char *filepath){
|
||||
bool FSClass::remove(const char *filepath){
|
||||
return SPIFFS_remove(&_filesystemStorageHandle, filepath) == 0;
|
||||
}
|
||||
|
||||
boolean FSClass::rename(const char *filename, const char *newname){
|
||||
bool FSClass::rename(const char *filename, const char *newname) {
|
||||
return SPIFFS_rename(&_filesystemStorageHandle, filename, newname) == 0;
|
||||
}
|
||||
|
||||
@ -118,12 +123,12 @@ uint32_t FSFile::position(){
|
||||
return SPIFFS_tell(&_filesystemStorageHandle, _file);
|
||||
}
|
||||
|
||||
boolean FSFile::eof(){
|
||||
bool FSFile::eof() {
|
||||
if (! _file) return 0;
|
||||
return SPIFFS_eof(&_filesystemStorageHandle, _file);
|
||||
}
|
||||
|
||||
boolean FSFile::isDirectory(void){
|
||||
bool FSFile::isDirectory(void) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -47,34 +47,29 @@ public:
|
||||
uint32_t remove();
|
||||
uint32_t position();
|
||||
uint32_t size();
|
||||
boolean eof();
|
||||
bool eof();
|
||||
void close();
|
||||
int lastError();
|
||||
void clearError();
|
||||
operator bool() { return _file > 0; }
|
||||
char * name();
|
||||
boolean isDirectory(void);
|
||||
bool isDirectory(void);
|
||||
|
||||
template<typename T> size_t write(T &src){
|
||||
uint8_t obuf[64];
|
||||
size_t doneLen = 0;
|
||||
size_t sentLen;
|
||||
int i;
|
||||
|
||||
while (src.available() > 64){
|
||||
src.read(obuf, 64);
|
||||
sentLen = write(obuf, 64);
|
||||
doneLen = doneLen + sentLen;
|
||||
if(sentLen != 64){
|
||||
return doneLen;
|
||||
const size_t bufferSize = 64;
|
||||
uint8_t obuf[bufferSize];
|
||||
size_t bytesWritten = 0;
|
||||
while (true){
|
||||
size_t available = src.available();
|
||||
size_t willWrite = (available < bufferSize) ? available : bufferSize;
|
||||
src.read(obuf, willWrite);
|
||||
size_t cb = write(obuf, willWrite);
|
||||
bytesWritten += cb;
|
||||
if (cb != willWrite) {
|
||||
return bytesWritten;
|
||||
}
|
||||
}
|
||||
|
||||
size_t leftLen = src.available();
|
||||
src.read(obuf, leftLen);
|
||||
sentLen = write(obuf, leftLen);
|
||||
doneLen = doneLen + sentLen;
|
||||
return doneLen;
|
||||
return bytesWritten;
|
||||
}
|
||||
|
||||
using Print::write;
|
||||
@ -83,16 +78,16 @@ public:
|
||||
class FSClass {
|
||||
|
||||
private:
|
||||
boolean _mounted;
|
||||
bool _mounted;
|
||||
|
||||
public:
|
||||
boolean mount();
|
||||
bool mount();
|
||||
void unmount();
|
||||
boolean format();
|
||||
boolean exists(const char *filename);
|
||||
boolean create(const char *filepath);
|
||||
boolean remove(const char *filepath);
|
||||
boolean rename(const char *filename, const char *newname);
|
||||
bool format();
|
||||
bool exists(const char *filename);
|
||||
bool create(const char *filepath);
|
||||
bool remove(const char *filepath);
|
||||
bool rename(const char *filename, const char *newname);
|
||||
|
||||
FSFile open(const char *filename, uint8_t mode = FSFILE_READ);
|
||||
|
||||
|
@ -12,8 +12,6 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
//#include "c_stdio.h"
|
||||
#include <user_config.h>
|
||||
#include "spiffs_config.h"
|
||||
#include "flashmem.h"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user