summaryrefslogtreecommitdiffstatshomepage
path: root/extmod/vfs_fat_misc.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2018-02-23 17:17:32 +1100
committerDamien George <damien.p.george@gmail.com>2018-02-23 17:17:32 +1100
commitae4a07730af7fe4f62f9f61e8b600e39f557925e (patch)
treed493c8d2c9154d35a83db372efd69593f13082b2 /extmod/vfs_fat_misc.c
parent989fc16162125c9c1c65e0f74d9d7bc73bc9a340 (diff)
downloadmicropython-ae4a07730af7fe4f62f9f61e8b600e39f557925e.tar.gz
micropython-ae4a07730af7fe4f62f9f61e8b600e39f557925e.zip
extmod/vfs_fat: Move ilistdir implementation from misc to main file.
The fat_vfs_ilistdir2() function was only used by fat_vfs_ilistdir_func() so moving the former into the same file as the latter allows it to be placed directly into the latter function, thus saving code size.
Diffstat (limited to 'extmod/vfs_fat_misc.c')
-rw-r--r--extmod/vfs_fat_misc.c59
1 files changed, 0 insertions, 59 deletions
diff --git a/extmod/vfs_fat_misc.c b/extmod/vfs_fat_misc.c
index 1f90ac14ce..d72d9c69c6 100644
--- a/extmod/vfs_fat_misc.c
+++ b/extmod/vfs_fat_misc.c
@@ -31,65 +31,6 @@
#include "py/runtime.h"
#include "lib/oofatfs/ff.h"
#include "extmod/vfs_fat.h"
-#include "py/lexer.h"
-
-typedef struct _mp_vfs_fat_ilistdir_it_t {
- mp_obj_base_t base;
- mp_fun_1_t iternext;
- bool is_str;
- FF_DIR dir;
-} mp_vfs_fat_ilistdir_it_t;
-
-STATIC mp_obj_t mp_vfs_fat_ilistdir_it_iternext(mp_obj_t self_in) {
- mp_vfs_fat_ilistdir_it_t *self = MP_OBJ_TO_PTR(self_in);
-
- for (;;) {
- FILINFO fno;
- FRESULT res = f_readdir(&self->dir, &fno);
- char *fn = fno.fname;
- if (res != FR_OK || fn[0] == 0) {
- // stop on error or end of dir
- break;
- }
-
- // Note that FatFS already filters . and .., so we don't need to
-
- // make 3-tuple with info about this entry
- mp_obj_tuple_t *t = MP_OBJ_TO_PTR(mp_obj_new_tuple(3, NULL));
- if (self->is_str) {
- t->items[0] = mp_obj_new_str(fn, strlen(fn));
- } else {
- t->items[0] = mp_obj_new_bytes((const byte*)fn, strlen(fn));
- }
- if (fno.fattrib & AM_DIR) {
- // dir
- t->items[1] = MP_OBJ_NEW_SMALL_INT(MP_S_IFDIR);
- } else {
- // file
- t->items[1] = MP_OBJ_NEW_SMALL_INT(MP_S_IFREG);
- }
- t->items[2] = MP_OBJ_NEW_SMALL_INT(0); // no inode number
-
- return MP_OBJ_FROM_PTR(t);
- }
-
- // ignore error because we may be closing a second time
- f_closedir(&self->dir);
-
- return MP_OBJ_STOP_ITERATION;
-}
-
-mp_obj_t fat_vfs_ilistdir2(fs_user_mount_t *vfs, const char *path, bool is_str_type) {
- mp_vfs_fat_ilistdir_it_t *iter = m_new_obj(mp_vfs_fat_ilistdir_it_t);
- iter->base.type = &mp_type_polymorph_iter;
- iter->iternext = mp_vfs_fat_ilistdir_it_iternext;
- iter->is_str = is_str_type;
- FRESULT res = f_opendir(&vfs->fatfs, &iter->dir, path);
- if (res != FR_OK) {
- mp_raise_OSError(fresult_to_errno_table[res]);
- }
- return MP_OBJ_FROM_PTR(iter);
-}
mp_import_stat_t fat_vfs_import_stat(fs_user_mount_t *vfs, const char *path) {
FILINFO fno;