SBDP01/appender.c
2018-10-21 13:04:41 +02:00

68 lines
1.4 KiB
C

#include <stdio.h>
#include "tape.h"
#include "record.h"
#include "common.h"
#define WANT_IOSTAT 1
char* filename;
char flags;
void init_args(int args, char* argv[])
{
optparse_t options;
optparse_init(&options, argv);
for (char opt; opt != -1; opt = optparse(&options, "qvi")) {
switch (opt) {
case 'q':
verbosity--;
break;
case 'v':
verbosity++;
break;
case 'i':
flags |= WANT_IOSTAT;
}
}
filename = optparse_arg(&options);
}
void help(const char* name) {
printf(
"Append record to given tape at the end.\n"
"Usage:\n"
"\t%s [options] <tape>\n",
name
);
}
int main(int argc, const char* argv[])
{
if (argc < 2) {
help(argv[0]);
return 0;
}
tape_t* tape = tape_open(argv[1], TAPE_APPEND);
record_t record;
size_t records = 0;
while (scanf("%lf %lf", &record.x, &record.y) > 0) {
tape_write(tape, &record, sizeof(record_t));
printfv(VERBOSITY_NORMAL, "Record created: r = (%lf, %lf) |r| = %lf\n", record.x, record.y, record_length(record));
records++;
}
printfv(VERBOSITY_NORMAL, "Appended %zu record to %s.\n", records, argv[1]);
if (flags & WANT_IOSTAT) {
iostats();
}
tape_close(tape);
return 1;
}