diff --git a/bb.c b/bb.c index 902d9ce..93fe37e 100644 --- a/bb.c +++ b/bb.c @@ -15,19 +15,14 @@ static int termwidth, termheight; static char *cmdfilename = NULL; /* - * Use bb to browse a path. + * Use bb to browse the filesystem. */ -void bb_browse(bb_t *bb, const char *path) +void bb_browse(bb_t *bb) { static long cmdpos = 0; int lastwidth = termwidth, lastheight = termheight; int check_cmds = 1; - - cd_to(bb, path); - bb->scroll = 0; - bb->cursor = 0; bb->dirty = 0; - bb->should_quit = 0; goto force_check_cmds; @@ -132,40 +127,6 @@ void bb_browse(bb_t *bb, const char *path) } } -int cd_to(bb_t *bb, const char *path) -{ - char pbuf[PATH_MAX], prev[PATH_MAX] = {0}; - strcpy(prev, bb->path); - if (strcmp(path, "") == 0) { - strcpy(pbuf, path); - } else if (strcmp(path, "..") == 0 && strcmp(bb->path, "") == 0) { - if (!bb->prev_path[0]) return -1; - strcpy(pbuf, bb->prev_path); - if (chdir(pbuf)) return -1; - } else { - normalize_path(bb->path, path, pbuf, 1); - if (pbuf[strlen(pbuf)-1] != '/') - strcat(pbuf, "/"); - if (chdir(pbuf)) return -1; - } - - if (strcmp(bb->path, "") != 0) { - strcpy(bb->prev_path, prev); - setenv("BBPREVPATH", bb->prev_path, 1); - } - - strcpy(bb->path, pbuf); - populate_files(bb, 0); - if (prev[0]) { - entry_t *p = load_entry(bb, prev, 0); - if (p) { - if (IS_VIEWED(p)) set_cursor(bb, p->index); - else try_free_entry(p); - } - } - return 0; -} - /* * Close safely in a way that doesn't gunk up the terminal. */ @@ -436,7 +397,7 @@ void normalize_path(const char *root, const char *path, char *normalized, int cl normalized[0] = '\0'; } else { strcpy(normalized, root); - if (root[strlen(root)-1] != '/') err("No trailing slash on root"); + if (root[strlen(root)-1] != '/') strcat(normalized, "/"); } strcat(normalized, path); @@ -465,9 +426,37 @@ void normalize_path(const char *root, const char *path, char *normalized, int cl * Remove all the files currently stored in bb->files and if `bb->path` is * non-NULL, update `bb` with a listing of the files in `path` */ -void populate_files(bb_t *bb, int samedir) +int populate_files(bb_t *bb, const char *path) { + int samedir = path && strcmp(bb->path, path) == 0; + int old_scroll = bb->scroll; + char old_selected[PATH_MAX] = ""; + if (samedir && bb->nfiles > 0) strcpy(old_selected, bb->files[bb->cursor]->fullname); + + char pbuf[PATH_MAX], prev[PATH_MAX] = {0}; + strcpy(prev, bb->path); + if (path == NULL) { + pbuf[0] = '\0'; + } else if (strcmp(path, "") == 0) { + strcpy(pbuf, path); + } else if (strcmp(path, "..") == 0 && strcmp(bb->path, "") == 0) { + if (!bb->prev_path[0]) return -1; + strcpy(pbuf, bb->prev_path); + if (chdir(pbuf)) return -1; + } else { + normalize_path(bb->path, path, pbuf, 1); + if (pbuf[strlen(pbuf)-1] != '/') + strcat(pbuf, "/"); + if (chdir(pbuf)) return -1; + } + + if (strcmp(bb->path, "") != 0) { + strcpy(bb->prev_path, prev); + setenv("BBPREVPATH", bb->prev_path, 1); + } + bb->dirty = 1; + strcpy(bb->path, pbuf); // Clear old files (if any) if (bb->files) { @@ -479,14 +468,12 @@ void populate_files(bb_t *bb, int samedir) free(bb->files); bb->files = NULL; } - - int old_scroll = bb->scroll, old_cursor = bb->cursor; bb->nfiles = 0; bb->cursor = 0; bb->scroll = 0; if (!bb->path[0]) - return; + return 0; size_t space = 0; if (strcmp(bb->path, "") == 0) { @@ -528,9 +515,19 @@ void populate_files(bb_t *bb, int samedir) sort_files(bb); if (samedir) { - set_cursor(bb, old_cursor); set_scroll(bb, old_scroll); + if (old_selected[0]) { + entry_t *e = load_entry(bb, old_selected, 0); + if (e) set_cursor(bb, e->index); + } + } else { + entry_t *p = load_entry(bb, prev, 0); + if (p) { + if (IS_VIEWED(p)) set_cursor(bb, p->index); + else try_free_entry(p); + } } + return 0; } /* @@ -579,10 +576,10 @@ void run_bbcmd(bb_t *bb, const char *cmd) #define set_bool(target) do { if (!value) { target = !target; } else { target = value[0] == '1'; } } while (0) if (matches_cmd(cmd, "..")) { // +.. set_bool(bb->show_dotdot); - populate_files(bb, 1); + populate_files(bb, bb->path); } else if (matches_cmd(cmd, ".")) { // +. set_bool(bb->show_dot); - populate_files(bb, 1); + populate_files(bb, bb->path); } else if (matches_cmd(cmd, "bind:")) { // +bind::