Merge branch 'dirCache'

This commit is contained in:
Mahyar Koshkouei
2017-02-22 15:58:59 +00:00
3 changed files with 148 additions and 82 deletions

View File

@@ -51,10 +51,10 @@ void playbackWatchdog(void* infoIn)
{ {
svcWaitSynchronization(*info->errInfo->failEvent, U64_MAX); svcWaitSynchronization(*info->errInfo->failEvent, U64_MAX);
svcClearEvent(*info->errInfo->failEvent); svcClearEvent(*info->errInfo->failEvent);
consoleSelect(info->screen);
if(*info->errInfo->error != 0) if(*info->errInfo->error != 0)
{ {
consoleSelect(info->screen);
printf("Error %d: %s", *info->errInfo->error, printf("Error %d: %s", *info->errInfo->error,
ctrmus_strerror(*info->errInfo->error)); ctrmus_strerror(*info->errInfo->error));
@@ -116,6 +116,81 @@ static int changeFile(const char* ep_file, struct playbackInfo_t* playbackInfo)
return 0; return 0;
} }
static int cmpstringp(const void *p1, const void *p2)
{
/* The actual arguments to this function are "pointers to
pointers to char", but strcmp(3) arguments are "pointers
to char", hence the following cast plus dereference */
return strcasecmp(* (char * const *) p1, * (char * const *) p2);
}
/**
* Store the list of files and folders in current director to an array.
*/
static int getDir(struct dirList_t* dirList)
{
DIR *dp;
struct dirent *ep;
int fileNum = 0;
int dirNum = 0;
char* wd = getcwd(NULL, 0);
if(wd == NULL)
goto out;
/* Clear strings */
for(int i = 0; i < dirList->dirNum; i++)
free(dirList->directories[i]);
for(int i = 0; i < dirList->fileNum; i++)
free(dirList->files[i]);
free(dirList->currentDir);
if((dirList->currentDir = strdup(wd)) == NULL)
puts("Failure");
if((dp = opendir(wd)) == NULL)
goto out;
while((ep = readdir(dp)) != NULL)
{
if(ep->d_type == DT_DIR)
{
/* Add more space for another pointer to a dirent struct */
dirList->directories = realloc(dirList->directories, (dirNum + 1) * sizeof(char*));
if((dirList->directories[dirNum] = strdup(ep->d_name)) == NULL)
puts("Failure");
dirNum++;
continue;
}
/* Add more space for another pointer to a dirent struct */
dirList->files = realloc(dirList->files, (fileNum + 1) * sizeof(char*));
if((dirList->files[fileNum] = strdup(ep->d_name)) == NULL)
puts("Failure");
fileNum++;
}
qsort(&dirList->files[0], fileNum, sizeof(char *), cmpstringp);
qsort(&dirList->directories[0], dirNum, sizeof(char *), cmpstringp);
dirList->dirNum = dirNum;
dirList->fileNum = fileNum;
if(closedir(dp) != 0)
goto out;
out:
free(wd);
return fileNum + dirNum;
}
/** /**
* List current directory. * List current directory.
* *
@@ -124,30 +199,22 @@ static int changeFile(const char* ep_file, struct playbackInfo_t* playbackInfo)
* \param select File to show as selected. Must be > 0. * \param select File to show as selected. Must be > 0.
* \return Number of entries listed or negative on error. * \return Number of entries listed or negative on error.
*/ */
static int listDir(int from, int max, int select) static int listDir(int from, int max, int select, struct dirList_t dirList)
{ {
DIR *dp;
struct dirent *ep;
int fileNum = 0; int fileNum = 0;
int listed = 0; int listed = 0;
char* wd = getcwd(NULL, 0);
if(wd == NULL) printf("\033[0;0H");
goto err; printf("Dir: %.33s\n", dirList.currentDir);
consoleClear();
printf("Dir: %.33s\n", wd);
if((dp = opendir(wd)) == NULL)
goto err;
if(from == 0) if(from == 0)
{ {
printf("%c../\n", select == 0 ? '>' : ' '); printf("\33[2K%c../\n", select == 0 ? '>' : ' ');
listed++; listed++;
max--;
} }
while((ep = readdir(dp)) != NULL) while(dirList.fileNum + dirList.dirNum > fileNum)
{ {
fileNum++; fileNum++;
@@ -156,26 +223,28 @@ static int listDir(int from, int max, int select)
listed++; listed++;
printf("%c%s%.37s%s\n", if(dirList.dirNum >= fileNum)
select == fileNum ? '>' : ' ', {
ep->d_type == DT_DIR ? "\x1b[34;1m" : "", printf("\33[2K%c\x1b[34;1m%.37s/\x1b[0m\n",
ep->d_name, select == fileNum ? '>' : ' ',
ep->d_type == DT_DIR ? "/\x1b[0m" : ""); dirList.directories[fileNum - 1]);
}
/* fileNum must be referring to a file instead of a directory. */
if(dirList.dirNum < fileNum)
{
printf("\33[2K%c%.37s\n",
select == fileNum ? '>' : ' ',
dirList.files[fileNum - dirList.dirNum - 1]);
}
if(fileNum == max + from) if(fileNum == max + from)
break; break;
} }
if(closedir(dp) != 0)
goto err;
out:
free(wd);
return listed; return listed;
err:
listed = -1;
goto out;
} }
/** /**
@@ -218,7 +287,8 @@ int main(int argc, char **argv)
struct watchdogInfo watchdogInfoIn; struct watchdogInfo watchdogInfoIn;
struct errInfo_t errInfo; struct errInfo_t errInfo;
struct playbackInfo_t playbackInfo; struct playbackInfo_t playbackInfo;
volatile int error = 0; volatile int error = 0;
struct dirList_t dirList = {NULL, 0, NULL, 0, NULL};
gfxInitDefault(); gfxInitDefault();
sdmcInit(); sdmcInit();
@@ -241,7 +311,15 @@ int main(int argc, char **argv)
chdir(DEFAULT_DIR); chdir(DEFAULT_DIR);
chdir("MUSIC"); chdir("MUSIC");
if(listDir(from, MAX_LIST, 0) < 0)
/* TODO: Not actually possible to get less than 0 */
if(getDir(&dirList) < 0)
{
puts("Unable to obtain directory information");
goto err;
}
if(listDir(from, MAX_LIST, 0, dirList) < 0)
{ {
err_print("Unable to list directory."); err_print("Unable to list directory.");
goto err; goto err;
@@ -329,7 +407,7 @@ int main(int argc, char **argv)
if(fileMax - fileNum > 26 && from != 0) if(fileMax - fileNum > 26 && from != 0)
from--; from--;
if(listDir(from, MAX_LIST, fileNum) < 0) if(listDir(from, MAX_LIST, fileNum, dirList) < 0)
err_print("Unable to list directory."); err_print("Unable to list directory.");
} }
@@ -343,7 +421,7 @@ int main(int argc, char **argv)
from < fileMax - MAX_LIST) from < fileMax - MAX_LIST)
from++; from++;
if(listDir(from, MAX_LIST, fileNum) < 0) if(listDir(from, MAX_LIST, fileNum, dirList) < 0)
err_print("Unable to list directory."); err_print("Unable to list directory.");
} }
@@ -359,6 +437,7 @@ int main(int argc, char **argv)
fileNum -= skip; fileNum -= skip;
/* 26 is the maximum number of entries that can be printed */ /* 26 is the maximum number of entries that can be printed */
/* TODO: Not using MAX_LIST here? */
if(fileMax - fileNum > 26 && from != 0) if(fileMax - fileNum > 26 && from != 0)
{ {
from -= skip; from -= skip;
@@ -366,7 +445,7 @@ int main(int argc, char **argv)
from = 0; from = 0;
} }
if(listDir(from, MAX_LIST, fileNum) < 0) if(listDir(from, MAX_LIST, fileNum, dirList) < 0)
err_print("Unable to list directory."); err_print("Unable to list directory.");
} }
@@ -389,7 +468,7 @@ int main(int argc, char **argv)
from = fileMax - MAX_LIST; from = fileMax - MAX_LIST;
} }
if(listDir(from, MAX_LIST, fileNum) < 0) if(listDir(from, MAX_LIST, fileNum, dirList) < 0)
err_print("Unable to list directory."); err_print("Unable to list directory.");
} }
@@ -401,12 +480,13 @@ int main(int argc, char **argv)
((kDown & KEY_A) && (from == 0 && fileNum == 0))) ((kDown & KEY_A) && (from == 0 && fileNum == 0)))
{ {
chdir(".."); chdir("..");
consoleClear();
fileMax = getDir(&dirList);
fileNum = 0; fileNum = 0;
from = 0; from = 0;
fileMax = getNumberFiles();
if(listDir(from, MAX_LIST, fileNum) < 0) if(listDir(from, MAX_LIST, fileNum, dirList) < 0)
err_print("Unable to list directory."); err_print("Unable to list directory.");
continue; continue;
@@ -414,54 +494,27 @@ int main(int argc, char **argv)
if(kDown & KEY_A) if(kDown & KEY_A)
{ {
int audioFileNum = 0; if(dirList.dirNum >= fileNum)
DIR *dp;
struct dirent *ep;
dp = opendir(".");
if(dp != NULL)
{ {
while((ep = readdir(dp)) != NULL) chdir(dirList.directories[fileNum - 1]);
{ consoleClear();
if(audioFileNum == fileNum - 1) fileMax = getDir(&dirList);
break; fileNum = 0;
from = 0;
audioFileNum++; if(listDir(from, MAX_LIST, fileNum, dirList) < 0)
} err_print("Unable to list directory.");
continue;
if(ep->d_type == DT_DIR) }
{
/* file not allocated yet, so no need to clear it */ if(dirList.dirNum < fileNum)
if(chdir(ep->d_name) != 0) {
err_print("chdir"); consoleSelect(&topScreen);
changeFile(dirList.files[fileNum - dirList.dirNum - 1], &playbackInfo);
fileNum = 0; continue;
from = 0;
fileMax = getNumberFiles();
if(listDir(from, MAX_LIST, fileNum) < 0)
err_print("Unable to list directory.");
closedir(dp);
continue;
}
consoleSelect(&topScreen);
changeFile(ep->d_name, &playbackInfo);
consoleSelect(&bottomScreen);
if(closedir(dp) != 0)
err_print("Closing directory failed.");
} }
else
err_print("Unable to open directory.");
} }
} }
#ifdef DEBUG
consoleSelect(&topScreen);
printf("\rNum: %d, Max: %d, from: %d ", fileNum, fileMax, from);
consoleSelect(&bottomScreen);
#endif
out: out:
puts("Exiting..."); puts("Exiting...");

View File

@@ -7,6 +7,8 @@
* LICENSE file. * LICENSE file.
*/ */
#include <3ds.h>
#ifndef ctrmus_main_h #ifndef ctrmus_main_h
#define ctrmus_main_h #define ctrmus_main_h
@@ -14,7 +16,7 @@
#define DEFAULT_DIR "sdmc:/" #define DEFAULT_DIR "sdmc:/"
/* Maximum number of lines that can be displayed */ /* Maximum number of lines that can be displayed */
#define MAX_LIST 27 #define MAX_LIST 28
struct watchdogInfo struct watchdogInfo
{ {
@@ -22,6 +24,17 @@ struct watchdogInfo
struct errInfo_t* errInfo; struct errInfo_t* errInfo;
}; };
struct dirList_t
{
char** files;
int fileNum;
char** directories;
int dirNum;
char* currentDir;
};
/** /**
* Allows the playback thread to return any error messages that it may * Allows the playback thread to return any error messages that it may
* encounter. * encounter.