1 #define _XOPEN_SOURCE 700
2 #define _XOPEN_SOURCE_EXTENDED
3 #define _FILE_OFFSET_BITS 64
11 #include <sys/types.h> /* pid_t, ... */
13 #include <limits.h> /* PATH_MAX */
14 #include <locale.h> /* setlocale(), LC_ALL */
15 #include <unistd.h> /* chdir(), getcwd(), read(), close(), ... */
16 #include <dirent.h> /* DIR, struct dirent, opendir(), ... */
19 #include <fcntl.h> /* open() */
20 #include <sys/wait.h> /* waitpid() */
21 #include <signal.h> /* struct sigaction, sigaction() */
28 /* This signal is not defined by POSIX, but should be
29 present on all systems that have resizable terminals. */
35 #define BUFLEN PATH_MAX
36 static char BUF1
[BUFLEN
];
37 static char BUF2
[BUFLEN
];
38 static char INPUT
[BUFLEN
];
39 static char CLIPBOARD
[BUFLEN
];
40 static wchar_t WBUF
[BUFLEN
];
42 /* Paths to external programs. */
43 static char *user_shell
;
44 static char *user_pager
;
45 static char *user_editor
;
46 static char *user_open
;
48 /* Listing view parameters. */
49 #define HEIGHT (LINES-4)
50 #define STATUSPOS (COLS-16)
52 /* Listing view flags. */
53 #define SHOW_FILES 0x01u
54 #define SHOW_DIRS 0x02u
55 #define SHOW_HIDDEN 0x04u
57 /* Marks parameters. */
59 #define BULK_THRESH 256
61 /* Information associated to each entry in listing. */
70 /* Dynamic array of marked entries. */
71 typedef struct Marks
{
72 char dirpath
[PATH_MAX
];
78 /* Line editing state. */
80 wchar_t buffer
[BUFLEN
+1];
84 /* Each tab only stores the following information. */
107 volatile sig_atomic_t pending_usr1
;
108 volatile sig_atomic_t pending_winch
;
113 /* Macros for accessing global state. */
114 #define ENAME(I) rover.rows[I].name
115 #define ESIZE(I) rover.rows[I].size
116 #define EMODE(I) rover.rows[I].mode
117 #define ISLINK(I) rover.rows[I].islink
118 #define MARKED(I) rover.rows[I].marked
119 #define SCROLL rover.tabs[rover.tab].scroll
120 #define ESEL rover.tabs[rover.tab].esel
121 #define FLAGS rover.tabs[rover.tab].flags
122 #define CWD rover.tabs[rover.tab].cwd
125 #define MIN(A, B) ((A) < (B) ? (A) : (B))
126 #define MAX(A, B) ((A) > (B) ? (A) : (B))
127 #define ISDIR(E) (strchr((E), '/') != NULL)
129 /* Line Editing Macros. */
130 #define EDIT_FULL(E) ((E).left == (E).right)
131 #define EDIT_CAN_LEFT(E) ((E).left)
132 #define EDIT_CAN_RIGHT(E) ((E).right < BUFLEN-1)
133 #define EDIT_LEFT(E) (E).buffer[(E).right--] = (E).buffer[--(E).left]
134 #define EDIT_RIGHT(E) (E).buffer[(E).left++] = (E).buffer[++(E).right]
135 #define EDIT_INSERT(E, C) (E).buffer[(E).left++] = (C)
136 #define EDIT_BACKSPACE(E) (E).left--
137 #define EDIT_DELETE(E) (E).right++
138 #define EDIT_CLEAR(E) do { (E).left = 0; (E).right = BUFLEN-1; } while(0)
140 typedef enum EditStat
{CONTINUE
, CONFIRM
, CANCEL
} EditStat
;
141 typedef enum Color
{DEFAULT
, RED
, GREEN
, YELLOW
, BLUE
, CYAN
, MAGENTA
, WHITE
, BLACK
} Color
;
142 typedef int (*PROCESS
)(const char *path
);
145 init_marks(Marks
*marks
)
147 strcpy(marks
->dirpath
, "");
148 marks
->bulk
= BULK_INIT
;
150 marks
->entries
= calloc(marks
->bulk
, sizeof *marks
->entries
);
153 /* Unmark all entries. */
155 mark_none(Marks
*marks
)
159 strcpy(marks
->dirpath
, "");
160 for (i
= 0; i
< marks
->bulk
&& marks
->nentries
; i
++)
161 if (marks
->entries
[i
]) {
162 free(marks
->entries
[i
]);
163 marks
->entries
[i
] = NULL
;
166 if (marks
->bulk
> BULK_THRESH
) {
167 /* Reset bulk to free some memory. */
168 free(marks
->entries
);
169 marks
->bulk
= BULK_INIT
;
170 marks
->entries
= calloc(marks
->bulk
, sizeof *marks
->entries
);
175 add_mark(Marks
*marks
, char *dirpath
, char *entry
)
179 if (!strcmp(marks
->dirpath
, dirpath
)) {
180 /* Append mark to directory. */
181 if (marks
->nentries
== marks
->bulk
) {
182 /* Expand bulk to accomodate new entry. */
183 int extra
= marks
->bulk
/ 2;
184 marks
->bulk
+= extra
; /* bulk *= 1.5; */
185 marks
->entries
= realloc(marks
->entries
,
186 marks
->bulk
* sizeof *marks
->entries
);
187 memset(&marks
->entries
[marks
->nentries
], 0,
188 extra
* sizeof *marks
->entries
);
191 /* Search for empty slot (there must be one). */
192 for (i
= 0; i
< marks
->bulk
; i
++)
193 if (!marks
->entries
[i
])
197 /* Directory changed. Discard old marks. */
199 strcpy(marks
->dirpath
, dirpath
);
202 marks
->entries
[i
] = malloc(strlen(entry
) + 1);
203 strcpy(marks
->entries
[i
], entry
);
208 del_mark(Marks
*marks
, char *entry
)
212 if (marks
->nentries
> 1) {
213 for (i
= 0; i
< marks
->bulk
; i
++)
214 if (marks
->entries
[i
] && !strcmp(marks
->entries
[i
], entry
))
216 free(marks
->entries
[i
]);
217 marks
->entries
[i
] = NULL
;
224 free_marks(Marks
*marks
)
228 for (i
= 0; i
< marks
->bulk
&& marks
->nentries
; i
++)
229 if (marks
->entries
[i
]) {
230 free(marks
->entries
[i
]);
233 free(marks
->entries
);
239 rover
.pending_usr1
= 1;
243 handle_winch(int sig
)
245 rover
.pending_winch
= 1;
253 memset(&sa
, 0, sizeof (struct sigaction
));
254 sa
.sa_handler
= handle_usr1
;
255 sigaction(SIGUSR1
, &sa
, NULL
);
256 sa
.sa_handler
= handle_winch
;
257 sigaction(SIGWINCH
, &sa
, NULL
);
265 memset(&sa
, 0, sizeof (struct sigaction
));
266 sa
.sa_handler
= SIG_DFL
;
267 sigaction(SIGUSR1
, &sa
, NULL
);
268 sigaction(SIGWINCH
, &sa
, NULL
);
271 static void reload();
272 static void update_view();
274 /* Handle any signals received since last call. */
278 if (rover
.pending_usr1
) {
279 /* SIGUSR1 received: refresh directory listing. */
281 rover
.pending_usr1
= 0;
283 if (rover
.pending_winch
) {
284 /* SIGWINCH received: resize application accordingly. */
285 delwin(rover
.window
);
289 rover
.window
= subwin(stdscr
, LINES
- 2, COLS
, 1, 0);
290 if (HEIGHT
< rover
.nfiles
&& SCROLL
+ HEIGHT
> rover
.nfiles
)
291 SCROLL
= ESEL
- HEIGHT
;
293 rover
.pending_winch
= 0;
297 /* This function must be used in place of getch().
298 It handles signals while waiting for user input. */
304 while ((ch
= getch()) == ERR
)
309 /* This function must be used in place of get_wch().
310 It handles signals while waiting for user input. */
312 rover_get_wch(wint_t *wch
)
316 while ((ret
= get_wch(wch
)) == (wint_t) ERR
)
321 /* Get user programs from the environment. */
323 #define ROVER_ENV(dst, src) if ((dst = getenv("ROVER_" #src)) == NULL) \
329 ROVER_ENV(user_shell
, SHELL
)
330 ROVER_ENV(user_pager
, PAGER
)
331 ROVER_ENV(user_editor
, EDITOR
)
332 ROVER_ENV(user_open
, OPEN
)
335 /* Do a fork-exec to external program (e.g. $EDITOR). */
342 setenv("RVSEL", rover
.nfiles
? ENAME(ESEL
) : "", 1);
345 /* fork() succeeded. */
348 waitpid(pid
, &status
, 0);
350 kill(getpid(), SIGWINCH
);
351 } else if (pid
== 0) {
353 execvp(args
[0], args
);
358 shell_escaped_cat(char *buf
, char *str
, size_t n
)
360 char *p
= buf
+ strlen(buf
);
362 for (n
--; n
; n
--, str
++) {
383 open_with_env(char *program
, char *path
)
387 strncpy(BUF1
, program
, BUFLEN
- 1);
388 strncat(BUF1
, " ", BUFLEN
- strlen(program
) - 1);
389 shell_escaped_cat(BUF1
, path
, BUFLEN
- strlen(program
) - 2);
390 spawn((char *[]) {RV_SHELL
, "-c", BUF1
, NULL
});
392 spawn((char *[]) {program
, path
, NULL
});
403 setlocale(LC_ALL
, "");
405 cbreak(); /* Get one character at a time. */
406 timeout(100); /* For getch(). */
408 nonl(); /* No NL->CR/NL on output. */
409 intrflush(stdscr
, FALSE
);
410 keypad(stdscr
, TRUE
);
411 curs_set(FALSE
); /* Hide blinking cursor. */
415 #ifdef NCURSES_EXT_FUNCS
416 use_default_colors();
421 init_pair(RED
, COLOR_RED
, bg
);
422 init_pair(GREEN
, COLOR_GREEN
, bg
);
423 init_pair(YELLOW
, COLOR_YELLOW
, bg
);
424 init_pair(BLUE
, COLOR_BLUE
, bg
);
425 init_pair(CYAN
, COLOR_CYAN
, bg
);
426 init_pair(MAGENTA
, COLOR_MAGENTA
, bg
);
427 init_pair(WHITE
, COLOR_WHITE
, bg
);
428 init_pair(BLACK
, COLOR_BLACK
, bg
);
430 atexit((void (*)(void)) endwin
);
434 /* Update the listing view. */
443 mvhline(0, 0, ' ', COLS
);
444 attr_on(A_BOLD
, NULL
);
445 color_set(RVC_TABNUM
, NULL
);
446 mvaddch(0, COLS
- 2, rover
.tab
+ '0');
447 attr_off(A_BOLD
, NULL
);
448 if (rover
.marks
.nentries
) {
449 numsize
= snprintf(BUF1
, BUFLEN
, "%d", rover
.marks
.nentries
);
450 color_set(RVC_MARKS
, NULL
);
451 mvaddstr(0, COLS
- 3 - numsize
, BUF1
);
454 color_set(RVC_CWD
, NULL
);
455 mbstowcs(WBUF
, CWD
, PATH_MAX
);
456 mvaddnwstr(0, 0, WBUF
, COLS
- 4 - numsize
);
457 wcolor_set(rover
.window
, RVC_BORDER
, NULL
);
458 wborder(rover
.window
, 0, 0, 0, 0, 0, 0, 0, 0);
459 ESEL
= MAX(MIN(ESEL
, rover
.nfiles
- 1), 0);
460 /* Selection might not be visible, due to cursor wrapping or window
461 shrinking. In that case, the scroll must be moved to make it visible. */
462 if (rover
.nfiles
> HEIGHT
) {
463 SCROLL
= MAX(MIN(SCROLL
, ESEL
), ESEL
- HEIGHT
+ 1);
464 SCROLL
= MIN(MAX(SCROLL
, 0), rover
.nfiles
- HEIGHT
);
467 marking
= !strcmp(CWD
, rover
.marks
.dirpath
);
468 for (i
= 0, j
= SCROLL
; i
< HEIGHT
&& j
< rover
.nfiles
; i
++, j
++) {
469 ishidden
= ENAME(j
)[0] == '.';
471 wattr_on(rover
.window
, A_REVERSE
, NULL
);
473 wcolor_set(rover
.window
, RVC_LINK
, NULL
);
475 wcolor_set(rover
.window
, RVC_HIDDEN
, NULL
);
476 else if (S_ISREG(EMODE(j
))) {
477 if (EMODE(j
) & (S_IXUSR
| S_IXGRP
| S_IXOTH
))
478 wcolor_set(rover
.window
, RVC_EXEC
, NULL
);
480 wcolor_set(rover
.window
, RVC_REG
, NULL
);
481 } else if (S_ISDIR(EMODE(j
)))
482 wcolor_set(rover
.window
, RVC_DIR
, NULL
);
483 else if (S_ISCHR(EMODE(j
)))
484 wcolor_set(rover
.window
, RVC_CHR
, NULL
);
485 else if (S_ISBLK(EMODE(j
)))
486 wcolor_set(rover
.window
, RVC_BLK
, NULL
);
487 else if (S_ISFIFO(EMODE(j
)))
488 wcolor_set(rover
.window
, RVC_FIFO
, NULL
);
489 else if (S_ISSOCK(EMODE(j
)))
490 wcolor_set(rover
.window
, RVC_SOCK
, NULL
);
491 if (S_ISDIR(EMODE(j
))) {
492 mbstowcs(WBUF
, ENAME(j
), PATH_MAX
);
496 char *suffix
, *suffixes
= "BKMGTPEZY";
497 off_t human_size
= ESIZE(j
) * 10;
498 int length
= mbstowcs(NULL
, ENAME(j
), 0);
499 for (suffix
= suffixes
; human_size
>= 10240; suffix
++)
500 human_size
= (human_size
+ 512) / 1024;
502 swprintf(WBUF
, PATH_MAX
, L
"%s%*d %c", ENAME(j
),
503 (int) (COLS
- length
- 6),
504 (int) human_size
/ 10, *suffix
);
506 swprintf(WBUF
, PATH_MAX
, L
"%s%*d.%d %c", ENAME(j
),
507 (int) (COLS
- length
- 8),
508 (int) human_size
/ 10, (int) human_size
% 10, *suffix
);
510 mvwhline(rover
.window
, i
+ 1, 1, ' ', COLS
- 2);
511 mvwaddnwstr(rover
.window
, i
+ 1, 2, WBUF
, COLS
- 4);
512 if (marking
&& MARKED(j
)) {
513 wcolor_set(rover
.window
, RVC_MARKS
, NULL
);
514 mvwaddch(rover
.window
, i
+ 1, 1, RVS_MARK
);
516 mvwaddch(rover
.window
, i
+ 1, 1, ' ');
518 wattr_off(rover
.window
, A_REVERSE
, NULL
);
520 for (; i
< HEIGHT
; i
++)
521 mvwhline(rover
.window
, i
+ 1, 1, ' ', COLS
- 2);
522 if (rover
.nfiles
> HEIGHT
) {
524 center
= (SCROLL
+ HEIGHT
/ 2) * HEIGHT
/ rover
.nfiles
;
525 height
= (HEIGHT
-1) * HEIGHT
/ rover
.nfiles
;
526 if (!height
) height
= 1;
527 wcolor_set(rover
.window
, RVC_SCROLLBAR
, NULL
);
528 mvwvline(rover
.window
, center
-height
/2+1, COLS
-1, RVS_SCROLLBAR
, height
);
530 BUF1
[0] = FLAGS
& SHOW_FILES
? 'F' : ' ';
531 BUF1
[1] = FLAGS
& SHOW_DIRS
? 'D' : ' ';
532 BUF1
[2] = FLAGS
& SHOW_HIDDEN
? 'H' : ' ';
536 snprintf(BUF2
, BUFLEN
, "%d/%d", ESEL
+ 1, rover
.nfiles
);
537 snprintf(BUF1
+3, BUFLEN
-3, "%12s", BUF2
);
538 color_set(RVC_STATUS
, NULL
);
539 mvaddstr(LINES
- 1, STATUSPOS
, BUF1
);
540 wrefresh(rover
.window
);
543 /* Show a message on the status bar. */
545 message(Color color
, char *fmt
, ...)
551 vsnprintf(BUF1
, MIN(BUFLEN
, STATUSPOS
), fmt
, args
);
554 pos
= (STATUSPOS
- len
) / 2;
555 attr_on(A_BOLD
, NULL
);
556 color_set(color
, NULL
);
557 mvaddstr(LINES
- 1, pos
, BUF1
);
558 color_set(DEFAULT
, NULL
);
559 attr_off(A_BOLD
, NULL
);
562 /* Clear message area, leaving only status info. */
566 mvhline(LINES
- 1, 0, ' ', STATUSPOS
);
569 /* Comparison used to sort listing entries. */
571 rowcmp(const void *a
, const void *b
)
573 int isdir1
, isdir2
, cmpdir
;
576 isdir1
= S_ISDIR(r1
->mode
);
577 isdir2
= S_ISDIR(r2
->mode
);
578 cmpdir
= isdir2
- isdir1
;
579 return cmpdir
? cmpdir
: strcoll(r1
->name
, r2
->name
);
582 /* Get all entries in current working directory. */
584 ls(Row
**rowsp
, uint8_t flags
)
592 if(!(dp
= opendir("."))) return -1;
593 n
= -2; /* We don't want the entries "." and "..". */
594 while (readdir(dp
)) n
++;
596 rows
= malloc(n
* sizeof *rows
);
598 while ((ep
= readdir(dp
))) {
599 if (!strcmp(ep
->d_name
, ".") || !strcmp(ep
->d_name
, ".."))
601 if (!(flags
& SHOW_HIDDEN
) && ep
->d_name
[0] == '.')
603 lstat(ep
->d_name
, &statbuf
);
604 rows
[i
].islink
= S_ISLNK(statbuf
.st_mode
);
605 stat(ep
->d_name
, &statbuf
);
606 if (S_ISDIR(statbuf
.st_mode
)) {
607 if (flags
& SHOW_DIRS
) {
608 rows
[i
].name
= malloc(strlen(ep
->d_name
) + 2);
609 strcpy(rows
[i
].name
, ep
->d_name
);
611 strcat(rows
[i
].name
, "/");
612 rows
[i
].mode
= statbuf
.st_mode
;
615 } else if (flags
& SHOW_FILES
) {
616 rows
[i
].name
= malloc(strlen(ep
->d_name
) + 1);
617 strcpy(rows
[i
].name
, ep
->d_name
);
618 rows
[i
].size
= statbuf
.st_size
;
619 rows
[i
].mode
= statbuf
.st_mode
;
623 n
= i
; /* Ignore unused space in array caused by filters. */
624 qsort(rows
, n
, sizeof (*rows
), rowcmp
);
631 free_rows(Row
**rowsp
, int nfiles
)
635 for (i
= 0; i
< nfiles
; i
++)
636 free((*rowsp
)[i
].name
);
641 /* Change working directory to the path in CWD. */
647 message(CYAN
, "Loading \"%s\"...", CWD
);
649 if (reset
) ESEL
= SCROLL
= 0;
652 free_rows(&rover
.rows
, rover
.nfiles
);
653 rover
.nfiles
= ls(&rover
.rows
, FLAGS
);
654 if (!strcmp(CWD
, rover
.marks
.dirpath
)) {
655 for (i
= 0; i
< rover
.nfiles
; i
++) {
656 for (j
= 0; j
< rover
.marks
.bulk
; j
++)
658 rover
.marks
.entries
[j
] &&
659 !strcmp(rover
.marks
.entries
[j
], ENAME(i
))
662 MARKED(i
) = j
< rover
.marks
.bulk
;
665 for (i
= 0; i
< rover
.nfiles
; i
++)
671 /* Select a target entry, if it is present. */
673 try_to_sel(const char *target
)
677 while ((ESEL
+1) < rover
.nfiles
&& S_ISDIR(EMODE(ESEL
)))
679 while ((ESEL
+1) < rover
.nfiles
&& strcoll(ENAME(ESEL
), target
) < 0)
683 /* Reload CWD, but try to keep selection. */
688 strcpy(INPUT
, ENAME(ESEL
));
697 count_dir(const char *path
)
702 char subpath
[PATH_MAX
];
705 if(!(dp
= opendir(path
))) return 0;
707 while ((ep
= readdir(dp
))) {
708 if (!strcmp(ep
->d_name
, ".") || !strcmp(ep
->d_name
, ".."))
710 snprintf(subpath
, PATH_MAX
, "%s%s", path
, ep
->d_name
);
711 lstat(subpath
, &statbuf
);
712 if (S_ISDIR(statbuf
.st_mode
)) {
713 strcat(subpath
, "/");
714 total
+= count_dir(subpath
);
716 total
+= statbuf
.st_size
;
731 chdir(rover
.marks
.dirpath
);
732 for (i
= 0; i
< rover
.marks
.bulk
; i
++) {
733 entry
= rover
.marks
.entries
[i
];
736 total
+= count_dir(entry
);
738 lstat(entry
, &statbuf
);
739 total
+= statbuf
.st_size
;
747 /* Recursively process a source directory using CWD as destination root.
748 For each node (i.e. directory), do the following:
749 1. call pre(destination);
750 2. call proc() on every child leaf (i.e. files);
751 3. recurse into every child node;
753 E.g. to move directory /src/ (and all its contents) inside /dst/:
754 strcpy(CWD, "/dst/");
755 process_dir(adddir, movfile, deldir, "/src/"); */
757 process_dir(PROCESS pre
, PROCESS proc
, PROCESS pos
, const char *path
)
763 char subpath
[PATH_MAX
];
767 char dstpath
[PATH_MAX
];
768 strcpy(dstpath
, CWD
);
769 strcat(dstpath
, path
+ strlen(rover
.marks
.dirpath
));
772 if(!(dp
= opendir(path
))) return -1;
773 while ((ep
= readdir(dp
))) {
774 if (!strcmp(ep
->d_name
, ".") || !strcmp(ep
->d_name
, ".."))
776 snprintf(subpath
, PATH_MAX
, "%s%s", path
, ep
->d_name
);
777 lstat(subpath
, &statbuf
);
778 if (S_ISDIR(statbuf
.st_mode
)) {
779 strcat(subpath
, "/");
780 ret
|= process_dir(pre
, proc
, pos
, subpath
);
782 ret
|= proc(subpath
);
785 if (pos
) ret
|= pos(path
);
789 /* Process all marked entries using CWD as destination root.
790 All marked entries that are directories will be recursively processed.
791 See process_dir() for details on the parameters. */
793 process_marked(PROCESS pre
, PROCESS proc
, PROCESS pos
,
794 const char *msg_doing
, const char *msg_done
)
801 message(CYAN
, "%s...", msg_doing
);
803 rover
.prog
= (Prog
) {0, count_marked(), msg_doing
};
804 for (i
= 0; i
< rover
.marks
.bulk
; i
++) {
805 entry
= rover
.marks
.entries
[i
];
808 snprintf(path
, PATH_MAX
, "%s%s", rover
.marks
.dirpath
, entry
);
810 if (!strncmp(path
, CWD
, strlen(path
)))
813 ret
= process_dir(pre
, proc
, pos
, path
);
817 del_mark(&rover
.marks
, entry
);
822 rover
.prog
.total
= 0;
824 if (!rover
.marks
.nentries
)
825 message(GREEN
, "%s all marked entries.", msg_done
);
827 message(RED
, "Some errors occured while %s.", msg_doing
);
832 update_progress(off_t delta
)
836 if (!rover
.prog
.total
) return;
837 rover
.prog
.partial
+= delta
;
838 percent
= (int) (rover
.prog
.partial
* 100 / rover
.prog
.total
);
839 message(CYAN
, "%s...%d%%", rover
.prog
.msg
, percent
);
843 /* Wrappers for file operations. */
844 static int delfile(const char *path
) {
848 ret
= lstat(path
, &st
);
849 if (ret
< 0) return ret
;
850 update_progress(st
.st_size
);
853 static PROCESS deldir
= rmdir
;
854 static int addfile(const char *path
) {
855 /* Using creat(2) because mknod(2) doesn't seem to be portable. */
858 ret
= creat(path
, 0644);
859 if (ret
< 0) return ret
;
862 static int cpyfile(const char *srcpath
) {
867 char dstpath
[PATH_MAX
];
869 strcpy(dstpath
, CWD
);
870 strcat(dstpath
, srcpath
+ strlen(rover
.marks
.dirpath
));
871 ret
= lstat(srcpath
, &st
);
872 if (ret
< 0) return ret
;
873 if (S_ISLNK(st
.st_mode
)) {
874 ret
= readlink(srcpath
, BUF1
, BUFLEN
-1);
875 if (ret
< 0) return ret
;
877 ret
= symlink(BUF1
, dstpath
);
879 ret
= src
= open(srcpath
, O_RDONLY
);
880 if (ret
< 0) return ret
;
881 ret
= dst
= creat(dstpath
, st
.st_mode
);
882 if (ret
< 0) return ret
;
883 while ((size
= read(src
, buf
, BUFSIZ
)) > 0) {
884 write(dst
, buf
, size
);
885 update_progress(size
);
894 static int adddir(const char *path
) {
898 ret
= stat(CWD
, &st
);
899 if (ret
< 0) return ret
;
900 return mkdir(path
, st
.st_mode
);
902 static int movfile(const char *srcpath
) {
905 char dstpath
[PATH_MAX
];
907 strcpy(dstpath
, CWD
);
908 strcat(dstpath
, srcpath
+ strlen(rover
.marks
.dirpath
));
909 ret
= rename(srcpath
, dstpath
);
911 ret
= lstat(dstpath
, &st
);
912 if (ret
< 0) return ret
;
913 update_progress(st
.st_size
);
914 } else if (errno
== EXDEV
) {
915 ret
= cpyfile(srcpath
);
916 if (ret
< 0) return ret
;
917 ret
= unlink(srcpath
);
923 start_line_edit(const char *init_input
)
926 strncpy(INPUT
, init_input
, BUFLEN
);
927 rover
.edit
.left
= mbstowcs(rover
.edit
.buffer
, init_input
, BUFLEN
);
928 rover
.edit
.right
= BUFLEN
- 1;
929 rover
.edit
.buffer
[BUFLEN
] = L
'\0';
930 rover
.edit_scroll
= 0;
933 /* Read input and change editing state accordingly. */
937 wchar_t eraser
, killer
, wch
;
940 ret
= rover_get_wch((wint_t *) &wch
);
943 if (ret
== KEY_CODE_YES
) {
944 if (wch
== KEY_ENTER
) {
947 } else if (wch
== KEY_LEFT
) {
948 if (EDIT_CAN_LEFT(rover
.edit
)) EDIT_LEFT(rover
.edit
);
949 } else if (wch
== KEY_RIGHT
) {
950 if (EDIT_CAN_RIGHT(rover
.edit
)) EDIT_RIGHT(rover
.edit
);
951 } else if (wch
== KEY_UP
) {
952 while (EDIT_CAN_LEFT(rover
.edit
)) EDIT_LEFT(rover
.edit
);
953 } else if (wch
== KEY_DOWN
) {
954 while (EDIT_CAN_RIGHT(rover
.edit
)) EDIT_RIGHT(rover
.edit
);
955 } else if (wch
== KEY_BACKSPACE
) {
956 if (EDIT_CAN_LEFT(rover
.edit
)) EDIT_BACKSPACE(rover
.edit
);
957 } else if (wch
== KEY_DC
) {
958 if (EDIT_CAN_RIGHT(rover
.edit
)) EDIT_DELETE(rover
.edit
);
961 if (wch
== L
'\r' || wch
== L
'\n') {
964 } else if (wch
== L
'\t') {
967 } else if (wch
== eraser
) {
968 if (EDIT_CAN_LEFT(rover
.edit
)) EDIT_BACKSPACE(rover
.edit
);
969 } else if (wch
== killer
) {
970 EDIT_CLEAR(rover
.edit
);
972 } else if (iswprint(wch
)) {
973 if (!EDIT_FULL(rover
.edit
)) EDIT_INSERT(rover
.edit
, wch
);
976 /* Encode edit contents in INPUT. */
977 rover
.edit
.buffer
[rover
.edit
.left
] = L
'\0';
978 length
= wcstombs(INPUT
, rover
.edit
.buffer
, BUFLEN
);
979 wcstombs(&INPUT
[length
], &rover
.edit
.buffer
[rover
.edit
.right
+1],
984 /* Update line input on the screen. */
986 update_input(const char *prompt
, Color color
)
988 int plen
, ilen
, maxlen
;
990 plen
= strlen(prompt
);
991 ilen
= mbstowcs(NULL
, INPUT
, 0);
992 maxlen
= STATUSPOS
- plen
- 2;
993 if (ilen
- rover
.edit_scroll
< maxlen
)
994 rover
.edit_scroll
= MAX(ilen
- maxlen
, 0);
995 else if (rover
.edit
.left
> rover
.edit_scroll
+ maxlen
- 1)
996 rover
.edit_scroll
= rover
.edit
.left
- maxlen
;
997 else if (rover
.edit
.left
< rover
.edit_scroll
)
998 rover
.edit_scroll
= MAX(rover
.edit
.left
- maxlen
, 0);
999 color_set(RVC_PROMPT
, NULL
);
1000 mvaddstr(LINES
- 1, 0, prompt
);
1001 color_set(color
, NULL
);
1002 mbstowcs(WBUF
, INPUT
, COLS
);
1003 mvaddnwstr(LINES
- 1, plen
, &WBUF
[rover
.edit_scroll
], maxlen
);
1004 mvaddch(LINES
- 1, plen
+ MIN(ilen
- rover
.edit_scroll
, maxlen
+ 1), ' ');
1005 color_set(DEFAULT
, NULL
);
1006 if (rover
.edit_scroll
)
1007 mvaddch(LINES
- 1, plen
- 1, '<');
1008 if (ilen
> rover
.edit_scroll
+ maxlen
)
1009 mvaddch(LINES
- 1, plen
+ maxlen
, '>');
1010 move(LINES
- 1, plen
+ rover
.edit
.left
- rover
.edit_scroll
);
1014 main(int argc
, char *argv
[])
1020 const char *clip_path
;
1023 FILE *save_cwd_file
= NULL
;
1024 FILE *save_marks_file
= NULL
;
1028 if (!strcmp(argv
[1], "-v") || !strcmp(argv
[1], "--version")) {
1029 printf("rover %s\n", RV_VERSION
);
1031 } else if (!strcmp(argv
[1], "-h") || !strcmp(argv
[1], "--help")) {
1033 "Usage: rover [OPTIONS] [DIR [DIR [...]]]\n"
1034 " Browse current directory or the ones specified.\n\n"
1035 " or: rover -h|--help\n"
1036 " Print this help message and exit.\n\n"
1037 " or: rover -v|--version\n"
1038 " Print program version and exit.\n\n"
1039 "See rover(1) for more information.\n"
1040 "Rover homepage: <https://github.com/lecram/rover>.\n"
1043 } else if (!strcmp(argv
[1], "-d") || !strcmp(argv
[1], "--save-cwd")) {
1045 save_cwd_file
= fopen(argv
[2], "w");
1046 argc
-= 2; argv
+= 2;
1048 fprintf(stderr
, "error: missing argument to %s\n", argv
[1]);
1051 } else if (!strcmp(argv
[1], "-m") || !strcmp(argv
[1], "--save-marks")) {
1053 save_marks_file
= fopen(argv
[2], "a");
1054 argc
-= 2; argv
+= 2;
1056 fprintf(stderr
, "error: missing argument to %s\n", argv
[1]);
1061 get_user_programs();
1064 for (i
= 0; i
< 10; i
++) {
1065 rover
.tabs
[i
].esel
= rover
.tabs
[i
].scroll
= 0;
1066 rover
.tabs
[i
].flags
= RV_FLAGS
;
1068 strcpy(rover
.tabs
[0].cwd
, getenv("HOME"));
1069 for (i
= 1; i
< argc
&& i
< 10; i
++) {
1070 if ((d
= opendir(argv
[i
]))) {
1071 realpath(argv
[i
], rover
.tabs
[i
].cwd
);
1074 strcpy(rover
.tabs
[i
].cwd
, rover
.tabs
[0].cwd
);
1076 getcwd(rover
.tabs
[i
].cwd
, PATH_MAX
);
1077 for (i
++; i
< 10; i
++)
1078 strcpy(rover
.tabs
[i
].cwd
, rover
.tabs
[i
-1].cwd
);
1079 for (i
= 0; i
< 10; i
++)
1080 if (rover
.tabs
[i
].cwd
[strlen(rover
.tabs
[i
].cwd
) - 1] != '/')
1081 strcat(rover
.tabs
[i
].cwd
, "/");
1083 rover
.window
= subwin(stdscr
, LINES
- 2, COLS
, 1, 0);
1084 init_marks(&rover
.marks
);
1086 strcpy(CLIPBOARD
, CWD
);
1087 strcat(CLIPBOARD
, ENAME(ESEL
));
1092 if (!strcmp(key
, RVK_QUIT
)) break;
1093 else if (ch
>= '0' && ch
<= '9') {
1094 rover
.tab
= ch
- '0';
1096 } else if (!strcmp(key
, RVK_HELP
)) {
1097 spawn((char *[]) {"man", "rover", NULL
});
1098 } else if (!strcmp(key
, RVK_DOWN
)) {
1099 if (!rover
.nfiles
) continue;
1100 ESEL
= MIN(ESEL
+ 1, rover
.nfiles
- 1);
1102 } else if (!strcmp(key
, RVK_UP
)) {
1103 if (!rover
.nfiles
) continue;
1104 ESEL
= MAX(ESEL
- 1, 0);
1106 } else if (!strcmp(key
, RVK_JUMP_DOWN
)) {
1107 if (!rover
.nfiles
) continue;
1108 ESEL
= MIN(ESEL
+ RV_JUMP
, rover
.nfiles
- 1);
1109 if (rover
.nfiles
> HEIGHT
)
1110 SCROLL
= MIN(SCROLL
+ RV_JUMP
, rover
.nfiles
- HEIGHT
);
1112 } else if (!strcmp(key
, RVK_JUMP_UP
)) {
1113 if (!rover
.nfiles
) continue;
1114 ESEL
= MAX(ESEL
- RV_JUMP
, 0);
1115 SCROLL
= MAX(SCROLL
- RV_JUMP
, 0);
1117 } else if (!strcmp(key
, RVK_JUMP_TOP
)) {
1118 if (!rover
.nfiles
) continue;
1121 } else if (!strcmp(key
, RVK_JUMP_BOTTOM
)) {
1122 if (!rover
.nfiles
) continue;
1123 ESEL
= rover
.nfiles
- 1;
1125 } else if (!strcmp(key
, RVK_CD_DOWN
)) {
1126 if (!rover
.nfiles
|| !S_ISDIR(EMODE(ESEL
))) continue;
1127 if (chdir(ENAME(ESEL
)) == -1) {
1128 message(RED
, "Cannot access \"%s\".", ENAME(ESEL
));
1131 strcat(CWD
, ENAME(ESEL
));
1133 } else if (!strcmp(key
, RVK_CD_UP
)) {
1134 char *dirname
, first
;
1135 if (!strcmp(CWD
, "/")) continue;
1136 CWD
[strlen(CWD
) - 1] = '\0';
1137 dirname
= strrchr(CWD
, '/') + 1;
1142 dirname
[strlen(dirname
)] = '/';
1143 try_to_sel(dirname
);
1145 if (rover
.nfiles
> HEIGHT
)
1146 SCROLL
= ESEL
- HEIGHT
/ 2;
1148 } else if (!strcmp(key
, RVK_HOME
)) {
1149 strcpy(CWD
, getenv("HOME"));
1150 if (CWD
[strlen(CWD
) - 1] != '/')
1153 } else if (!strcmp(key
, RVK_TARGET
)) {
1155 int is_dir
= S_ISDIR(EMODE(ESEL
));
1156 ssize_t len
= readlink(ENAME(ESEL
), BUF1
, BUFLEN
-1);
1157 if (len
== -1) continue;
1159 if (access(BUF1
, F_OK
) == -1) {
1163 msg
= "Cannot access \"%s\".";
1166 msg
= "\"%s\" does not exist.";
1169 msg
= "Cannot navigate to \"%s\".";
1171 strcpy(BUF2
, BUF1
); /* message() uses BUF1. */
1172 message(RED
, msg
, BUF2
);
1175 realpath(BUF1
, CWD
);
1177 if (CWD
[len
- 1] == '/')
1178 CWD
[len
- 1] = '\0';
1179 bname
= strrchr(CWD
, '/') + 1;
1189 } else if (!strcmp(key
, RVK_COPY_PATH
)) {
1190 clip_path
= getenv("CLIP");
1191 if (!clip_path
) goto copy_path_fail
;
1192 clip_file
= fopen(clip_path
, "w");
1193 if (!clip_file
) goto copy_path_fail
;
1194 fprintf(clip_file
, "%s%s\n", CWD
, ENAME(ESEL
));
1196 goto copy_path_done
;
1198 strcpy(CLIPBOARD
, CWD
);
1199 strcat(CLIPBOARD
, ENAME(ESEL
));
1202 } else if (!strcmp(key
, RVK_PASTE_PATH
)) {
1203 clip_path
= getenv("CLIP");
1204 if (!clip_path
) goto paste_path_fail
;
1205 clip_file
= fopen(clip_path
, "r");
1206 if (!clip_file
) goto paste_path_fail
;
1207 fscanf(clip_file
, "%s\n", CLIPBOARD
);
1210 strcpy(BUF1
, CLIPBOARD
);
1211 strcpy(CWD
, dirname(BUF1
));
1212 if (strcmp(CWD
, "/"))
1215 strcpy(BUF1
, CLIPBOARD
);
1216 try_to_sel(strstr(CLIPBOARD
, basename(BUF1
)));
1218 } else if (!strcmp(key
, RVK_REFRESH
)) {
1220 } else if (!strcmp(key
, RVK_SHELL
)) {
1221 program
= user_shell
;
1224 spawn((char *[]) {RV_SHELL
, "-c", program
, NULL
});
1226 spawn((char *[]) {program
, NULL
});
1230 } else if (!strcmp(key
, RVK_VIEW
)) {
1231 if (!rover
.nfiles
|| S_ISDIR(EMODE(ESEL
))) continue;
1232 if (open_with_env(user_pager
, ENAME(ESEL
)))
1234 } else if (!strcmp(key
, RVK_EDIT
)) {
1235 if (!rover
.nfiles
|| S_ISDIR(EMODE(ESEL
))) continue;
1236 if (open_with_env(user_editor
, ENAME(ESEL
)))
1238 } else if (!strcmp(key
, RVK_OPEN
)) {
1239 if (!rover
.nfiles
|| S_ISDIR(EMODE(ESEL
))) continue;
1240 if (open_with_env(user_open
, ENAME(ESEL
)))
1242 } else if (!strcmp(key
, RVK_SEARCH
)) {
1243 int oldsel
, oldscroll
, length
;
1244 if (!rover
.nfiles
) continue;
1247 start_line_edit("");
1248 update_input(RVP_SEARCH
, RED
);
1249 while ((edit_stat
= get_line_edit()) == CONTINUE
) {
1252 length
= strlen(INPUT
);
1254 for (sel
= 0; sel
< rover
.nfiles
; sel
++)
1255 if (!strncmp(ENAME(sel
), INPUT
, length
))
1257 if (sel
< rover
.nfiles
) {
1260 if (rover
.nfiles
> HEIGHT
) {
1263 else if (sel
- 3 > rover
.nfiles
- HEIGHT
)
1264 SCROLL
= rover
.nfiles
- HEIGHT
;
1274 update_input(RVP_SEARCH
, color
);
1276 if (edit_stat
== CANCEL
) {
1282 } else if (!strcmp(key
, RVK_TG_FILES
)) {
1283 FLAGS
^= SHOW_FILES
;
1285 } else if (!strcmp(key
, RVK_TG_DIRS
)) {
1288 } else if (!strcmp(key
, RVK_TG_HIDDEN
)) {
1289 FLAGS
^= SHOW_HIDDEN
;
1291 } else if (!strcmp(key
, RVK_NEW_FILE
)) {
1293 start_line_edit("");
1294 update_input(RVP_NEW_FILE
, RED
);
1295 while ((edit_stat
= get_line_edit()) == CONTINUE
) {
1296 int length
= strlen(INPUT
);
1298 for (i
= 0; i
< rover
.nfiles
; i
++) {
1300 !strncmp(ENAME(i
), INPUT
, length
) &&
1301 (!strcmp(ENAME(i
) + length
, "") ||
1302 !strcmp(ENAME(i
) + length
, "/"))
1308 update_input(RVP_NEW_FILE
, ok
? GREEN
: RED
);
1311 if (edit_stat
== CONFIRM
) {
1313 if (addfile(INPUT
) == 0) {
1318 message(RED
, "Could not create \"%s\".", INPUT
);
1320 message(RED
, "\"%s\" already exists.", INPUT
);
1322 } else if (!strcmp(key
, RVK_NEW_DIR
)) {
1324 start_line_edit("");
1325 update_input(RVP_NEW_DIR
, RED
);
1326 while ((edit_stat
= get_line_edit()) == CONTINUE
) {
1327 int length
= strlen(INPUT
);
1329 for (i
= 0; i
< rover
.nfiles
; i
++) {
1331 !strncmp(ENAME(i
), INPUT
, length
) &&
1332 (!strcmp(ENAME(i
) + length
, "") ||
1333 !strcmp(ENAME(i
) + length
, "/"))
1339 update_input(RVP_NEW_DIR
, ok
? GREEN
: RED
);
1342 if (edit_stat
== CONFIRM
) {
1344 if (adddir(INPUT
) == 0) {
1350 message(RED
, "Could not create \"%s/\".", INPUT
);
1352 message(RED
, "\"%s\" already exists.", INPUT
);
1354 } else if (!strcmp(key
, RVK_RENAME
)) {
1358 strcpy(INPUT
, ENAME(ESEL
));
1359 last
= INPUT
+ strlen(INPUT
) - 1;
1360 if ((isdir
= *last
== '/'))
1362 start_line_edit(INPUT
);
1363 update_input(RVP_RENAME
, RED
);
1364 while ((edit_stat
= get_line_edit()) == CONTINUE
) {
1365 int length
= strlen(INPUT
);
1367 for (i
= 0; i
< rover
.nfiles
; i
++)
1369 !strncmp(ENAME(i
), INPUT
, length
) &&
1370 (!strcmp(ENAME(i
) + length
, "") ||
1371 !strcmp(ENAME(i
) + length
, "/"))
1376 update_input(RVP_RENAME
, ok
? GREEN
: RED
);
1379 if (edit_stat
== CONFIRM
) {
1383 if (!rename(ENAME(ESEL
), INPUT
) && MARKED(ESEL
)) {
1384 del_mark(&rover
.marks
, ENAME(ESEL
));
1385 add_mark(&rover
.marks
, CWD
, INPUT
);
1391 message(RED
, "\"%s\" already exists.", INPUT
);
1393 } else if (!strcmp(key
, RVK_TG_EXEC
)) {
1394 if (!rover
.nfiles
|| S_ISDIR(EMODE(ESEL
))) continue;
1395 if (S_IXUSR
& EMODE(ESEL
))
1396 EMODE(ESEL
) &= ~(S_IXUSR
| S_IXGRP
| S_IXOTH
);
1398 EMODE(ESEL
) |= S_IXUSR
| S_IXGRP
| S_IXOTH
;
1399 if (chmod(ENAME(ESEL
), EMODE(ESEL
))) {
1400 message(RED
, "Failed to change mode of \"%s\".", ENAME(ESEL
));
1402 message(GREEN
, "Changed mode of \"%s\".", ENAME(ESEL
));
1405 } else if (!strcmp(key
, RVK_DELETE
)) {
1407 message(YELLOW
, "Delete \"%s\"? (Y/n)", ENAME(ESEL
));
1408 if (rover_getch() == 'Y') {
1409 const char *name
= ENAME(ESEL
);
1410 int ret
= ISDIR(ENAME(ESEL
)) ? deldir(name
) : delfile(name
);
1413 message(RED
, "Could not delete \"%s\".", ENAME(ESEL
));
1417 message(RED
, "No entry selected for deletion.");
1418 } else if (!strcmp(key
, RVK_TG_MARK
)) {
1420 del_mark(&rover
.marks
, ENAME(ESEL
));
1422 add_mark(&rover
.marks
, CWD
, ENAME(ESEL
));
1423 MARKED(ESEL
) = !MARKED(ESEL
);
1424 ESEL
= (ESEL
+ 1) % rover
.nfiles
;
1426 } else if (!strcmp(key
, RVK_INVMARK
)) {
1427 for (i
= 0; i
< rover
.nfiles
; i
++) {
1429 del_mark(&rover
.marks
, ENAME(i
));
1431 add_mark(&rover
.marks
, CWD
, ENAME(i
));
1432 MARKED(i
) = !MARKED(i
);
1435 } else if (!strcmp(key
, RVK_MARKALL
)) {
1436 for (i
= 0; i
< rover
.nfiles
; i
++)
1438 add_mark(&rover
.marks
, CWD
, ENAME(i
));
1442 } else if (!strcmp(key
, RVK_MARK_DELETE
)) {
1443 if (rover
.marks
.nentries
) {
1444 message(YELLOW
, "Delete all marked entries? (Y/n)");
1445 if (rover_getch() == 'Y')
1446 process_marked(NULL
, delfile
, deldir
, "Deleting", "Deleted");
1450 message(RED
, "No entries marked for deletion.");
1451 } else if (!strcmp(key
, RVK_MARK_COPY
)) {
1452 if (rover
.marks
.nentries
)
1453 process_marked(adddir
, cpyfile
, NULL
, "Copying", "Copied");
1455 message(RED
, "No entries marked for copying.");
1456 } else if (!strcmp(key
, RVK_MARK_MOVE
)) {
1457 if (rover
.marks
.nentries
)
1458 process_marked(adddir
, movfile
, deldir
, "Moving", "Moved");
1460 message(RED
, "No entries marked for moving.");
1464 free_rows(&rover
.rows
, rover
.nfiles
);
1465 delwin(rover
.window
);
1466 if (save_cwd_file
!= NULL
) {
1467 fputs(CWD
, save_cwd_file
);
1468 fclose(save_cwd_file
);
1470 if (save_marks_file
!= NULL
) {
1471 for (i
= 0; i
< rover
.marks
.bulk
; i
++) {
1472 entry
= rover
.marks
.entries
[i
];
1474 fprintf(save_marks_file
, "%s%s\n", rover
.marks
.dirpath
, entry
);
1476 fclose(save_marks_file
);
1478 free_marks(&rover
.marks
);