if.c
3.36 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/* GNU mailutils - a suite of utilities for electronic mail
Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "mail.h"
static int is_terminal;
#define COND_STK_SIZE 64
#define COND_STK_INCR 16
static int *_cond_stack; /* Stack of conditions */
static int _cond_stack_size; /* Number of elements allocated this far */
static int _cond_level; /* Number of nested `if' blocks */
static void _cond_push(int val);
static int _cond_pop(void);
int
if_cond()
{
if (_cond_level == 0)
return 1;
return _cond_stack[_cond_level-1];
}
void
_cond_push(int val)
{
if (!_cond_stack)
{
_cond_stack = calloc(COND_STK_SIZE, sizeof(_cond_stack[0]));
_cond_stack_size = COND_STK_SIZE;
_cond_level = 0;
}
else if (_cond_level >= _cond_stack_size)
{
_cond_stack_size += COND_STK_INCR;
_cond_stack = realloc(_cond_stack,
sizeof(_cond_stack[0])*_cond_stack_size);
}
if (!_cond_stack)
{
fprintf(ofile, "not enough memeory");
exit (EXIT_FAILURE);
}
_cond_stack[_cond_level++] = val;
}
int
_cond_pop()
{
if (_cond_level == 0)
{
fprintf(ofile, "internal error: condition stack underflow\n");
abort();
}
return _cond_stack[--_cond_level];
}
/*
* i[f] s|r|t
* mail-commands
* el[se]
* mail-commands
* en[dif]
*/
int
mail_if (int argc, char **argv)
{
struct mail_env_entry *mode;
int cond;
if (argc != 2)
{
fprintf(ofile, "if requires an argument: s | r | t\n");
return 1;
}
if (argv[1][1] != 0)
{
fprintf(ofile, "valid if arguments are: s | r | t\n");
return 1;
}
mode = util_find_env("mode");
if (!mode)
{
exit (EXIT_FAILURE);
}
if (if_cond() == 0)
/* Propagate negative condition */
cond = 0;
else
{
switch (argv[1][0])
{
case 's': /* Send mode */
cond = strcmp(mode->value, "send") == 0;
break;
case 'r': /* Read mode */
cond = strcmp(mode->value, "send") != 0;
break;
case 't': /* Reading from a terminal */
cond = is_terminal;
break;
default:
fprintf(ofile, "valid if arguments are: s | r | t\n");
return 1;
}
}
_cond_push(cond);
return 0;
}
int
mail_else (int argc, char **argv)
{
int cond;
if (_cond_level == 0)
{
fprintf(ofile, "else without matching if\n");
return 1;
}
cond = _cond_pop();
if (_cond_level == 0)
cond = !cond;
_cond_push(cond);
return 0;
}
int
mail_endif (int argc, char **argv)
{
if (_cond_level == 0)
{
fprintf(ofile, "endif without matching if\n");
return 1;
}
_cond_pop();
return 1;
}
void
mail_set_is_terminal(int val)
{
is_terminal = val;
}
int
mail_is_terminal(void)
{
return is_terminal;
}