Skip to content
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

Open
certik opened this issue Oct 16, 2019 · 10 comments
Open

Automatically allocate character variable in read statement #9

certik opened this issue Oct 16, 2019 · 10 comments
Labels
Clause 12 Standard Clause 12: Input/output statements unsubmitted Has not been submitted to the committee yet

Comments

@certik
Copy link
Member

certik commented Oct 16, 2019

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.

@zjibben zjibben added the unsubmitted Has not been submitted to the committee yet label Oct 16, 2019
@pdebuyl
Copy link

pdebuyl commented Oct 16, 2019

In this example program, I set an arbitrary value MAX_LINE_LENGTH.

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 read". The syntax below is just an example, of course.

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

@certik certik changed the title Abiity to write long lines Automatically allocate character variable in read statement Oct 16, 2019
@certik
Copy link
Member Author

certik commented Oct 16, 2019

@pdebuyl thank you. I think the proposal is for read() to automatically allocate your string variable to hold the full line, correct? I changed the title of the issue appropriately.

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.

@certik
Copy link
Member Author

certik commented Oct 16, 2019

Here is a similar idea applied to a related problem: https://j3-fortran.org/doc/year/19/19-252.txt.

@pdebuyl
Copy link

pdebuyl commented Oct 17, 2019

@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.

@certik
Copy link
Member Author

certik commented Oct 17, 2019

@pdebuyl yes, your proposal would be in addition to it. I posted it as an example that your proposal is not something unprecedented.

@ivan-pi
Copy link

ivan-pi commented Jan 2, 2020

VAX Fortran had an additional 'Q' descriptor that caused an integer variable to be assigned the length of the input line:

character*80 buffer
integer length

read(u,'(Q,A)') length, buffer

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 length variable would contain the length of what was actually read, discounting carriage control characters.

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).

@FortranFan
Copy link
Member

FortranFan commented Jan 14, 2020

@certik.

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,

@certik
Copy link
Member Author

certik commented Jan 14, 2020

@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.

@qolin1
Copy link

qolin1 commented Jan 15, 2020

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.

@urbanjost
Copy link

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
http://fortranwiki.org/fortran/show/readline

or something like the routines in
https://urbanjost.github.io/general-purpose-fortran/download/tmp/html/man3.html in the M_io module that read a file or numeric table into an array?

I started looking at the discussion referenced above but it drifts thru quite a few topics.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Clause 12 Standard Clause 12: Input/output statements unsubmitted Has not been submitted to the committee yet
Projects
None yet
Development

No branches or pull requests

8 participants