|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494 |
- /* FatLib Library
- * Copyright (C) 2012 by William Greiman
- *
- * This file is part of the FatLib Library
- *
- * This Library 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 Library 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 the FatLib Library. If not, see
- * <http://www.gnu.org/licenses/>.
- */
- #include "FatFile.h"
- #include "FatFileSystem.h"
- //------------------------------------------------------------------------------
- // Pointer to cwd directory.
- FatFile* FatFile::m_cwd = 0;
- // Callback function for date/time.
- void (*FatFile::m_dateTime)(uint16_t* date, uint16_t* time) = 0;
- //------------------------------------------------------------------------------
- // Add a cluster to a file.
- bool FatFile::addCluster() {
- m_flags |= F_FILE_DIR_DIRTY;
- return m_vol->allocateCluster(m_curCluster, &m_curCluster);
- }
- //------------------------------------------------------------------------------
- // Add a cluster to a directory file and zero the cluster.
- // Return with first block of cluster in the cache.
- bool FatFile::addDirCluster() {
- uint32_t block;
- cache_t* pc;
-
- if (isRootFixed()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // max folder size
- if (m_curPosition >= 512UL*4095) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (!addCluster()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- block = m_vol->clusterStartBlock(m_curCluster);
- pc = m_vol->cacheFetchData(block, FatCache::CACHE_RESERVE_FOR_WRITE);
- if (!pc) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- memset(pc, 0, 512);
- // zero rest of clusters
- for (uint8_t i = 1; i < m_vol->blocksPerCluster(); i++) {
- if (!m_vol->writeBlock(block + i, pc->data)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- // Set position to EOF to avoid inconsistent curCluster/curPosition.
- m_curPosition += 512UL*m_vol->blocksPerCluster();
- return true;
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- // cache a file's directory entry
- // return pointer to cached entry or null for failure
- dir_t* FatFile::cacheDirEntry(uint8_t action) {
- cache_t* pc;
- pc = m_vol->cacheFetchData(m_dirBlock, action);
- if (!pc) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- return pc->dir + (m_dirIndex & 0XF);
-
- fail:
- return 0;
- }
- //------------------------------------------------------------------------------
- bool FatFile::close() {
- bool rtn = sync();
- m_attr = FILE_ATTR_CLOSED;
- return rtn;
- }
- //------------------------------------------------------------------------------
- bool FatFile::contiguousRange(uint32_t* bgnBlock, uint32_t* endBlock) {
- // error if no blocks
- if (m_firstCluster == 0) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- for (uint32_t c = m_firstCluster; ; c++) {
- uint32_t next;
- int8_t fg = m_vol->fatGet(c, &next);
- if (fg < 0) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // check for contiguous
- if (fg == 0 || next != (c + 1)) {
- // error if not end of chain
- if (fg) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- *bgnBlock = m_vol->clusterStartBlock(m_firstCluster);
- *endBlock = m_vol->clusterStartBlock(c)
- + m_vol->blocksPerCluster() - 1;
- return true;
- }
- }
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- bool FatFile::createContiguous(FatFile* dirFile,
- const char* path, uint32_t size) {
- uint32_t count;
- // don't allow zero length file
- if (size == 0) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (!open(dirFile, path, O_CREAT | O_EXCL | O_RDWR)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // calculate number of clusters needed
- count = ((size - 1) >> (m_vol->clusterSizeShift() + 9)) + 1;
-
- // allocate clusters
- if (!m_vol->allocContiguous(count, &m_firstCluster)) {
- remove();
- DBG_FAIL_MACRO;
- goto fail;
- }
- m_fileSize = size;
-
- // insure sync() will update dir entry
- m_flags |= F_FILE_DIR_DIRTY;
-
- return sync();
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- bool FatFile::dirEntry(dir_t* dst) {
- dir_t* dir;
- // Make sure fields on device are correct.
- if (!sync()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // read entry
- dir = cacheDirEntry(FatCache::CACHE_FOR_READ);
- if (!dir) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // copy to caller's struct
- memcpy(dst, dir, sizeof(dir_t));
- return true;
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- uint8_t FatFile::dirName(const dir_t* dir, char* name) {
- uint8_t j = 0;
- uint8_t lcBit = DIR_NT_LC_BASE;
- for (uint8_t i = 0; i < 11; i++) {
- if (dir->name[i] == ' ') {
- continue;
- }
- if (i == 8) {
- // Position bit for extension.
- lcBit = DIR_NT_LC_EXT;
- name[j++] = '.';
- }
- char c = dir->name[i];
- if ('A' <= c && c <= 'Z' && (lcBit & dir->reservedNT)) {
- c += 'a' - 'A';
- }
- name[j++] = c;
- }
- name[j] = 0;
- return j;
- }
-
- //------------------------------------------------------------------------------
- uint32_t FatFile::dirSize() {
- int8_t fg;
- if (!isDir()) {
- return 0;
- }
- if (isRootFixed()) {
- return 32*m_vol->rootDirEntryCount();
- }
- uint16_t n = 0;
- uint32_t c = isRoot32() ? m_vol->rootDirStart() : m_firstCluster;
- do {
- fg = m_vol->fatGet(c, &c);
- if (fg < 0 || n > 4095) {
- return 0;
- }
- n += m_vol->blocksPerCluster();
- } while (fg);
- return 512UL*n;
- }
- //------------------------------------------------------------------------------
- int16_t FatFile::fgets(char* str, int16_t num, char* delim) {
- char ch;
- int16_t n = 0;
- int16_t r = -1;
- while ((n + 1) < num && (r = read(&ch, 1)) == 1) {
- // delete CR
- if (ch == '\r') {
- continue;
- }
- str[n++] = ch;
- if (!delim) {
- if (ch == '\n') {
- break;
- }
- } else {
- if (strchr(delim, ch)) {
- break;
- }
- }
- }
- if (r < 0) {
- // read error
- return -1;
- }
- str[n] = '\0';
- return n;
- }
- //------------------------------------------------------------------------------
- void FatFile::getpos(FatPos_t* pos) {
- pos->position = m_curPosition;
- pos->cluster = m_curCluster;
- }
- //------------------------------------------------------------------------------
- bool FatFile::mkdir(FatFile* parent, const char* path, bool pFlag) {
- fname_t fname;
- FatFile tmpDir;
-
- if (isOpen() || !parent->isDir()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (isDirSeparator(*path)) {
- while (isDirSeparator(*path)) {
- path++;
- }
- if (!tmpDir.openRoot(parent->m_vol)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- parent = &tmpDir;
- }
- while (1) {
- if (!parsePathName(path, &fname, &path)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (!*path) {
- break;
- }
- if (!open(parent, &fname, O_READ)) {
- if (!pFlag || !mkdir(parent, &fname)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- tmpDir = *this;
- parent = &tmpDir;
- close();
- }
- return mkdir(parent, &fname);
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- bool FatFile::mkdir(FatFile* parent, fname_t* fname) {
- uint32_t block;
- dir_t dot;
- dir_t* dir;
- cache_t* pc;
-
- if (!parent->isDir()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // create a normal file
- if (!open(parent, fname, O_CREAT | O_EXCL | O_RDWR)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // convert file to directory
- m_flags = O_READ;
- m_attr = FILE_ATTR_SUBDIR;
-
- // allocate and zero first cluster
- if (!addDirCluster()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- m_firstCluster = m_curCluster;
- // Set to start of dir
- rewind();
- // force entry to device
- if (!sync()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // cache entry - should already be in cache due to sync() call
- dir = cacheDirEntry(FatCache::CACHE_FOR_WRITE);
- if (!dir) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // change directory entry attribute
- dir->attributes = DIR_ATT_DIRECTORY;
-
- // make entry for '.'
- memcpy(&dot, dir, sizeof(dot));
- dot.name[0] = '.';
- for (uint8_t i = 1; i < 11; i++) {
- dot.name[i] = ' ';
- }
-
- // cache block for '.' and '..'
- block = m_vol->clusterStartBlock(m_firstCluster);
- pc = m_vol->cacheFetchData(block, FatCache::CACHE_FOR_WRITE);
- if (!pc) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // copy '.' to block
- memcpy(&pc->dir[0], &dot, sizeof(dot));
- // make entry for '..'
- dot.name[1] = '.';
- dot.firstClusterLow = parent->m_firstCluster & 0XFFFF;
- dot.firstClusterHigh = parent->m_firstCluster >> 16;
- // copy '..' to block
- memcpy(&pc->dir[1], &dot, sizeof(dot));
- // write first block
- return m_vol->cacheSync();
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- bool FatFile::open(FatFileSystem* fs, const char* path, uint8_t oflag) {
- return open(fs->vwd(), path, oflag);
- }
- //------------------------------------------------------------------------------
- bool FatFile::open(FatFile* dirFile, const char* path, uint8_t oflag) {
- FatFile tmpDir;
- fname_t fname;
-
- // error if already open
- if (isOpen() || !dirFile->isDir()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (isDirSeparator(*path)) {
- while (isDirSeparator(*path)) {
- path++;
- }
- if (*path == 0) {
- return openRoot(dirFile->m_vol);
- }
- if (!tmpDir.openRoot(dirFile->m_vol)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- dirFile = &tmpDir;
- }
- while (1) {
- if (!parsePathName(path, &fname, &path)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (*path == 0) {
- break;
- }
- if (!open(dirFile, &fname, O_READ)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- tmpDir = *this;
- dirFile = &tmpDir;
- close();
- }
- return open(dirFile, &fname, oflag);
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- bool FatFile::open(FatFile* dirFile, uint16_t index, uint8_t oflag) {
- uint8_t chksum = 0;
- uint8_t lfnOrd = 0;
- dir_t* dir;
- ldir_t*ldir;
-
- // Error if already open.
- if (isOpen() || !dirFile->isDir()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // Don't open existing file if O_EXCL - user call error.
- if (oflag & O_EXCL) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (index) {
- // Check for LFN.
- if (!dirFile->seekSet(32UL*(index -1))) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- ldir = reinterpret_cast<ldir_t*>(dirFile->readDirCache());
- if (!ldir) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (ldir->attr == DIR_ATT_LONG_NAME) {
- if (1 == (ldir->ord & 0X1F)) {
- chksum = ldir->chksum;
- // Use largest possible number.
- lfnOrd = index > 20 ? 20 : index;
- }
- }
- } else {
- dirFile->rewind();
- }
- // read entry into cache
- dir = dirFile->readDirCache();
- if (!dir) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // error if empty slot or '.' or '..'
- if (dir->name[0] == DIR_NAME_DELETED ||
- dir->name[0] == DIR_NAME_FREE ||
- dir->name[0] == '.') {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (lfnOrd && chksum != lfnChecksum(dir->name)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // open cached entry
- if (!openCachedEntry(dirFile, index, oflag, lfnOrd)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- return true;
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- // open a cached directory entry.
-
- bool FatFile::openCachedEntry(FatFile* dirFile, uint16_t dirIndex,
- uint8_t oflag, uint8_t lfnOrd) {
- uint32_t firstCluster;
- memset(this, 0, sizeof(FatFile));
- // location of entry in cache
- m_vol = dirFile->m_vol;
- m_dirIndex = dirIndex;
- m_dirCluster = dirFile->m_firstCluster;
- dir_t* dir = &m_vol->cacheAddress()->dir[0XF & dirIndex];
-
- // Must be file or subdirectory.
- if (!DIR_IS_FILE_OR_SUBDIR(dir)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- m_attr = dir->attributes & FILE_ATTR_COPY;
- if (DIR_IS_FILE(dir)) {
- m_attr |= FILE_ATTR_FILE;
- }
- m_lfnOrd = lfnOrd;
- // Write, truncate, or at end is an error for a directory or read-only file.
- if (oflag & (O_WRITE | O_TRUNC | O_AT_END)) {
- if (isSubDir() || isReadOnly()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- // save open flags for read/write
- m_flags = oflag & F_OFLAG;
-
- m_dirBlock = m_vol->cacheBlockNumber();
-
- // copy first cluster number for directory fields
- firstCluster = ((uint32_t)dir->firstClusterHigh << 16)
- | dir->firstClusterLow;
-
- if (oflag & O_TRUNC) {
- if (firstCluster && !m_vol->freeChain(firstCluster)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // need to update directory entry
- m_flags |= F_FILE_DIR_DIRTY;
- } else {
- m_firstCluster = firstCluster;
- m_fileSize = dir->fileSize;
- }
- if ((oflag & O_AT_END) && !seekSet(m_fileSize)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- return true;
-
- fail:
- m_attr = FILE_ATTR_CLOSED;
- return false;
- }
- //------------------------------------------------------------------------------
- bool FatFile::openNext(FatFile* dirFile, uint8_t oflag) {
- uint8_t chksum = 0;
- ldir_t* ldir;
- uint8_t lfnOrd = 0;
- uint16_t index;
-
- // Check for not open and valid directory..
- if (isOpen() || !dirFile->isDir() || (dirFile->curPosition() & 0X1F)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- while (1) {
- // read entry into cache
- index = dirFile->curPosition()/32;
- dir_t* dir = dirFile->readDirCache();
- if (!dir) {
- if (dirFile->getError()) {
- DBG_FAIL_MACRO;
- }
- goto fail;
- }
- // done if last entry
- if (dir->name[0] == DIR_NAME_FREE) {
- goto fail;
- }
- // skip empty slot or '.' or '..'
- if (dir->name[0] == '.' || dir->name[0] == DIR_NAME_DELETED) {
- lfnOrd = 0;
- } else if (DIR_IS_FILE_OR_SUBDIR(dir)) {
- if (lfnOrd && chksum != lfnChecksum(dir->name)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (!openCachedEntry(dirFile, index, oflag, lfnOrd)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- return true;
- } else if (DIR_IS_LONG_NAME(dir)) {
- ldir = reinterpret_cast<ldir_t*>(dir);
- if (ldir->ord & LDIR_ORD_LAST_LONG_ENTRY) {
- lfnOrd = ldir->ord & 0X1F;
- chksum = ldir->chksum;
- }
- } else {
- lfnOrd = 0;
- }
- }
-
- fail:
- return false;
- }
- #ifndef DOXYGEN_SHOULD_SKIP_THIS
- //------------------------------------------------------------------------------
- /** Open a file's parent directory.
- *
- * \param[in] file Parent of this directory will be opened. Must not be root.
- *
- * \return The value true is returned for success and
- * the value false is returned for failure.
- */
- bool FatFile::openParent(FatFile* dirFile) {
- FatFile dotdot;
- uint32_t lbn;
- dir_t* dir;
- uint32_t ddc;
- cache_t* cb;
-
- if (isOpen() || !dirFile->isOpen()) {
- goto fail;
- }
- if (dirFile->m_dirCluster == 0) {
- return openRoot(dirFile->m_vol);
- }
- lbn = dirFile->m_vol->clusterStartBlock(dirFile->m_dirCluster);
- cb = dirFile->m_vol->cacheFetchData(lbn, FatCache::CACHE_FOR_READ);
- if (!cb) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // Point to dir entery for ..
- dir = cb->dir + 1;
- ddc = dir->firstClusterLow | ((uint32_t)dir->firstClusterHigh << 16);
- if (ddc == 0) {
- if (!dotdot.openRoot(dirFile->m_vol)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- } else {
- memset(&dotdot, 0, sizeof(FatFile));
- dotdot.m_attr = FILE_ATTR_SUBDIR;
- dotdot.m_flags = O_READ;
- dotdot.m_vol = dirFile->m_vol;
- dotdot.m_firstCluster = ddc;
- }
- uint32_t di;
- do {
- di = dotdot.curPosition()/32;
- dir = dotdot.readDirCache();
- if (!dir) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- ddc = dir->firstClusterLow | ((uint32_t)dir->firstClusterHigh << 16);
- } while (ddc != dirFile->m_dirCluster);
- return open(&dotdot, di, O_READ);
-
- fail:
- return false;
- }
- #endif // DOXYGEN_SHOULD_SKIP_THIS
- //------------------------------------------------------------------------------
- bool FatFile::openRoot(FatVolume* vol) {
- // error if file is already open
- if (isOpen()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- memset(this, 0, sizeof(FatFile));
-
- m_vol = vol;
- switch (vol->fatType()) {
- #if FAT12_SUPPORT
- case 12:
- #endif // FAT12_SUPPORT
- case 16:
- m_attr = FILE_ATTR_ROOT_FIXED;
- break;
-
- case 32:
- m_attr = FILE_ATTR_ROOT32;
- break;
-
- default:
- DBG_FAIL_MACRO;
- goto fail;
- }
- // read only
- m_flags = O_READ;
- return true;
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- int FatFile::peek() {
- FatPos_t pos;
- getpos(&pos);
- int c = read();
- if (c >= 0) {
- setpos(&pos);
- }
- return c;
- }
- //------------------------------------------------------------------------------
- int FatFile::read(void* buf, size_t nbyte) {
- int8_t fg;
- uint8_t blockOfCluster;
- uint8_t* dst = reinterpret_cast<uint8_t*>(buf);
- uint16_t offset;
- size_t toRead;
- uint32_t block; // raw device block number
- cache_t* pc;
-
- // error if not open for read
- if (!isOpen() || !(m_flags & O_READ)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
-
- if (isFile()) {
- uint32_t tmp32 = m_fileSize - m_curPosition;
- if (nbyte >= tmp32) {
- nbyte = tmp32;
- }
- } else if (isRootFixed()) {
- uint16_t tmp16 = 32*m_vol->m_rootDirEntryCount - (uint16_t)m_curPosition;
- if (nbyte > tmp16) {
- nbyte = tmp16;
- }
- }
- toRead = nbyte;
- while (toRead) {
- size_t n;
- offset = m_curPosition & 0X1FF; // offset in block
- if (isRootFixed()) {
- block = m_vol->rootDirStart() + (m_curPosition >> 9);
- } else {
- blockOfCluster = m_vol->blockOfCluster(m_curPosition);
- if (offset == 0 && blockOfCluster == 0) {
- // start of new cluster
- if (m_curPosition == 0) {
- // use first cluster in file
- m_curCluster = isRoot32() ? m_vol->rootDirStart() : m_firstCluster;
- } else {
- // get next cluster from FAT
- fg = m_vol->fatGet(m_curCluster, &m_curCluster);
- if (fg < 0) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (fg == 0) {
- if (isDir()) {
- break;
- }
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- }
- block = m_vol->clusterStartBlock(m_curCluster) + blockOfCluster;
- }
- if (offset != 0 || toRead < 512 || block == m_vol->cacheBlockNumber()) {
- // amount to be read from current block
- n = 512 - offset;
- if (n > toRead) {
- n = toRead;
- }
- // read block to cache and copy data to caller
- pc = m_vol->cacheFetchData(block, FatCache::CACHE_FOR_READ);
- if (!pc) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- uint8_t* src = pc->data + offset;
- memcpy(dst, src, n);
- #if USE_MULTI_BLOCK_IO
- } else if (toRead >= 1024) {
- uint8_t nb = toRead >> 9;
- if (!isRootFixed()) {
- uint8_t mb = m_vol->blocksPerCluster() - blockOfCluster;
- if (mb < nb) {
- nb = mb;
- }
- }
- n = 512*nb;
- if (m_vol->cacheBlockNumber() <= block
- && block < (m_vol->cacheBlockNumber() + nb)) {
- // flush cache if a block is in the cache
- if (!m_vol->cacheSync()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- if (!m_vol->readBlocks(block, dst, nb)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- #endif // USE_MULTI_BLOCK_IO
- } else {
- // read single block
- n = 512;
- if (!m_vol->readBlock(block, dst)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- dst += n;
- m_curPosition += n;
- toRead -= n;
- }
- return nbyte - toRead;
-
- fail:
- m_error |= READ_ERROR;
- return -1;
- }
- //------------------------------------------------------------------------------
- int8_t FatFile::readDir(dir_t* dir) {
- int16_t n;
- // if not a directory file or miss-positioned return an error
- if (!isDir() || (0X1F & m_curPosition)) {
- return -1;
- }
-
- while (1) {
- n = read(dir, sizeof(dir_t));
- if (n != sizeof(dir_t)) {
- return n == 0 ? 0 : -1;
- }
- // last entry if DIR_NAME_FREE
- if (dir->name[0] == DIR_NAME_FREE) {
- return 0;
- }
- // skip empty entries and entry for . and ..
- if (dir->name[0] == DIR_NAME_DELETED || dir->name[0] == '.') {
- continue;
- }
- // return if normal file or subdirectory
- if (DIR_IS_FILE_OR_SUBDIR(dir)) {
- return n;
- }
- }
- }
- //------------------------------------------------------------------------------
- // Read next directory entry into the cache
- // Assumes file is correctly positioned
- dir_t* FatFile::readDirCache(bool skipReadOk) {
- // uint8_t b;
- uint8_t i = (m_curPosition >> 5) & 0XF;
-
- if (i == 0 || !skipReadOk) {
- int8_t n = read(&n, 1);
- if (n != 1) {
- if (n != 0) {
- DBG_FAIL_MACRO;
- }
- goto fail;
- }
- // if (read(&b, 1) != 1) {
- // DBG_FAIL_MACRO;
- // goto fail;
- // }
- m_curPosition += 31;
- } else {
- m_curPosition += 32;
- }
- // return pointer to entry
- return m_vol->cacheAddress()->dir + i;
-
- fail:
- return 0;
- }
- //------------------------------------------------------------------------------
- bool FatFile::remove(FatFile* dirFile, const char* path) {
- FatFile file;
- if (!file.open(dirFile, path, O_WRITE)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- return file.remove();
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- bool FatFile::rename(FatFile* dirFile, const char* newPath) {
- dir_t entry;
- uint32_t dirCluster = 0;
- FatFile file;
- FatFile oldFile;
- cache_t* pc;
- dir_t* dir;
-
- // Must be an open file or subdirectory.
- if (!(isFile() || isSubDir())) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // Can't rename LFN in 8.3 mode.
- if (!USE_LONG_FILE_NAMES && isLFN()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // Can't move file to new volume.
- if (m_vol != dirFile->m_vol) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // sync() and cache directory entry
- sync();
- oldFile = *this;
- dir = cacheDirEntry(FatCache::CACHE_FOR_READ);
- if (!dir) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // save directory entry
- memcpy(&entry, dir, sizeof(entry));
- // make directory entry for new path
- if (isFile()) {
- if (!file.open(dirFile, newPath, O_CREAT | O_EXCL | O_WRITE)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- } else {
- // don't create missing path prefix components
- if (!file.mkdir(dirFile, newPath, false)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // save cluster containing new dot dot
- dirCluster = file.m_firstCluster;
- }
- // change to new directory entry
-
- m_dirBlock = file.m_dirBlock;
- m_dirIndex = file.m_dirIndex;
- m_lfnOrd = file.m_lfnOrd;
- m_dirCluster = file.m_dirCluster;
- // mark closed to avoid possible destructor close call
- file.m_attr = FILE_ATTR_CLOSED;
-
- // cache new directory entry
- dir = cacheDirEntry(FatCache::CACHE_FOR_WRITE);
- if (!dir) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // copy all but name and name flags to new directory entry
- memcpy(&dir->creationTimeTenths, &entry.creationTimeTenths,
- sizeof(entry) - sizeof(dir->name) - 2);
- dir->attributes = entry.attributes;
-
- // update dot dot if directory
- if (dirCluster) {
- // get new dot dot
- uint32_t block = m_vol->clusterStartBlock(dirCluster);
- pc = m_vol->cacheFetchData(block, FatCache::CACHE_FOR_READ);
- if (!pc) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- memcpy(&entry, &pc->dir[1], sizeof(entry));
-
- // free unused cluster
- if (!m_vol->freeChain(dirCluster)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // store new dot dot
- block = m_vol->clusterStartBlock(m_firstCluster);
- pc = m_vol->cacheFetchData(block, FatCache::CACHE_FOR_WRITE);
- if (!pc) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- memcpy(&pc->dir[1], &entry, sizeof(entry));
- }
- // Remove old directory entry;
- oldFile.m_firstCluster = 0;
- oldFile.m_flags = O_WRITE;
- oldFile.m_attr = FILE_ATTR_FILE;
- if (!oldFile.remove()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- return m_vol->cacheSync();
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- bool FatFile::rmdir() {
- // must be open subdirectory
- if (!isSubDir() || (!USE_LONG_FILE_NAMES && isLFN())) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- rewind();
-
- // make sure directory is empty
- while (1) {
- dir_t* dir = readDirCache(true);
- if (!dir) {
- // EOF if no error.
- if (!getError()) {
- break;
- }
- DBG_FAIL_MACRO;
- goto fail;
- }
- // done if past last used entry
- if (dir->name[0] == DIR_NAME_FREE) {
- break;
- }
- // skip empty slot, '.' or '..'
- if (dir->name[0] == DIR_NAME_DELETED || dir->name[0] == '.') {
- continue;
- }
- // error not empty
- if (DIR_IS_FILE_OR_SUBDIR(dir)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- // convert empty directory to normal file for remove
- m_attr = FILE_ATTR_FILE;
- m_flags |= O_WRITE;
- return remove();
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- bool FatFile::rmRfStar() {
- uint16_t index;
- FatFile f;
- if (!isDir()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- rewind();
- while (1) {
- // remember position
- index = m_curPosition/32;
-
- dir_t* dir = readDirCache();
- if (!dir) {
- // At EOF if no error.
- if (!getError()) {
- break;
- }
- DBG_FAIL_MACRO;
- goto fail;
- }
- // done if past last entry
- if (dir->name[0] == DIR_NAME_FREE) {
- break;
- }
-
- // skip empty slot or '.' or '..'
- if (dir->name[0] == DIR_NAME_DELETED || dir->name[0] == '.') {
- continue;
- }
-
- // skip if part of long file name or volume label in root
- if (!DIR_IS_FILE_OR_SUBDIR(dir)) {
- continue;
- }
-
- if (!f.open(this, index, O_READ)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (f.isSubDir()) {
- // recursively delete
- if (!f.rmRfStar()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- } else {
- // ignore read-only
- f.m_flags |= O_WRITE;
- if (!f.remove()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- // position to next entry if required
- if (m_curPosition != (32UL*(index + 1))) {
- if (!seekSet(32UL*(index + 1))) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- }
- // don't try to delete root
- if (!isRoot()) {
- if (!rmdir()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- return true;
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- bool FatFile::seekSet(uint32_t pos) {
- uint32_t nCur;
- uint32_t nNew;
- uint32_t tmp = m_curCluster;
- // error if file not open
- if (!isOpen()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (pos == 0) {
- // set position to start of file
- m_curCluster = 0;
- goto done;
- }
- if (isFile()) {
- if (pos > m_fileSize) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- } else if (isRootFixed()) {
- if (pos <= 32*m_vol->rootDirEntryCount()) {
- goto done;
- }
- DBG_FAIL_MACRO;
- goto fail;
- }
- // calculate cluster index for cur and new position
- nCur = (m_curPosition - 1) >> (m_vol->clusterSizeShift() + 9);
- nNew = (pos - 1) >> (m_vol->clusterSizeShift() + 9);
-
- if (nNew < nCur || m_curPosition == 0) {
- // must follow chain from first cluster
- m_curCluster = isRoot32() ? m_vol->rootDirStart() : m_firstCluster;
- } else {
- // advance from curPosition
- nNew -= nCur;
- }
- while (nNew--) {
- if (m_vol->fatGet(m_curCluster, &m_curCluster) <= 0) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
-
- done:
- m_curPosition = pos;
- return true;
-
- fail:
- m_curCluster = tmp;
- return false;
- }
- //------------------------------------------------------------------------------
- void FatFile::setpos(FatPos_t* pos) {
- m_curPosition = pos->position;
- m_curCluster = pos->cluster;
- }
- //------------------------------------------------------------------------------
- bool FatFile::sync() {
- if (!isOpen()) {
- return true;
- }
-
- if (m_flags & F_FILE_DIR_DIRTY) {
- dir_t* dir = cacheDirEntry(FatCache::CACHE_FOR_WRITE);
- // check for deleted by another open file object
- if (!dir || dir->name[0] == DIR_NAME_DELETED) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // do not set filesize for dir files
- if (isFile()) {
- dir->fileSize = m_fileSize;
- }
-
- // update first cluster fields
- dir->firstClusterLow = m_firstCluster & 0XFFFF;
- dir->firstClusterHigh = m_firstCluster >> 16;
-
- // set modify time if user supplied a callback date/time function
- if (m_dateTime) {
- m_dateTime(&dir->lastWriteDate, &dir->lastWriteTime);
- dir->lastAccessDate = dir->lastWriteDate;
- }
- // clear directory dirty
- m_flags &= ~F_FILE_DIR_DIRTY;
- }
- if (m_vol->cacheSync()) {
- return true;
- }
- DBG_FAIL_MACRO;
-
- fail:
- m_error |= WRITE_ERROR;
- return false;
- }
- //------------------------------------------------------------------------------
- bool FatFile::timestamp(FatFile* file) {
- dir_t* dir;
- dir_t srcDir;
-
- // most be files get timestamps
- if (!isFile() || !file->isFile() || !file->dirEntry(&srcDir)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // update directory fields
- if (!sync()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- dir = cacheDirEntry(FatCache::CACHE_FOR_WRITE);
- if (!dir) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // copy timestamps
- dir->lastAccessDate = srcDir.lastAccessDate;
- dir->creationDate = srcDir.creationDate;
- dir->creationTime = srcDir.creationTime;
- dir->creationTimeTenths = srcDir.creationTimeTenths;
- dir->lastWriteDate = srcDir.lastWriteDate;
- dir->lastWriteTime = srcDir.lastWriteTime;
-
- // write back entry
- return m_vol->cacheSync();
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- bool FatFile::timestamp(uint8_t flags, uint16_t year, uint8_t month,
- uint8_t day, uint8_t hour, uint8_t minute, uint8_t second) {
- uint16_t dirDate;
- uint16_t dirTime;
- dir_t* dir;
-
- if (!isFile()
- || year < 1980
- || year > 2107
- || month < 1
- || month > 12
- || day < 1
- || day > 31
- || hour > 23
- || minute > 59
- || second > 59) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // update directory entry
- if (!sync()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- dir = cacheDirEntry(FatCache::CACHE_FOR_WRITE);
- if (!dir) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- dirDate = FAT_DATE(year, month, day);
- dirTime = FAT_TIME(hour, minute, second);
- if (flags & T_ACCESS) {
- dir->lastAccessDate = dirDate;
- }
- if (flags & T_CREATE) {
- dir->creationDate = dirDate;
- dir->creationTime = dirTime;
- // seems to be units of 1/100 second not 1/10 as Microsoft states
- dir->creationTimeTenths = second & 1 ? 100 : 0;
- }
- if (flags & T_WRITE) {
- dir->lastWriteDate = dirDate;
- dir->lastWriteTime = dirTime;
- }
- return m_vol->cacheSync();
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- bool FatFile::truncate(uint32_t length) {
- uint32_t newPos;
- // error if not a normal file or read-only
- if (!isFile() || !(m_flags & O_WRITE)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // error if length is greater than current size
- if (length > m_fileSize) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // fileSize and length are zero - nothing to do
- if (m_fileSize == 0) {
- return true;
- }
-
- // remember position for seek after truncation
- newPos = m_curPosition > length ? length : m_curPosition;
-
- // position to last cluster in truncated file
- if (!seekSet(length)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (length == 0) {
- // free all clusters
- if (!m_vol->freeChain(m_firstCluster)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- m_firstCluster = 0;
- } else {
- uint32_t toFree;
- int8_t fg = m_vol->fatGet(m_curCluster, &toFree);
- if (fg < 0) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (fg) {
- // free extra clusters
- if (!m_vol->freeChain(toFree)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // current cluster is end of chain
- if (!m_vol->fatPutEOC(m_curCluster)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- }
- m_fileSize = length;
-
- // need to update directory entry
- m_flags |= F_FILE_DIR_DIRTY;
-
- if (!sync()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // set file to correct position
- return seekSet(newPos);
-
- fail:
- return false;
- }
- //------------------------------------------------------------------------------
- int FatFile::write(const void* buf, size_t nbyte) {
- // convert void* to uint8_t* - must be before goto statements
- const uint8_t* src = reinterpret_cast<const uint8_t*>(buf);
- cache_t* pc;
- uint8_t cacheOption;
- // number of bytes left to write - must be before goto statements
- size_t nToWrite = nbyte;
- size_t n;
- // error if not a normal file or is read-only
- if (!isFile() || !(m_flags & O_WRITE)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- // seek to end of file if append flag
- if ((m_flags & O_APPEND)) {
- if (!seekSet(m_fileSize)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- // Don't exceed max fileSize.
- if (nbyte > (0XFFFFFFFF - m_curPosition)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- while (nToWrite) {
- uint8_t blockOfCluster = m_vol->blockOfCluster(m_curPosition);
- uint16_t blockOffset = m_curPosition & 0X1FF;
- if (blockOfCluster == 0 && blockOffset == 0) {
- // start of new cluster
- if (m_curCluster != 0) {
- int8_t fg = m_vol->fatGet(m_curCluster, &m_curCluster);
- if (fg < 0) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- if (fg == 0) {
- // add cluster if at end of chain
- if (!addCluster()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- } else {
- if (m_firstCluster == 0) {
- // allocate first cluster of file
- if (!addCluster()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- m_firstCluster = m_curCluster;
- } else {
- m_curCluster = m_firstCluster;
- }
- }
- }
- // block for data write
- uint32_t block = m_vol->clusterStartBlock(m_curCluster) + blockOfCluster;
-
- if (blockOffset != 0 || nToWrite < 512) {
- // partial block - must use cache
- // max space in block
- n = 512 - blockOffset;
- // lesser of space and amount to write
- if (n > nToWrite) {
- n = nToWrite;
- }
-
- if (blockOffset == 0 && m_curPosition >= m_fileSize) {
- // start of new block don't need to read into cache
- cacheOption = FatCache::CACHE_RESERVE_FOR_WRITE;
- } else {
- // rewrite part of block
- cacheOption = FatCache::CACHE_FOR_WRITE;
- }
- pc = m_vol->cacheFetchData(block, cacheOption);
- if (!pc) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- uint8_t* dst = pc->data + blockOffset;
- memcpy(dst, src, n);
- if (512 == (n + blockOffset)) {
- // Force write if block is full - improves large writes.
- if (!m_vol->cacheSyncData()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- #if USE_MULTI_BLOCK_IO
- } else if (nToWrite >= 1024) {
- // use multiple block write command
- uint8_t maxBlocks = m_vol->blocksPerCluster() - blockOfCluster;
- uint8_t nBlock = nToWrite >> 9;
- if (nBlock > maxBlocks) {
- nBlock = maxBlocks;
- }
- n = 512*nBlock;
- if (m_vol->cacheBlockNumber() <= block
- && block < (m_vol->cacheBlockNumber() + nBlock)) {
- // invalidate cache if block is in cache
- m_vol->cacheInvalidate();
- }
- if (!m_vol->writeBlocks(block, src, nBlock)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- #endif // USE_MULTI_BLOCK_IO
- } else {
- // use single block write command
- n = 512;
- if (m_vol->cacheBlockNumber() == block) {
- m_vol->cacheInvalidate();
- }
- if (!m_vol->writeBlock(block, src)) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- m_curPosition += n;
- src += n;
- nToWrite -= n;
- }
- if (m_curPosition > m_fileSize) {
- // update fileSize and insure sync will update dir entry
- m_fileSize = m_curPosition;
- m_flags |= F_FILE_DIR_DIRTY;
- } else if (m_dateTime) {
- // insure sync will update modified date and time
- m_flags |= F_FILE_DIR_DIRTY;
- }
-
- if (m_flags & O_SYNC) {
- if (!sync()) {
- DBG_FAIL_MACRO;
- goto fail;
- }
- }
- return nbyte;
-
- fail:
- // return for write error
- m_error |= WRITE_ERROR;
- return -1;
- }
|