summaryrefslogtreecommitdiff
path: root/src/tak.c
blob: e8fb817fd71f9d8660029abc31504529c4735ba3 (plain)
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
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include "util/map.h"
#include "util/versie.h"
#include "io/read_file.h"

static void usage(FILE *f) {
  fprintf(f,
      "Gebruik: tak [-hV] <bestand...>\n"
      "\n"
      "Schakel bestanden aaneen naar standaard uitvoer omgekeerd.\n"
      "\n"
      "  -h    Toon deze hulptekst\n"
      "  -V    Toon versienummer\n");
}

// Returns pointer to argument array containing the file names
static char** parse_options(int argc, char **argv) {
  int opt;
  while ((opt = getopt(argc, argv, "hV")) != -1) {
    switch (opt) {
      case 'h':
        usage(stdout);
        exit(0);

      case 'V':
        drukkedoos_print_versie(stdout, "tak");
        exit(0);

      case '?':
        usage(stderr);
        exit(1);
    }
  }

  return argv + optind;
}

static void process(struct filebuf *fb) {
  char *lstart, *lend;
  lend = &fb->buf[fb->sz - 1];

  while (lend > fb->buf) {
    if (*lend == '\n') {
      lend--;
    }

    lstart = lend;
    while (*lstart != '\n' && lstart != fb->buf) {
      lstart--;
    }
    if (lstart != fb->buf) {
      lstart++;
    }

    fwrite(lstart, 1, lend - lstart + 2, stdout);

    lend = lstart-1;
  }

  free_filebuf(fb);
}

int entry_tak(int argc, char **argv) {
  char **args = parse_options(argc, argv);

  if (*args == NULL) {
    struct filebuf *fb = stream_to_filebuf(stdin);
    if (fb == NULL) {
      return 1;
    }

    process(fb);
    return 0;
  }

  while (*args != NULL) {
    struct filebuf *fb = NULL;

    if (!strcmp(*args, "-")) {
      fb = stream_to_filebuf(stdin);
      if (fb == NULL) {
        return 1;
      }
    }

    if (fb == NULL) {
      fb = file_to_filebuf(*args);
    }

    process(fb);

    args++;
  }

  return 0;
}