2021-01-28 22:47:25 -08:00
|
|
|
//
|
2021-01-28 22:58:17 -08:00
|
|
|
// utils.h
|
|
|
|
// Copyright 2020 Bruce Hill
|
|
|
|
// Released under the MIT license
|
2021-01-28 22:47:25 -08:00
|
|
|
//
|
2021-01-28 22:58:17 -08:00
|
|
|
// This file contains some definitions of some utility macros.
|
2021-01-28 22:47:25 -08:00
|
|
|
//
|
2019-09-30 17:06:27 -07:00
|
|
|
|
2021-01-28 22:13:51 -08:00
|
|
|
#ifndef FILE_UTILS__H
|
|
|
|
#define FILE_UTILS__H
|
2021-01-28 21:53:48 -08:00
|
|
|
|
2021-01-28 22:13:51 -08:00
|
|
|
#include <stdio.h>
|
2020-04-10 00:12:57 -07:00
|
|
|
|
2019-09-30 17:06:27 -07:00
|
|
|
#define MAX(a,b) ((a) < (b) ? (b) : (a))
|
|
|
|
#define MIN(a,b) ((a) > (b) ? (b) : (a))
|
2021-01-28 22:13:51 -08:00
|
|
|
|
2019-11-01 09:19:25 -07:00
|
|
|
#define ONSCREEN (winsize.ws_row - 3)
|
2019-09-30 17:06:27 -07:00
|
|
|
|
2021-01-28 22:13:51 -08:00
|
|
|
// Platform-dependent time strucutre accessors:
|
2019-09-30 17:06:27 -07:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#define mtime(s) (s).st_mtimespec
|
|
|
|
#define atime(s) (s).st_atimespec
|
|
|
|
#define ctime(s) (s).st_ctimespec
|
|
|
|
#else
|
|
|
|
#define mtime(s) (s).st_mtim
|
|
|
|
#define atime(s) (s).st_atim
|
|
|
|
#define ctime(s) (s).st_ctim
|
|
|
|
#endif
|
|
|
|
|
2021-01-28 22:13:51 -08:00
|
|
|
// Error reporting macros:
|
2019-09-30 17:06:27 -07:00
|
|
|
#define err(...) do { \
|
|
|
|
cleanup(); \
|
|
|
|
fprintf(stderr, __VA_ARGS__); \
|
|
|
|
if (errno) fprintf(stderr, "\n%s", strerror(errno)); \
|
|
|
|
fprintf(stderr, "\n"); \
|
|
|
|
exit(EXIT_FAILURE); \
|
|
|
|
} while (0)
|
|
|
|
|
2019-10-13 19:34:16 -07:00
|
|
|
#define warn(...) do { \
|
2019-11-01 09:19:25 -07:00
|
|
|
move_cursor(tty_out, 0, winsize.ws_row-1); \
|
2019-10-27 14:58:23 -07:00
|
|
|
fputs("\033[41;33;1m", tty_out); \
|
|
|
|
fprintf(tty_out, __VA_ARGS__); \
|
|
|
|
fputs(" Press any key to continue...\033[0m ", tty_out); \
|
|
|
|
fflush(tty_out); \
|
|
|
|
while (bgetkey(tty_in, NULL, NULL) == -1) usleep(100); \
|
2021-01-01 16:38:24 -08:00
|
|
|
bb->dirty = 1; \
|
2019-10-27 14:58:23 -07:00
|
|
|
} while (0)
|
|
|
|
|
2021-01-28 22:13:51 -08:00
|
|
|
// Entry macros
|
|
|
|
#define IS_SELECTED(e) (((e)->selected.atme) != NULL)
|
|
|
|
#define IS_VIEWED(e) ((e)->index >= 0)
|
|
|
|
#define IS_LOADED(e) ((e)->hash.atme != NULL)
|
|
|
|
|
|
|
|
#define E_ISDIR(e) (S_ISDIR(S_ISLNK((e)->info.st_mode) ? (e)->linkedmode : (e)->info.st_mode))
|
|
|
|
|
|
|
|
// Linked list macros
|
2019-10-27 14:58:23 -07:00
|
|
|
#define LL_PREPEND(head, node, name) do { \
|
|
|
|
((node)->name).atme = &(head); \
|
|
|
|
((node)->name).next = head; \
|
|
|
|
if (head) ((head)->name).atme = &(((node)->name).next); \
|
|
|
|
head = node; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define LL_REMOVE(node, name) do { \
|
|
|
|
if (((node)->name).next) \
|
|
|
|
((__typeof__(node))(node)->name.next)->name.atme = ((node)->name).atme; \
|
2020-02-23 18:00:39 -08:00
|
|
|
if (((node)->name).atme) \
|
|
|
|
*(((node)->name).atme) = ((node)->name).next; \
|
2019-10-27 14:58:23 -07:00
|
|
|
((node)->name).atme = NULL; \
|
|
|
|
((node)->name).next = NULL; \
|
2019-10-13 19:34:16 -07:00
|
|
|
} while (0)
|
|
|
|
|
2019-09-30 17:06:27 -07:00
|
|
|
|
2020-12-30 22:47:49 -08:00
|
|
|
#endif
|
2019-09-30 17:06:27 -07:00
|
|
|
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1
|