mirror of https://github.com/ARMmbed/mbed-os.git
Add 'components/storage/blockdevice/COMPONENT_FLASHIAP/' from commit '8f1ac821f1c411986b8533cbf4878ea9b3fe5efb'
git-subtree-dir: components/storage/blockdevice/COMPONENT_FLASHIAP git-subtree-mainline:pull/7774/head9a0844a84f
git-subtree-split:8f1ac821f1
commit
881929eef7
|
@ -0,0 +1,2 @@
|
||||||
|
util/*
|
||||||
|
|
|
@ -0,0 +1,227 @@
|
||||||
|
/* mbed Microcontroller Library
|
||||||
|
* Copyright (c) 2016 ARM Limited
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef DEVICE_FLASH
|
||||||
|
|
||||||
|
#include "FlashIAPBlockDevice.h"
|
||||||
|
#include "mbed_critical.h"
|
||||||
|
|
||||||
|
#include "mbed.h"
|
||||||
|
|
||||||
|
#include <inttypes.h>
|
||||||
|
|
||||||
|
#define FLASHIAP_READ_SIZE 1
|
||||||
|
|
||||||
|
// Debug available
|
||||||
|
#ifndef FLASHIAP_DEBUG
|
||||||
|
#define FLASHIAP_DEBUG 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if FLASHIAP_DEBUG
|
||||||
|
#define DEBUG_PRINTF(...) printf(__VA_ARGS__)
|
||||||
|
#else
|
||||||
|
#define DEBUG_PRINTF(...)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
FlashIAPBlockDevice::FlashIAPBlockDevice()
|
||||||
|
: _flash(), _base(0), _size(0), _is_initialized(false), _init_ref_count(0)
|
||||||
|
{
|
||||||
|
DEBUG_PRINTF("FlashIAPBlockDevice: %" PRIX32 " %" PRIX32 "\r\n", address, size);
|
||||||
|
}
|
||||||
|
|
||||||
|
FlashIAPBlockDevice::FlashIAPBlockDevice(uint32_t address, uint32_t)
|
||||||
|
: _flash(), _base(0), _size(0), _is_initialized(false), _init_ref_count(0)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
FlashIAPBlockDevice::~FlashIAPBlockDevice()
|
||||||
|
{
|
||||||
|
deinit();
|
||||||
|
}
|
||||||
|
|
||||||
|
int FlashIAPBlockDevice::init()
|
||||||
|
{
|
||||||
|
DEBUG_PRINTF("init\r\n");
|
||||||
|
|
||||||
|
if (!_is_initialized) {
|
||||||
|
_init_ref_count = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t val = core_util_atomic_incr_u32(&_init_ref_count, 1);
|
||||||
|
|
||||||
|
if (val != 1) {
|
||||||
|
return BD_ERROR_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
int ret = _flash.init();
|
||||||
|
|
||||||
|
if (ret) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
_base = _flash.get_flash_start();
|
||||||
|
_size = _flash.get_flash_size();
|
||||||
|
|
||||||
|
_is_initialized = true;
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
int FlashIAPBlockDevice::deinit()
|
||||||
|
{
|
||||||
|
DEBUG_PRINTF("deinit\r\n");
|
||||||
|
|
||||||
|
if (!_is_initialized) {
|
||||||
|
_init_ref_count = 0;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t val = core_util_atomic_decr_u32(&_init_ref_count, 1);
|
||||||
|
|
||||||
|
if (val) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
_is_initialized = false;
|
||||||
|
|
||||||
|
return _flash.deinit();
|
||||||
|
}
|
||||||
|
|
||||||
|
int FlashIAPBlockDevice::read(void *buffer,
|
||||||
|
bd_addr_t virtual_address,
|
||||||
|
bd_size_t size)
|
||||||
|
{
|
||||||
|
DEBUG_PRINTF("read: %" PRIX64 " %" PRIX64 "\r\n", virtual_address, size);
|
||||||
|
|
||||||
|
/* Default to error return code; success must be set explicitly. */
|
||||||
|
int result = BD_ERROR_DEVICE_ERROR;
|
||||||
|
|
||||||
|
/* Check that the address and size are properly aligned and fit. */
|
||||||
|
if (_is_initialized && is_valid_read(virtual_address, size)) {
|
||||||
|
|
||||||
|
/* Convert virtual address to the physical address for the device. */
|
||||||
|
bd_addr_t physical_address = _base + virtual_address;
|
||||||
|
|
||||||
|
/* Read data using the internal flash driver. */
|
||||||
|
result = _flash.read(buffer, physical_address, size);
|
||||||
|
|
||||||
|
DEBUG_PRINTF("physical: %" PRIX64 "\r\n", physical_address);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
int FlashIAPBlockDevice::program(const void *buffer,
|
||||||
|
bd_addr_t virtual_address,
|
||||||
|
bd_size_t size)
|
||||||
|
{
|
||||||
|
DEBUG_PRINTF("program: %" PRIX64 " %" PRIX64 "\r\n", virtual_address, size);
|
||||||
|
|
||||||
|
/* Default to error return code; success must be set explicitly. */
|
||||||
|
int result = BD_ERROR_DEVICE_ERROR;
|
||||||
|
|
||||||
|
/* Check that the address and size are properly aligned and fit. */
|
||||||
|
if (_is_initialized && is_valid_program(virtual_address, size)) {
|
||||||
|
|
||||||
|
/* Convert virtual address to the physical address for the device. */
|
||||||
|
bd_addr_t physical_address = _base + virtual_address;
|
||||||
|
|
||||||
|
/* Write data using the internal flash driver. */
|
||||||
|
result = _flash.program(buffer, physical_address, size);
|
||||||
|
|
||||||
|
DEBUG_PRINTF("physical: %" PRIX64 " %" PRIX64 "\r\n",
|
||||||
|
physical_address,
|
||||||
|
size);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
int FlashIAPBlockDevice::erase(bd_addr_t virtual_address,
|
||||||
|
bd_size_t size)
|
||||||
|
{
|
||||||
|
DEBUG_PRINTF("erase: %" PRIX64 " %" PRIX64 "\r\n", virtual_address, size);
|
||||||
|
|
||||||
|
/* Default to error return code; success must be set explicitly. */
|
||||||
|
int result = BD_ERROR_DEVICE_ERROR;
|
||||||
|
|
||||||
|
/* Check that the address and size are properly aligned and fit. */
|
||||||
|
if (_is_initialized && is_valid_erase(virtual_address, size)) {
|
||||||
|
|
||||||
|
/* Convert virtual address to the physical address for the device. */
|
||||||
|
bd_addr_t physical_address = _base + virtual_address;
|
||||||
|
|
||||||
|
/* Erase sector */
|
||||||
|
result = _flash.erase(physical_address, size);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
bd_size_t FlashIAPBlockDevice::get_read_size() const
|
||||||
|
{
|
||||||
|
DEBUG_PRINTF("get_read_size: %d\r\n", FLASHIAP_READ_SIZE);
|
||||||
|
|
||||||
|
return FLASHIAP_READ_SIZE;
|
||||||
|
}
|
||||||
|
|
||||||
|
bd_size_t FlashIAPBlockDevice::get_program_size() const
|
||||||
|
{
|
||||||
|
if (!_is_initialized) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t page_size = _flash.get_page_size();
|
||||||
|
|
||||||
|
DEBUG_PRINTF("get_program_size: %" PRIX32 "\r\n", page_size);
|
||||||
|
|
||||||
|
return page_size;
|
||||||
|
}
|
||||||
|
|
||||||
|
bd_size_t FlashIAPBlockDevice::get_erase_size() const
|
||||||
|
{
|
||||||
|
if (!_is_initialized) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t erase_size = _flash.get_sector_size(_base);
|
||||||
|
|
||||||
|
DEBUG_PRINTF("get_erase_size: %" PRIX32 "\r\n", erase_size);
|
||||||
|
|
||||||
|
return erase_size;
|
||||||
|
}
|
||||||
|
|
||||||
|
bd_size_t FlashIAPBlockDevice::get_erase_size(bd_addr_t addr) const
|
||||||
|
{
|
||||||
|
if (!_is_initialized) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t erase_size = _flash.get_sector_size(_base + addr);
|
||||||
|
|
||||||
|
DEBUG_PRINTF("get_erase_size: %" PRIX32 "\r\n", erase_size);
|
||||||
|
|
||||||
|
return erase_size;
|
||||||
|
}
|
||||||
|
|
||||||
|
bd_size_t FlashIAPBlockDevice::size() const
|
||||||
|
{
|
||||||
|
DEBUG_PRINTF("size: %" PRIX64 "\r\n", _size);
|
||||||
|
|
||||||
|
return _size;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* DEVICE_FLASH */
|
|
@ -0,0 +1,128 @@
|
||||||
|
/* mbed Microcontroller Library
|
||||||
|
* Copyright (c) 2016 ARM Limited
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef MBED_FLASHIAP_BLOCK_DEVICE_H
|
||||||
|
#define MBED_FLASHIAP_BLOCK_DEVICE_H
|
||||||
|
|
||||||
|
#ifdef DEVICE_FLASH
|
||||||
|
|
||||||
|
#include "BlockDevice.h"
|
||||||
|
#include <mbed.h>
|
||||||
|
|
||||||
|
/** BlockDevice using the FlashIAP API
|
||||||
|
*
|
||||||
|
* @code
|
||||||
|
* #include "mbed.h"
|
||||||
|
* #include "FlashIAPBlockDevice.h"
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
class FlashIAPBlockDevice : public BlockDevice {
|
||||||
|
public:
|
||||||
|
/** Creates a FlashIAPBlockDevice **/
|
||||||
|
FlashIAPBlockDevice();
|
||||||
|
|
||||||
|
MBED_DEPRECATED("Please use default constructor instead")
|
||||||
|
FlashIAPBlockDevice(uint32_t address, uint32_t size = 0);
|
||||||
|
|
||||||
|
virtual ~FlashIAPBlockDevice();
|
||||||
|
|
||||||
|
/** Initialize a block device
|
||||||
|
*
|
||||||
|
* @return 0 on success or a negative error code on failure
|
||||||
|
*/
|
||||||
|
virtual int init();
|
||||||
|
|
||||||
|
/** Deinitialize a block device
|
||||||
|
*
|
||||||
|
* @return 0 on success or a negative error code on failure
|
||||||
|
*/
|
||||||
|
virtual int deinit();
|
||||||
|
|
||||||
|
/** Read blocks from a block device
|
||||||
|
*
|
||||||
|
* @param buffer Buffer to write blocks to
|
||||||
|
* @param addr Address of block to begin reading from
|
||||||
|
* @param size Size to read in bytes, must be a multiple of read block size
|
||||||
|
* @return 0 on success, negative error code on failure
|
||||||
|
*/
|
||||||
|
virtual int read(void *buffer, bd_addr_t addr, bd_size_t size);
|
||||||
|
|
||||||
|
/** Program blocks to a block device
|
||||||
|
*
|
||||||
|
* The blocks must have been erased prior to being programmed
|
||||||
|
*
|
||||||
|
* @param buffer Buffer of data to write to blocks
|
||||||
|
* @param addr Address of block to begin writing to
|
||||||
|
* @param size Size to write in bytes, must be a multiple of program block size
|
||||||
|
* @return 0 on success, negative error code on failure
|
||||||
|
*/
|
||||||
|
virtual int program(const void *buffer, bd_addr_t addr, bd_size_t size);
|
||||||
|
|
||||||
|
/** Erase blocks on a block device
|
||||||
|
*
|
||||||
|
* The state of an erased block is undefined until it has been programmed
|
||||||
|
*
|
||||||
|
* @param addr Address of block to begin erasing
|
||||||
|
* @param size Size to erase in bytes, must be a multiple of erase block size
|
||||||
|
* @return 0 on success, negative error code on failure
|
||||||
|
*/
|
||||||
|
virtual int erase(bd_addr_t addr, bd_size_t size);
|
||||||
|
|
||||||
|
/** Get the size of a readable block
|
||||||
|
*
|
||||||
|
* @return Size of a readable block in bytes
|
||||||
|
*/
|
||||||
|
virtual bd_size_t get_read_size() const;
|
||||||
|
|
||||||
|
/** Get the size of a programable block
|
||||||
|
*
|
||||||
|
* @return Size of a programable block in bytes
|
||||||
|
* @note Must be a multiple of the read size
|
||||||
|
*/
|
||||||
|
virtual bd_size_t get_program_size() const;
|
||||||
|
|
||||||
|
/** Get the size of a eraseable block
|
||||||
|
*
|
||||||
|
* @return Size of a eraseable block in bytes
|
||||||
|
* @note Must be a multiple of the program size
|
||||||
|
*/
|
||||||
|
virtual bd_size_t get_erase_size() const;
|
||||||
|
|
||||||
|
/** Get the size of an erasable block given address
|
||||||
|
*
|
||||||
|
* @param addr Address within the erasable block
|
||||||
|
* @return Size of an erasable block in bytes
|
||||||
|
* @note Must be a multiple of the program size
|
||||||
|
*/
|
||||||
|
virtual bd_size_t get_erase_size(bd_addr_t addr) const;
|
||||||
|
|
||||||
|
/** Get the total size of the underlying device
|
||||||
|
*
|
||||||
|
* @return Size of the underlying device in bytes
|
||||||
|
*/
|
||||||
|
virtual bd_size_t size() const;
|
||||||
|
|
||||||
|
private:
|
||||||
|
// Device configuration
|
||||||
|
FlashIAP _flash;
|
||||||
|
bd_addr_t _base;
|
||||||
|
bd_size_t _size;
|
||||||
|
bool _is_initialized;
|
||||||
|
uint32_t _init_ref_count;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif /* DEVICE_FLASH */
|
||||||
|
#endif /* MBED_FLASHIAP_BLOCK_DEVICE_H */
|
|
@ -0,0 +1,165 @@
|
||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction, and
|
||||||
|
distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by the copyright
|
||||||
|
owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all other entities
|
||||||
|
that control, are controlled by, or are under common control with that entity.
|
||||||
|
For the purposes of this definition, "control" means (i) the power, direct or
|
||||||
|
indirect, to cause the direction or management of such entity, whether by
|
||||||
|
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity exercising
|
||||||
|
permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications, including
|
||||||
|
but not limited to software source code, documentation source, and configuration
|
||||||
|
files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical transformation or
|
||||||
|
translation of a Source form, including but not limited to compiled object code,
|
||||||
|
generated documentation, and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or Object form, made
|
||||||
|
available under the License, as indicated by a copyright notice that is included
|
||||||
|
in or attached to the work (an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object form, that
|
||||||
|
is based on (or derived from) the Work and for which the editorial revisions,
|
||||||
|
annotations, elaborations, or other modifications represent, as a whole, an
|
||||||
|
original work of authorship. For the purposes of this License, Derivative Works
|
||||||
|
shall not include works that remain separable from, or merely link (or bind by
|
||||||
|
name) to the interfaces of, the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including the original version
|
||||||
|
of the Work and any modifications or additions to that Work or Derivative Works
|
||||||
|
thereof, that is intentionally submitted to Licensor for inclusion in the Work
|
||||||
|
by the copyright owner or by an individual or Legal Entity authorized to submit
|
||||||
|
on behalf of the copyright owner. For the purposes of this definition,
|
||||||
|
"submitted" means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems, and
|
||||||
|
issue tracking systems that are managed by, or on behalf of, the Licensor for
|
||||||
|
the purpose of discussing and improving the Work, but excluding communication
|
||||||
|
that is conspicuously marked or otherwise designated in writing by the copyright
|
||||||
|
owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf
|
||||||
|
of whom a Contribution has been received by Licensor and subsequently
|
||||||
|
incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License.
|
||||||
|
|
||||||
|
Subject to the terms and conditions of this License, each Contributor hereby
|
||||||
|
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
||||||
|
irrevocable copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the Work and such
|
||||||
|
Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License.
|
||||||
|
|
||||||
|
Subject to the terms and conditions of this License, each Contributor hereby
|
||||||
|
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
||||||
|
irrevocable (except as stated in this section) patent license to make, have
|
||||||
|
made, use, offer to sell, sell, import, and otherwise transfer the Work, where
|
||||||
|
such license applies only to those patent claims licensable by such Contributor
|
||||||
|
that are necessarily infringed by their Contribution(s) alone or by combination
|
||||||
|
of their Contribution(s) with the Work to which such Contribution(s) was
|
||||||
|
submitted. If You institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work or a
|
||||||
|
Contribution incorporated within the Work constitutes direct or contributory
|
||||||
|
patent infringement, then any patent licenses granted to You under this License
|
||||||
|
for that Work shall terminate as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution.
|
||||||
|
|
||||||
|
You may reproduce and distribute copies of the Work or Derivative Works thereof
|
||||||
|
in any medium, with or without modifications, and in Source or Object form,
|
||||||
|
provided that You meet the following conditions:
|
||||||
|
|
||||||
|
You must give any other recipients of the Work or Derivative Works a copy of
|
||||||
|
this License; and
|
||||||
|
You must cause any modified files to carry prominent notices stating that You
|
||||||
|
changed the files; and
|
||||||
|
You must retain, in the Source form of any Derivative Works that You distribute,
|
||||||
|
all copyright, patent, trademark, and attribution notices from the Source form
|
||||||
|
of the Work, excluding those notices that do not pertain to any part of the
|
||||||
|
Derivative Works; and
|
||||||
|
If the Work includes a "NOTICE" text file as part of its distribution, then any
|
||||||
|
Derivative Works that You distribute must include a readable copy of the
|
||||||
|
attribution notices contained within such NOTICE file, excluding those notices
|
||||||
|
that do not pertain to any part of the Derivative Works, in at least one of the
|
||||||
|
following places: within a NOTICE text file distributed as part of the
|
||||||
|
Derivative Works; within the Source form or documentation, if provided along
|
||||||
|
with the Derivative Works; or, within a display generated by the Derivative
|
||||||
|
Works, if and wherever such third-party notices normally appear. The contents of
|
||||||
|
the NOTICE file are for informational purposes only and do not modify the
|
||||||
|
License. You may add Your own attribution notices within Derivative Works that
|
||||||
|
You distribute, alongside or as an addendum to the NOTICE text from the Work,
|
||||||
|
provided that such additional attribution notices cannot be construed as
|
||||||
|
modifying the License.
|
||||||
|
You may add Your own copyright statement to Your modifications and may provide
|
||||||
|
additional or different license terms and conditions for use, reproduction, or
|
||||||
|
distribution of Your modifications, or for any such Derivative Works as a whole,
|
||||||
|
provided Your use, reproduction, and distribution of the Work otherwise complies
|
||||||
|
with the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions.
|
||||||
|
|
||||||
|
Unless You explicitly state otherwise, any Contribution intentionally submitted
|
||||||
|
for inclusion in the Work by You to the Licensor shall be under the terms and
|
||||||
|
conditions of this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify the terms of
|
||||||
|
any separate license agreement you may have executed with Licensor regarding
|
||||||
|
such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks.
|
||||||
|
|
||||||
|
This License does not grant permission to use the trade names, trademarks,
|
||||||
|
service marks, or product names of the Licensor, except as required for
|
||||||
|
reasonable and customary use in describing the origin of the Work and
|
||||||
|
reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, Licensor provides the
|
||||||
|
Work (and each Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
|
||||||
|
including, without limitation, any warranties or conditions of TITLE,
|
||||||
|
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
|
||||||
|
solely responsible for determining the appropriateness of using or
|
||||||
|
redistributing the Work and assume any risks associated with Your exercise of
|
||||||
|
permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability.
|
||||||
|
|
||||||
|
In no event and under no legal theory, whether in tort (including negligence),
|
||||||
|
contract, or otherwise, unless required by applicable law (such as deliberate
|
||||||
|
and grossly negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special, incidental,
|
||||||
|
or consequential damages of any character arising as a result of this License or
|
||||||
|
out of the use or inability to use the Work (including but not limited to
|
||||||
|
damages for loss of goodwill, work stoppage, computer failure or malfunction, or
|
||||||
|
any and all other commercial damages or losses), even if such Contributor has
|
||||||
|
been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability.
|
||||||
|
|
||||||
|
While redistributing the Work or Derivative Works thereof, You may choose to
|
||||||
|
offer, and charge a fee for, acceptance of support, warranty, indemnity, or
|
||||||
|
other liability obligations and/or rights consistent with this License. However,
|
||||||
|
in accepting such obligations, You may act only on Your own behalf and on Your
|
||||||
|
sole responsibility, not on behalf of any other Contributor, and only if You
|
||||||
|
agree to indemnify, defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason of your
|
||||||
|
accepting any such warranty or additional liability.
|
|
@ -0,0 +1,18 @@
|
||||||
|
# Block Device driver build on top of FlashIAP API
|
||||||
|
|
||||||
|
## Warning
|
||||||
|
This driver is **EXPERIMENTAL** and improper usage could kill your board's flash.
|
||||||
|
|
||||||
|
This driver should only be used on platforms where the FlashIAP implementation is using external flash or in conjunction with a filesystem with wear leveling, that can operate on a page size granularity.
|
||||||
|
|
||||||
|
Additional concerns:
|
||||||
|
- The FlashIAP may freeze code execution for a long period of time while writing to flash. Not even high-priority irqs will be allowed to run, which may interrupt background processes.
|
||||||
|
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
None.
|
||||||
|
|
||||||
|
## Tested on
|
||||||
|
|
||||||
|
* K82F
|
||||||
|
* K64F
|
|
@ -0,0 +1,132 @@
|
||||||
|
#include "mbed.h"
|
||||||
|
#include "greentea-client/test_env.h"
|
||||||
|
#include "unity.h"
|
||||||
|
#include "utest.h"
|
||||||
|
|
||||||
|
#include "FlashIAPBlockDevice.h"
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
using namespace utest::v1;
|
||||||
|
|
||||||
|
#define TEST_BLOCK_COUNT 10
|
||||||
|
#define TEST_ERROR_MASK 16
|
||||||
|
|
||||||
|
const struct {
|
||||||
|
const char *name;
|
||||||
|
bd_size_t (BlockDevice::*method)() const;
|
||||||
|
} ATTRS[] = {
|
||||||
|
{"read size", &BlockDevice::get_read_size},
|
||||||
|
{"program size", &BlockDevice::get_program_size},
|
||||||
|
{"erase size", &BlockDevice::get_erase_size},
|
||||||
|
{"total size", &BlockDevice::size},
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
void test_read_write() {
|
||||||
|
FlashIAPBlockDevice bd;
|
||||||
|
|
||||||
|
int err = bd.init();
|
||||||
|
TEST_ASSERT_EQUAL(0, err);
|
||||||
|
|
||||||
|
for (unsigned a = 0; a < sizeof(ATTRS)/sizeof(ATTRS[0]); a++) {
|
||||||
|
static const char *prefixes[] = {"", "k", "M", "G"};
|
||||||
|
for (int i = 3; i >= 0; i--) {
|
||||||
|
bd_size_t size = (bd.*ATTRS[a].method)();
|
||||||
|
if (size >= (1ULL << 10*i)) {
|
||||||
|
printf("%s: %llu%sbytes (%llubytes)\n",
|
||||||
|
ATTRS[a].name, size >> 10*i, prefixes[i], size);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bd_size_t block_size = bd.get_erase_size();
|
||||||
|
uint8_t *write_block = new uint8_t[block_size];
|
||||||
|
uint8_t *read_block = new uint8_t[block_size];
|
||||||
|
uint8_t *error_mask = new uint8_t[TEST_ERROR_MASK];
|
||||||
|
unsigned addrwidth = ceil(log(float(bd.size()-1)) / log(float(16)))+1;
|
||||||
|
|
||||||
|
for (int b = 0; b < TEST_BLOCK_COUNT; b++) {
|
||||||
|
// Find a random block
|
||||||
|
bd_addr_t block = (rand()*block_size) % bd.size();
|
||||||
|
|
||||||
|
// Use next random number as temporary seed to keep
|
||||||
|
// the address progressing in the pseudorandom sequence
|
||||||
|
unsigned seed = rand();
|
||||||
|
|
||||||
|
// Fill with random sequence
|
||||||
|
srand(seed);
|
||||||
|
for (bd_size_t i = 0; i < block_size; i++) {
|
||||||
|
write_block[i] = 0xff & rand();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write, sync, and read the block
|
||||||
|
printf("test %0*llx:%llu...\n", addrwidth, block, block_size);
|
||||||
|
|
||||||
|
err = bd.erase(block, block_size);
|
||||||
|
TEST_ASSERT_EQUAL(0, err);
|
||||||
|
|
||||||
|
err = bd.program(write_block, block, block_size);
|
||||||
|
TEST_ASSERT_EQUAL(0, err);
|
||||||
|
|
||||||
|
printf("write %0*llx:%llu ", addrwidth, block, block_size);
|
||||||
|
for (int i = 0; i < 16; i++) {
|
||||||
|
printf("%02x", write_block[i]);
|
||||||
|
}
|
||||||
|
printf("...\n");
|
||||||
|
|
||||||
|
err = bd.read(read_block, block, block_size);
|
||||||
|
TEST_ASSERT_EQUAL(0, err);
|
||||||
|
|
||||||
|
printf("read %0*llx:%llu ", addrwidth, block, block_size);
|
||||||
|
for (int i = 0; i < 16; i++) {
|
||||||
|
printf("%02x", read_block[i]);
|
||||||
|
}
|
||||||
|
printf("...\n");
|
||||||
|
|
||||||
|
// Find error mask for debugging
|
||||||
|
memset(error_mask, 0, TEST_ERROR_MASK);
|
||||||
|
bd_size_t error_scale = block_size / (TEST_ERROR_MASK*8);
|
||||||
|
|
||||||
|
srand(seed);
|
||||||
|
for (bd_size_t i = 0; i < TEST_ERROR_MASK*8; i++) {
|
||||||
|
for (bd_size_t j = 0; j < error_scale; j++) {
|
||||||
|
if ((0xff & rand()) != read_block[i*error_scale + j]) {
|
||||||
|
error_mask[i/8] |= 1 << (i%8);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("error %0*llx:%llu ", addrwidth, block, block_size);
|
||||||
|
for (int i = 0; i < 16; i++) {
|
||||||
|
printf("%02x", error_mask[i]);
|
||||||
|
}
|
||||||
|
printf("\n");
|
||||||
|
|
||||||
|
// Check that the data was unmodified
|
||||||
|
srand(seed);
|
||||||
|
for (bd_size_t i = 0; i < block_size; i++) {
|
||||||
|
TEST_ASSERT_EQUAL(0xff & rand(), read_block[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
err = bd.deinit();
|
||||||
|
TEST_ASSERT_EQUAL(0, err);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Test setup
|
||||||
|
utest::v1::status_t test_setup(const size_t number_of_cases) {
|
||||||
|
GREENTEA_SETUP(30, "default_auto");
|
||||||
|
return verbose_test_setup_handler(number_of_cases);
|
||||||
|
}
|
||||||
|
|
||||||
|
Case cases[] = {
|
||||||
|
Case("Testing read write random blocks", test_read_write),
|
||||||
|
};
|
||||||
|
|
||||||
|
Specification specification(test_setup, cases);
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
return !Harness::run(specification);
|
||||||
|
}
|
|
@ -0,0 +1,926 @@
|
||||||
|
/*
|
||||||
|
* mbed Microcontroller Library
|
||||||
|
* Copyright (c) 2006-2016 ARM Limited
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* The following copyright notice is reproduced from the glibc project
|
||||||
|
* REF_LICENCE_GLIBC
|
||||||
|
*
|
||||||
|
* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
|
||||||
|
* This file is part of the GNU C Library.
|
||||||
|
*
|
||||||
|
* The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Library General Public License as
|
||||||
|
* published by the Free Software Foundation; either version 2 of the
|
||||||
|
* License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* The GNU C 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
|
||||||
|
* Library General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with the GNU C Library; see the file COPYING.LIB. If
|
||||||
|
* not, write to the Free Software Foundation, Inc., 675 Mass Ave,
|
||||||
|
* Cambridge, MA 02139, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/** @file basic.cpp POSIX File API (stdio) test cases
|
||||||
|
*
|
||||||
|
* Consult the documentation under the test-case functions for
|
||||||
|
* a description of the individual test case.
|
||||||
|
*
|
||||||
|
* this file includes ports for the mbed 2 test cases from the following locations:
|
||||||
|
* - https://github.com:/armmbed/mbed-os/features/unsupported/tests/mbed/dir_sd/main.cpp.
|
||||||
|
* - https://github.com:/armmbed/mbed-os/features/unsupported/tests/mbed/file/main.cpp.
|
||||||
|
* - https://github.com:/armmbed/mbed-os/features/unsupported/tests/mbed/sd/main.cpp
|
||||||
|
* - https://github.com:/armmbed/mbed-os/features/unsupported/tests/mbed/sd_perf_handle/main.cpp
|
||||||
|
* - https://github.com:/armmbed/mbed-os/features/unsupported/tests/mbed/sd_perf_stdio/main.cpp.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "mbed.h"
|
||||||
|
#include "mbed_config.h"
|
||||||
|
#include "FATFileSystem.h"
|
||||||
|
#include "test_env.h"
|
||||||
|
#include "fsfat_debug.h"
|
||||||
|
#include "fsfat_test.h"
|
||||||
|
#include "utest/utest.h"
|
||||||
|
#include "unity/unity.h"
|
||||||
|
#include "greentea-client/test_env.h"
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <algorithm>
|
||||||
|
/* retarget.h is included after errno.h so symbols are mapped to
|
||||||
|
* consistent values for all toolchains */
|
||||||
|
#include "platform/mbed_retarget.h"
|
||||||
|
|
||||||
|
using namespace utest::v1;
|
||||||
|
|
||||||
|
/* DEVICE_SPI
|
||||||
|
* This symbol is defined in targets.json if the target has a SPI interface, which is required for SDCard support.
|
||||||
|
*
|
||||||
|
* MBED_CONF_APP_FSFAT_SDCARD_INSTALLED
|
||||||
|
* For testing purposes, an SDCard must be installed on the target for the test cases in this file to succeed.
|
||||||
|
* If the target has an SD card installed then the MBED_CONF_APP_FSFAT_SDCARD_INSTALLED will be generated
|
||||||
|
* from the mbed_app.json, which includes the line
|
||||||
|
* {
|
||||||
|
* "config": {
|
||||||
|
* "UART_RX": "D0",
|
||||||
|
* <<< lines removed >>>
|
||||||
|
* "DEVICE_SPI": 1,
|
||||||
|
* "MBED_CONF_APP_FSFAT_SDCARD_INSTALLED": 1
|
||||||
|
* },
|
||||||
|
* <<< lines removed >>>
|
||||||
|
*/
|
||||||
|
|
||||||
|
//#include "SDBlockDevice.h"
|
||||||
|
//SDBlockDevice sd(MBED_CONF_SD_SPI_MOSI, MBED_CONF_SD_SPI_MISO, MBED_CONF_SD_SPI_CLK, MBED_CONF_SD_SPI_CS);
|
||||||
|
|
||||||
|
#include "FlashIAPBlockDevice.h"
|
||||||
|
|
||||||
|
FlashIAPBlockDevice sd;
|
||||||
|
FATFileSystem fs("sd", &sd);
|
||||||
|
|
||||||
|
#define FSFAT_BASIC_TEST_ fsfat_basic_test_
|
||||||
|
#define FSFAT_BASIC_TEST_00 fsfat_basic_test_00
|
||||||
|
#define FSFAT_BASIC_TEST_01 fsfat_basic_test_01
|
||||||
|
#define FSFAT_BASIC_TEST_02 fsfat_basic_test_02
|
||||||
|
#define FSFAT_BASIC_TEST_03 fsfat_basic_test_03
|
||||||
|
#define FSFAT_BASIC_TEST_04 fsfat_basic_test_04
|
||||||
|
#define FSFAT_BASIC_TEST_05 fsfat_basic_test_05
|
||||||
|
#define FSFAT_BASIC_TEST_06 fsfat_basic_test_06
|
||||||
|
#define FSFAT_BASIC_TEST_07 fsfat_basic_test_07
|
||||||
|
#define FSFAT_BASIC_TEST_08 fsfat_basic_test_08
|
||||||
|
#define FSFAT_BASIC_TEST_09 fsfat_basic_test_09
|
||||||
|
#define FSFAT_BASIC_TEST_10 fsfat_basic_test_10
|
||||||
|
|
||||||
|
#define FSFAT_BASIC_MSG_BUF_SIZE 256
|
||||||
|
#define FSFAT_BASIC_TEST_05_TEST_STRING "Hello World!"
|
||||||
|
|
||||||
|
static const char *sd_file_path = "/sd/out.txt";
|
||||||
|
static const int FSFAT_BASIC_DATA_SIZE = 256;
|
||||||
|
static char fsfat_basic_msg_g[FSFAT_BASIC_MSG_BUF_SIZE];
|
||||||
|
static char fsfat_basic_buffer[1024];
|
||||||
|
static const int FSFAT_BASIC_KIB_RW = 128;
|
||||||
|
static Timer fsfat_basic_timer;
|
||||||
|
static const char *fsfat_basic_bin_filename = "/sd/testfile.bin";
|
||||||
|
static const char *fsfat_basic_bin_filename_test_08 = "testfile.bin";
|
||||||
|
static const char *fsfat_basic_bin_filename_test_10 = "0:testfile.bin";
|
||||||
|
|
||||||
|
#define FSFAT_BASIC_MSG(_buf, _max_len, _fmt, ...) \
|
||||||
|
do \
|
||||||
|
{ \
|
||||||
|
snprintf((_buf), (_max_len), (_fmt), __VA_ARGS__); \
|
||||||
|
}while(0);
|
||||||
|
|
||||||
|
/** @brief test for operation of SDFileSystem::format()
|
||||||
|
*
|
||||||
|
* @return on success returns CaseNext to continue to next test case, otherwise will assert on errors.
|
||||||
|
*/
|
||||||
|
control_t fsfat_basic_test_(const size_t call_count)
|
||||||
|
{
|
||||||
|
|
||||||
|
FSFAT_FENTRYLOG("%s:entered\n", __func__);
|
||||||
|
(void) call_count;
|
||||||
|
int32_t ret = -1;
|
||||||
|
|
||||||
|
/* the allocation_unit of 0 means chanFS will use the default for the card (varies according to capacity). */
|
||||||
|
fs.unmount();
|
||||||
|
ret = fs.format(&sd);
|
||||||
|
FSFAT_TEST_UTEST_MESSAGE(fsfat_basic_msg_g, FSFAT_UTEST_MSG_BUF_SIZE, "%s:Error: failed to format sdcard (ret=%d)\n", __func__, (int) ret);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == 0, fsfat_basic_msg_g);
|
||||||
|
fs.mount(&sd);
|
||||||
|
return CaseNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @brief fopen test case
|
||||||
|
*
|
||||||
|
* - open a file
|
||||||
|
* - generate random data items, write the item to the file and store a coy in a buffer for later use.
|
||||||
|
* - close the file.
|
||||||
|
* - open the file.
|
||||||
|
* - read the data items from the file and check they are the same as write.
|
||||||
|
* - close the file.
|
||||||
|
*
|
||||||
|
* @return on success returns CaseNext to continue to next test case, otherwise will assert on errors.
|
||||||
|
*/
|
||||||
|
static control_t fsfat_basic_test_00()
|
||||||
|
{
|
||||||
|
uint8_t data_written[FSFAT_BASIC_DATA_SIZE] = { 0 };
|
||||||
|
bool read_result = false;
|
||||||
|
bool write_result = false;
|
||||||
|
|
||||||
|
// Fill data_written buffer with random data
|
||||||
|
// Write these data into the file
|
||||||
|
FSFAT_FENTRYLOG("%s:entered\n", __func__);
|
||||||
|
{
|
||||||
|
FSFAT_DBGLOG("%s:SD: Writing ... ", __func__);
|
||||||
|
FILE *f = fopen(sd_file_path, "w");
|
||||||
|
if (f) {
|
||||||
|
for (int i = 0; i < FSFAT_BASIC_DATA_SIZE; i++) {
|
||||||
|
data_written[i] = rand() % 0XFF;
|
||||||
|
fprintf(f, "%c", data_written[i]);
|
||||||
|
}
|
||||||
|
write_result = true;
|
||||||
|
fclose(f);
|
||||||
|
}
|
||||||
|
FSFAT_DBGLOG("[%s]\n", write_result ? "OK" : "FAIL");
|
||||||
|
}
|
||||||
|
TEST_ASSERT_MESSAGE(write_result == true, "Error: write_result is set to false.");
|
||||||
|
|
||||||
|
// Read back the data from the file and store them in data_read
|
||||||
|
{
|
||||||
|
FSFAT_DBGLOG("%s:SD: Reading data ... ", __func__);
|
||||||
|
FILE *f = fopen(sd_file_path, "r");
|
||||||
|
if (f) {
|
||||||
|
read_result = true;
|
||||||
|
for (int i = 0; i < FSFAT_BASIC_DATA_SIZE; i++) {
|
||||||
|
uint8_t data = fgetc(f);
|
||||||
|
if (data != data_written[i]) {
|
||||||
|
read_result = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fclose(f);
|
||||||
|
}
|
||||||
|
FSFAT_DBGLOG("[%s]\n", read_result ? "OK" : "FAIL");
|
||||||
|
}
|
||||||
|
TEST_ASSERT_MESSAGE(read_result == true, "Error: read_result is set to false.");
|
||||||
|
return CaseNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** @brief test-fseek.c test ported from glibc project. See the licence at REF_LICENCE_GLIBC.
|
||||||
|
*
|
||||||
|
* @return on success returns CaseNext to continue to next test case, otherwise will assert on errors.
|
||||||
|
*/
|
||||||
|
static control_t fsfat_basic_test_01()
|
||||||
|
{
|
||||||
|
FILE *fp, *fp1;
|
||||||
|
int i, j;
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
|
FSFAT_FENTRYLOG("%s:entered\n", __func__);
|
||||||
|
fp = fopen (sd_file_path, "w+");
|
||||||
|
if (fp == NULL) {
|
||||||
|
FSFAT_DBGLOG("errno=%d\n", errno);
|
||||||
|
TEST_ASSERT_MESSAGE(false, "error");
|
||||||
|
return CaseNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < 256; i++) {
|
||||||
|
putc (i, fp);
|
||||||
|
}
|
||||||
|
/* FIXME: freopen() should open the specified file closing the first stream. As can be seen from the
|
||||||
|
* code below, the old file descriptor fp can still be used, and this should not happen.
|
||||||
|
*/
|
||||||
|
fp1 = freopen (sd_file_path, "r", fp);
|
||||||
|
TEST_ASSERT_MESSAGE(fp1 == fp, "Error: cannot open file for reading");
|
||||||
|
|
||||||
|
for (i = 1; i <= 255; i++) {
|
||||||
|
ret = fseek (fp, (long) -i, SEEK_END);
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s:Error: fseek() failed (ret=%d).\n", __func__, (int) ret);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == 0, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
if ((j = getc (fp)) != 256 - i) {
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: SEEK_END failed (j=%d)\n", __func__, j);
|
||||||
|
TEST_ASSERT_MESSAGE(false, fsfat_basic_msg_g);
|
||||||
|
}
|
||||||
|
ret = fseek (fp, (long) i, SEEK_SET);
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: Cannot SEEK_SET (ret=%d).\n", __func__, (int) ret);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == 0, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
if ((j = getc (fp)) != i) {
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: Cannot SEEK_SET (j=%d).\n", __func__, j);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == 0, fsfat_basic_msg_g);
|
||||||
|
}
|
||||||
|
if ((ret = fseek (fp, (long) i, SEEK_SET))) {
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: Cannot SEEK_SET (ret=%d).\n", __func__, (int) ret);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == 0, fsfat_basic_msg_g);
|
||||||
|
}
|
||||||
|
if ((ret = fseek (fp, (long) (i >= 128 ? -128 : 128), SEEK_CUR))) {
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: Cannot SEEK_CUR (ret=%d).\n", __func__, (int) ret);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == 0, fsfat_basic_msg_g);
|
||||||
|
}
|
||||||
|
if ((j = getc (fp)) != (i >= 128 ? i - 128 : i + 128)) {
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: Cannot SEEK_CUR (j=%d).\n", __func__, j);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == 0, fsfat_basic_msg_g);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fclose (fp);
|
||||||
|
remove(sd_file_path);
|
||||||
|
return CaseNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** @brief test_rdwr.c test ported from glibc project. See the licence at REF_LICENCE_GLIBC.
|
||||||
|
*
|
||||||
|
* WARNING: this test does not currently work. See WARNING comments below.
|
||||||
|
*
|
||||||
|
* @return on success returns CaseNext to continue to next test case, otherwise will assert on errors.
|
||||||
|
*/
|
||||||
|
static control_t fsfat_basic_test_02()
|
||||||
|
{
|
||||||
|
static const char hello[] = "Hello, world.\n";
|
||||||
|
static const char replace[] = "Hewwo, world.\n";
|
||||||
|
static const size_t replace_from = 2, replace_to = 4;
|
||||||
|
const char *filename = sd_file_path;
|
||||||
|
char buf[BUFSIZ];
|
||||||
|
FILE *f;
|
||||||
|
int lose = 0;
|
||||||
|
int32_t ret = 0;
|
||||||
|
char *rets = NULL;
|
||||||
|
|
||||||
|
FSFAT_FENTRYLOG("%s:entered\n", __func__);
|
||||||
|
f = fopen(filename, "w+");
|
||||||
|
if (f == NULL) {
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: Cannot open file for writing (filename=%s).\n", __func__, filename);
|
||||||
|
TEST_ASSERT_MESSAGE(false, fsfat_basic_msg_g);
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = fputs(hello, f);
|
||||||
|
if (ret == EOF) {
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: fputs() failed to write string to file (filename=%s, string=%s).\n", __func__, filename, hello);
|
||||||
|
TEST_ASSERT_MESSAGE(false, fsfat_basic_msg_g);
|
||||||
|
}
|
||||||
|
|
||||||
|
rewind(f);
|
||||||
|
rets = fgets(buf, sizeof(buf), f);
|
||||||
|
if (rets == NULL) {
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: fgets() failed to get string from file (filename=%s).\n", __func__, filename);
|
||||||
|
TEST_ASSERT_MESSAGE(false, fsfat_basic_msg_g);
|
||||||
|
}
|
||||||
|
rets = NULL;
|
||||||
|
|
||||||
|
rewind(f);
|
||||||
|
ret = fputs(buf, f);
|
||||||
|
if (ret == EOF) {
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: fputs() failed to write string to file (filename=%s, string=%s).\n", __func__, filename, buf);
|
||||||
|
TEST_ASSERT_MESSAGE(false, fsfat_basic_msg_g);
|
||||||
|
}
|
||||||
|
|
||||||
|
rewind(f);
|
||||||
|
{
|
||||||
|
register size_t i;
|
||||||
|
for (i = 0; i < replace_from; ++i)
|
||||||
|
{
|
||||||
|
int c = getc(f);
|
||||||
|
if (c == EOF)
|
||||||
|
{
|
||||||
|
FSFAT_DBGLOG("EOF at %u.\n", i);
|
||||||
|
lose = 1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else if (c != hello[i])
|
||||||
|
{
|
||||||
|
FSFAT_DBGLOG("Got '%c' instead of '%c' at %u.\n",
|
||||||
|
(unsigned char) c, hello[i], i);
|
||||||
|
lose = 1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* WARNING: printf("%s: here1. (lose = %d)\n", __func__, lose); */
|
||||||
|
{
|
||||||
|
long int where = ftell(f);
|
||||||
|
if (where == replace_from)
|
||||||
|
{
|
||||||
|
register size_t i;
|
||||||
|
for (i = replace_from; i < replace_to; ++i) {
|
||||||
|
if (putc(replace[i], f) == EOF) {
|
||||||
|
FSFAT_DBGLOG("putc('%c') got %s at %u.\n",
|
||||||
|
replace[i], strerror(errno), i);
|
||||||
|
lose = 1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
/* WARNING: The problem seems to be that putc() is not writing the 'w' chars into the file
|
||||||
|
* FSFAT_DBGLOG("%s: here1.5. (char = %c, char as int=%d, ret=%d) \n", __func__, replace[i], (int) replace[i], ret);
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (where == -1L)
|
||||||
|
{
|
||||||
|
FSFAT_DBGLOG("ftell got %s (should be at %u).\n",
|
||||||
|
strerror(errno), replace_from);
|
||||||
|
lose = 1;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
FSFAT_DBGLOG("ftell returns %ld; should be %u.\n", where, replace_from);
|
||||||
|
lose = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!lose)
|
||||||
|
{
|
||||||
|
rewind(f);
|
||||||
|
memset(buf, 0, BUFSIZ);
|
||||||
|
if (fgets(buf, sizeof(buf), f) == NULL)
|
||||||
|
{
|
||||||
|
FSFAT_DBGLOG("fgets got %s.\n", strerror(errno));
|
||||||
|
lose = 1;
|
||||||
|
}
|
||||||
|
else if (strcmp(buf, replace))
|
||||||
|
{
|
||||||
|
FSFAT_DBGLOG("Read \"%s\" instead of \"%s\".\n", buf, replace);
|
||||||
|
lose = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (lose) {
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: Test Failed. Losing file (filename=%s).\n", __func__, filename);
|
||||||
|
TEST_ASSERT_MESSAGE(false, fsfat_basic_msg_g);
|
||||||
|
}
|
||||||
|
remove(filename);
|
||||||
|
return CaseNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @brief temptest.c test ported from glibc project. See the licence at REF_LICENCE_GLIBC.
|
||||||
|
*
|
||||||
|
* tmpnam() is currently not implemented
|
||||||
|
*
|
||||||
|
* @return on success returns CaseNext to continue to next test case, otherwise will assert on errors.
|
||||||
|
*/
|
||||||
|
static control_t fsfat_basic_test_03()
|
||||||
|
{
|
||||||
|
char *fn = NULL;
|
||||||
|
|
||||||
|
FSFAT_FENTRYLOG("%s:entered\n", __func__);
|
||||||
|
fn = tmpnam((char *) NULL);
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: appeared to generate a filename when function is not implemented.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(fn == NULL, fsfat_basic_msg_g);
|
||||||
|
return CaseNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static bool fsfat_basic_fileno_check(const char *name, FILE *stream, int fd)
|
||||||
|
{
|
||||||
|
/* ARMCC stdio.h currently does not define fileno() */
|
||||||
|
#ifndef __ARMCC_VERSION
|
||||||
|
int sfd = fileno (stream);
|
||||||
|
FSFAT_DBGLOG("(fileno (%s) = %d) %c= %d\n", name, sfd, sfd == fd ? '=' : '!', fd);
|
||||||
|
|
||||||
|
if (sfd == fd) {
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
/* For ARMCC behave as though test had passed. */
|
||||||
|
return true;
|
||||||
|
#endif /* __ARMCC_VERSION */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* defines for next test case */
|
||||||
|
#ifndef STDIN_FILENO
|
||||||
|
#define STDIN_FILENO 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef STDOUT_FILENO
|
||||||
|
#define STDOUT_FILENO 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef STDERR_FILENO
|
||||||
|
#define STDERR_FILENO 2
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/** @brief tst-fileno.c test ported from glibc project. See the licence at REF_LICENCE_GLIBC.
|
||||||
|
*
|
||||||
|
* WARNING: this test does not currently work. See WARNING comments below.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @return on success returns CaseNext to continue to next test case, otherwise will assert on errors.
|
||||||
|
*/
|
||||||
|
static control_t fsfat_basic_test_04()
|
||||||
|
{
|
||||||
|
/* ARMCC stdio.h currently does not define fileno() */
|
||||||
|
#ifndef __ARMCC_VERSION
|
||||||
|
int ret = -1;
|
||||||
|
ret = fsfat_basic_fileno_check("stdin", stdin, STDIN_FILENO);
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: stdin does not have expected file number (expected=%d, fileno=%d.\n", __func__, (int) stdin, fileno(stdin));
|
||||||
|
TEST_ASSERT_MESSAGE(ret == true, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
ret = fsfat_basic_fileno_check("stdout", stdout, STDOUT_FILENO);
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: stdout does not have expected file number (expected=%d, fileno=%d.\n", __func__, (int) stdout, fileno(stdout));
|
||||||
|
TEST_ASSERT_MESSAGE(ret == true, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
ret = fsfat_basic_fileno_check("stderr", stderr, STDERR_FILENO);
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: stderr does not have expected file number (expected=%d, fileno=%d.\n", __func__, (int) stderr, fileno(stderr));
|
||||||
|
TEST_ASSERT_MESSAGE(ret == true, fsfat_basic_msg_g);
|
||||||
|
#endif /* __ARMCC_VERSION */
|
||||||
|
return CaseNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** @brief basic test to opendir() on a directory.
|
||||||
|
*
|
||||||
|
* This test has been ported from armmbed/mbed-os/features/unsupported/tests/mbed/dir_sd/main.cpp.
|
||||||
|
*
|
||||||
|
* @return on success returns CaseNext to continue to next test case, otherwise will assert on errors.
|
||||||
|
*/
|
||||||
|
static control_t fsfat_basic_test_05()
|
||||||
|
{
|
||||||
|
FILE *f;
|
||||||
|
const char *str = FSFAT_BASIC_TEST_05_TEST_STRING;
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
|
FSFAT_DBGLOG("%s:Write files\n", __func__);
|
||||||
|
char filename[32];
|
||||||
|
for (int i = 0; i < 10; i++) {
|
||||||
|
sprintf(filename, "/sd/test_%d.txt", i);
|
||||||
|
FSFAT_DBGLOG("Creating file: %s\n", filename);
|
||||||
|
f = fopen(filename, "w");
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: fopen() failed.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(f != NULL, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
ret = fprintf(f, str);
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: writing file.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == (int) strlen(str), fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
ret = fclose(f);
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: fclose() failed.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == 0, fsfat_basic_msg_g);
|
||||||
|
}
|
||||||
|
|
||||||
|
FSFAT_DBGLOG("%s:List files:\n", __func__);
|
||||||
|
DIR *d = opendir("/sd");
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: opendir() failed.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(d != NULL, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
struct dirent *p;
|
||||||
|
while ((p = readdir(d)) != NULL)
|
||||||
|
FSFAT_DBGLOG("%s\n", p->d_name);
|
||||||
|
closedir(d);
|
||||||
|
|
||||||
|
return CaseNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** @brief basic test to write a file to sd card, and read it back again
|
||||||
|
*
|
||||||
|
* This test has been ported from armmbed/mbed-os/features/unsupported/tests/mbed/file/main.cpp.
|
||||||
|
*
|
||||||
|
* @return on success returns CaseNext to continue to next test case, otherwise will assert on errors.
|
||||||
|
*/
|
||||||
|
static control_t fsfat_basic_test_06()
|
||||||
|
{
|
||||||
|
int ret = -1;
|
||||||
|
char mac[16];
|
||||||
|
mbed_mac_address(mac);
|
||||||
|
FSFAT_DBGLOG("mac address: %02x,%02x,%02x,%02x,%02x,%02x\n", mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
|
||||||
|
|
||||||
|
FILE *f;
|
||||||
|
const char *str = FSFAT_BASIC_TEST_05_TEST_STRING;
|
||||||
|
int str_len = strlen(FSFAT_BASIC_TEST_05_TEST_STRING);
|
||||||
|
|
||||||
|
f = fopen(sd_file_path, "w");
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: fopen() failed.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(f != NULL, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
ret = fprintf(f, str);
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: writing file.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == (int) strlen(str), fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
ret = fclose(f);
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: fclose() failed.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == 0, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
// Read
|
||||||
|
f = fopen(sd_file_path, "r");
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: fopen() failed.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(f != NULL, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
int n = fread(fsfat_basic_buffer, sizeof(unsigned char), str_len, f);
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: fread() failed.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(n == str_len, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
ret = fclose(f);
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: fclose() failed.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == 0, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
return CaseNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** @brief basic test to write a file to sd card.
|
||||||
|
*
|
||||||
|
* This test has been ported from armmbed/mbed-os/features/unsupported/tests/mbed/sd/main.cpp.
|
||||||
|
*
|
||||||
|
* @return on success returns CaseNext to continue to next test case, otherwise will assert on errors.
|
||||||
|
*/
|
||||||
|
static control_t fsfat_basic_test_07()
|
||||||
|
{
|
||||||
|
uint8_t data_written[FSFAT_BASIC_DATA_SIZE] = { 0 };
|
||||||
|
|
||||||
|
// Fill data_written buffer with random data
|
||||||
|
// Write these data into the file
|
||||||
|
bool write_result = false;
|
||||||
|
{
|
||||||
|
FSFAT_DBGLOG("%s:SD: Writing ... ", __func__);
|
||||||
|
FILE *f = fopen(sd_file_path, "w");
|
||||||
|
if (f) {
|
||||||
|
for (int i = 0; i < FSFAT_BASIC_DATA_SIZE; i++) {
|
||||||
|
data_written[i] = rand() % 0XFF;
|
||||||
|
fprintf(f, "%c", data_written[i]);
|
||||||
|
}
|
||||||
|
write_result = true;
|
||||||
|
fclose(f);
|
||||||
|
}
|
||||||
|
FSFAT_DBGLOG("[%s]\n", write_result ? "OK" : "FAIL");
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: unexpected write failure.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(write_result == true, fsfat_basic_msg_g);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read back the data from the file and store them in data_read
|
||||||
|
bool read_result = false;
|
||||||
|
{
|
||||||
|
FSFAT_DBGLOG("%s:SD: Reading data ... ", __func__);
|
||||||
|
FILE *f = fopen(sd_file_path, "r");
|
||||||
|
if (f) {
|
||||||
|
read_result = true;
|
||||||
|
for (int i = 0; i < FSFAT_BASIC_DATA_SIZE; i++) {
|
||||||
|
uint8_t data = fgetc(f);
|
||||||
|
if (data != data_written[i]) {
|
||||||
|
read_result = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fclose(f);
|
||||||
|
}
|
||||||
|
FSFAT_DBGLOG("[%s]\n", read_result ? "OK" : "FAIL");
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: unexpected read failure.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(read_result == true, fsfat_basic_msg_g);
|
||||||
|
}
|
||||||
|
return CaseNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static bool fsfat_basic_test_file_write_fhandle(const char *filename, const int kib_rw)
|
||||||
|
{
|
||||||
|
int ret = -1;
|
||||||
|
File file;
|
||||||
|
|
||||||
|
ret = file.open(&fs, filename, O_WRONLY | O_CREAT | O_TRUNC);
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: failed to open file.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == 0, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
int byte_write = 0;
|
||||||
|
fsfat_basic_timer.start();
|
||||||
|
for (int i = 0; i < kib_rw; i++) {
|
||||||
|
ret = file.write(fsfat_basic_buffer, sizeof(fsfat_basic_buffer));
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: failed to write to file.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == sizeof(fsfat_basic_buffer), fsfat_basic_msg_g);
|
||||||
|
byte_write++;
|
||||||
|
}
|
||||||
|
fsfat_basic_timer.stop();
|
||||||
|
file.close();
|
||||||
|
#ifdef FSFAT_DEBUG
|
||||||
|
double test_time_sec = fsfat_basic_timer.read_us() / 1000000.0;
|
||||||
|
double speed = kib_rw / test_time_sec;
|
||||||
|
FSFAT_DBGLOG("%d KiB write in %.3f sec with speed of %.4f KiB/s\n", byte_write, test_time_sec, speed);
|
||||||
|
#endif
|
||||||
|
fsfat_basic_timer.reset();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static bool fsfat_basic_test_file_read_fhandle(const char *filename, const int kib_rw)
|
||||||
|
{
|
||||||
|
int ret = -1;
|
||||||
|
File file;
|
||||||
|
ret = file.open(&fs, filename, O_RDONLY);
|
||||||
|
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: failed to open file.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == 0, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
fsfat_basic_timer.start();
|
||||||
|
int byte_read = 0;
|
||||||
|
while (file.read(fsfat_basic_buffer, sizeof(fsfat_basic_buffer)) == sizeof(fsfat_basic_buffer)) {
|
||||||
|
byte_read++;
|
||||||
|
}
|
||||||
|
fsfat_basic_timer.stop();
|
||||||
|
file.close();
|
||||||
|
#ifdef FSFAT_DEBUG
|
||||||
|
double test_time_sec = fsfat_basic_timer.read_us() / 1000000.0;
|
||||||
|
double speed = kib_rw / test_time_sec;
|
||||||
|
FSFAT_DBGLOG("%d KiB read in %.3f sec with speed of %.4f KiB/s\n", byte_read, test_time_sec, speed);
|
||||||
|
#endif
|
||||||
|
fsfat_basic_timer.reset();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static char fsfat_basic_test_random_char()
|
||||||
|
{
|
||||||
|
return rand() % 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** @brief basic sd card performance test
|
||||||
|
*
|
||||||
|
* This test has been ported from armmbed/mbed-os/features/unsupported/tests/mbed/sd_perf_handle/main.cpp.
|
||||||
|
*
|
||||||
|
* @return on success returns CaseNext to continue to next test case, otherwise will assert on errors.
|
||||||
|
*/
|
||||||
|
static control_t fsfat_basic_test_08()
|
||||||
|
{
|
||||||
|
// Test header
|
||||||
|
FSFAT_DBGLOG("\n%s:SD Card FileHandle Performance Test\n", __func__);
|
||||||
|
FSFAT_DBGLOG("File name: %s\n", fsfat_basic_bin_filename);
|
||||||
|
FSFAT_DBGLOG("Buffer size: %d KiB\n", (FSFAT_BASIC_KIB_RW * sizeof(fsfat_basic_buffer)) / 1024);
|
||||||
|
|
||||||
|
// Initialize buffer
|
||||||
|
srand(0);
|
||||||
|
char *buffer_end = fsfat_basic_buffer + sizeof(fsfat_basic_buffer);
|
||||||
|
std::generate (fsfat_basic_buffer, buffer_end, fsfat_basic_test_random_char);
|
||||||
|
|
||||||
|
bool result = true;
|
||||||
|
for (;;) {
|
||||||
|
FSFAT_DBGLOG("%s:Write test...\n", __func__);
|
||||||
|
if (fsfat_basic_test_file_write_fhandle(fsfat_basic_bin_filename_test_08, FSFAT_BASIC_KIB_RW) == false) {
|
||||||
|
result = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
FSFAT_DBGLOG("%s:Read test...\n", __func__);
|
||||||
|
if (fsfat_basic_test_file_read_fhandle(fsfat_basic_bin_filename_test_08, FSFAT_BASIC_KIB_RW) == false) {
|
||||||
|
result = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
TEST_ASSERT_MESSAGE(result == true, "something went wrong");
|
||||||
|
return CaseNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool fsfat_basic_test_sf_file_write_stdio(const char *filename, const int kib_rw)
|
||||||
|
{
|
||||||
|
int ret = -1;
|
||||||
|
FILE* file = fopen(filename, "w");
|
||||||
|
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: failed to open file.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(file != NULL, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
int byte_write = 0;
|
||||||
|
fsfat_basic_timer.start();
|
||||||
|
for (int i = 0; i < kib_rw; i++) {
|
||||||
|
ret = fwrite(fsfat_basic_buffer, sizeof(char), sizeof(fsfat_basic_buffer), file);
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: failed to write to file.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(ret == sizeof(fsfat_basic_buffer), fsfat_basic_msg_g);
|
||||||
|
byte_write++;
|
||||||
|
}
|
||||||
|
fsfat_basic_timer.stop();
|
||||||
|
fclose(file);
|
||||||
|
#ifdef FSFAT_DEBUG
|
||||||
|
double test_time_sec = fsfat_basic_timer.read_us() / 1000000.0;
|
||||||
|
double speed = kib_rw / test_time_sec;
|
||||||
|
FSFAT_DBGLOG("%d KiB write in %.3f sec with speed of %.4f KiB/s\n", byte_write, test_time_sec, speed);
|
||||||
|
#endif
|
||||||
|
fsfat_basic_timer.reset();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool fsfat_basic_test_sf_file_read_stdio(const char *filename, const int kib_rw)
|
||||||
|
{
|
||||||
|
FILE* file = fopen(filename, "r");
|
||||||
|
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: failed to open file.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(file != NULL, fsfat_basic_msg_g);
|
||||||
|
fsfat_basic_timer.start();
|
||||||
|
int byte_read = 0;
|
||||||
|
while (fread(fsfat_basic_buffer, sizeof(char), sizeof(fsfat_basic_buffer), file) == sizeof(fsfat_basic_buffer)) {
|
||||||
|
byte_read++;
|
||||||
|
}
|
||||||
|
fsfat_basic_timer.stop();
|
||||||
|
fclose(file);
|
||||||
|
#ifdef FSFAT_DEBUG
|
||||||
|
double test_time_sec = fsfat_basic_timer.read_us() / 1000000.0;
|
||||||
|
double speed = kib_rw / test_time_sec;
|
||||||
|
FSFAT_DBGLOG("%d KiB read in %.3f sec with speed of %.4f KiB/s\n", byte_read, test_time_sec, speed);
|
||||||
|
#endif
|
||||||
|
fsfat_basic_timer.reset();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** @brief basic test to write a file to sd card.
|
||||||
|
*
|
||||||
|
* This test has been ported from armmbed/mbed-os/features/unsupported/tests/mbed/sd_perf_stdio/main.cpp.
|
||||||
|
*
|
||||||
|
* @return on success returns CaseNext to continue to next test case, otherwise will assert on errors.
|
||||||
|
*/
|
||||||
|
static control_t fsfat_basic_test_09()
|
||||||
|
{
|
||||||
|
// Test header
|
||||||
|
FSFAT_DBGLOG("\n%s:SD Card Stdio Performance Test\n", __func__);
|
||||||
|
FSFAT_DBGLOG("File name: %s\n", fsfat_basic_bin_filename);
|
||||||
|
FSFAT_DBGLOG("Buffer size: %d KiB\n", (FSFAT_BASIC_KIB_RW * sizeof(fsfat_basic_buffer)) / 1024);
|
||||||
|
|
||||||
|
// Initialize buffer
|
||||||
|
srand(0);
|
||||||
|
char *buffer_end = fsfat_basic_buffer + sizeof(fsfat_basic_buffer);
|
||||||
|
std::generate (fsfat_basic_buffer, buffer_end, fsfat_basic_test_random_char);
|
||||||
|
|
||||||
|
bool result = true;
|
||||||
|
for (;;) {
|
||||||
|
FSFAT_DBGLOG("%s:Write test...\n", __func__);
|
||||||
|
if (fsfat_basic_test_sf_file_write_stdio(fsfat_basic_bin_filename, FSFAT_BASIC_KIB_RW) == false) {
|
||||||
|
result = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
FSFAT_DBGLOG("%s:Read test...\n", __func__);
|
||||||
|
if (fsfat_basic_test_sf_file_read_stdio(fsfat_basic_bin_filename, FSFAT_BASIC_KIB_RW) == false) {
|
||||||
|
result = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
TEST_ASSERT_MESSAGE(result == true, "Expected true result not found");
|
||||||
|
return CaseNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool fsfat_basic_test_file_write_fatfs(const char *filename, const int kib_rw)
|
||||||
|
{
|
||||||
|
FIL file;
|
||||||
|
FRESULT res = f_open(&file, filename, FA_WRITE | FA_CREATE_ALWAYS);
|
||||||
|
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: failed to open file.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(res == FR_OK, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
int byte_write = 0;
|
||||||
|
unsigned int bytes = 0;
|
||||||
|
fsfat_basic_timer.start();
|
||||||
|
for (int i = 0; i < kib_rw; i++) {
|
||||||
|
res = f_write(&file, fsfat_basic_buffer, sizeof(fsfat_basic_buffer), &bytes);
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: failed to write to file.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(res == FR_OK, fsfat_basic_msg_g);
|
||||||
|
byte_write++;
|
||||||
|
}
|
||||||
|
fsfat_basic_timer.stop();
|
||||||
|
f_close(&file);
|
||||||
|
#ifdef FSFAT_DEBUG
|
||||||
|
double test_time_sec = fsfat_basic_timer.read_us() / 1000000.0;
|
||||||
|
double speed = kib_rw / test_time_sec;
|
||||||
|
FSFAT_DBGLOG("%d KiB write in %.3f sec with speed of %.4f KiB/s\n", byte_write, test_time_sec, speed);
|
||||||
|
#endif
|
||||||
|
fsfat_basic_timer.reset();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool fsfat_basic_test_file_read_fatfs(const char *filename, const int kib_rw)
|
||||||
|
{
|
||||||
|
FIL file;
|
||||||
|
FRESULT res = f_open(&file, filename, FA_READ | FA_OPEN_EXISTING);
|
||||||
|
|
||||||
|
FSFAT_BASIC_MSG(fsfat_basic_msg_g, FSFAT_BASIC_MSG_BUF_SIZE, "%s: Error: failed to open file.\n", __func__);
|
||||||
|
TEST_ASSERT_MESSAGE(res == FR_OK, fsfat_basic_msg_g);
|
||||||
|
|
||||||
|
fsfat_basic_timer.start();
|
||||||
|
int byte_read = 0;
|
||||||
|
unsigned int bytes = 0;
|
||||||
|
do {
|
||||||
|
res = f_read(&file, fsfat_basic_buffer, sizeof(fsfat_basic_buffer), &bytes);
|
||||||
|
byte_read++;
|
||||||
|
} while (res == FR_OK && bytes == sizeof(fsfat_basic_buffer));
|
||||||
|
fsfat_basic_timer.stop();
|
||||||
|
f_close(&file);
|
||||||
|
#ifdef FSFAT_DEBUG
|
||||||
|
double test_time_sec = fsfat_basic_timer.read_us() / 1000000.0;
|
||||||
|
double speed = kib_rw / test_time_sec;
|
||||||
|
FSFAT_DBGLOG("%d KiB read in %.3f sec with speed of %.4f KiB/s\n", byte_read, test_time_sec, speed);
|
||||||
|
#endif
|
||||||
|
fsfat_basic_timer.reset();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @brief basic test to write a file to sd card.
|
||||||
|
*
|
||||||
|
* This test has been ported from armmbed/mbed-os/features/unsupported/tests/mbed/sd_perf_stdio/main.cpp.
|
||||||
|
*
|
||||||
|
* @return on success returns CaseNext to continue to next test case, otherwise will assert on errors.
|
||||||
|
*/
|
||||||
|
static control_t fsfat_basic_test_10()
|
||||||
|
{
|
||||||
|
// Test header
|
||||||
|
FSFAT_DBGLOG("\n%sSD Card FatFS Performance Test\n", __func__);
|
||||||
|
FSFAT_DBGLOG("File name: %s\n", fsfat_basic_bin_filename_test_10);
|
||||||
|
FSFAT_DBGLOG("Buffer size: %d KiB\n", (FSFAT_BASIC_KIB_RW * sizeof(fsfat_basic_buffer)) / 1024);
|
||||||
|
|
||||||
|
// Initialize buffer
|
||||||
|
srand(1);
|
||||||
|
char *buffer_end = fsfat_basic_buffer + sizeof(fsfat_basic_buffer);
|
||||||
|
std::generate (fsfat_basic_buffer, buffer_end, fsfat_basic_test_random_char);
|
||||||
|
|
||||||
|
bool result = true;
|
||||||
|
for (;;) {
|
||||||
|
FSFAT_DBGLOG("%s:Write test...\n", __func__);
|
||||||
|
if (fsfat_basic_test_file_write_fatfs(fsfat_basic_bin_filename_test_10, FSFAT_BASIC_KIB_RW) == false) {
|
||||||
|
result = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
FSFAT_DBGLOG("%s:Read test...\n", __func__);
|
||||||
|
if (fsfat_basic_test_file_read_fatfs(fsfat_basic_bin_filename_test_10, FSFAT_BASIC_KIB_RW) == false) {
|
||||||
|
result = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
TEST_ASSERT_MESSAGE(result == true, "Expected true result not found");
|
||||||
|
return CaseNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
utest::v1::status_t greentea_setup(const size_t number_of_cases)
|
||||||
|
{
|
||||||
|
GREENTEA_SETUP(300, "default_auto");
|
||||||
|
return greentea_test_setup_handler(number_of_cases);
|
||||||
|
}
|
||||||
|
|
||||||
|
Case cases[] = {
|
||||||
|
/* 1 2 3 4 5 6 7 */
|
||||||
|
/* 1234567890123456789012345678901234567890123456789012345678901234567890 */
|
||||||
|
Case("FSFAT_BASIC_TEST_ : format() test.", FSFAT_BASIC_TEST_),
|
||||||
|
Case("FSFAT_BASIC_TEST_00: fopen()/fgetc()/fprintf()/fclose() test.", FSFAT_BASIC_TEST_00),
|
||||||
|
Case("FSFAT_BASIC_TEST_01: fopen()/fseek()/fclose() test.", FSFAT_BASIC_TEST_01),
|
||||||
|
/* WARNING: Test case not working but currently not required for PAL support
|
||||||
|
* Case("FSFAT_BASIC_TEST_02: fopen()/fgets()/fputs()/ftell()/rewind()/remove() test.", FSFAT_BASIC_TEST_02) */
|
||||||
|
Case("FSFAT_BASIC_TEST_03: tmpnam() test.", FSFAT_BASIC_TEST_03),
|
||||||
|
Case("FSFAT_BASIC_TEST_04: fileno() test.", FSFAT_BASIC_TEST_04),
|
||||||
|
Case("FSFAT_BASIC_TEST_05: opendir() basic test.", FSFAT_BASIC_TEST_05),
|
||||||
|
Case("FSFAT_BASIC_TEST_06: fread()/fwrite() file to sdcard.", FSFAT_BASIC_TEST_06),
|
||||||
|
Case("FSFAT_BASIC_TEST_07: sdcard fwrite() file test.", FSFAT_BASIC_TEST_07),
|
||||||
|
Case("FSFAT_BASIC_TEST_08: FATFileSystem::read()/write() test.", FSFAT_BASIC_TEST_08),
|
||||||
|
Case("FSFAT_BASIC_TEST_09: POSIX FILE API fread()/fwrite() test.", FSFAT_BASIC_TEST_09),
|
||||||
|
Case("FSFAT_BASIC_TEST_10: ChanFS read()/write()) test.", FSFAT_BASIC_TEST_10),
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/* Declare your test specification with a custom setup handler */
|
||||||
|
Specification specification(greentea_setup, cases);
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
return !Harness::run(specification);
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,88 @@
|
||||||
|
/** @file fsfat_debug.h
|
||||||
|
*
|
||||||
|
* component debug header file.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef __FSFAT_DEBUG
|
||||||
|
#define __FSFAT_DEBUG
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <assert.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* Debug Support */
|
||||||
|
|
||||||
|
#define FSFAT_LOG_NONE 0
|
||||||
|
#define FSFAT_LOG_ERR 1
|
||||||
|
#define FSFAT_LOG_WARN 2
|
||||||
|
#define FSFAT_LOG_NOTICE 3
|
||||||
|
#define FSFAT_LOG_INFO 4
|
||||||
|
#define FSFAT_LOG_DEBUG 5
|
||||||
|
#define FSFAT_LOG_FENTRY 6
|
||||||
|
|
||||||
|
#define FSFAT_LOG(_fmt, ...) \
|
||||||
|
do \
|
||||||
|
{ \
|
||||||
|
printf(_fmt, __VA_ARGS__); \
|
||||||
|
}while(0);
|
||||||
|
|
||||||
|
#define noFSFAT_DEBUG
|
||||||
|
#ifdef FSFAT_DEBUG
|
||||||
|
|
||||||
|
extern uint32_t fsfat_optDebug_g;
|
||||||
|
extern uint32_t fsfat_optLogLevel_g;
|
||||||
|
|
||||||
|
|
||||||
|
/* uncomment for asserts to work */
|
||||||
|
/* #undef NDEBUG */
|
||||||
|
// todo: port to mbedOSV3++ #include <core-util/assert.h>
|
||||||
|
|
||||||
|
#define FSFAT_INLINE
|
||||||
|
// todo: port to mbedOSV3++ #define FSFAT_ASSERT CORE_UTIL_ASSERT
|
||||||
|
#define FSFAT_ASSERT(...)
|
||||||
|
|
||||||
|
#define FSFAT_DBGLOG(_fmt, ...) \
|
||||||
|
do \
|
||||||
|
{ \
|
||||||
|
if(fsfat_optDebug_g && (fsfat_optLogLevel_g >= FSFAT_LOG_DEBUG)) \
|
||||||
|
{ \
|
||||||
|
printf(_fmt, __VA_ARGS__); \
|
||||||
|
} \
|
||||||
|
}while(0);
|
||||||
|
|
||||||
|
|
||||||
|
#define FSFAT_ERRLOG(_fmt, ...) \
|
||||||
|
do \
|
||||||
|
{ \
|
||||||
|
if(fsfat_optDebug_g && (fsfat_optLogLevel_g >= FSFAT_LOG_ERR)) \
|
||||||
|
{ \
|
||||||
|
printf(_fmt, __VA_ARGS__); \
|
||||||
|
} \
|
||||||
|
}while(0);
|
||||||
|
|
||||||
|
|
||||||
|
#define FSFAT_FENTRYLOG(_fmt, ...) \
|
||||||
|
do \
|
||||||
|
{ \
|
||||||
|
if(fsfat_optDebug_g && (fsfat_optLogLevel_g >= FSFAT_LOG_FENTRY)) \
|
||||||
|
{ \
|
||||||
|
printf(_fmt, __VA_ARGS__); \
|
||||||
|
} \
|
||||||
|
}while(0);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#else
|
||||||
|
#define FSFAT_ASSERT(_x) do { } while(0)
|
||||||
|
#define FSFAT_INLINE inline
|
||||||
|
#define FSFAT_DBGLOG(_fmt, ...) do { } while(0)
|
||||||
|
#define FSFAT_ERRLOG(_fmt, ...) do { } while(0)
|
||||||
|
#define FSFAT_FENTRYLOG(_fmt, ...) do { } while(0)
|
||||||
|
#endif /* FSFAT_DEBUG */
|
||||||
|
|
||||||
|
|
||||||
|
#endif /*__FSFAT_DEBUG*/
|
|
@ -0,0 +1,117 @@
|
||||||
|
/* @file fsfat_test.c
|
||||||
|
*
|
||||||
|
* mbed Microcontroller Library
|
||||||
|
* Copyright (c) 2006-2016 ARM Limited
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*
|
||||||
|
* test support code implementation file.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "fsfat_debug.h"
|
||||||
|
#include "fsfat_test.h"
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <assert.h>
|
||||||
|
#include <inttypes.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef FSFAT_DEBUG
|
||||||
|
uint32_t fsfat_optDebug_g = 1;
|
||||||
|
uint32_t fsfat_optLogLevel_g = FSFAT_LOG_NONE; /*FSFAT_LOG_NONE|FSFAT_LOG_ERR|FSFAT_LOG_DEBUG|FSFAT_LOG_FENTRY; */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* ruler for measuring text strings */
|
||||||
|
/* 1 1 1 1 1 1 1 1 1 1 2 2 2 */
|
||||||
|
/* 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 */
|
||||||
|
/* 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 */
|
||||||
|
|
||||||
|
const uint8_t fsfat_test_byte_data_table[FSFAT_TEST_BYTE_DATA_TABLE_SIZE] = {
|
||||||
|
0x2d, 0xf3, 0x31, 0x4c, 0x11, 0x4f, 0xde, 0x0d, 0xbd, 0xbc, 0xa6, 0x78, 0x36, 0x5c, 0x1d, 0x28,
|
||||||
|
0x5f, 0xa9, 0x10, 0x65, 0x54, 0x45, 0x21, 0x1a, 0x88, 0xfe, 0x76, 0x45, 0xb9, 0xac, 0x65, 0x9a,
|
||||||
|
0x34, 0x9d, 0x73, 0x10, 0xb4, 0xa9, 0x2e, 0x90, 0x95, 0x68, 0xac, 0xfe, 0xc5, 0x2d, 0x15, 0x03,
|
||||||
|
0x34, 0x70, 0xf1, 0x1d, 0x48, 0xa1, 0xa0, 0xed, 0x5c, 0x2f, 0xf5, 0x2b, 0xb9, 0x84, 0xbb, 0x45,
|
||||||
|
0x32, 0xdd, 0xb1, 0x33, 0x95, 0x2a, 0xbc, 0x26, 0xf0, 0x89, 0xba, 0xf4, 0xbd, 0xf9, 0x5d, 0x2e,
|
||||||
|
0x6e, 0x11, 0xc6, 0xa7, 0x78, 0xfc, 0xc9, 0x0e, 0x6b, 0x38, 0xba, 0x14, 0x1b, 0xab, 0x4c, 0x20,
|
||||||
|
0x91, 0xe4, 0xb0, 0xf1, 0x2b, 0x14, 0x07, 0x6b, 0xb5, 0xcd, 0xe3, 0x49, 0x75, 0xac, 0xe8, 0x98,
|
||||||
|
0xf1, 0x58, 0x8f, 0xd9, 0xc4, 0x8f, 0x00, 0x17, 0xb5, 0x06, 0x6a, 0x33, 0xbd, 0xa7, 0x40, 0x5a,
|
||||||
|
0xbf, 0x49, 0xf7, 0x27, 0x1b, 0x4c, 0x3e, 0x6f, 0xe3, 0x08, 0x1f, 0xfd, 0xa6, 0xd4, 0xc7, 0x5f,
|
||||||
|
0xa4, 0xa6, 0x82, 0xad, 0x19, 0xd5, 0x5c, 0xd8, 0x3a, 0x49, 0x85, 0xc9, 0x21, 0x83, 0xf6, 0xc6,
|
||||||
|
0x84, 0xf9, 0x76, 0x89, 0xf3, 0x2d, 0x17, 0x50, 0x97, 0x38, 0x48, 0x9a, 0xe1, 0x82, 0xcd, 0xac,
|
||||||
|
0xa8, 0x1d, 0xd7, 0x96, 0x5e, 0xb3, 0x08, 0xa8, 0x3a, 0xc7, 0x2b, 0x05, 0xaf, 0xdc, 0x16, 0xdf,
|
||||||
|
0x48, 0x0f, 0x2a, 0x7e, 0x3a, 0x82, 0xd7, 0x80, 0xd6, 0x49, 0x27, 0x5d, 0xe3, 0x07, 0x62, 0xb3,
|
||||||
|
0xc3, 0x6c, 0xba, 0xb2, 0xaa, 0x9f, 0xd9, 0x03, 0x0d, 0x27, 0xa8, 0xe0, 0xd6, 0xee, 0x79, 0x4b,
|
||||||
|
0xd6, 0x97, 0x99, 0xb7, 0x11, 0xd6, 0x0d, 0x34, 0xae, 0x99, 0x4a, 0x93, 0x95, 0xd0, 0x5a, 0x34,
|
||||||
|
0x19, 0xa2, 0x69, 0x57, 0xcf, 0x7c, 0x3d, 0x98, 0x88, 0x5d, 0x04, 0xf2, 0xd7, 0xac, 0xa5, 0x63
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/* @brief test utility function to delete the file identified by filename
|
||||||
|
*/
|
||||||
|
int32_t fsfat_test_delete(const char* filename)
|
||||||
|
{
|
||||||
|
FSFAT_FENTRYLOG("%s:entered.\r\n", __func__);
|
||||||
|
return remove(filename);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* @brief test utility function to create a file
|
||||||
|
*
|
||||||
|
* @param filename name of the file including path
|
||||||
|
* @param data data to store in file
|
||||||
|
* @param len number of bytes of data present in the data buffer.
|
||||||
|
*/
|
||||||
|
int32_t fsfat_test_create(const char* filename, const char* data, size_t len)
|
||||||
|
{
|
||||||
|
int32_t ret = -1;
|
||||||
|
FILE *fp = NULL;
|
||||||
|
|
||||||
|
FSFAT_FENTRYLOG("%s:entered (filename=%s, len=%d).\n", __func__, filename, (int) len);
|
||||||
|
fp = fopen(filename, "w+");
|
||||||
|
if(fp == NULL){
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
ret = fwrite((const void*) data, len, 1, fp);
|
||||||
|
if(ret < 0){
|
||||||
|
fclose(fp);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
fclose(fp);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* @brief support function for generating a kv_name
|
||||||
|
* @param name buffer to hold kv name
|
||||||
|
* @param len length of kv name to generate
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
int32_t fsfat_test_filename_gen(char* name, const size_t len)
|
||||||
|
{
|
||||||
|
size_t i;
|
||||||
|
uint32_t pos = 0;
|
||||||
|
|
||||||
|
const char* buf = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!$-_@";
|
||||||
|
const int buf_len = strlen(buf);
|
||||||
|
FSFAT_FENTRYLOG("%s:entered\n", __func__);
|
||||||
|
for(i = 0; i < len; i++)
|
||||||
|
{
|
||||||
|
pos = rand() % (buf_len);
|
||||||
|
name[i] = buf[pos];
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,74 @@
|
||||||
|
/** @file fsfat_test.h
|
||||||
|
*
|
||||||
|
* mbed Microcontroller Library
|
||||||
|
* Copyright (c) 2006-2016 ARM Limited
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*
|
||||||
|
* Header file for test support data structures and function API.
|
||||||
|
*/
|
||||||
|
#ifndef __FSFAT_TEST_H
|
||||||
|
#define __FSFAT_TEST_H
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Defines */
|
||||||
|
//#define FSFAT_INIT_1_TABLE_HEAD { "a", ""}
|
||||||
|
#define FSFAT_INIT_1_TABLE_MID_NODE { "/sd/01234567.txt", "abcdefghijklmnopqrstuvwxyz"}
|
||||||
|
//#define FSFAT_INIT_1_TABLE_TAIL { "/sd/fopentst/hello/world/animal/wobbly/dog/foot/backrght.txt", "present"}
|
||||||
|
#define FSFAT_TEST_RW_TABLE_SENTINEL 0xffffffff
|
||||||
|
#define FSFAT_TEST_BYTE_DATA_TABLE_SIZE 256
|
||||||
|
#define FSFAT_UTEST_MSG_BUF_SIZE 256
|
||||||
|
#define FSFAT_UTEST_DEFAULT_TIMEOUT_MS 10000
|
||||||
|
#define FSFAT_MBED_HOSTTEST_TIMEOUT 60
|
||||||
|
#define FSFAT_MAX_FILE_BASENAME 8
|
||||||
|
#define FSFAT_MAX_FILE_EXTNAME 3
|
||||||
|
#define FSFAT_BUF_MAX_LENGTH 64
|
||||||
|
#define FSFAT_FILENAME_MAX_LENGTH 255
|
||||||
|
|
||||||
|
|
||||||
|
/* support macro for make string for utest _MESSAGE macros, which dont support formatted output */
|
||||||
|
#define FSFAT_TEST_UTEST_MESSAGE(_buf, _max_len, _fmt, ...) \
|
||||||
|
do \
|
||||||
|
{ \
|
||||||
|
snprintf((_buf), (_max_len), (_fmt), __VA_ARGS__); \
|
||||||
|
}while(0);
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Structures
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* kv data for test */
|
||||||
|
typedef struct fsfat_kv_data_t {
|
||||||
|
const char* filename;
|
||||||
|
const char* value;
|
||||||
|
} fsfat_kv_data_t;
|
||||||
|
|
||||||
|
|
||||||
|
extern const uint8_t fsfat_test_byte_data_table[FSFAT_TEST_BYTE_DATA_TABLE_SIZE];
|
||||||
|
|
||||||
|
int32_t fsfat_test_create(const char* filename, const char* data, size_t len);
|
||||||
|
int32_t fsfat_test_delete(const char* key_name);
|
||||||
|
int32_t fsfat_test_filename_gen(char* name, const size_t len);
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* __FSFAT_TEST_H */
|
Loading…
Reference in New Issue