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

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

static void usage(FILE *f) {
  fprintf(f,
      "Gebruik: kat [-hV] <bestand...>\n"
      "\n"
      "Schakel bestanden aaneen naar standaard uitvoer.\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);
        exit(0);

      case '?':
        fprintf(stderr, "kat: Ongeldige optie: -%c\n", optopt);
        usage(stderr);
        exit(1);
    }
  }

  return argv + optind;
}

static void process(struct filebuf *fb) {
  fwrite(fb->buf, 1, fb->sz, stdout);
  free_filebuf(fb);
}

// TODO: be smarter, kat doesn't have to read the whole file in memory (for
// unmappable files)

static int handle(char *arg, bool isstdin) {
  struct filebuf *fb = NULL;

  if (isstdin) {
    fb = stream_to_filebuf(stdin, 0);
    if (fb == NULL) goto err_stdin;
  } else {
    bool isdir = false;
    fb = file_to_filebuf(arg, 0, &isdir);
    if (isdir) goto err_isdir;
    else if (fb == NULL) goto err_file;
  }

  process(fb);
  return 0;

err_stdin:
  fprintf(stderr, "kat: fout bij lezen van standaard invoer\n");
  return 1;

err_file:
  fprintf(stderr, "kat: fout bij lezen van bestand\n");
  return 1;

err_isdir:
  fprintf(stderr, "kat: bestand '%s' is een mapje\n", arg);
  return 1;
}

int entry_kat(int argc, char **argv) {
  char **args = parse_options(argc, argv);
  return loop_args(args, handle);
}