1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/***********************************************************/
/* ntux: native translation und extension */
/* Copyright (C) 2016 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.NTUX. */
/***********************************************************/
#include <stdio.h>
#include <unistd.h>
#include <ntux/ntux.h>
#include "ntux_driver_impl.h"
#include "ntux_nolibc_impl.h"
#ifndef NTUX_DRIVER_FLAGS
#define NTUX_DRIVER_FLAGS NTUX_DRIVER_VERBOSITY_ERRORS \
| NTUX_DRIVER_VERBOSITY_USAGE
#endif
static const char vermsg[] = "%s%s%s (git://midipix.org/ntux): "
"version %s%d.%d.%d%s.\n"
"[commit reference: %s%s%s]\n";
static const char * const ntux_ver_color[6] = {
"\x1b[1m\x1b[35m","\x1b[0m",
"\x1b[1m\x1b[32m","\x1b[0m",
"\x1b[1m\x1b[34m","\x1b[0m"
};
static const char * const ntux_ver_plain[6] = {
"","",
"","",
"",""
};
static ssize_t ntux_version(struct ntux_driver_ctx * dctx)
{
const struct ntux_source_version * verinfo;
const char * const * verclr;
verinfo = ntux_source_version();
verclr = isatty(STDOUT_FILENO) ? ntux_ver_color : ntux_ver_plain;
return fprintf(stdout,vermsg,
verclr[0],dctx->program,verclr[1],
verclr[2],verinfo->major,verinfo->minor,
verinfo->revision,verclr[3],
verclr[4],verinfo->commit,verclr[5]);
}
static void ntux_perform_unit_actions(
const struct ntux_driver_ctx * dctx,
const char * unit)
{
if (dctx->cctx->cmd == NTUX_CMD_STAT)
ntux_cmd_stat(dctx,unit);
}
static int ntux_exit(struct ntux_driver_ctx * dctx, int ret)
{
ntux_output_error_vector(dctx);
ntux_free_driver_ctx(dctx);
return ret;
}
int ntux_main(int argc, char ** argv, char ** envp)
{
int ret;
struct ntux_driver_ctx * dctx;
const char ** unit;
if ((ret = ntux_get_driver_ctx(argv,envp,NTUX_DRIVER_FLAGS,&dctx)))
return (ret == NTUX_USAGE)
? !--argc
: NTUX_ERROR;
if (dctx->cctx->drvflags & NTUX_DRIVER_VERSION)
if ((ntux_version(dctx)) < 0)
return ntux_exit(dctx,NTUX_ERROR);
for (unit=dctx->units; *unit; unit++)
ntux_perform_unit_actions(dctx,*unit);
return ntux_exit(dctx,dctx->errv[0] ? NTUX_ERROR : NTUX_OK);
}
|