1 /* This is part of libio/iostream, providing -*- C++ -*- input/output.
2 Copyright (C) 1993 Free Software Foundation
4 This file is part of the GNU IO Library. This library is free
5 software; you can redistribute it and/or modify it under the
6 terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2, or (at your option)
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this library; see the file COPYING. If not, write to the Free
17 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 As a special exception, if you link this library with files
20 compiled with a GNU compiler to produce an executable, this does not cause
21 the resulting executable to be covered by the GNU General Public License.
22 This exception does not however invalidate any other reasons why
23 the executable file might be covered by the GNU General Public License. */
29 istream
& istream::getline(char* buf
, int len
, char delim
)
40 _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile
,
42 streambuf
*sb
= rdbuf();
43 _gcount
= _IO_getline_info(sb
, buf
, len
- 1, delim
, -1, &ch
);
47 set (_gcount
== 0 ? (ios::failbit
|ios::eofbit
) : ios::eofbit
);
48 else if (ch
!= (unsigned char) delim
)
51 sb
->sungetc(); // Leave delimiter unread.
54 _IO_cleanup_region_end (0);
59 if (ch
== (unsigned char)delim
)
60 _gcount
++; // The delimiter is counted in the gcount().
64 istream
& istream::get(char* buf
, int len
, char delim
)
74 _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile
,
76 streambuf
*sbuf
= rdbuf();
78 _gcount
= _IO_getline_info(sbuf
, buf
, len
- 1, delim
, -1, &ch
);
79 if (_gcount
== 0 && ch
== EOF
)
80 set(ios::failbit
|ios::eofbit
);
82 _IO_cleanup_region_end (0);
91 #define CHUNK_SIZE 512
93 /* Reads an arbitrarily long input line terminated by a user-specified
94 TERMINATOR. Super-nifty trick using recursion avoids unnecessary calls
97 char *_sb_readline (streambuf
*sb
, long& total
, char terminator
)
103 _IO_size_t count
= _IO_getline_info(sb
, buf
, CHUNK_SIZE
, terminator
,
107 long old_total
= total
;
109 if (ch
!= EOF
&& ch
!= terminator
) {
110 total
++; // Include ch in total.
111 ptr
= _sb_readline(sb
, total
, terminator
);
113 memcpy(ptr
+ old_total
, buf
, count
);
114 ptr
[old_total
+count
] = ch
;
119 ptr
= new char[total
+1];
122 memcpy(ptr
+ total
- count
, buf
, count
);
127 /* Reads an arbitrarily long input line terminated by TERMINATOR.
128 This routine allocates its own memory, so the user should
129 only supply the address of a (char *). */
131 istream
& istream::gets(char **s
, char delim
/* = '\n' */)
134 _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile
,
137 streambuf
*sb
= rdbuf();
138 *s
= _sb_readline (sb
, size
, delim
);
139 _gcount
= *s
? size
: 0;
140 if (sb
->_flags
& _IO_EOF_SEEN
) {
146 _IO_cleanup_region_end (0);