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
|
/*
* blogc: A blog compiler.
* Copyright (C) 2015-2016 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /* HAVE_CONFIG_H */
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "../common/utils.h"
#include "httpd.h"
static void
print_help(void)
{
printf(
"usage:\n"
" blogc-runserver [-h] [-v] [-t HOST] [-p PORT] DOCROOT\n"
" - A simple HTTP server to test blogc websites.\n"
"\n"
"positional arguments:\n"
" DOCROOT document root directory\n"
"\n"
"optional arguments:\n"
" -h show this help message and exit\n"
" -v show version and exit\n"
" -t HOST set server listen address (default: 127.0.0.1)\n"
" -p PORT set server listen port (default: 8080)\n");
}
static void
print_usage(void)
{
printf("usage: blogc-runserver [-h] [-v] [-t HOST] [-p PORT] DOCROOT\n");
}
int
main(int argc, char **argv)
{
signal(SIGPIPE, SIG_IGN);
int rv = 0;
char *host = NULL;
char *docroot = NULL;
unsigned short port = 8080;
unsigned int args = 0;
for (unsigned int i = 1; i < argc; i++) {
if (argv[i][0] == '-') {
switch (argv[i][1]) {
case 'h':
print_help();
goto cleanup;
case 'v':
printf("%s\n", PACKAGE_STRING);
goto cleanup;
case 't':
if (argv[i][2] != '\0')
host = bc_strdup(argv[i] + 2);
else
host = bc_strdup(argv[++i]);
break;
case 'p':
if (argv[i][2] != '\0')
port = strtoul(argv[i] + 2, NULL, 10);
else
port = strtoul(argv[++i], NULL, 10);
break;
default:
print_usage();
fprintf(stderr, "blogc-runserver: error: invalid "
"argument: -%c\n", argv[i][1]);
rv = 2;
goto cleanup;
}
}
else {
if (args > 0) {
print_usage();
fprintf(stderr, "blogc-runserver: error: only one positional "
"argument allowed\n");
rv = 2;
goto cleanup;
}
args++;
docroot = bc_strdup(argv[i]);
}
}
if (docroot == NULL) {
print_usage();
fprintf(stderr, "blogc-runserver: error: document root directory "
"required\n");
rv = 2;
goto cleanup;
}
if (host == NULL)
host = bc_strdup("127.0.0.1");
rv = br_httpd_run(host, port, docroot);
cleanup:
free(host);
free(docroot);
return rv;
}
|