aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2017-06-30 23:33:52 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2017-06-30 23:33:52 +0200
commit8c658475b44eeb1a4e4867d203c73563eb029e8f (patch)
tree5d7a9c09750cf42f464e10ccce92c329657f73f6
parente38f0234c9d9ae889fa786539136b973ba80d98e (diff)
downloadsdn-8c658475b44eeb1a4e4867d203c73563eb029e8f.tar.gz
sdn-8c658475b44eeb1a4e4867d203c73563eb029e8f.tar.xz
sdn-8c658475b44eeb1a4e4867d203c73563eb029e8f.zip
Factor out choose()
-rw-r--r--sdn.cpp49
1 files changed, 28 insertions, 21 deletions
diff --git a/sdn.cpp b/sdn.cpp
index 937fb36..c9cf895 100644
--- a/sdn.cpp
+++ b/sdn.cpp
@@ -436,6 +436,31 @@ fun handle_editor (wint_t c, bool is_char) {
beep ();
}
+fun choose (const entry &entry) -> bool {
+ bool is_dir = S_ISDIR (entry.info.st_mode) != 0;
+ // Dive into directories and accessible symlinks to them
+ if (S_ISLNK (entry.info.st_mode)) {
+ char buf[PATH_MAX];
+ struct stat sb = {};
+ auto len = readlink (entry.filename.c_str (), buf, sizeof buf);
+ is_dir = len > 0 && size_t (len) < sizeof buf
+ && !stat (entry.filename.c_str (), &sb)
+ && S_ISDIR (sb.st_mode) != 0;
+ }
+ if (!is_dir) {
+ g.chosen = entry.filename;
+ return false;
+ }
+ if (chdir (entry.filename.c_str ())) {
+ beep ();
+ } else {
+ // TODO: remember cursor going down, then restore going up
+ g.cursor = 0;
+ reload ();
+ }
+ return true;
+}
+
fun handle (wint_t c, bool is_char) -> bool {
// If an editor is active, let it handle the key instead and eat it
if (g.editor) {
@@ -462,27 +487,9 @@ fun handle (wint_t c, bool is_char) -> bool {
return false;
case L'\r':
case KEY_ENTER:
- {
- bool is_dir = S_ISDIR (current.info.st_mode) != 0;
- // Dive into directories and accessible symlinks to them
- if (S_ISLNK (current.info.st_mode)) {
- char buf[PATH_MAX];
- struct stat sb = {};
- auto len = readlink (current.filename.c_str (), buf, sizeof buf);
- is_dir = len > 0 && size_t (len) < sizeof buf
- && !stat (current.filename.c_str (), &sb)
- && S_ISDIR (sb.st_mode) != 0;
- }
- if (!is_dir) {
- g.chosen = current.filename;
- return false;
- }
- if (!chdir (current.filename.c_str ())) {
- g.cursor = 0;
- reload ();
- }
- break;
- }
+ if (choose (current))
+ break;
+ return false;
// M-o ought to be the same shortcut the navigator is launched with
case ALT | L'o':