dc.c revision 203438
1/*	$OpenBSD: dc.c,v 1.11 2009/10/27 23:59:37 deraadt Exp $	*/
2
3/*
4 * Copyright (c) 2003, Otto Moerbeek <otto@drijf.net>
5 * Copyright (c) 2009, Gabor Kovesdan <gabor@FreeBSD.org>
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
10 *
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 */
19
20#include <sys/cdefs.h>
21__FBSDID("$FreeBSD: head/usr.bin/dc/dc.c 203438 2010-02-03 19:13:41Z gabor $");
22
23#include <sys/stat.h>
24
25#include <ctype.h>
26#include <err.h>
27#include <errno.h>
28#include <getopt.h>
29#include <stdio.h>
30#include <stdlib.h>
31#include <string.h>
32#include <unistd.h>
33
34#include "extern.h"
35
36#define	DC_VER		"1.3-FreeBSD"
37
38static void		 usage(void);
39
40extern char		*__progname;
41
42struct source		 src;
43
44struct option long_options[] =
45{
46	{"expression",		required_argument,	NULL,	'e'},
47	{"file",		required_argument,	NULL,	'f'},
48	{"help",		no_argument,		NULL,	'h'},
49	{"version",		no_argument,		NULL,	'V'}
50};
51
52static void
53usage(void)
54{
55	fprintf(stderr, "usage: %s [-hVx] [-e expression] [file]\n",
56	    __progname);
57	exit(1);
58}
59
60static void
61procfile(char *fname) {
62	FILE		*file;
63	struct stat	 st;
64
65	file = fopen(fname, "r");
66	if (file == NULL)
67		err(1, "cannot open file %s", fname);
68	if (fstat(fileno(file), &st) == -1)
69		err(1, "%s", fname);
70	if (S_ISDIR(st.st_mode)) {
71		errno = EISDIR;
72		err(1, "%s", fname);
73	}
74	src_setstream(&src, file);
75	reset_bmachine(&src);
76	eval();
77	fclose(file);
78}
79
80int
81main(int argc, char *argv[])
82{
83	int		 ch;
84	bool		 extended_regs = false;
85	bool		 preproc_done = false;
86
87	/* accept and ignore a single dash to be 4.4BSD dc(1) compatible */
88	while ((ch = getopt_long(argc, argv, "e:f:Vx", long_options, NULL)) != -1) {
89		switch (ch) {
90		case 'e':
91			src_setstring(&src, optarg);
92			reset_bmachine(&src);
93			eval();
94			preproc_done = true;
95			break;
96		case 'f':
97			procfile(optarg);
98			preproc_done = true;
99			break;
100		case 'x':
101			extended_regs = true;
102			break;
103		case 'V':
104			fprintf(stderr, "%s (BSD bc) %s\n", __progname, DC_VER);
105			exit(0);
106			break;
107		case '-':
108			break;
109		case 'h':
110			/* FALLTHROUGH */
111		default:
112			usage();
113		}
114	}
115	argc -= optind;
116	argv += optind;
117
118	init_bmachine(extended_regs);
119	setlinebuf(stdout);
120	setlinebuf(stderr);
121
122	if (argc > 1)
123		usage();
124	if (argc == 1) {
125		procfile(argv[0]);
126		preproc_done = true;
127	}
128	if (preproc_done)
129		return (0);
130
131	src_setstream(&src, stdin);
132	reset_bmachine(&src);
133	eval();
134
135	return (0);
136}
137