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

#include "util/map.h"
#include "util/versie.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;
}

struct state {
  char *buf;
  size_t sz;
};

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

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

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

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

    lend = lstart-1;
  }
}

#define CHECK_OOM(ptr) \
  if (ptr == NULL) { \
    fprintf(stderr, "tak: geheugen is op"); \
    /* I think I should free the original memory here, but whatever */ \
    return NULL; \
  }

static char *read_stream(FILE *stream, size_t *sz) {
  *sz = 0;
  size_t cap = 4096;
  char *res = malloc(cap);
  CHECK_OOM(res);

  while (!feof(stream)) {
    if (cap-*sz == 0) {
      cap *= 2;
      res = realloc(res, cap);
      CHECK_OOM(res);
    }

    const size_t amount = cap-*sz;
    const size_t n = fread(res+*sz, 1, amount, stream);
    *sz += n;

    if (n != amount && !feof(stream)) {
      fprintf(stderr, "tak: fout tijdens lezen van standaard invoer.\n");
      free(res);
      return NULL;
    }
  }

  return res;
}

int handleStream(FILE *stream) {
  size_t sz = 0;
  char *data = read_stream(stream, &sz);
  if (data == NULL) {
    return 1;
  }

  struct state state = { .buf = data, .sz = sz };
  process(state);

  free(data);
  return 0;
}

int handleFile(char *fname) {
  struct map *map = open_map(fname);
  if (map == NULL) {
    return 1;
  }

  struct state state = { .buf = map->addr, .sz = map->sb.st_size };
  process(state);

  close_map(map);

  return 0;
}

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

  if (*args == NULL) {
    handleStream(stdin);
    return 0;
  }

  while (*args != NULL) {
    if (!strcmp(*args, "-")) {
      handleStream(stdin);
      goto next;
    }

    if (!handleFile(*args)) {
      goto next;
    }

    FILE *stream = fopen(*args, "rb");
    if (handleStream(stream)) {
      return 1;
    }
    fclose(stream);

next:
    args++;
  }

  return 0;
}