i-bash/builtins/break.def

131 lines
3.1 KiB
Modula-2
Raw Normal View History

1996-08-26 18:22:31 +00:00
This file is break.def, from which is created break.c.
It implements the builtins "break" and "continue" in Bash.
2002-07-17 14:10:11 +00:00
Copyright (C) 1987-2002 Free Software Foundation, Inc.
1996-08-26 18:22:31 +00:00
This file is part of GNU Bash, the Bourne Again SHell.
Bash 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
2000-03-17 21:46:59 +00:00
Software Foundation; either version 2, or (at your option) any later
1996-08-26 18:22:31 +00:00
version.
Bash 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 Bash; see the file COPYING. If not, write to the Free Software
2000-03-17 21:46:59 +00:00
Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.
1996-08-26 18:22:31 +00:00
$PRODUCES break.c
$BUILTIN break
$FUNCTION break_builtin
$SHORT_DOC break [n]
Exit from within a FOR, WHILE or UNTIL loop. If N is specified,
break N levels.
$END
1996-12-23 17:02:34 +00:00
#include <config.h>
#if defined (HAVE_UNISTD_H)
1998-04-17 19:52:44 +00:00
# ifdef _MINIX
# include <sys/types.h>
# endif
# include <unistd.h>
1996-12-23 17:02:34 +00:00
#endif
1996-08-26 18:22:31 +00:00
#include "../shell.h"
1996-12-23 17:02:34 +00:00
#include "common.h"
1996-08-26 18:22:31 +00:00
extern char *this_command_name;
2001-04-06 19:14:31 +00:00
extern int posixly_correct;
1996-08-26 18:22:31 +00:00
2001-11-13 17:56:06 +00:00
static int check_loop_level __P((void));
1996-08-26 18:22:31 +00:00
/* The depth of while's and until's. */
int loop_level = 0;
/* Non-zero when a "break" instruction is encountered. */
int breaking = 0;
/* Non-zero when we have encountered a continue instruction. */
int continuing = 0;
/* Set up to break x levels, where x defaults to 1, but can be specified
as the first argument. */
1996-12-23 17:02:34 +00:00
int
1996-08-26 18:22:31 +00:00
break_builtin (list)
WORD_LIST *list;
{
2002-07-17 14:10:11 +00:00
intmax_t newbreak;
1996-08-26 18:22:31 +00:00
1997-06-05 14:59:13 +00:00
if (check_loop_level () == 0)
2001-04-06 19:14:31 +00:00
return (EXECUTION_SUCCESS);
1996-08-26 18:22:31 +00:00
1997-06-05 14:59:13 +00:00
newbreak = get_numeric_arg (list, 1);
1996-08-26 18:22:31 +00:00
if (newbreak <= 0)
1997-06-05 14:59:13 +00:00
{
2002-07-17 14:10:11 +00:00
sh_erange (list->word->word, "loop count");
1997-06-05 14:59:13 +00:00
breaking = loop_level;
return (EXECUTION_FAILURE);
}
1996-08-26 18:22:31 +00:00
if (newbreak > loop_level)
newbreak = loop_level;
breaking = newbreak;
return (EXECUTION_SUCCESS);
}
$BUILTIN continue
$FUNCTION continue_builtin
$SHORT_DOC continue [n]
Resume the next iteration of the enclosing FOR, WHILE or UNTIL loop.
If N is specified, resume at the N-th enclosing loop.
$END
/* Set up to continue x levels, where x defaults to 1, but can be specified
as the first argument. */
1996-12-23 17:02:34 +00:00
int
1996-08-26 18:22:31 +00:00
continue_builtin (list)
WORD_LIST *list;
{
2002-07-17 14:10:11 +00:00
intmax_t newcont;
1996-08-26 18:22:31 +00:00
1997-06-05 14:59:13 +00:00
if (check_loop_level () == 0)
2001-04-06 19:14:31 +00:00
return (EXECUTION_SUCCESS);
1996-08-26 18:22:31 +00:00
1997-06-05 14:59:13 +00:00
newcont = get_numeric_arg (list, 1);
1996-08-26 18:22:31 +00:00
if (newcont <= 0)
1997-06-05 14:59:13 +00:00
{
2002-07-17 14:10:11 +00:00
sh_erange (list->word->word, "loop count");
1997-06-05 14:59:13 +00:00
breaking = loop_level;
return (EXECUTION_FAILURE);
}
1996-08-26 18:22:31 +00:00
if (newcont > loop_level)
newcont = loop_level;
continuing = newcont;
return (EXECUTION_SUCCESS);
}
/* Return non-zero if a break or continue command would be okay.
Print an error message if break or continue is meaningless here. */
static int
check_loop_level ()
{
#if defined (BREAK_COMPLAINS)
2001-04-06 19:14:31 +00:00
if (loop_level == 0 && posixly_correct == 0)
1996-12-23 17:02:34 +00:00
builtin_error ("only meaningful in a `for', `while', or `until' loop");
1996-08-26 18:22:31 +00:00
#endif /* BREAK_COMPLAINS */
return (loop_level);
}