1 /* Copyright (C) 2002, 2003, 2005 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. */
33 #include "libgfortran.h"
38 UNIT_LOCK is a master lock, protecting UNIT_ROOT tree and UNIT_CACHE.
39 Concurrent use of different units should be supported, so
40 each unit has its own lock, LOCK.
41 Open should be atomic with its reopening of units and list_read.c
42 in several places needs find_unit another unit while holding stdin
43 unit's lock, so it must be possible to acquire UNIT_LOCK while holding
44 some unit's lock. Therefore to avoid deadlocks, it is forbidden
45 to acquire unit's private locks while holding UNIT_LOCK, except
46 for freshly created units (where no other thread can get at their
47 address yet) or when using just trylock rather than lock operation.
48 In addition to unit's private lock each unit has a WAITERS counter
49 and CLOSED flag. WAITERS counter must be either only
50 atomically incremented/decremented in all places (if atomic builtins
51 are supported), or protected by UNIT_LOCK in all places (otherwise).
52 CLOSED flag must be always protected by unit's LOCK.
53 After finding a unit in UNIT_CACHE or UNIT_ROOT with UNIT_LOCK held,
54 WAITERS must be incremented to avoid concurrent close from freeing
55 the unit between unlocking UNIT_LOCK and acquiring unit's LOCK.
56 Unit freeing is always done under UNIT_LOCK. If close_unit sees any
57 WAITERS, it doesn't free the unit but instead sets the CLOSED flag
58 and the thread that decrements WAITERS to zero while CLOSED flag is
59 set is responsible for freeing it (while holding UNIT_LOCK).
60 flush_all_units operation is iterating over the unit tree with
61 increasing UNIT_NUMBER while holding UNIT_LOCK and attempting to
62 flush each unit (and therefore needs the unit's LOCK held as well).
63 To avoid deadlocks, it just trylocks the LOCK and if unsuccessful,
64 remembers the current unit's UNIT_NUMBER, unlocks UNIT_LOCK, acquires
65 unit's LOCK and after flushing reacquires UNIT_LOCK and restarts with
66 the smallest UNIT_NUMBER above the last one flushed.
68 If find_unit/find_or_create_unit/find_file/get_unit routines return
69 non-NULL, the returned unit has its private lock locked and when the
70 caller is done with it, it must call either unlock_unit or close_unit
71 on it. unlock_unit or close_unit must be always called only with the
74 /* Subroutines related to units */
78 static gfc_unit
*unit_cache
[CACHE_SIZE
];
79 gfc_offset max_offset
;
81 #ifdef __GTHREAD_MUTEX_INIT
82 __gthread_mutex_t unit_lock
= __GTHREAD_MUTEX_INIT
;
84 __gthread_mutex_t unit_lock
;
87 /* This implementation is based on Stefan Nilsson's article in the
88 * July 1997 Doctor Dobb's Journal, "Treaps in Java". */
90 /* pseudo_random()-- Simple linear congruential pseudorandom number
91 * generator. The period of this generator is 44071, which is plenty
92 * for our purposes. */
99 x0
= (22611 * x0
+ 10) % 44071;
104 /* rotate_left()-- Rotate the treap left */
107 rotate_left (gfc_unit
* t
)
112 t
->right
= t
->right
->left
;
119 /* rotate_right()-- Rotate the treap right */
122 rotate_right (gfc_unit
* t
)
127 t
->left
= t
->left
->right
;
136 compare (int a
, int b
)
147 /* insert()-- Recursive insertion function. Returns the updated treap. */
150 insert (gfc_unit
*new, gfc_unit
*t
)
157 c
= compare (new->unit_number
, t
->unit_number
);
161 t
->left
= insert (new, t
->left
);
162 if (t
->priority
< t
->left
->priority
)
163 t
= rotate_right (t
);
168 t
->right
= insert (new, t
->right
);
169 if (t
->priority
< t
->right
->priority
)
174 internal_error (NULL
, "insert(): Duplicate key found!");
180 /* insert_unit()-- Create a new node, insert it into the treap. */
185 gfc_unit
*u
= get_mem (sizeof (gfc_unit
));
186 memset (u
, '\0', sizeof (gfc_unit
));
188 #ifdef __GTHREAD_MUTEX_INIT
190 __gthread_mutex_t tmp
= __GTHREAD_MUTEX_INIT
;
194 __GTHREAD_MUTEX_INIT_FUNCTION (&u
->lock
);
196 __gthread_mutex_lock (&u
->lock
);
197 u
->priority
= pseudo_random ();
198 unit_root
= insert (u
, unit_root
);
204 delete_root (gfc_unit
* t
)
210 if (t
->right
== NULL
)
213 if (t
->left
->priority
> t
->right
->priority
)
215 temp
= rotate_right (t
);
216 temp
->right
= delete_root (t
);
220 temp
= rotate_left (t
);
221 temp
->left
= delete_root (t
);
228 /* delete_treap()-- Delete an element from a tree. The 'old' value
229 * does not necessarily have to point to the element to be deleted, it
230 * must just point to a treap structure with the key to be deleted.
231 * Returns the new root node of the tree. */
234 delete_treap (gfc_unit
* old
, gfc_unit
* t
)
241 c
= compare (old
->unit_number
, t
->unit_number
);
244 t
->left
= delete_treap (old
, t
->left
);
246 t
->right
= delete_treap (old
, t
->right
);
254 /* delete_unit()-- Delete a unit from a tree */
257 delete_unit (gfc_unit
* old
)
259 unit_root
= delete_treap (old
, unit_root
);
263 /* get_external_unit()-- Given an integer, return a pointer to the unit
264 * structure. Returns NULL if the unit does not exist,
265 * otherwise returns a locked unit. */
268 get_external_unit (int n
, int do_create
)
273 __gthread_mutex_lock (&unit_lock
);
275 for (c
= 0; c
< CACHE_SIZE
; c
++)
276 if (unit_cache
[c
] != NULL
&& unit_cache
[c
]->unit_number
== n
)
285 c
= compare (n
, p
->unit_number
);
294 if (p
== NULL
&& do_create
)
302 for (c
= 0; c
< CACHE_SIZE
- 1; c
++)
303 unit_cache
[c
] = unit_cache
[c
+ 1];
305 unit_cache
[CACHE_SIZE
- 1] = p
;
310 /* Newly created units have their lock held already
311 from insert_unit. Just unlock UNIT_LOCK and return. */
312 __gthread_mutex_unlock (&unit_lock
);
320 if (! __gthread_mutex_trylock (&p
->lock
))
322 /* assert (p->closed == 0); */
323 __gthread_mutex_unlock (&unit_lock
);
327 inc_waiting_locked (p
);
330 __gthread_mutex_unlock (&unit_lock
);
334 __gthread_mutex_lock (&p
->lock
);
337 __gthread_mutex_lock (&unit_lock
);
338 __gthread_mutex_unlock (&p
->lock
);
339 if (predec_waiting_locked (p
) == 0)
344 dec_waiting_unlocked (p
);
353 return get_external_unit (n
, 0);
358 find_or_create_unit (int n
)
360 return get_external_unit (n
, 1);
365 get_internal_unit (st_parameter_dt
*dtp
)
369 /* Allocate memory for a unit structure. */
371 iunit
= get_mem (sizeof (gfc_unit
));
374 generate_error (&dtp
->common
, ERROR_INTERNAL_UNIT
, NULL
);
378 memset (iunit
, '\0', sizeof (gfc_unit
));
379 #ifdef __GTHREAD_MUTEX_INIT
381 __gthread_mutex_t tmp
= __GTHREAD_MUTEX_INIT
;
385 __GTHREAD_MUTEX_INIT_FUNCTION (&iunit
->lock
);
387 __gthread_mutex_lock (&iunit
->lock
);
389 iunit
->recl
= dtp
->internal_unit_len
;
391 /* For internal units we set the unit number to -1.
392 Otherwise internal units can be mistaken for a pre-connected unit or
393 some other file I/O unit. */
394 iunit
->unit_number
= -1;
396 /* Set up the looping specification from the array descriptor, if any. */
398 if (is_array_io (dtp
))
400 iunit
->rank
= GFC_DESCRIPTOR_RANK (dtp
->internal_unit_desc
);
401 iunit
->ls
= (array_loop_spec
*)
402 get_mem (iunit
->rank
* sizeof (array_loop_spec
));
403 dtp
->internal_unit_len
*=
404 init_loop_spec (dtp
->internal_unit_desc
, iunit
->ls
);
407 /* Set initial values for unit parameters. */
409 iunit
->s
= open_internal (dtp
->internal_unit
, dtp
->internal_unit_len
);
410 iunit
->bytes_left
= iunit
->recl
;
411 iunit
->last_record
=0;
413 iunit
->current_record
=0;
416 /* Set flags for the internal unit. */
418 iunit
->flags
.access
= ACCESS_SEQUENTIAL
;
419 iunit
->flags
.action
= ACTION_READWRITE
;
420 iunit
->flags
.form
= FORM_FORMATTED
;
421 iunit
->flags
.pad
= PAD_YES
;
422 iunit
->flags
.status
= STATUS_UNSPECIFIED
;
423 iunit
->endfile
= NO_ENDFILE
;
425 /* Initialize the data transfer parameters. */
427 dtp
->u
.p
.advance_status
= ADVANCE_YES
;
428 dtp
->u
.p
.blank_status
= BLANK_UNSPECIFIED
;
429 dtp
->u
.p
.seen_dollar
= 0;
431 dtp
->u
.p
.pending_spaces
= 0;
432 dtp
->u
.p
.max_pos
= 0;
434 /* This flag tells us the unit is assigned to internal I/O. */
436 dtp
->u
.p
.unit_is_internal
= 1;
442 /* free_internal_unit()-- Free memory allocated for internal units if any. */
444 free_internal_unit (st_parameter_dt
*dtp
)
446 if (!is_internal_unit (dtp
))
449 if (dtp
->u
.p
.current_unit
->ls
!= NULL
)
450 free_mem (dtp
->u
.p
.current_unit
->ls
);
452 sclose (dtp
->u
.p
.current_unit
->s
);
454 if (dtp
->u
.p
.current_unit
!= NULL
)
455 free_mem (dtp
->u
.p
.current_unit
);
459 /* get_unit()-- Returns the unit structure associated with the integer
460 * unit or the internal file. */
463 get_unit (st_parameter_dt
*dtp
, int do_create
)
466 if ((dtp
->common
.flags
& IOPARM_DT_HAS_INTERNAL_UNIT
) != 0)
467 return get_internal_unit(dtp
);
469 /* Has to be an external unit */
471 dtp
->u
.p
.unit_is_internal
= 0;
472 dtp
->internal_unit_desc
= NULL
;
474 return get_external_unit (dtp
->common
.unit
, do_create
);
478 /* is_internal_unit()-- Determine if the current unit is internal or not */
481 is_internal_unit (st_parameter_dt
*dtp
)
483 return dtp
->u
.p
.unit_is_internal
;
487 /* is_array_io ()-- Determine if the I/O is to/from an array */
490 is_array_io (st_parameter_dt
*dtp
)
492 return dtp
->internal_unit_desc
!= NULL
;
496 /* is_stream_io () -- Determine if I/O is access="stream" mode */
499 is_stream_io (st_parameter_dt
*dtp
)
501 return dtp
->u
.p
.current_unit
->flags
.access
== ACCESS_STREAM
;
505 /*************************/
506 /* Initialize everything */
514 #ifndef __GTHREAD_MUTEX_INIT
515 __GTHREAD_MUTEX_INIT_FUNCTION (&unit_lock
);
518 if (options
.stdin_unit
>= 0)
520 u
= insert_unit (options
.stdin_unit
);
521 u
->s
= input_stream ();
523 u
->flags
.action
= ACTION_READ
;
525 u
->flags
.access
= ACCESS_SEQUENTIAL
;
526 u
->flags
.form
= FORM_FORMATTED
;
527 u
->flags
.status
= STATUS_OLD
;
528 u
->flags
.blank
= BLANK_NULL
;
529 u
->flags
.pad
= PAD_YES
;
530 u
->flags
.position
= POSITION_ASIS
;
532 u
->recl
= options
.default_recl
;
533 u
->endfile
= NO_ENDFILE
;
535 __gthread_mutex_unlock (&u
->lock
);
538 if (options
.stdout_unit
>= 0)
540 u
= insert_unit (options
.stdout_unit
);
541 u
->s
= output_stream ();
543 u
->flags
.action
= ACTION_WRITE
;
545 u
->flags
.access
= ACCESS_SEQUENTIAL
;
546 u
->flags
.form
= FORM_FORMATTED
;
547 u
->flags
.status
= STATUS_OLD
;
548 u
->flags
.blank
= BLANK_NULL
;
549 u
->flags
.position
= POSITION_ASIS
;
551 u
->recl
= options
.default_recl
;
552 u
->endfile
= AT_ENDFILE
;
554 __gthread_mutex_unlock (&u
->lock
);
557 if (options
.stderr_unit
>= 0)
559 u
= insert_unit (options
.stderr_unit
);
560 u
->s
= error_stream ();
562 u
->flags
.action
= ACTION_WRITE
;
564 u
->flags
.access
= ACCESS_SEQUENTIAL
;
565 u
->flags
.form
= FORM_FORMATTED
;
566 u
->flags
.status
= STATUS_OLD
;
567 u
->flags
.blank
= BLANK_NULL
;
568 u
->flags
.position
= POSITION_ASIS
;
570 u
->recl
= options
.default_recl
;
571 u
->endfile
= AT_ENDFILE
;
573 __gthread_mutex_unlock (&u
->lock
);
576 /* Calculate the maximum file offset in a portable manner.
577 * max will be the largest signed number for the type gfc_offset.
579 * set a 1 in the LSB and keep a running sum, stopping at MSB-1 bit. */
582 for (i
= 0; i
< sizeof (max_offset
) * 8 - 1; i
++)
583 max_offset
= max_offset
+ ((gfc_offset
) 1 << i
);
588 close_unit_1 (gfc_unit
*u
, int locked
)
592 rc
= (u
->s
== NULL
) ? 0 : sclose (u
->s
) == FAILURE
;
596 __gthread_mutex_lock (&unit_lock
);
598 for (i
= 0; i
< CACHE_SIZE
; i
++)
599 if (unit_cache
[i
] == u
)
600 unit_cache
[i
] = NULL
;
610 __gthread_mutex_unlock (&u
->lock
);
612 /* If there are any threads waiting in find_unit for this unit,
613 avoid freeing the memory, the last such thread will free it
619 __gthread_mutex_unlock (&unit_lock
);
625 unlock_unit (gfc_unit
*u
)
627 __gthread_mutex_unlock (&u
->lock
);
630 /* close_unit()-- Close a unit. The stream is closed, and any memory
631 * associated with the stream is freed. Returns nonzero on I/O error.
632 * Should be called with the u->lock locked. */
635 close_unit (gfc_unit
*u
)
637 return close_unit_1 (u
, 0);
641 /* close_units()-- Delete units on completion. We just keep deleting
642 * the root of the treap until there is nothing left.
643 * Not sure what to do with locking here. Some other thread might be
644 * holding some unit's lock and perhaps hold it indefinitely
645 * (e.g. waiting for input from some pipe) and close_units shouldn't
646 * delay the program too much. */
651 __gthread_mutex_lock (&unit_lock
);
652 while (unit_root
!= NULL
)
653 close_unit_1 (unit_root
, 1);
654 __gthread_mutex_unlock (&unit_lock
);