sorted some includes + added version number
[smdp.git] / mdp.c
1 #include <errno.h>
2 #include <getopt.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <string.h>
6
7 #include "include/mdp.h"
8
9 void usage() {
10     fprintf(stderr, "%s", "Usage: mdp [OPTION]... [FILE]\n");
11     fprintf(stderr, "%s", "A command-line based markdown presentation tool.\n\n");
12     fprintf(stderr, "%s", "  -d, --debug   enable debug messages on STDERR\n");
13     fprintf(stderr, "%s", "                add it multiple times to increases debug level\n\n");
14     fprintf(stderr, "%s", "  -h, --help    display this help and exit\n");
15     fprintf(stderr, "%s", "\nWith no FILE, or when FILE is -, read standard input.\n\n");
16     exit(EXIT_FAILURE);
17 }
18
19 void version() {
20     printf("mdp %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
21     //TODO add copyright, license, written by
22     exit(EXIT_SUCCESS);
23 }
24
25 int main(int argc, char *argv[]) {
26
27     // define command-line options
28     struct option longopts[] = {
29         { "debug",   no_argument, 0, 'd' },
30         { "help",    no_argument, 0, 'h' },
31         { "version", no_argument, 0, 'v' },
32         { 0, 0, 0, 0 }
33     };
34
35     // parse command-line options
36     int opt, debug = 0;
37     while ((opt = getopt_long(argc, argv, ":dhv", longopts, NULL)) != -1) {
38         switch(opt) {
39             case 'd': debug += 1; break;
40             case 'h': usage(); break;
41             case 'v': version(); break;
42             case ':': fprintf(stderr, "%s: '%c' requires an argument\n", argv[0], optopt); usage(); break;
43             case '?':
44             default : fprintf(stderr, "%s: option '%c' is invalid\n", argv[0], optopt); usage(); break;
45         }
46     }
47
48     // open file or set input to STDIN
49     char *file;
50     FILE *input;
51     if (optind < argc) {
52         do {
53             file = argv[optind];
54         } while(++optind < argc);
55
56         if(!strcmp(file, "-")) {
57             input = stdin;
58         } else {
59             input = fopen(file,"r");
60             if(!input) {
61                 fprintf(stderr, "%s: %s: %s\n", argv[0], file, strerror(errno));
62                 exit(EXIT_FAILURE);
63             }
64         }
65     } else {
66         input = stdin;
67     }
68
69     // load deck object from input
70     deck_t *deck;
71     deck = markdown_load(input);
72
73     //TODO close file
74
75     if(debug > 0) {
76         markdown_debug(deck, debug);
77     }
78
79     ncurses_display(deck, 0, 0);
80
81     return(EXIT_SUCCESS);
82 }
83