mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
[RecursiveBrowser] Make implementation not recursive.
Do stat when DT_UNKNOWN is given back when reading directory. Issue: #1954
This commit is contained in:
parent
5b9939b287
commit
9580c4a191
1 changed files with 127 additions and 73 deletions
|
@ -178,8 +178,13 @@ static void recursive_browser_mode_init_current_dir(Mode *sw) {
|
|||
}
|
||||
|
||||
static void scan_dir(FileBrowserModePrivateData *pd, GFile *path) {
|
||||
char *cdir = g_file_get_path(path);
|
||||
GQueue *dirs_to_scan = g_queue_new();
|
||||
g_queue_push_tail(dirs_to_scan, g_object_ref(path));
|
||||
GFile *dir_to_scan = NULL;
|
||||
while ( (dir_to_scan = g_queue_pop_head(dirs_to_scan)) != NULL) {
|
||||
char *cdir = g_file_get_path(dir_to_scan);
|
||||
DIR *dir = opendir(cdir);
|
||||
g_object_unref(dir_to_scan);
|
||||
if (dir) {
|
||||
struct dirent *rd = NULL;
|
||||
while (pd->end_thread == FALSE && (rd = readdir(dir)) != NULL) {
|
||||
|
@ -197,7 +202,6 @@ static void scan_dir(FileBrowserModePrivateData *pd, GFile *path) {
|
|||
case DT_BLK:
|
||||
case DT_CHR:
|
||||
case DT_FIFO:
|
||||
case DT_UNKNOWN:
|
||||
case DT_SOCK:
|
||||
default:
|
||||
break;
|
||||
|
@ -209,6 +213,9 @@ static void scan_dir(FileBrowserModePrivateData *pd, GFile *path) {
|
|||
if (f->name == NULL) {
|
||||
f->name = rofi_force_utf8(rd->d_name, -1);
|
||||
}
|
||||
if (f->name == NULL) {
|
||||
f->name = g_strdup("n/a");
|
||||
}
|
||||
f->type = (rd->d_type == DT_DIR) ? DIRECTORY : RFILE;
|
||||
f->icon_fetch_uid = 0;
|
||||
f->icon_fetch_size = 0;
|
||||
|
@ -223,11 +230,11 @@ static void scan_dir(FileBrowserModePrivateData *pd, GFile *path) {
|
|||
case DT_DIR: {
|
||||
char *d = g_build_filename(cdir, rd->d_name, NULL);
|
||||
GFile *dirp = g_file_new_for_path(d);
|
||||
scan_dir(pd, dirp);
|
||||
g_object_unref(dirp);
|
||||
g_queue_push_tail(dirs_to_scan, dirp);
|
||||
g_free(d);
|
||||
break;
|
||||
}
|
||||
case DT_UNKNOWN:
|
||||
case DT_LNK: {
|
||||
FBFile *f = g_malloc0(sizeof(FBFile));
|
||||
// Rofi expects utf-8, so lets convert the filename.
|
||||
|
@ -236,23 +243,69 @@ static void scan_dir(FileBrowserModePrivateData *pd, GFile *path) {
|
|||
if (f->name == NULL) {
|
||||
f->name = rofi_force_utf8(rd->d_name, -1);
|
||||
}
|
||||
if (f->name == NULL) {
|
||||
f->name = g_strdup("n/a");
|
||||
}
|
||||
f->icon_fetch_uid = 0;
|
||||
f->icon_fetch_size = 0;
|
||||
f->link = TRUE;
|
||||
// Default to file.
|
||||
f->type = RFILE;
|
||||
if (rd->d_type == DT_LNK) {
|
||||
f->link = TRUE;
|
||||
} else {
|
||||
f->link = FALSE;
|
||||
}
|
||||
{
|
||||
// If we have link, use a stat to fine out what it is, if we fail, we
|
||||
// mark it as file.
|
||||
// TODO have a 'broken link' mode?
|
||||
// Convert full path to right encoding.
|
||||
// DD: Path should be in file encoding, not utf-8
|
||||
// char *file =
|
||||
// g_filename_from_utf8(pd->array[pd->array_length].path,
|
||||
// -1, NULL, NULL, NULL);
|
||||
// TODO: How to handle loops in links.
|
||||
if (f->path) {
|
||||
GStatBuf statbuf;
|
||||
if (g_stat(f->path, &statbuf) == 0) {
|
||||
if (S_ISDIR(statbuf.st_mode)) {
|
||||
char *new_full_path = g_build_filename(cdir, rd->d_name, NULL);
|
||||
g_free(f->path);
|
||||
g_free(f->name);
|
||||
g_free(f);
|
||||
f = NULL;
|
||||
GFile *dirp = g_file_new_for_path(new_full_path);
|
||||
g_queue_push_tail(dirs_to_scan, dirp);
|
||||
g_free(new_full_path);
|
||||
break;
|
||||
} else if (S_ISREG(statbuf.st_mode)) {
|
||||
f->type = RFILE;
|
||||
}
|
||||
|
||||
} else {
|
||||
g_warning("Failed to stat file: %s, %s", f->path,
|
||||
strerror(errno));
|
||||
}
|
||||
|
||||
// g_free(file);
|
||||
}
|
||||
}
|
||||
if (f != NULL) {
|
||||
g_async_queue_push(pd->async_queue, f);
|
||||
if (g_async_queue_length(pd->async_queue) > 10000) {
|
||||
write(pd->pipefd2[1], "r", 1);
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
closedir(dir);
|
||||
}
|
||||
|
||||
g_free(cdir);
|
||||
}
|
||||
|
||||
g_queue_free(dirs_to_scan);
|
||||
}
|
||||
static gpointer recursive_browser_input_thread(gpointer userdata) {
|
||||
FileBrowserModePrivateData *pd = (FileBrowserModePrivateData *)userdata;
|
||||
|
@ -335,7 +388,8 @@ static unsigned int recursive_browser_mode_get_num_entries(const Mode *sw) {
|
|||
return pd->array_length;
|
||||
}
|
||||
|
||||
static ModeMode recursive_browser_mode_result(Mode *sw, int mretv, G_GNUC_UNUSED char **input,
|
||||
static ModeMode recursive_browser_mode_result(Mode *sw, int mretv,
|
||||
G_GNUC_UNUSED char **input,
|
||||
unsigned int selected_line) {
|
||||
ModeMode retv = MODE_EXIT;
|
||||
FileBrowserModePrivateData *pd =
|
||||
|
|
Loading…
Reference in a new issue