HelenOS sources
This source file includes following definitions.
- print_syntax
- verify_abort_query
- verify_progress
- verify_io_error_query
- main
#include <errno.h>
#include <fmgt.h>
#include <io/console.h>
#include <io/cons_event.h>
#include <io/kbd_event.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <str.h>
#include <str_error.h>
#define NAME "verify"
static bool verify_abort_query(void *);
static void verify_progress(void *, fmgt_progress_t *);
static fmgt_error_action_t verify_io_error_query(void *, fmgt_io_error_t *);
static bool prog_upd = false;
static bool nonint = false;
static bool quiet = false;
static console_ctrl_t *con;
static fmgt_cb_t verify_fmgt_cb = {
.abort_query = verify_abort_query,
.io_error_query = verify_io_error_query,
.progress = verify_progress,
};
static void print_syntax(void)
{
printf("Verify that file can be read.\n");
printf("Syntax: %s [<options] <file-name>...\n", NAME);
printf("\t-h help\n");
printf("\t-n non-interactive\n");
printf("\t-q quiet\n");
}
static bool verify_abort_query(void *arg)
{
cons_event_t event;
kbd_event_t *ev;
errno_t rc;
usec_t timeout;
if (con == NULL)
return false;
timeout = 0;
rc = console_get_event_timeout(con, &event, &timeout);
if (rc != EOK)
return false;
if (event.type == CEV_KEY && event.ev.key.type == KEY_PRESS) {
ev = &event.ev.key;
if ((ev->mods & KM_ALT) == 0 &&
(ev->mods & KM_SHIFT) == 0 &&
(ev->mods & KM_CTRL) != 0) {
if (ev->key == KC_C)
return true;
}
}
return false;
}
static void verify_progress(void *arg, fmgt_progress_t *progress)
{
(void)arg;
if (!quiet) {
printf("\rVerified %s files, %s; current file: %s done. "
"\b\b", progress->total_procf, progress->total_procb,
progress->curf_percent);
fflush(stdout);
prog_upd = true;
}
}
static fmgt_error_action_t verify_io_error_query(void *arg,
fmgt_io_error_t *err)
{
cons_event_t event;
kbd_event_t *ev;
errno_t rc;
(void)arg;
if (nonint)
return fmgt_er_abort;
if (prog_upd)
putchar('\n');
fprintf(stderr, "I/O error %s file '%s' (%s).\n",
err->optype == fmgt_io_write ? "writing" : "reading",
err->fname, str_error(err->rc));
fprintf(stderr, "[A]bort or [R]etry?\n");
if (con == NULL)
return fmgt_er_abort;
while (true) {
rc = console_get_event(con, &event);
if (rc != EOK)
return fmgt_er_abort;
if (event.type == CEV_KEY && event.ev.key.type == KEY_PRESS) {
ev = &event.ev.key;
if ((ev->mods & KM_ALT) == 0 &&
(ev->mods & KM_CTRL) == 0) {
if (ev->c == 'r' || ev->c == 'R')
return fmgt_er_retry;
if (ev->c == 'a' || ev->c == 'A')
return fmgt_er_abort;
}
}
if (event.type == CEV_KEY && event.ev.key.type == KEY_PRESS) {
ev = &event.ev.key;
if ((ev->mods & KM_ALT) == 0 &&
(ev->mods & KM_SHIFT) == 0 &&
(ev->mods & KM_CTRL) != 0) {
if (ev->key == KC_C)
return fmgt_er_abort;
}
}
}
}
int main(int argc, char *argv[])
{
fmgt_t *fmgt = NULL;
errno_t rc;
int i;
fmgt_flist_t *flist = NULL;
rc = fmgt_flist_create(&flist);
if (rc != EOK) {
printf("Out of memory.\n");
goto error;
}
con = console_init(stdin, stdout);
i = 1;
while (i < argc && argv[i][0] == '-') {
if (str_cmp(argv[i], "-h") == 0) {
print_syntax();
return 0;
} else if (str_cmp(argv[i], "-n") == 0) {
++i;
nonint = true;
} else if (str_cmp(argv[i], "-q") == 0) {
++i;
quiet = true;
} else {
printf("Invalid option '%s'.\n", argv[i]);
print_syntax();
goto error;
}
}
if (i >= argc) {
print_syntax();
goto error;
}
do {
rc = fmgt_flist_append(flist, argv[i++]);
if (rc != EOK) {
printf("Out of memory.\n");
goto error;
}
} while (i < argc);
rc = fmgt_create(&fmgt);
if (rc != EOK) {
printf("Out of memory.\n");
goto error;
}
fmgt_set_cb(fmgt, &verify_fmgt_cb, NULL);
rc = fmgt_verify(fmgt, flist);
if (prog_upd)
putchar('\n');
if (rc != EOK) {
printf("Error creating file: %s.\n", str_error(rc));
goto error;
}
fmgt_flist_destroy(flist);
fmgt_destroy(fmgt);
return 0;
error:
if (flist != NULL)
fmgt_flist_destroy(flist);
if (fmgt != NULL)
fmgt_destroy(fmgt);
return 1;
}
HelenOS homepage, sources at GitHub