|  | // Copyright 2011 Olivier Gillet.
//
// Author: Olivier Gillet (ol.gillet@gmail.com)
// 
// 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/>.
//
// -----------------------------------------------------------------------------
//
// FatFS wrappers.
#include "avrlibx/filesystem/file.h"
namespace avrlibx {
File::File() 
  : opened_(0) {
}
File::~File() {
  if (opened_) {
    Close();
  }
}
FilesystemStatus File::Open(
    const char* file_name,
    const char* mode,
    uint16_t retry_timeout) {
  if (mode[0] == 'r') {
    return Open(file_name, FA_READ | FA_OPEN_EXISTING, retry_timeout);
  } else if (mode[0] == 'w') {
    return Open(file_name, FA_WRITE | FA_CREATE_ALWAYS, retry_timeout);
  } else {
    return FS_INVALID_PARAMETER;
  }
}
FilesystemStatus File::Open(
    const char* file_name,
    uint8_t attributes,
    uint16_t retry_timeout) {
  if (opened_) {
    Close();
  }
  
  FilesystemStatus s;
  s = static_cast<FilesystemStatus>(f_open(&f_, file_name, attributes));
  if (s == FS_DISK_ERROR && retry_timeout) {
    // If an open fails because of a disk access error, try to reinitialize the
    // disk access layer. This might happen because a process in the background
    // has temporarily disabled the disk access layer (for example to access
    // another device). It is OK to have the disk access layer disabled between
    // file access "sessions" -- but it is not OK to have it disabled during a
    // session.
    Filesystem::Init(retry_timeout);
    s = static_cast<FilesystemStatus>(f_open(&f_, file_name, attributes));
  }
  opened_ = s == FS_OK;
  return s;
}
FilesystemStatus File::Seek(uint32_t position) {
  if (!opened_) {
    return FS_NOT_OPENED;
  }
  
  return static_cast<FilesystemStatus>(f_lseek(&f_, position));
}
FilesystemStatus File::Close() {
  return static_cast<FilesystemStatus>(f_close(&f_));
}
FilesystemStatus File::Truncate() {
  if (!opened_) {
    return FS_NOT_OPENED;
  }
  
  return static_cast<FilesystemStatus>(f_truncate(&f_));
}
FilesystemStatus File::Sync() {
  if (!opened_) {
    return FS_NOT_OPENED;
  }
  
  return static_cast<FilesystemStatus>(f_sync(&f_));
}
FilesystemStatus File::Read(uint8_t* data, uint16_t size, uint16_t* read) {
  if (!opened_) {
    return FS_NOT_OPENED;
  }
  
  return static_cast<FilesystemStatus>(f_read(&f_, data, size, read));
}
FilesystemStatus File::Write(
    const uint8_t* data,
    uint16_t size,
    uint16_t* written) {
  if (!opened_) {
    return FS_NOT_OPENED;
  }
  return static_cast<FilesystemStatus>(f_write(&f_, data, size, written));
}
}  // namespace avrlibx
 |