2017-06-27 18:17:30 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
* Copyright (c) 2015 Josef Gajdusek
|
|
|
|
* Copyright (c) 2016 Scott Shawcroft for Adafruit Industries
|
|
|
|
*
|
|
|
|
* 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 <string.h>
|
|
|
|
|
|
|
|
#include "extmod/vfs_fat.h"
|
|
|
|
#include "py/obj.h"
|
|
|
|
#include "py/objnamedtuple.h"
|
|
|
|
#include "shared-bindings/storage/__init__.h"
|
|
|
|
|
|
|
|
//| :mod:`storage` --- storage management
|
|
|
|
//| ========================================================
|
|
|
|
//|
|
|
|
|
//| .. module:: storage
|
|
|
|
//| :synopsis: storage management
|
2017-11-22 23:07:21 -05:00
|
|
|
//| :platform: SAMD21, SAMD51
|
2017-06-27 18:17:30 -04:00
|
|
|
//|
|
|
|
|
//| The `storage` provides storage management functionality such as mounting and
|
|
|
|
//| unmounting which is typically handled by the operating system hosting Python.
|
|
|
|
//| CircuitPython does not have an OS, so this module provides this functionality
|
2018-02-20 20:34:59 -05:00
|
|
|
//| directly.
|
2017-06-27 18:17:30 -04:00
|
|
|
//|
|
|
|
|
|
|
|
|
//| .. function:: mount(filesystem, mount_path, \*, readonly=False)
|
|
|
|
//|
|
|
|
|
//| Mounts the given filesystem object at the given path.
|
|
|
|
//|
|
|
|
|
//| This is the CircuitPython analog to the UNIX ``mount`` command.
|
|
|
|
//|
|
|
|
|
mp_obj_t storage_mount(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
|
|
|
|
enum { ARG_readonly };
|
|
|
|
static const mp_arg_t allowed_args[] = {
|
|
|
|
{ MP_QSTR_readonly, MP_ARG_KW_ONLY | MP_ARG_OBJ, {.u_obj = mp_const_false} },
|
|
|
|
};
|
|
|
|
|
|
|
|
// parse args
|
|
|
|
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
|
|
|
|
mp_arg_parse_all(n_args - 2, pos_args + 2, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
|
|
|
|
|
|
|
|
// get the mount point
|
|
|
|
const char *mnt_str = mp_obj_str_get_str(pos_args[1]);
|
|
|
|
|
|
|
|
// Make sure we're given an object we can mount.
|
|
|
|
// TODO(tannewt): Make sure we have all the methods we need to operating it
|
|
|
|
// as a file system.
|
|
|
|
mp_obj_t vfs_obj = pos_args[0];
|
|
|
|
mp_obj_t dest[2];
|
|
|
|
mp_load_method_maybe(vfs_obj, MP_QSTR_mount, dest);
|
|
|
|
if (dest[0] == MP_OBJ_NULL) {
|
|
|
|
mp_raise_ValueError("filesystem must provide mount method");
|
|
|
|
}
|
|
|
|
|
|
|
|
common_hal_storage_mount(vfs_obj, mnt_str, mp_obj_is_true(args[ARG_readonly].u_obj));
|
|
|
|
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_KW(storage_mount_obj, 2, storage_mount);
|
|
|
|
|
|
|
|
//| .. function:: umount(mount)
|
|
|
|
//|
|
|
|
|
//| Unmounts the given filesystem object or if *mount* is a path, then unmount
|
|
|
|
//| the filesystem mounted at that location.
|
|
|
|
//|
|
|
|
|
//| This is the CircuitPython analog to the UNIX ``umount`` command.
|
|
|
|
//|
|
|
|
|
mp_obj_t storage_umount(mp_obj_t mnt_in) {
|
|
|
|
if (MP_OBJ_IS_STR(mnt_in)) {
|
|
|
|
common_hal_storage_umount_path(mp_obj_str_get_str(mnt_in));
|
|
|
|
} else {
|
|
|
|
common_hal_storage_umount_object(mnt_in);
|
|
|
|
}
|
|
|
|
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(storage_umount_obj, storage_umount);
|
|
|
|
|
2017-10-19 19:34:31 -04:00
|
|
|
//| .. function:: remount(mount_path, readonly=False)
|
2017-06-28 19:18:13 -04:00
|
|
|
//|
|
|
|
|
//| Remounts the given path with new parameters.
|
|
|
|
//|
|
2017-10-19 19:34:31 -04:00
|
|
|
mp_obj_t storage_remount(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
|
|
|
|
enum { ARG_readonly };
|
|
|
|
static const mp_arg_t allowed_args[] = {
|
|
|
|
{ MP_QSTR_readonly, MP_ARG_BOOL | MP_ARG_REQUIRED, {.u_bool = false} },
|
|
|
|
};
|
|
|
|
|
|
|
|
// get the mount point
|
|
|
|
const char *mnt_str = mp_obj_str_get_str(pos_args[0]);
|
|
|
|
|
|
|
|
// parse args
|
|
|
|
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
|
|
|
|
mp_arg_parse_all(n_args - 1, pos_args + 1, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
|
2017-06-28 19:18:13 -04:00
|
|
|
|
2017-10-19 19:34:31 -04:00
|
|
|
common_hal_storage_remount(mnt_str, args[ARG_readonly].u_bool);
|
2017-06-28 19:18:13 -04:00
|
|
|
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
2017-10-19 19:34:31 -04:00
|
|
|
MP_DEFINE_CONST_FUN_OBJ_KW(storage_remount_obj, 1, storage_remount);
|
2017-06-28 19:18:13 -04:00
|
|
|
|
2018-03-27 22:28:18 -04:00
|
|
|
//| .. function:: getmount(mount_path)
|
|
|
|
//|
|
|
|
|
//| Retrieves the mount object associated with the mount path
|
|
|
|
//|
|
|
|
|
mp_obj_t storage_getmount(const mp_obj_t mnt_in) {
|
|
|
|
return common_hal_storage_getmount(mp_obj_str_get_str(mnt_in));
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(storage_getmount_obj, storage_getmount);
|
|
|
|
|
2018-04-09 12:52:42 -04:00
|
|
|
//| .. function:: erase_filesystem()
|
|
|
|
//|
|
2018-04-10 12:08:41 -04:00
|
|
|
//| Erase and re-create the ``CIRCUITPY`` filesystem.
|
|
|
|
//|
|
|
|
|
//| On boards that present USB-visible ``CIRCUITPY`` drive (e.g., SAMD21 and SAMD51),
|
|
|
|
//| then call `microcontroller.reset()` to restart CircuitPython and have the
|
2018-04-09 12:52:42 -04:00
|
|
|
//| host computer remount CIRCUITPY.
|
|
|
|
//|
|
|
|
|
//| This function can be called from the REPL when ``CIRCUITPY``
|
|
|
|
//| has become corrupted.
|
|
|
|
//|
|
|
|
|
//| .. warning:: All the data on ``CIRCUITPY`` will be lost, and
|
2018-04-10 12:08:41 -04:00
|
|
|
//| CircuitPython will restart on certain boards.
|
2018-04-09 12:52:42 -04:00
|
|
|
|
|
|
|
mp_obj_t storage_erase_filesystem(void) {
|
|
|
|
common_hal_storage_erase_filesystem();
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_0(storage_erase_filesystem_obj, storage_erase_filesystem);
|
|
|
|
|
2017-06-27 18:17:30 -04:00
|
|
|
STATIC const mp_rom_map_elem_t storage_module_globals_table[] = {
|
2017-08-27 15:02:50 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_storage) },
|
2017-06-27 18:17:30 -04:00
|
|
|
|
2017-08-27 15:02:50 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_mount), MP_ROM_PTR(&storage_mount_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_umount), MP_ROM_PTR(&storage_umount_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_remount), MP_ROM_PTR(&storage_remount_obj) },
|
2018-03-27 22:28:18 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_getmount), MP_ROM_PTR(&storage_getmount_obj) },
|
2018-04-09 12:52:42 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_erase_filesystem), MP_ROM_PTR(&storage_erase_filesystem_obj) },
|
2017-08-07 19:20:19 -04:00
|
|
|
|
|
|
|
//| .. class:: VfsFat(block_device)
|
|
|
|
//|
|
|
|
|
//| Create a new VfsFat filesystem around the given block device.
|
|
|
|
//|
|
|
|
|
//| :param block_device: Block device the the filesystem lives on
|
|
|
|
//|
|
2018-03-27 22:28:19 -04:00
|
|
|
//| .. attribute:: label
|
|
|
|
//|
|
|
|
|
//| The filesystem label, up to 11 case-insensitive bytes. Note that
|
|
|
|
//| this property can only be set when the device is writable by the
|
|
|
|
//| microcontroller.
|
|
|
|
//|
|
|
|
|
//| .. method:: mkfs
|
|
|
|
//|
|
|
|
|
//| Format the block device, deleting any data that may have been there
|
|
|
|
//|
|
|
|
|
//| .. method:: open(path, mode)
|
|
|
|
//|
|
|
|
|
//| Like builtin ``open()``
|
|
|
|
//|
|
|
|
|
//| .. method:: ilistdir([path])
|
|
|
|
//|
|
|
|
|
//| Return an iterator whose values describe files and folders within
|
|
|
|
//| ``path``
|
|
|
|
//|
|
|
|
|
//| .. method:: mkdir(path)
|
|
|
|
//|
|
|
|
|
//| Like `os.mkdir`
|
|
|
|
//|
|
|
|
|
//| .. method:: rmdir(path)
|
|
|
|
//|
|
|
|
|
//| Like `os.rmdir`
|
|
|
|
//|
|
|
|
|
//| .. method:: stat(path)
|
|
|
|
//|
|
|
|
|
//| Like `os.stat`
|
|
|
|
//|
|
|
|
|
//| .. method:: statvfs(path)
|
|
|
|
//|
|
|
|
|
//| Like `os.statvfs`
|
|
|
|
//|
|
|
|
|
//| .. method:: mount(readonly, mkfs)
|
|
|
|
//|
|
|
|
|
//| Don't call this directly, call `storage.mount`.
|
|
|
|
//|
|
|
|
|
//| .. method:: umount
|
|
|
|
//|
|
|
|
|
//| Don't call this directly, call `storage.umount`.
|
|
|
|
//|
|
2017-08-27 15:02:50 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_VfsFat), MP_ROM_PTR(&mp_fat_vfs_type) },
|
2017-06-27 18:17:30 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
STATIC MP_DEFINE_CONST_DICT(storage_module_globals, storage_module_globals_table);
|
|
|
|
|
|
|
|
const mp_obj_module_t storage_module = {
|
|
|
|
.base = { &mp_type_module },
|
|
|
|
.globals = (mp_obj_dict_t*)&storage_module_globals,
|
|
|
|
};
|