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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
#ifndef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 200809L
#endif
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
const int EXIT_ERROR = 1;
const int EXIT_USAGE = 2;
int usage(FILE *stream) {
const char *const msg = "Usage: remembering -p PROFILE -c COMMAND\n";
if (fprintf(stream, msg) < 0) {
perror("usage()");
return -1;
}
return 0;
}
static int help(FILE *stream) {
const char *const msg =
"Options:\n"
" -p, PROFILE profile to be used for gathering and storing data\n"
" -c, COMMAND commant to be run, reading from STDIN, writing to STDOUT\n"
" -h, --help show this help\n"
" -V, --version print the version number\n"
"\nSee \"man remembering\" for more information\n";
if (fprintf(stream, msg) < 0) {
perror("help()");
return -1;
}
return 0;
}
static int version(FILE *stream) {
const char *const msg = "remembering-" VERSION " " DATE "\n";
if (fprintf(stream, msg) < 0) {
perror("version()");
return -1;
}
return 0;
}
static int missing(FILE *stream, const char *const argument) {
const char *const msg = "Missing option: %s\n";
if (fprintf(stream, msg, argument) < 0) {
perror("missing()");
return -1;
}
return 0;
}
static char *get_profile_file(const char *const profile) {
char *home = NULL;
if (!(home = getenv("XDG_DATA_HOME"))) {
if (!(home = getenv("HOME"))) {
fprintf(stderr, "Unable to get $XDG_DATA_HOME or $HOME environment variables\n");
return NULL;
}
const char *const suffix = "/.local/share/remembering";
const size_t home_suffix_size =
strlen(home) +
strlen(suffix) +
sizeof(char);
char *const home_with_suffix = malloc(home_suffix_size);
if (!home_with_suffix) {
perror("get_profile_file() - home_with_suffix");
return NULL;
}
strcat(home_with_suffix, home);
strcat(home_with_suffix, suffix);
home = home_with_suffix;
} else {
if (!(home = strdup(home))) {
perror("get_profile_file() - strdup()");
return NULL;
}
}
size_t size =
strlen(home) +
strlen("/") +
strlen(profile) +
sizeof(char);
char *const profile_file = malloc(size);
if (!profile_file) {
perror("get_profile_file() - profile_file");
free(home);
return NULL;
}
strcat(profile_file, home);
strcat(profile_file, "/");
strcat(profile_file, profile);
return profile_file;
}
int main(int argc, char *argv[]) {
#ifdef TEST
return EXIT_SUCCESS;
#endif
for (int i = 0; i < argc; i++) {
if (strcmp("--", argv[i]) == 0) {
break;
} else if (strcmp("--help", argv[i]) == 0) {
if (usage(stdout)) return EXIT_ERROR;
if (help(stdout)) return EXIT_ERROR;
return EXIT_SUCCESS;
} else if (strcmp("--version", argv[i]) == 0) {
if (version(stdout)) return EXIT_ERROR;
return EXIT_SUCCESS;
}
}
int option;
const char *profile = NULL;
const char *command = NULL;
while ((option = getopt(argc, argv, "p:c:hV")) != -1) {
switch (option) {
case 'p':
profile = optarg;
break;
case 'c':
command = optarg;
break;
case 'h':
if (usage(stdout)) return EXIT_ERROR;
if (help(stdout)) return EXIT_ERROR;
return EXIT_SUCCESS;
case 'V':
if (version(stdout)) return EXIT_ERROR;
return EXIT_SUCCESS;
default:
if (usage(stderr)) return EXIT_ERROR;
return EXIT_USAGE;
}
}
if (!profile) {
if (missing(stderr, "-p PROFILE")) return EXIT_ERROR;
if (usage(stderr)) return EXIT_ERROR;
return EXIT_USAGE;
}
if (!command) {
if (missing(stderr, "-c COMMAND")) return EXIT_ERROR;
if (usage(stderr)) return EXIT_ERROR;
return EXIT_USAGE;
}
char *const profile_file = get_profile_file(profile);
if(!profile_file) {
return EXIT_ERROR;
}
printf("profile: %s\ncommand: %s\n", profile, command);
printf("profile_file: %s\n", profile_file);
free(profile_file);
return 0;
}
|