@@ -60,9 +60,49 @@ function isopen end
60
60
Close an I/O stream. Performs a [`flush`](@ref) first.
61
61
"""
62
62
function close end
63
+
64
+ """
65
+ shutdown(stream)
66
+
67
+ Shutdown the write half of a full-duplex I/O stream. Performs a [`flush`](@ref)
68
+ first. Notify the other end that no more data will be written to the underlying
69
+ file. This is not supported by all IO types.
70
+
71
+ # Examples
72
+ ```jldoctest
73
+ julia> io = Base.BufferStream(); # this never blocks, so we can read and write on the same Task
74
+
75
+ julia> write(io, "request");
76
+
77
+ julia> # calling `read(io)` here would block forever
78
+
79
+ julia> shutdown(io);
80
+
81
+ julia> read(io, String)
82
+ "request"
83
+ """
84
+ function shutdown end
85
+
86
+ """
87
+ flush(stream)
88
+
89
+ Commit all currently buffered writes to the given stream.
90
+ """
63
91
function flush end
64
- function wait_readnb end
65
- function wait_close end
92
+
93
+ """
94
+ bytesavailable(io)
95
+
96
+ Return the number of bytes available for reading before a read from this stream or buffer will block.
97
+
98
+ # Examples
99
+ ```jldoctest
100
+ julia> io = IOBuffer("JuliaLang is a GitHub organization");
101
+
102
+ julia> bytesavailable(io)
103
+ 34
104
+ ```
105
+ """
66
106
function bytesavailable end
67
107
68
108
"""
@@ -81,7 +121,7 @@ function readavailable end
81
121
"""
82
122
isreadable(io) -> Bool
83
123
84
- Return `true ` if the specified IO object is readable (if that can be determined) .
124
+ Return `false ` if the specified IO object is not readable .
85
125
86
126
# Examples
87
127
```jldoctest
@@ -99,12 +139,12 @@ true
99
139
julia> rm("myfile.txt")
100
140
```
101
141
"""
102
- function isreadable end
142
+ isreadable (io :: IO ) = isopen (io)
103
143
104
144
"""
105
145
iswritable(io) -> Bool
106
146
107
- Return `true ` if the specified IO object is writable (if that can be determined) .
147
+ Return `false ` if the specified IO object is not writable .
108
148
109
149
# Examples
110
150
```jldoctest
@@ -122,10 +162,23 @@ false
122
162
julia> rm("myfile.txt")
123
163
```
124
164
"""
125
- function iswritable end
126
- function copy end
165
+ iswritable (io:: IO ) = isopen (io)
166
+
167
+ """
168
+ eof(stream) -> Bool
169
+
170
+ Test whether an I/O stream is at end-of-file. If the stream is not yet exhausted, this
171
+ function will block to wait for more data if necessary, and then return `false`. Therefore
172
+ it is always safe to read one byte after seeing `eof` return `false`. `eof` will return
173
+ `false` as long as buffered data is still available, even if the remote end of a connection
174
+ is closed.
175
+ """
127
176
function eof end
128
177
178
+ function copy end
179
+ function wait_readnb end
180
+ function wait_close end
181
+
129
182
"""
130
183
read(io::IO, T)
131
184
@@ -357,65 +410,37 @@ end
357
410
function pipe_reader end
358
411
function pipe_writer end
359
412
413
+ for f in (:flush , :shutdown , :iswritable )
414
+ @eval $ (f)(io:: AbstractPipe ) = $ (f)(pipe_writer (io):: IO )
415
+ end
360
416
write (io:: AbstractPipe , byte:: UInt8 ) = write (pipe_writer (io):: IO , byte)
361
417
write (to:: IO , from:: AbstractPipe ) = write (to, pipe_reader (from))
362
418
unsafe_write (io:: AbstractPipe , p:: Ptr{UInt8} , nb:: UInt ) = unsafe_write (pipe_writer (io):: IO , p, nb):: Union{Int,UInt}
363
419
buffer_writes (io:: AbstractPipe , args... ) = buffer_writes (pipe_writer (io):: IO , args... )
364
- flush (io:: AbstractPipe ) = flush (pipe_writer (io):: IO )
365
420
421
+ for f in (
422
+ # peek/mark interface
423
+ :mark , :unmark , :reset , :ismarked ,
424
+ # Simple reader functions
425
+ :read , :readavailable , :bytesavailable , :reseteof , :isreadable )
426
+ @eval $ (f)(io:: AbstractPipe ) = $ (f)(pipe_reader (io):: IO )
427
+ end
366
428
read (io:: AbstractPipe , byte:: Type{UInt8} ) = read (pipe_reader (io):: IO , byte):: UInt8
367
429
unsafe_read (io:: AbstractPipe , p:: Ptr{UInt8} , nb:: UInt ) = unsafe_read (pipe_reader (io):: IO , p, nb)
368
- read (io:: AbstractPipe ) = read (pipe_reader (io):: IO )
369
430
readuntil (io:: AbstractPipe , arg:: UInt8 ; kw... ) = readuntil (pipe_reader (io):: IO , arg; kw... )
370
431
readuntil (io:: AbstractPipe , arg:: AbstractChar ; kw... ) = readuntil (pipe_reader (io):: IO , arg; kw... )
371
432
readuntil (io:: AbstractPipe , arg:: AbstractString ; kw... ) = readuntil (pipe_reader (io):: IO , arg; kw... )
372
433
readuntil (io:: AbstractPipe , arg:: AbstractVector ; kw... ) = readuntil (pipe_reader (io):: IO , arg; kw... )
373
434
readuntil_vector! (io:: AbstractPipe , target:: AbstractVector , keep:: Bool , out) = readuntil_vector! (pipe_reader (io):: IO , target, keep, out)
374
435
readbytes! (io:: AbstractPipe , target:: AbstractVector{UInt8} , n= length (target)) = readbytes! (pipe_reader (io):: IO , target, n)
375
-
376
- for f in (
377
- # peek/mark interface
378
- :mark , :unmark , :reset , :ismarked ,
379
- # Simple reader functions
380
- :readavailable , :isreadable )
381
- @eval $ (f)(io:: AbstractPipe ) = $ (f)(pipe_reader (io):: IO )
382
- end
383
436
peek (io:: AbstractPipe , :: Type{T} ) where {T} = peek (pipe_reader (io):: IO , T):: T
437
+ wait_readnb (io:: AbstractPipe , nb:: Int ) = wait_readnb (pipe_reader (io):: IO , nb)
438
+ eof (io:: AbstractPipe ) = eof (pipe_reader (io):: IO ):: Bool
384
439
385
- iswritable (io:: AbstractPipe ) = iswritable (pipe_writer (io):: IO )
386
440
isopen (io:: AbstractPipe ) = isopen (pipe_writer (io):: IO ) || isopen (pipe_reader (io):: IO )
387
441
close (io:: AbstractPipe ) = (close (pipe_writer (io):: IO ); close (pipe_reader (io):: IO ))
388
- wait_readnb (io:: AbstractPipe , nb:: Int ) = wait_readnb (pipe_reader (io):: IO , nb)
389
442
wait_close (io:: AbstractPipe ) = (wait_close (pipe_writer (io):: IO ); wait_close (pipe_reader (io):: IO ))
390
443
391
- """
392
- bytesavailable(io)
393
-
394
- Return the number of bytes available for reading before a read from this stream or buffer will block.
395
-
396
- # Examples
397
- ```jldoctest
398
- julia> io = IOBuffer("JuliaLang is a GitHub organization");
399
-
400
- julia> bytesavailable(io)
401
- 34
402
- ```
403
- """
404
- bytesavailable (io:: AbstractPipe ) = bytesavailable (pipe_reader (io):: IO )
405
- bytesavailable (io:: DevNull ) = 0
406
-
407
- """
408
- eof(stream) -> Bool
409
-
410
- Test whether an I/O stream is at end-of-file. If the stream is not yet exhausted, this
411
- function will block to wait for more data if necessary, and then return `false`. Therefore
412
- it is always safe to read one byte after seeing `eof` return `false`. `eof` will return
413
- `false` as long as buffered data is still available, even if the remote end of a connection
414
- is closed.
415
- """
416
- eof (io:: AbstractPipe ) = eof (pipe_reader (io):: IO ):: Bool
417
- reseteof (io:: AbstractPipe ) = reseteof (pipe_reader (io):: IO )
418
-
419
444
420
445
# Exception-safe wrappers (io = open(); try f(io) finally close(io))
421
446
@@ -1119,11 +1144,6 @@ ismarked(io::IO) = io.mark >= 0
1119
1144
# Make sure all IO streams support flush, even if only as a no-op,
1120
1145
# to make it easier to write generic I/O code.
1121
1146
1122
- """
1123
- flush(stream)
1124
-
1125
- Commit all currently buffered writes to the given stream.
1126
- """
1127
1147
flush (io:: IO ) = nothing
1128
1148
1129
1149
"""
0 commit comments