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.
67 lines
2.4 KiB
67 lines
2.4 KiB
5 years ago
|
/**
|
||
|
* Copyright (c) 20011..2017 Bill Greiman
|
||
|
* This file is part of the SdFs library for SD memory cards.
|
||
|
*
|
||
|
* MIT License
|
||
|
*
|
||
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
||
|
* copy of this software and associated documentation files (the "Software"),
|
||
|
* to deal in the Software without restriction, including without limitation
|
||
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||
|
* and/or sell copies of the Software, and to permit persons to whom the
|
||
|
* Software is furnished to do so, subject to the following conditions:
|
||
|
*
|
||
|
* The above copyright notice and this permission notice shall be included
|
||
|
* in all copies or substantial portions of the Software.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||
|
* DEALINGS IN THE SOFTWARE.
|
||
|
*/
|
||
|
#include "FsVolume.h"
|
||
|
#include "FsFile.h"
|
||
|
FsVolume* FsVolume::m_cwv = nullptr;
|
||
|
//------------------------------------------------------------------------------
|
||
|
bool FsVolume::begin(BlockDevice* blockDev) {
|
||
|
m_blockDev = blockDev;
|
||
|
m_fVol = nullptr;
|
||
|
m_xVol = new (m_volMem) ExFatVolume;
|
||
|
if (m_xVol && m_xVol->begin(m_blockDev, false)) {
|
||
|
goto done;
|
||
|
}
|
||
|
m_xVol = nullptr;
|
||
|
m_fVol = new (m_volMem) FatVolume;
|
||
|
if (m_fVol && m_fVol->begin(m_blockDev, false)) {
|
||
|
goto done;
|
||
|
}
|
||
|
m_cwv = nullptr;
|
||
|
m_fVol = nullptr;
|
||
|
return false;
|
||
|
|
||
|
done:
|
||
|
m_cwv = this;
|
||
|
return true;
|
||
|
}
|
||
|
//------------------------------------------------------------------------------
|
||
|
void FsVolume::ls(print_t* pr, const char* path, uint8_t flags) {
|
||
|
FsFile dir;
|
||
|
dir.open(this, path, O_READ);
|
||
|
dir.ls(pr, flags);
|
||
|
}
|
||
|
//------------------------------------------------------------------------------
|
||
|
FsFile FsVolume::open(const char *path, uint8_t oflag) {
|
||
|
FsFile tmpFile;
|
||
|
tmpFile.open(this, path, oflag);
|
||
|
return tmpFile;
|
||
|
}
|
||
|
#if ENABLE_ARDUINO_FEATURES
|
||
|
//------------------------------------------------------------------------------
|
||
|
FsFile FsVolume::open(const String &path, uint8_t oflag) {
|
||
|
return open(path.c_str(), oflag );
|
||
|
}
|
||
|
#endif // ENABLE_ARDUINO_FEATURES
|