blob: 232ac1a71fee54a6be561cdf89f524f63e9fcd3c [file] [log] [blame]
Jari Aalto726f6381996-08-26 18:22:31 +00001This file is break.def, from which is created break.c.
2It implements the builtins "break" and "continue" in Bash.
3
Jari Aalto31859422009-01-12 13:36:28 +00004Copyright (C) 1987-2009 Free Software Foundation, Inc.
Jari Aalto726f6381996-08-26 18:22:31 +00005
6This file is part of GNU Bash, the Bourne Again SHell.
7
Jari Aalto31859422009-01-12 13:36:28 +00008Bash is free software: you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation, either version 3 of the License, or
11(at your option) any later version.
Jari Aalto726f6381996-08-26 18:22:31 +000012
Jari Aalto31859422009-01-12 13:36:28 +000013Bash is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
Jari Aalto726f6381996-08-26 18:22:31 +000017
Jari Aalto31859422009-01-12 13:36:28 +000018You should have received a copy of the GNU General Public License
19along with Bash. If not, see <http://www.gnu.org/licenses/>.
Jari Aalto726f6381996-08-26 18:22:31 +000020
21$PRODUCES break.c
22
23$BUILTIN break
24$FUNCTION break_builtin
25$SHORT_DOC break [n]
Jari Aalto31859422009-01-12 13:36:28 +000026Exit for, while, or until loops.
27
28Exit a FOR, WHILE or UNTIL loop. If N is specified, break N enclosing
29loops.
30
31Exit Status:
32The exit status is 0 unless N is not greater than or equal to 1.
Jari Aalto726f6381996-08-26 18:22:31 +000033$END
Jari Aaltoccc6cda1996-12-23 17:02:34 +000034#include <config.h>
35
36#if defined (HAVE_UNISTD_H)
Jari Aaltocce855b1998-04-17 19:52:44 +000037# ifdef _MINIX
38# include <sys/types.h>
39# endif
40# include <unistd.h>
Jari Aaltoccc6cda1996-12-23 17:02:34 +000041#endif
Jari Aalto726f6381996-08-26 18:22:31 +000042
Jari Aaltob80f6442004-07-27 13:29:18 +000043#include "../bashintl.h"
44
Jari Aalto726f6381996-08-26 18:22:31 +000045#include "../shell.h"
Jari Aaltoccc6cda1996-12-23 17:02:34 +000046#include "common.h"
Jari Aalto726f6381996-08-26 18:22:31 +000047
48extern char *this_command_name;
Jari Aalto28ef6c32001-04-06 19:14:31 +000049extern int posixly_correct;
Jari Aalto726f6381996-08-26 18:22:31 +000050
Jari Aaltof73dda02001-11-13 17:56:06 +000051static int check_loop_level __P((void));
Jari Aalto726f6381996-08-26 18:22:31 +000052
53/* The depth of while's and until's. */
54int loop_level = 0;
55
56/* Non-zero when a "break" instruction is encountered. */
57int breaking = 0;
58
59/* Non-zero when we have encountered a continue instruction. */
60int continuing = 0;
61
62/* Set up to break x levels, where x defaults to 1, but can be specified
63 as the first argument. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +000064int
Jari Aalto726f6381996-08-26 18:22:31 +000065break_builtin (list)
66 WORD_LIST *list;
67{
Jari Aalto7117c2d2002-07-17 14:10:11 +000068 intmax_t newbreak;
Jari Aalto726f6381996-08-26 18:22:31 +000069
Jari Aaltod166f041997-06-05 14:59:13 +000070 if (check_loop_level () == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +000071 return (EXECUTION_SUCCESS);
Jari Aalto726f6381996-08-26 18:22:31 +000072
Jari Aalto31859422009-01-12 13:36:28 +000073 (void)get_numeric_arg (list, 1, &newbreak);
Jari Aalto726f6381996-08-26 18:22:31 +000074
75 if (newbreak <= 0)
Jari Aaltod166f041997-06-05 14:59:13 +000076 {
Jari Aalto31859422009-01-12 13:36:28 +000077 sh_erange (list->word->word, _("loop count"));
Jari Aaltod166f041997-06-05 14:59:13 +000078 breaking = loop_level;
79 return (EXECUTION_FAILURE);
80 }
Jari Aalto726f6381996-08-26 18:22:31 +000081
82 if (newbreak > loop_level)
83 newbreak = loop_level;
84
85 breaking = newbreak;
86
87 return (EXECUTION_SUCCESS);
88}
89
90$BUILTIN continue
91$FUNCTION continue_builtin
92$SHORT_DOC continue [n]
Jari Aalto31859422009-01-12 13:36:28 +000093Resume for, while, or until loops.
94
95Resumes the next iteration of the enclosing FOR, WHILE or UNTIL loop.
96If N is specified, resumes the Nth enclosing loop.
97
98Exit Status:
99The exit status is 0 unless N is not greater than or equal to 1.
Jari Aalto726f6381996-08-26 18:22:31 +0000100$END
101
102/* Set up to continue x levels, where x defaults to 1, but can be specified
103 as the first argument. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000104int
Jari Aalto726f6381996-08-26 18:22:31 +0000105continue_builtin (list)
106 WORD_LIST *list;
107{
Jari Aalto7117c2d2002-07-17 14:10:11 +0000108 intmax_t newcont;
Jari Aalto726f6381996-08-26 18:22:31 +0000109
Jari Aaltod166f041997-06-05 14:59:13 +0000110 if (check_loop_level () == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +0000111 return (EXECUTION_SUCCESS);
Jari Aalto726f6381996-08-26 18:22:31 +0000112
Jari Aalto31859422009-01-12 13:36:28 +0000113 (void)get_numeric_arg (list, 1, &newcont);
Jari Aalto726f6381996-08-26 18:22:31 +0000114
115 if (newcont <= 0)
Jari Aaltod166f041997-06-05 14:59:13 +0000116 {
Jari Aalto31859422009-01-12 13:36:28 +0000117 sh_erange (list->word->word, _("loop count"));
Jari Aaltod166f041997-06-05 14:59:13 +0000118 breaking = loop_level;
119 return (EXECUTION_FAILURE);
120 }
Jari Aalto726f6381996-08-26 18:22:31 +0000121
122 if (newcont > loop_level)
123 newcont = loop_level;
124
125 continuing = newcont;
126
127 return (EXECUTION_SUCCESS);
128}
129
130/* Return non-zero if a break or continue command would be okay.
131 Print an error message if break or continue is meaningless here. */
132static int
133check_loop_level ()
134{
135#if defined (BREAK_COMPLAINS)
Jari Aalto28ef6c32001-04-06 19:14:31 +0000136 if (loop_level == 0 && posixly_correct == 0)
Jari Aaltob80f6442004-07-27 13:29:18 +0000137 builtin_error (_("only meaningful in a `for', `while', or `until' loop"));
Jari Aalto726f6381996-08-26 18:22:31 +0000138#endif /* BREAK_COMPLAINS */
139
140 return (loop_level);
141}