2018-08-21 02:37:40 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 CTCaer
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "../libs/fatfs/ff.h"
|
|
|
|
#include "../mem/heap.h"
|
|
|
|
#include "../utils/types.h"
|
|
|
|
|
2018-11-09 00:09:14 +00:00
|
|
|
char *dirlist(const char *directory, const char *pattern, bool includeHiddenFiles)
|
2018-08-21 02:37:40 +01:00
|
|
|
{
|
|
|
|
u8 max_entries = 61;
|
|
|
|
|
|
|
|
int res = 0;
|
|
|
|
u32 i = 0, j = 0, k = 0;
|
|
|
|
DIR dir;
|
2019-06-30 01:40:37 +01:00
|
|
|
FILINFO fno;
|
2019-10-18 16:02:06 +01:00
|
|
|
|
2018-08-21 02:37:40 +01:00
|
|
|
char *dir_entries = (char *)calloc(max_entries, 256);
|
|
|
|
char *temp = (char *)calloc(1, 256);
|
|
|
|
|
2018-09-24 21:47:35 +01:00
|
|
|
if (!pattern && !f_opendir(&dir, directory))
|
2018-08-21 02:37:40 +01:00
|
|
|
{
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
res = f_readdir(&dir, &fno);
|
|
|
|
if (res || !fno.fname[0])
|
|
|
|
break;
|
2018-11-09 00:09:14 +00:00
|
|
|
if (!(fno.fattrib & AM_DIR) && (fno.fname[0] != '.') && (includeHiddenFiles || !(fno.fattrib & AM_HID)))
|
2018-08-21 02:37:40 +01:00
|
|
|
{
|
2019-12-04 13:56:53 +00:00
|
|
|
strcpy(dir_entries + (k * 256), fno.fname);
|
2018-08-21 02:37:40 +01:00
|
|
|
k++;
|
|
|
|
if (k > (max_entries - 1))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
f_closedir(&dir);
|
2018-09-24 21:47:35 +01:00
|
|
|
}
|
|
|
|
else if (pattern && !f_findfirst(&dir, &fno, directory, pattern) && fno.fname[0])
|
|
|
|
{
|
|
|
|
do
|
2018-09-18 21:47:37 +01:00
|
|
|
{
|
2018-11-09 00:09:14 +00:00
|
|
|
if (!(fno.fattrib & AM_DIR) && (fno.fname[0] != '.') && (includeHiddenFiles || !(fno.fattrib & AM_HID)))
|
2018-09-24 21:47:35 +01:00
|
|
|
{
|
2019-12-04 13:56:53 +00:00
|
|
|
strcpy(dir_entries + (k * 256), fno.fname);
|
2018-09-24 21:47:35 +01:00
|
|
|
k++;
|
|
|
|
if (k > (max_entries - 1))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
res = f_findnext(&dir, &fno);
|
|
|
|
} while (fno.fname[0] && !res);
|
|
|
|
f_closedir(&dir);
|
2018-08-21 02:37:40 +01:00
|
|
|
}
|
2018-09-24 21:47:35 +01:00
|
|
|
|
|
|
|
if (!k)
|
2018-08-23 02:37:02 +01:00
|
|
|
{
|
|
|
|
free(temp);
|
|
|
|
free(dir_entries);
|
2018-09-24 21:47:35 +01:00
|
|
|
|
2018-08-21 02:37:40 +01:00
|
|
|
return NULL;
|
2018-08-23 02:37:02 +01:00
|
|
|
}
|
2018-08-21 02:37:40 +01:00
|
|
|
|
2019-03-30 17:10:49 +00:00
|
|
|
// Reorder ini files by ASCII ordering.
|
2018-08-21 02:37:40 +01:00
|
|
|
for (i = 0; i < k - 1 ; i++)
|
|
|
|
{
|
|
|
|
for (j = i + 1; j < k; j++)
|
|
|
|
{
|
2019-10-18 16:02:06 +01:00
|
|
|
if (strcmp(&dir_entries[i * 256], &dir_entries[j * 256]) > 0)
|
2018-08-21 02:37:40 +01:00
|
|
|
{
|
2019-12-04 13:56:53 +00:00
|
|
|
strcpy(temp, &dir_entries[i * 256]);
|
|
|
|
strcpy(&dir_entries[i * 256], &dir_entries[j * 256]);
|
|
|
|
strcpy(&dir_entries[j * 256], temp);
|
2018-08-21 02:37:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(temp);
|
|
|
|
|
|
|
|
return dir_entries;
|
|
|
|
}
|