-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Automatically allocate character variable in read statement #9
Comments
In this example program, I set an arbitrary value program read_lines
implicit none
type string_t
character(len=:), allocatable :: s
end type string_t
integer, parameter :: MAX_LINE_LENGTH=32
integer :: i, u, n_lines
character(len=MAX_LINE_LENGTH) :: current_line
type(string_t), allocatable :: lines(:)
write(*,*) 'Number of lines to read?'
read(*,*) n_lines
open(newunit=u, file='lines.txt')
allocate(lines(n_lines))
do i = 1, n_lines
read(u, '(a)') current_line
lines(i)%s = trim(current_line)
end do
do i = 1, n_lines
write(*,'(a)') lines(i)%s
end do
end program read_lines Ideally, I could replace this with an "allocation on program read_lines
implicit none
type string_t
character(len=:), allocatable :: s
end type string_t
integer :: i, u, n_lines
type(string_t), allocatable :: lines(:)
write(*,*) 'Number of lines to read?'
read(*,*) n_lines
open(newunit=u, file='lines.txt')
allocate(lines(n_lines))
do i = 1, n_lines
read(u, '(a)', alloc_on_read=.true.) lines(i)%s
end do
do i = 1, n_lines
write(*,'(a)') lines(i)%s
end do
end program read_lines |
@pdebuyl thank you. I think the proposal is for Let me discuss this with the members of the committee and see if this has a chance of getting in, and if so, write a paper for this. |
Here is a similar idea applied to a related problem: https://j3-fortran.org/doc/year/19/19-252.txt. |
@certik Yes, the usage I have in mind is specifically for read statements. In "J3/19-252", the automatic allocation is planned for error messages and function return values. I think that my proposal would come in addition to it. |
@pdebuyl yes, your proposal would be in addition to it. I posted it as an example that your proposal is not something unprecedented. |
VAX Fortran had an additional 'Q' descriptor that caused an integer variable to be assigned the length of the input line:
The purpose of this extension was to solve the problem of dealing with trailing blanks, i.e. to distinguish between trailing blanks of the empty buffer and those which are actually written in the file. The It would also be convenient to have this functionality for reading from standard input. The case of trailing blanks should be handled as well (see related question here). |
Fyi, you may have noticed the second-most popular item on the user feedback in 2017 to the WG5 survey for Fortran 2020 feature set was "Automatic Allocation on READ into ALLOCATABLE character or array". That item looks very much similar to your proposal here. Some questions: the survey feedback item lists "ALLOCATABLE character" or "ALLOCATABLE array". Would you consider both for your proposal or just the character type? If both, would you lean toward opening a separate issue for ALLOCATABLE array or modify this one along the lines of the survey item? Thanks, |
@FortranFan thanks. For now I just put a comment in the issue description above. Once somebody starts drafting a proposal for this, we can decide if we should split it into two, or put everything into just one proposal. |
There is a current thread in comp.lang.fortran that discusses this, https://groups.google.com/forum/#!topic/comp.lang.fortran/9_0q0dBRzpk The discussion starts off talking about stack sizes, but later (message of Ian Harvey, 9 jan) it verges into this proposal. Ian and Ron Shepard have an interesting exchange, wherein Ian expands on some of the problems it would cause. Alas I expect the Fortran standards committee will do the same, because AFAICS the problems are very real. |
Are you looking to just be able to read a line of arbitrary length into a CHARACTER variable or looking to be able to read other arrays like an arbitrary number of numeric values? Is this something like or something like the routines in I started looking at the discussion referenced above but it drifts thru quite a few topics. |
Ability to write arbitrary long lines from files to avoid MAX_LINE_LENGTH etc. Should be possible with allocatable character variable. Asked by Pierre de Buyl. More details below.
Similar thing for allocatable array, per a comment below.
The text was updated successfully, but these errors were encountered: