1 /* Copyright (C) 2002, 2003, 2005, 2007 Free Software Foundation, Inc.
2 Contributed by Andy Vaught
4 This file is part of the GNU Fortran 95 runtime library (libgfortran).
6 Libgfortran is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 In addition to the permissions in the GNU General Public License, the
12 Free Software Foundation gives you unlimited permission to link the
13 compiled version of this file into combinations with other programs,
14 and to distribute those combinations without any restriction coming
15 from the use of this file. (The General Public License restrictions
16 do apply in other respects; for example, they cover modification of
17 the file, and distribution when not linked into a combine
20 Libgfortran is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with libgfortran; see the file COPYING. If not, write to
27 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
28 Boston, MA 02110-1301, USA. */
30 #include "libgfortran.h"
37 /* Environment scanner. Examine the environment for controlling minor
38 * aspects of the program's execution. Our philosophy here that the
39 * environment should not prevent the program from running, so an
40 * environment variable with a messed-up value will be interpreted in
43 * Most of the environment is checked early in the startup sequence,
44 * but other variables are checked during execution of the user's
50 typedef struct variable
54 void (*init
) (struct variable
*);
55 void (*show
) (struct variable
*);
61 static void init_unformatted (variable
*);
63 /* print_spaces()-- Print a particular number of spaces. */
74 for (i
= 0; i
< n
; i
++)
83 /* var_source()-- Return a string that describes where the value of a
84 * variable comes from */
87 var_source (variable
* v
)
89 if (getenv (v
->name
) == NULL
)
99 /* init_integer()-- Initialize an integer environment variable. */
102 init_integer (variable
* v
)
106 p
= getenv (v
->name
);
111 if (!isdigit (*q
) && (p
!= q
|| *q
!= '-'))
126 /* init_unsigned_integer()-- Initialize an integer environment variable
127 which has to be positive. */
130 init_unsigned_integer (variable
* v
)
134 p
= getenv (v
->name
);
154 /* show_integer()-- Show an integer environment variable */
157 show_integer (variable
* v
)
159 st_printf ("%s %d\n", var_source (v
), *v
->var
);
163 /* init_boolean()-- Initialize a boolean environment variable. We
164 * only look at the first letter of the variable. */
167 init_boolean (variable
* v
)
171 p
= getenv (v
->name
);
175 if (*p
== '1' || *p
== 'Y' || *p
== 'y')
181 if (*p
== '0' || *p
== 'N' || *p
== 'n')
195 /* show_boolean()-- Show a boolean environment variable */
198 show_boolean (variable
* v
)
200 st_printf ("%s %s\n", var_source (v
), *v
->var
? "Yes" : "No");
205 init_sep (variable
* v
)
210 p
= getenv (v
->name
);
215 options
.separator
= p
;
216 options
.separator_len
= strlen (p
);
218 /* Make sure the separator is valid */
220 if (options
.separator_len
== 0)
243 options
.separator
= " ";
244 options
.separator_len
= 1;
249 show_sep (variable
* v
)
251 st_printf ("%s \"%s\"\n", var_source (v
), options
.separator
);
256 init_string (variable
* v
__attribute__ ((unused
)))
261 show_string (variable
* v
)
265 p
= getenv (v
->name
);
269 st_printf ("%s \"%s\"\n", var_source (v
), p
);
273 static variable variable_table
[] = {
274 {"GFORTRAN_STDIN_UNIT", GFC_STDIN_UNIT_NUMBER
, &options
.stdin_unit
,
275 init_integer
, show_integer
,
276 "Unit number that will be preconnected to standard input\n"
277 "(No preconnection if negative)", 0},
279 {"GFORTRAN_STDOUT_UNIT", GFC_STDOUT_UNIT_NUMBER
, &options
.stdout_unit
,
280 init_integer
, show_integer
,
281 "Unit number that will be preconnected to standard output\n"
282 "(No preconnection if negative)", 0},
284 {"GFORTRAN_STDERR_UNIT", GFC_STDERR_UNIT_NUMBER
, &options
.stderr_unit
,
285 init_integer
, show_integer
,
286 "Unit number that will be preconnected to standard error\n"
287 "(No preconnection if negative)", 0},
289 {"GFORTRAN_USE_STDERR", 1, &options
.use_stderr
, init_boolean
,
291 "Sends library output to standard error instead of standard output.", 0},
293 {"GFORTRAN_TMPDIR", 0, NULL
, init_string
, show_string
,
294 "Directory for scratch files. Overrides the TMP environment variable\n"
295 "If TMP is not set " DEFAULT_TEMPDIR
" is used.", 0},
297 {"GFORTRAN_UNBUFFERED_ALL", 0, &options
.all_unbuffered
, init_boolean
,
299 "If TRUE, all output is unbuffered. This will slow down large writes "
300 "but can be\nuseful for forcing data to be displayed immediately.", 0},
302 {"GFORTRAN_UNBUFFERED_PRECONNECTED", 0, &options
.unbuffered_preconnected
,
303 init_boolean
, show_boolean
,
304 "If TRUE, output to preconnected units is unbuffered.", 0},
306 {"GFORTRAN_SHOW_LOCUS", 1, &options
.locus
, init_boolean
, show_boolean
,
307 "If TRUE, print filename and line number where runtime errors happen.", 0},
309 {"GFORTRAN_OPTIONAL_PLUS", 0, &options
.optional_plus
, init_boolean
, show_boolean
,
310 "Print optional plus signs in numbers where permitted. Default FALSE.", 0},
312 {"GFORTRAN_DEFAULT_RECL", DEFAULT_RECL
, &options
.default_recl
,
313 init_unsigned_integer
, show_integer
,
314 "Default maximum record length for sequential files. Most useful for\n"
315 "adjusting line length of preconnected units. Default "
316 stringize (DEFAULT_RECL
), 0},
318 {"GFORTRAN_LIST_SEPARATOR", 0, NULL
, init_sep
, show_sep
,
319 "Separator to use when writing list output. May contain any number of "
320 "spaces\nand at most one comma. Default is a single space.", 0},
322 /* GFORTRAN_CONVERT_UNIT - Set the default data conversion for
324 {"GFORTRAN_CONVERT_UNIT", 0, 0, init_unformatted
, show_string
,
325 "Set format for unformatted files", 0},
327 /* Behaviour when encoutering a runtime error. */
328 {"GFORTRAN_ERROR_DUMPCORE", -1, &options
.dump_core
,
329 init_boolean
, show_boolean
,
330 "Dump a core file (if possible) on runtime error", -1},
332 {"GFORTRAN_ERROR_BACKTRACE", -1, &options
.backtrace
,
333 init_boolean
, show_boolean
,
334 "Print out a backtrace (if possible) on runtime error", -1},
336 {NULL
, 0, NULL
, NULL
, NULL
, NULL
, 0}
340 /* init_variables()-- Initialize most runtime variables from
341 * environment variables. */
344 init_variables (void)
348 for (v
= variable_table
; v
->name
; v
++)
354 show_variables (void)
359 /* TODO: print version number. */
360 st_printf ("GNU Fortran 95 runtime library version "
363 st_printf ("Environment variables:\n");
364 st_printf ("----------------------\n");
366 for (v
= variable_table
; v
->name
; v
++)
368 n
= st_printf ("%s", v
->name
);
369 print_spaces (25 - n
);
371 if (v
->show
== show_integer
)
372 st_printf ("Integer ");
373 else if (v
->show
== show_boolean
)
374 st_printf ("Boolean ");
376 st_printf ("String ");
379 st_printf ("%s\n\n", v
->desc
);
382 /* System error codes */
384 st_printf ("\nRuntime error codes:");
385 st_printf ("\n--------------------\n");
387 for (n
= LIBERROR_FIRST
+ 1; n
< LIBERROR_LAST
; n
++)
389 st_printf ("%d %s\n", n
, translate_error (n
));
391 st_printf (" %d %s\n", n
, translate_error (n
));
393 st_printf ("\nCommand line arguments:\n");
394 st_printf (" --help Print this list\n");
396 /* st_printf(" --resume <dropfile> Resume program execution from dropfile\n"); */
401 /* This is the handling of the GFORTRAN_CONVERT_UNITS environment variable.
402 It is called from environ.c to parse this variable, and from
403 open.c to determine if the user specified a default for an
405 The syntax of the environment variable is, in bison grammar:
407 GFORTRAN_CONVERT_UNITS: mode | mode ';' exception ;
408 mode: 'native' | 'swap' | 'big_endian' | 'little_endian' ;
409 exception: mode ':' unit_list | unit_list ;
410 unit_list: unit_spec | unit_list unit_spec ;
411 unit_spec: INTEGER | INTEGER '-' INTEGER ;
414 /* Defines for the tokens. Other valid tokens are ',', ':', '-'. */
421 /* Some space for additional tokens later. */
433 static char *p
; /* Main character pointer for parsing. */
434 static char *lastpos
; /* Auxiliary pointer, for backing up. */
435 static int unit_num
; /* The last unit number read. */
436 static int unit_count
; /* The number of units found. */
437 static int do_count
; /* Parsing is done twice - first to count the number
438 of units, then to fill in the table. This
439 variable controls what to do. */
440 static exception_t
*elist
; /* The list of exceptions to the default. This is
441 sorted according to unit number. */
442 static int n_elist
; /* Number of exceptions to the default. */
444 static unit_convert endian
; /* Current endianness. */
446 static unit_convert def
; /* Default as specified (if any). */
448 /* Search for a unit number, using a binary search. The
449 first argument is the unit number to search for. The second argument
450 is a pointer to an index.
451 If the unit number is found, the function returns 1, and the index
452 is that of the element.
453 If the unit number is not found, the function returns 0, and the
454 index is the one where the element would be inserted. */
457 search_unit (int unit
, int *ip
)
463 while (high
- low
> 1)
465 mid
= (low
+ high
) / 2;
466 if (unit
<= elist
[mid
].unit
)
472 if (elist
[high
].unit
== unit
)
478 /* This matches a keyword. If it is found, return the token supplied,
479 otherwise return ILLEGAL. */
482 match_word (const char *word
, int tok
)
486 if (strncasecmp (p
, word
, strlen (word
)) == 0)
497 /* Match an integer and store its value in unit_num. This only works
498 if p actually points to the start of an integer. The caller has
506 unit_num
= unit_num
* 10 + (*p
++ - '0');
511 /* This reads the next token from the GFORTRAN_CONVERT_UNITS variable.
512 Returned values are the different tokens. */
536 result
= match_word ("big_endian", BIG
);
541 result
= match_word ("little_endian", LITTLE
);
546 result
= match_word ("native", NATIVE
);
551 result
= match_word ("swap", SWAP
);
554 case '1': case '2': case '3': case '4': case '5':
555 case '6': case '7': case '8': case '9':
556 result
= match_integer ();
566 /* Back up the last token by setting back the character pointer. */
574 /* This is called when a unit is identified. If do_count is nonzero,
575 increment the number of units by one. If do_count is zero,
576 put the unit into the table. */
579 mark_single (int unit
)
588 if (search_unit (unit
, &i
))
590 elist
[unit
].conv
= endian
;
594 for (j
=n_elist
; j
>=i
; j
--)
595 elist
[j
+1] = elist
[j
];
598 elist
[i
].unit
= unit
;
599 elist
[i
].conv
= endian
;
603 /* This is called when a unit range is identified. If do_count is
604 nonzero, increase the number of units. If do_count is zero,
605 put the unit into the table. */
608 mark_range (int unit1
, int unit2
)
612 unit_count
+= abs (unit2
- unit1
) + 1;
616 for (i
=unit2
; i
<=unit1
; i
++)
619 for (i
=unit1
; i
<=unit2
; i
++)
624 /* Parse the GFORTRAN_CONVERT_UNITS variable. This is called
625 twice, once to count the units and once to actually mark them in
626 the table. When counting, we don't check for double occurrences
641 /* Parse the string. First, let's look for a default. */
646 endian
= GFC_CONVERT_NATIVE
;
650 endian
= GFC_CONVERT_SWAP
;
654 endian
= GFC_CONVERT_BIG
;
658 endian
= GFC_CONVERT_LITTLE
;
662 /* A leading digit means that we are looking at an exception.
663 Reset the position to the beginning, and continue processing
664 at the exception list. */
686 /* This isn't a default after all. Reset the position to the
687 beginning, and continue processing at the exception list. */
704 /* Loop over all exceptions. */
711 if (next_token () != ':')
713 endian
= GFC_CONVERT_NATIVE
;
717 if (next_token () != ':')
719 endian
= GFC_CONVERT_SWAP
;
723 if (next_token () != ':')
725 endian
= GFC_CONVERT_LITTLE
;
729 if (next_token () != ':')
731 endian
= GFC_CONVERT_BIG
;
746 /* We arrive here when we want to parse a list of
757 /* The number can be followed by a - and another number,
758 which means that this is a unit range, a comma
762 if (next_token () != INTEGER
)
765 mark_range (unit1
, unit_num
);
794 } while (continue_ulist
);
799 def
= GFC_CONVERT_NONE
;
803 void init_unformatted (variable
* v
)
806 val
= getenv (v
->name
);
807 def
= GFC_CONVERT_NONE
;
822 elist
= get_mem (unit_count
* sizeof (exception_t
));
829 /* Get the default conversion for for an unformatted unit. */
832 get_unformatted_convert (int unit
)
838 else if (search_unit (unit
, &i
))
839 return elist
[i
].conv
;