added latency tool
[tridge/junkcode.git] / tserver / template_main.c
1 /* 
2    Copyright (C) Andrew Tridgell 2002
3    
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2 of the License, or
7    (at your option) any later version.
8    
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13    
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 /* a simple program that allows template to be used as a scripting system */
20 #include "includes.h"
21
22 static void usage(void)
23 {
24         puts("
25 template [options] <files>
26
27 Options:
28   -c     run as a cgi script
29   -h show help
30 ");
31 }
32
33 int main(int argc, char *argv[])
34 {
35         struct cgi_state *cgi;
36         extern char *optarg;
37         extern int optind;
38         int opt;
39         int use_cgi = 0;
40         int i;
41
42         while ((opt = getopt(argc, argv, "ch")) != -1) {
43                 switch (opt) {
44                 case 'c':
45                         use_cgi = 1;
46                         break;
47                 case 'h':
48                         usage();
49                         exit(1);
50                 }
51         }
52
53         argv += optind;
54         argc -= optind;
55
56         cgi = cgi_init();
57
58         if (use_cgi) {
59                 cgi->setup(cgi);
60                 cgi->load_variables(cgi);
61         }
62         
63         for (i=0; i<argc; i++) {
64                 cgi->tmpl->process(cgi->tmpl, argv[i], 1);
65         }
66
67         return 0;
68 }