]> git.lizzy.rs Git - rust.git/blob - library/std/src/io/stdio.rs
Fix outdated comment about not needing to flush stderr.
[rust.git] / library / std / src / io / stdio.rs
1 #![cfg_attr(test, allow(unused))]
2
3 #[cfg(test)]
4 mod tests;
5
6 use crate::io::prelude::*;
7
8 use crate::cell::{Cell, RefCell};
9 use crate::fmt;
10 use crate::io::{self, BufReader, Initializer, IoSlice, IoSliceMut, LineWriter};
11 use crate::lazy::SyncOnceCell;
12 use crate::sync::atomic::{AtomicBool, Ordering};
13 use crate::sync::{Arc, Mutex, MutexGuard};
14 use crate::sys::stdio;
15 use crate::sys_common;
16 use crate::sys_common::remutex::{ReentrantMutex, ReentrantMutexGuard};
17
18 type LocalStream = Arc<Mutex<Vec<u8>>>;
19
20 thread_local! {
21     /// Used by the test crate to capture the output of the print macros and panics.
22     static OUTPUT_CAPTURE: Cell<Option<LocalStream>> = {
23         Cell::new(None)
24     }
25 }
26
27 /// Flag to indicate OUTPUT_CAPTURE is used.
28 ///
29 /// If it is None and was never set on any thread, this flag is set to false,
30 /// and OUTPUT_CAPTURE can be safely ignored on all threads, saving some time
31 /// and memory registering an unused thread local.
32 ///
33 /// Note about memory ordering: This contains information about whether a
34 /// thread local variable might be in use. Although this is a global flag, the
35 /// memory ordering between threads does not matter: we only want this flag to
36 /// have a consistent order between set_output_capture and print_to *within
37 /// the same thread*. Within the same thread, things always have a perfectly
38 /// consistent order. So Ordering::Relaxed is fine.
39 static OUTPUT_CAPTURE_USED: AtomicBool = AtomicBool::new(false);
40
41 /// A handle to a raw instance of the standard input stream of this process.
42 ///
43 /// This handle is not synchronized or buffered in any fashion. Constructed via
44 /// the `std::io::stdio::stdin_raw` function.
45 struct StdinRaw(stdio::Stdin);
46
47 /// A handle to a raw instance of the standard output stream of this process.
48 ///
49 /// This handle is not synchronized or buffered in any fashion. Constructed via
50 /// the `std::io::stdio::stdout_raw` function.
51 struct StdoutRaw(stdio::Stdout);
52
53 /// A handle to a raw instance of the standard output stream of this process.
54 ///
55 /// This handle is not synchronized or buffered in any fashion. Constructed via
56 /// the `std::io::stdio::stderr_raw` function.
57 struct StderrRaw(stdio::Stderr);
58
59 /// Constructs a new raw handle to the standard input of this process.
60 ///
61 /// The returned handle does not interact with any other handles created nor
62 /// handles returned by `std::io::stdin`. Data buffered by the `std::io::stdin`
63 /// handles is **not** available to raw handles returned from this function.
64 ///
65 /// The returned handle has no external synchronization or buffering.
66 #[unstable(feature = "libstd_sys_internals", issue = "none")]
67 const fn stdin_raw() -> StdinRaw {
68     StdinRaw(stdio::Stdin::new())
69 }
70
71 /// Constructs a new raw handle to the standard output stream of this process.
72 ///
73 /// The returned handle does not interact with any other handles created nor
74 /// handles returned by `std::io::stdout`. Note that data is buffered by the
75 /// `std::io::stdout` handles so writes which happen via this raw handle may
76 /// appear before previous writes.
77 ///
78 /// The returned handle has no external synchronization or buffering layered on
79 /// top.
80 #[unstable(feature = "libstd_sys_internals", issue = "none")]
81 const fn stdout_raw() -> StdoutRaw {
82     StdoutRaw(stdio::Stdout::new())
83 }
84
85 /// Constructs a new raw handle to the standard error stream of this process.
86 ///
87 /// The returned handle does not interact with any other handles created nor
88 /// handles returned by `std::io::stderr`.
89 ///
90 /// The returned handle has no external synchronization or buffering layered on
91 /// top.
92 #[unstable(feature = "libstd_sys_internals", issue = "none")]
93 const fn stderr_raw() -> StderrRaw {
94     StderrRaw(stdio::Stderr::new())
95 }
96
97 impl Read for StdinRaw {
98     fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
99         handle_ebadf(self.0.read(buf), 0)
100     }
101
102     fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> io::Result<usize> {
103         handle_ebadf(self.0.read_vectored(bufs), 0)
104     }
105
106     #[inline]
107     fn is_read_vectored(&self) -> bool {
108         self.0.is_read_vectored()
109     }
110
111     #[inline]
112     unsafe fn initializer(&self) -> Initializer {
113         Initializer::nop()
114     }
115
116     fn read_to_end(&mut self, buf: &mut Vec<u8>) -> io::Result<usize> {
117         handle_ebadf(self.0.read_to_end(buf), 0)
118     }
119
120     fn read_to_string(&mut self, buf: &mut String) -> io::Result<usize> {
121         handle_ebadf(self.0.read_to_string(buf), 0)
122     }
123 }
124
125 impl Write for StdoutRaw {
126     fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
127         handle_ebadf(self.0.write(buf), buf.len())
128     }
129
130     fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
131         let total = bufs.iter().map(|b| b.len()).sum();
132         handle_ebadf(self.0.write_vectored(bufs), total)
133     }
134
135     #[inline]
136     fn is_write_vectored(&self) -> bool {
137         self.0.is_write_vectored()
138     }
139
140     fn flush(&mut self) -> io::Result<()> {
141         handle_ebadf(self.0.flush(), ())
142     }
143
144     fn write_all(&mut self, buf: &[u8]) -> io::Result<()> {
145         handle_ebadf(self.0.write_all(buf), ())
146     }
147
148     fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> io::Result<()> {
149         handle_ebadf(self.0.write_all_vectored(bufs), ())
150     }
151
152     fn write_fmt(&mut self, fmt: fmt::Arguments<'_>) -> io::Result<()> {
153         handle_ebadf(self.0.write_fmt(fmt), ())
154     }
155 }
156
157 impl Write for StderrRaw {
158     fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
159         handle_ebadf(self.0.write(buf), buf.len())
160     }
161
162     fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
163         let total = bufs.iter().map(|b| b.len()).sum();
164         handle_ebadf(self.0.write_vectored(bufs), total)
165     }
166
167     #[inline]
168     fn is_write_vectored(&self) -> bool {
169         self.0.is_write_vectored()
170     }
171
172     fn flush(&mut self) -> io::Result<()> {
173         handle_ebadf(self.0.flush(), ())
174     }
175
176     fn write_all(&mut self, buf: &[u8]) -> io::Result<()> {
177         handle_ebadf(self.0.write_all(buf), ())
178     }
179
180     fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> io::Result<()> {
181         handle_ebadf(self.0.write_all_vectored(bufs), ())
182     }
183
184     fn write_fmt(&mut self, fmt: fmt::Arguments<'_>) -> io::Result<()> {
185         handle_ebadf(self.0.write_fmt(fmt), ())
186     }
187 }
188
189 fn handle_ebadf<T>(r: io::Result<T>, default: T) -> io::Result<T> {
190     match r {
191         Err(ref e) if stdio::is_ebadf(e) => Ok(default),
192         r => r,
193     }
194 }
195
196 /// A handle to the standard input stream of a process.
197 ///
198 /// Each handle is a shared reference to a global buffer of input data to this
199 /// process. A handle can be `lock`'d to gain full access to [`BufRead`] methods
200 /// (e.g., `.lines()`). Reads to this handle are otherwise locked with respect
201 /// to other reads.
202 ///
203 /// This handle implements the `Read` trait, but beware that concurrent reads
204 /// of `Stdin` must be executed with care.
205 ///
206 /// Created by the [`io::stdin`] method.
207 ///
208 /// [`io::stdin`]: stdin
209 ///
210 /// ### Note: Windows Portability Consideration
211 ///
212 /// When operating in a console, the Windows implementation of this stream does not support
213 /// non-UTF-8 byte sequences. Attempting to read bytes that are not valid UTF-8 will return
214 /// an error.
215 ///
216 /// # Examples
217 ///
218 /// ```no_run
219 /// use std::io::{self, Read};
220 ///
221 /// fn main() -> io::Result<()> {
222 ///     let mut buffer = String::new();
223 ///     let mut stdin = io::stdin(); // We get `Stdin` here.
224 ///     stdin.read_to_string(&mut buffer)?;
225 ///     Ok(())
226 /// }
227 /// ```
228 #[stable(feature = "rust1", since = "1.0.0")]
229 pub struct Stdin {
230     inner: &'static Mutex<BufReader<StdinRaw>>,
231 }
232
233 /// A locked reference to the `Stdin` handle.
234 ///
235 /// This handle implements both the [`Read`] and [`BufRead`] traits, and
236 /// is constructed via the [`Stdin::lock`] method.
237 ///
238 /// ### Note: Windows Portability Consideration
239 ///
240 /// When operating in a console, the Windows implementation of this stream does not support
241 /// non-UTF-8 byte sequences. Attempting to read bytes that are not valid UTF-8 will return
242 /// an error.
243 ///
244 /// # Examples
245 ///
246 /// ```no_run
247 /// use std::io::{self, Read};
248 ///
249 /// fn main() -> io::Result<()> {
250 ///     let mut buffer = String::new();
251 ///     let stdin = io::stdin(); // We get `Stdin` here.
252 ///     {
253 ///         let mut stdin_lock = stdin.lock(); // We get `StdinLock` here.
254 ///         stdin_lock.read_to_string(&mut buffer)?;
255 ///     } // `StdinLock` is dropped here.
256 ///     Ok(())
257 /// }
258 /// ```
259 #[stable(feature = "rust1", since = "1.0.0")]
260 pub struct StdinLock<'a> {
261     inner: MutexGuard<'a, BufReader<StdinRaw>>,
262 }
263
264 /// Constructs a new handle to the standard input of the current process.
265 ///
266 /// Each handle returned is a reference to a shared global buffer whose access
267 /// is synchronized via a mutex. If you need more explicit control over
268 /// locking, see the [`Stdin::lock`] method.
269 ///
270 /// ### Note: Windows Portability Consideration
271 /// When operating in a console, the Windows implementation of this stream does not support
272 /// non-UTF-8 byte sequences. Attempting to read bytes that are not valid UTF-8 will return
273 /// an error.
274 ///
275 /// # Examples
276 ///
277 /// Using implicit synchronization:
278 ///
279 /// ```no_run
280 /// use std::io::{self, Read};
281 ///
282 /// fn main() -> io::Result<()> {
283 ///     let mut buffer = String::new();
284 ///     io::stdin().read_to_string(&mut buffer)?;
285 ///     Ok(())
286 /// }
287 /// ```
288 ///
289 /// Using explicit synchronization:
290 ///
291 /// ```no_run
292 /// use std::io::{self, Read};
293 ///
294 /// fn main() -> io::Result<()> {
295 ///     let mut buffer = String::new();
296 ///     let stdin = io::stdin();
297 ///     let mut handle = stdin.lock();
298 ///
299 ///     handle.read_to_string(&mut buffer)?;
300 ///     Ok(())
301 /// }
302 /// ```
303 #[stable(feature = "rust1", since = "1.0.0")]
304 pub fn stdin() -> Stdin {
305     static INSTANCE: SyncOnceCell<Mutex<BufReader<StdinRaw>>> = SyncOnceCell::new();
306     Stdin {
307         inner: INSTANCE.get_or_init(|| {
308             Mutex::new(BufReader::with_capacity(stdio::STDIN_BUF_SIZE, stdin_raw()))
309         }),
310     }
311 }
312
313 impl Stdin {
314     /// Locks this handle to the standard input stream, returning a readable
315     /// guard.
316     ///
317     /// The lock is released when the returned lock goes out of scope. The
318     /// returned guard also implements the [`Read`] and [`BufRead`] traits for
319     /// accessing the underlying data.
320     ///
321     /// # Examples
322     ///
323     /// ```no_run
324     /// use std::io::{self, Read};
325     ///
326     /// fn main() -> io::Result<()> {
327     ///     let mut buffer = String::new();
328     ///     let stdin = io::stdin();
329     ///     let mut handle = stdin.lock();
330     ///
331     ///     handle.read_to_string(&mut buffer)?;
332     ///     Ok(())
333     /// }
334     /// ```
335     #[stable(feature = "rust1", since = "1.0.0")]
336     pub fn lock(&self) -> StdinLock<'_> {
337         StdinLock { inner: self.inner.lock().unwrap_or_else(|e| e.into_inner()) }
338     }
339
340     /// Locks this handle and reads a line of input, appending it to the specified buffer.
341     ///
342     /// For detailed semantics of this method, see the documentation on
343     /// [`BufRead::read_line`].
344     ///
345     /// # Examples
346     ///
347     /// ```no_run
348     /// use std::io;
349     ///
350     /// let mut input = String::new();
351     /// match io::stdin().read_line(&mut input) {
352     ///     Ok(n) => {
353     ///         println!("{} bytes read", n);
354     ///         println!("{}", input);
355     ///     }
356     ///     Err(error) => println!("error: {}", error),
357     /// }
358     /// ```
359     ///
360     /// You can run the example one of two ways:
361     ///
362     /// - Pipe some text to it, e.g., `printf foo | path/to/executable`
363     /// - Give it text interactively by running the executable directly,
364     ///   in which case it will wait for the Enter key to be pressed before
365     ///   continuing
366     #[stable(feature = "rust1", since = "1.0.0")]
367     pub fn read_line(&self, buf: &mut String) -> io::Result<usize> {
368         self.lock().read_line(buf)
369     }
370 }
371
372 #[stable(feature = "std_debug", since = "1.16.0")]
373 impl fmt::Debug for Stdin {
374     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
375         f.pad("Stdin { .. }")
376     }
377 }
378
379 #[stable(feature = "rust1", since = "1.0.0")]
380 impl Read for Stdin {
381     fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
382         self.lock().read(buf)
383     }
384     fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> io::Result<usize> {
385         self.lock().read_vectored(bufs)
386     }
387     #[inline]
388     fn is_read_vectored(&self) -> bool {
389         self.lock().is_read_vectored()
390     }
391     #[inline]
392     unsafe fn initializer(&self) -> Initializer {
393         Initializer::nop()
394     }
395     fn read_to_end(&mut self, buf: &mut Vec<u8>) -> io::Result<usize> {
396         self.lock().read_to_end(buf)
397     }
398     fn read_to_string(&mut self, buf: &mut String) -> io::Result<usize> {
399         self.lock().read_to_string(buf)
400     }
401     fn read_exact(&mut self, buf: &mut [u8]) -> io::Result<()> {
402         self.lock().read_exact(buf)
403     }
404 }
405
406 // only used by platform-dependent io::copy specializations, i.e. unused on some platforms
407 #[cfg(any(target_os = "linux", target_os = "android"))]
408 impl StdinLock<'_> {
409     pub(crate) fn as_mut_buf(&mut self) -> &mut BufReader<impl Read> {
410         &mut self.inner
411     }
412 }
413
414 #[stable(feature = "rust1", since = "1.0.0")]
415 impl Read for StdinLock<'_> {
416     fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
417         self.inner.read(buf)
418     }
419
420     fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> io::Result<usize> {
421         self.inner.read_vectored(bufs)
422     }
423
424     #[inline]
425     fn is_read_vectored(&self) -> bool {
426         self.inner.is_read_vectored()
427     }
428
429     #[inline]
430     unsafe fn initializer(&self) -> Initializer {
431         Initializer::nop()
432     }
433
434     fn read_to_end(&mut self, buf: &mut Vec<u8>) -> io::Result<usize> {
435         self.inner.read_to_end(buf)
436     }
437
438     fn read_to_string(&mut self, buf: &mut String) -> io::Result<usize> {
439         self.inner.read_to_string(buf)
440     }
441
442     fn read_exact(&mut self, buf: &mut [u8]) -> io::Result<()> {
443         self.inner.read_exact(buf)
444     }
445 }
446
447 #[stable(feature = "rust1", since = "1.0.0")]
448 impl BufRead for StdinLock<'_> {
449     fn fill_buf(&mut self) -> io::Result<&[u8]> {
450         self.inner.fill_buf()
451     }
452
453     fn consume(&mut self, n: usize) {
454         self.inner.consume(n)
455     }
456
457     fn read_until(&mut self, byte: u8, buf: &mut Vec<u8>) -> io::Result<usize> {
458         self.inner.read_until(byte, buf)
459     }
460
461     fn read_line(&mut self, buf: &mut String) -> io::Result<usize> {
462         self.inner.read_line(buf)
463     }
464 }
465
466 #[stable(feature = "std_debug", since = "1.16.0")]
467 impl fmt::Debug for StdinLock<'_> {
468     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
469         f.pad("StdinLock { .. }")
470     }
471 }
472
473 /// A handle to the global standard output stream of the current process.
474 ///
475 /// Each handle shares a global buffer of data to be written to the standard
476 /// output stream. Access is also synchronized via a lock and explicit control
477 /// over locking is available via the [`lock`] method.
478 ///
479 /// Created by the [`io::stdout`] method.
480 ///
481 /// ### Note: Windows Portability Consideration
482 /// When operating in a console, the Windows implementation of this stream does not support
483 /// non-UTF-8 byte sequences. Attempting to write bytes that are not valid UTF-8 will return
484 /// an error.
485 ///
486 /// [`lock`]: Stdout::lock
487 /// [`io::stdout`]: stdout
488 #[stable(feature = "rust1", since = "1.0.0")]
489 pub struct Stdout {
490     // FIXME: this should be LineWriter or BufWriter depending on the state of
491     //        stdout (tty or not). Note that if this is not line buffered it
492     //        should also flush-on-panic or some form of flush-on-abort.
493     inner: &'static ReentrantMutex<RefCell<LineWriter<StdoutRaw>>>,
494 }
495
496 /// A locked reference to the `Stdout` handle.
497 ///
498 /// This handle implements the [`Write`] trait, and is constructed via
499 /// the [`Stdout::lock`] method.
500 ///
501 /// ### Note: Windows Portability Consideration
502 /// When operating in a console, the Windows implementation of this stream does not support
503 /// non-UTF-8 byte sequences. Attempting to write bytes that are not valid UTF-8 will return
504 /// an error.
505 #[stable(feature = "rust1", since = "1.0.0")]
506 pub struct StdoutLock<'a> {
507     inner: ReentrantMutexGuard<'a, RefCell<LineWriter<StdoutRaw>>>,
508 }
509
510 /// Constructs a new handle to the standard output of the current process.
511 ///
512 /// Each handle returned is a reference to a shared global buffer whose access
513 /// is synchronized via a mutex. If you need more explicit control over
514 /// locking, see the [`Stdout::lock`] method.
515 ///
516 /// ### Note: Windows Portability Consideration
517 /// When operating in a console, the Windows implementation of this stream does not support
518 /// non-UTF-8 byte sequences. Attempting to write bytes that are not valid UTF-8 will return
519 /// an error.
520 ///
521 /// # Examples
522 ///
523 /// Using implicit synchronization:
524 ///
525 /// ```no_run
526 /// use std::io::{self, Write};
527 ///
528 /// fn main() -> io::Result<()> {
529 ///     io::stdout().write_all(b"hello world")?;
530 ///
531 ///     Ok(())
532 /// }
533 /// ```
534 ///
535 /// Using explicit synchronization:
536 ///
537 /// ```no_run
538 /// use std::io::{self, Write};
539 ///
540 /// fn main() -> io::Result<()> {
541 ///     let stdout = io::stdout();
542 ///     let mut handle = stdout.lock();
543 ///
544 ///     handle.write_all(b"hello world")?;
545 ///
546 ///     Ok(())
547 /// }
548 /// ```
549 #[stable(feature = "rust1", since = "1.0.0")]
550 pub fn stdout() -> Stdout {
551     static INSTANCE: SyncOnceCell<ReentrantMutex<RefCell<LineWriter<StdoutRaw>>>> =
552         SyncOnceCell::new();
553     Stdout {
554         inner: INSTANCE.get_or_init(|| unsafe {
555             let _ = sys_common::at_exit(|| {
556                 if let Some(instance) = INSTANCE.get() {
557                     // Flush the data and disable buffering during shutdown
558                     // by replacing the line writer by one with zero
559                     // buffering capacity.
560                     // We use try_lock() instead of lock(), because someone
561                     // might have leaked a StdoutLock, which would
562                     // otherwise cause a deadlock here.
563                     if let Some(lock) = instance.try_lock() {
564                         *lock.borrow_mut() = LineWriter::with_capacity(0, stdout_raw());
565                     }
566                 }
567             });
568             let r = ReentrantMutex::new(RefCell::new(LineWriter::new(stdout_raw())));
569             r.init();
570             r
571         }),
572     }
573 }
574
575 impl Stdout {
576     /// Locks this handle to the standard output stream, returning a writable
577     /// guard.
578     ///
579     /// The lock is released when the returned lock goes out of scope. The
580     /// returned guard also implements the `Write` trait for writing data.
581     ///
582     /// # Examples
583     ///
584     /// ```no_run
585     /// use std::io::{self, Write};
586     ///
587     /// fn main() -> io::Result<()> {
588     ///     let stdout = io::stdout();
589     ///     let mut handle = stdout.lock();
590     ///
591     ///     handle.write_all(b"hello world")?;
592     ///
593     ///     Ok(())
594     /// }
595     /// ```
596     #[stable(feature = "rust1", since = "1.0.0")]
597     pub fn lock(&self) -> StdoutLock<'_> {
598         StdoutLock { inner: self.inner.lock() }
599     }
600 }
601
602 #[stable(feature = "std_debug", since = "1.16.0")]
603 impl fmt::Debug for Stdout {
604     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
605         f.pad("Stdout { .. }")
606     }
607 }
608
609 #[stable(feature = "rust1", since = "1.0.0")]
610 impl Write for Stdout {
611     fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
612         (&*self).write(buf)
613     }
614     fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
615         (&*self).write_vectored(bufs)
616     }
617     #[inline]
618     fn is_write_vectored(&self) -> bool {
619         io::Write::is_write_vectored(&&*self)
620     }
621     fn flush(&mut self) -> io::Result<()> {
622         (&*self).flush()
623     }
624     fn write_all(&mut self, buf: &[u8]) -> io::Result<()> {
625         (&*self).write_all(buf)
626     }
627     fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> io::Result<()> {
628         (&*self).write_all_vectored(bufs)
629     }
630     fn write_fmt(&mut self, args: fmt::Arguments<'_>) -> io::Result<()> {
631         (&*self).write_fmt(args)
632     }
633 }
634
635 #[stable(feature = "write_mt", since = "1.48.0")]
636 impl Write for &Stdout {
637     fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
638         self.lock().write(buf)
639     }
640     fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
641         self.lock().write_vectored(bufs)
642     }
643     #[inline]
644     fn is_write_vectored(&self) -> bool {
645         self.lock().is_write_vectored()
646     }
647     fn flush(&mut self) -> io::Result<()> {
648         self.lock().flush()
649     }
650     fn write_all(&mut self, buf: &[u8]) -> io::Result<()> {
651         self.lock().write_all(buf)
652     }
653     fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> io::Result<()> {
654         self.lock().write_all_vectored(bufs)
655     }
656     fn write_fmt(&mut self, args: fmt::Arguments<'_>) -> io::Result<()> {
657         self.lock().write_fmt(args)
658     }
659 }
660
661 #[stable(feature = "rust1", since = "1.0.0")]
662 impl Write for StdoutLock<'_> {
663     fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
664         self.inner.borrow_mut().write(buf)
665     }
666     fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
667         self.inner.borrow_mut().write_vectored(bufs)
668     }
669     #[inline]
670     fn is_write_vectored(&self) -> bool {
671         self.inner.borrow_mut().is_write_vectored()
672     }
673     fn flush(&mut self) -> io::Result<()> {
674         self.inner.borrow_mut().flush()
675     }
676     fn write_all(&mut self, buf: &[u8]) -> io::Result<()> {
677         self.inner.borrow_mut().write_all(buf)
678     }
679     fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> io::Result<()> {
680         self.inner.borrow_mut().write_all_vectored(bufs)
681     }
682 }
683
684 #[stable(feature = "std_debug", since = "1.16.0")]
685 impl fmt::Debug for StdoutLock<'_> {
686     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
687         f.pad("StdoutLock { .. }")
688     }
689 }
690
691 /// A handle to the standard error stream of a process.
692 ///
693 /// For more information, see the [`io::stderr`] method.
694 ///
695 /// [`io::stderr`]: stderr
696 ///
697 /// ### Note: Windows Portability Consideration
698 /// When operating in a console, the Windows implementation of this stream does not support
699 /// non-UTF-8 byte sequences. Attempting to write bytes that are not valid UTF-8 will return
700 /// an error.
701 #[stable(feature = "rust1", since = "1.0.0")]
702 pub struct Stderr {
703     inner: &'static ReentrantMutex<RefCell<StderrRaw>>,
704 }
705
706 /// A locked reference to the `Stderr` handle.
707 ///
708 /// This handle implements the `Write` trait and is constructed via
709 /// the [`Stderr::lock`] method.
710 ///
711 /// ### Note: Windows Portability Consideration
712 /// When operating in a console, the Windows implementation of this stream does not support
713 /// non-UTF-8 byte sequences. Attempting to write bytes that are not valid UTF-8 will return
714 /// an error.
715 #[stable(feature = "rust1", since = "1.0.0")]
716 pub struct StderrLock<'a> {
717     inner: ReentrantMutexGuard<'a, RefCell<StderrRaw>>,
718 }
719
720 /// Constructs a new handle to the standard error of the current process.
721 ///
722 /// This handle is not buffered.
723 ///
724 /// ### Note: Windows Portability Consideration
725 /// When operating in a console, the Windows implementation of this stream does not support
726 /// non-UTF-8 byte sequences. Attempting to write bytes that are not valid UTF-8 will return
727 /// an error.
728 ///
729 /// # Examples
730 ///
731 /// Using implicit synchronization:
732 ///
733 /// ```no_run
734 /// use std::io::{self, Write};
735 ///
736 /// fn main() -> io::Result<()> {
737 ///     io::stderr().write_all(b"hello world")?;
738 ///
739 ///     Ok(())
740 /// }
741 /// ```
742 ///
743 /// Using explicit synchronization:
744 ///
745 /// ```no_run
746 /// use std::io::{self, Write};
747 ///
748 /// fn main() -> io::Result<()> {
749 ///     let stderr = io::stderr();
750 ///     let mut handle = stderr.lock();
751 ///
752 ///     handle.write_all(b"hello world")?;
753 ///
754 ///     Ok(())
755 /// }
756 /// ```
757 #[stable(feature = "rust1", since = "1.0.0")]
758 pub fn stderr() -> Stderr {
759     // Note that unlike `stdout()` we don't use `at_exit` here to register a
760     // destructor. Stderr is not buffered , so there's no need to run a
761     // destructor for flushing the buffer
762     static INSTANCE: SyncOnceCell<ReentrantMutex<RefCell<StderrRaw>>> = SyncOnceCell::new();
763
764     Stderr {
765         inner: INSTANCE.get_or_init(|| unsafe {
766             let r = ReentrantMutex::new(RefCell::new(stderr_raw()));
767             r.init();
768             r
769         }),
770     }
771 }
772
773 impl Stderr {
774     /// Locks this handle to the standard error stream, returning a writable
775     /// guard.
776     ///
777     /// The lock is released when the returned lock goes out of scope. The
778     /// returned guard also implements the [`Write`] trait for writing data.
779     ///
780     /// # Examples
781     ///
782     /// ```
783     /// use std::io::{self, Write};
784     ///
785     /// fn foo() -> io::Result<()> {
786     ///     let stderr = io::stderr();
787     ///     let mut handle = stderr.lock();
788     ///
789     ///     handle.write_all(b"hello world")?;
790     ///
791     ///     Ok(())
792     /// }
793     /// ```
794     #[stable(feature = "rust1", since = "1.0.0")]
795     pub fn lock(&self) -> StderrLock<'_> {
796         StderrLock { inner: self.inner.lock() }
797     }
798 }
799
800 #[stable(feature = "std_debug", since = "1.16.0")]
801 impl fmt::Debug for Stderr {
802     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
803         f.pad("Stderr { .. }")
804     }
805 }
806
807 #[stable(feature = "rust1", since = "1.0.0")]
808 impl Write for Stderr {
809     fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
810         (&*self).write(buf)
811     }
812     fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
813         (&*self).write_vectored(bufs)
814     }
815     #[inline]
816     fn is_write_vectored(&self) -> bool {
817         io::Write::is_write_vectored(&&*self)
818     }
819     fn flush(&mut self) -> io::Result<()> {
820         (&*self).flush()
821     }
822     fn write_all(&mut self, buf: &[u8]) -> io::Result<()> {
823         (&*self).write_all(buf)
824     }
825     fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> io::Result<()> {
826         (&*self).write_all_vectored(bufs)
827     }
828     fn write_fmt(&mut self, args: fmt::Arguments<'_>) -> io::Result<()> {
829         (&*self).write_fmt(args)
830     }
831 }
832
833 #[stable(feature = "write_mt", since = "1.48.0")]
834 impl Write for &Stderr {
835     fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
836         self.lock().write(buf)
837     }
838     fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
839         self.lock().write_vectored(bufs)
840     }
841     #[inline]
842     fn is_write_vectored(&self) -> bool {
843         self.lock().is_write_vectored()
844     }
845     fn flush(&mut self) -> io::Result<()> {
846         self.lock().flush()
847     }
848     fn write_all(&mut self, buf: &[u8]) -> io::Result<()> {
849         self.lock().write_all(buf)
850     }
851     fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> io::Result<()> {
852         self.lock().write_all_vectored(bufs)
853     }
854     fn write_fmt(&mut self, args: fmt::Arguments<'_>) -> io::Result<()> {
855         self.lock().write_fmt(args)
856     }
857 }
858
859 #[stable(feature = "rust1", since = "1.0.0")]
860 impl Write for StderrLock<'_> {
861     fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
862         self.inner.borrow_mut().write(buf)
863     }
864     fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
865         self.inner.borrow_mut().write_vectored(bufs)
866     }
867     #[inline]
868     fn is_write_vectored(&self) -> bool {
869         self.inner.borrow_mut().is_write_vectored()
870     }
871     fn flush(&mut self) -> io::Result<()> {
872         self.inner.borrow_mut().flush()
873     }
874     fn write_all(&mut self, buf: &[u8]) -> io::Result<()> {
875         self.inner.borrow_mut().write_all(buf)
876     }
877     fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> io::Result<()> {
878         self.inner.borrow_mut().write_all_vectored(bufs)
879     }
880 }
881
882 #[stable(feature = "std_debug", since = "1.16.0")]
883 impl fmt::Debug for StderrLock<'_> {
884     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
885         f.pad("StderrLock { .. }")
886     }
887 }
888
889 /// Sets the thread-local output capture buffer and returns the old one.
890 #[unstable(
891     feature = "internal_output_capture",
892     reason = "this function is meant for use in the test crate \
893         and may disappear in the future",
894     issue = "none"
895 )]
896 #[doc(hidden)]
897 pub fn set_output_capture(sink: Option<LocalStream>) -> Option<LocalStream> {
898     if sink.is_none() && !OUTPUT_CAPTURE_USED.load(Ordering::Relaxed) {
899         // OUTPUT_CAPTURE is definitely None since OUTPUT_CAPTURE_USED is false.
900         return None;
901     }
902     OUTPUT_CAPTURE_USED.store(true, Ordering::Relaxed);
903     OUTPUT_CAPTURE.with(move |slot| slot.replace(sink))
904 }
905
906 /// Write `args` to the capture buffer if enabled and possible, or `global_s`
907 /// otherwise. `label` identifies the stream in a panic message.
908 ///
909 /// This function is used to print error messages, so it takes extra
910 /// care to avoid causing a panic when `local_s` is unusable.
911 /// For instance, if the TLS key for the local stream is
912 /// already destroyed, or if the local stream is locked by another
913 /// thread, it will just fall back to the global stream.
914 ///
915 /// However, if the actual I/O causes an error, this function does panic.
916 fn print_to<T>(args: fmt::Arguments<'_>, global_s: fn() -> T, label: &str)
917 where
918     T: Write,
919 {
920     if OUTPUT_CAPTURE_USED.load(Ordering::Relaxed)
921         && OUTPUT_CAPTURE.try_with(|s| {
922             // Note that we completely remove a local sink to write to in case
923             // our printing recursively panics/prints, so the recursive
924             // panic/print goes to the global sink instead of our local sink.
925             s.take().map(|w| {
926                 let _ = w.lock().unwrap_or_else(|e| e.into_inner()).write_fmt(args);
927                 s.set(Some(w));
928             })
929         }) == Ok(Some(()))
930     {
931         // Succesfully wrote to capture buffer.
932         return;
933     }
934
935     if let Err(e) = global_s().write_fmt(args) {
936         panic!("failed printing to {}: {}", label, e);
937     }
938 }
939
940 #[unstable(
941     feature = "print_internals",
942     reason = "implementation detail which may disappear or be replaced at any time",
943     issue = "none"
944 )]
945 #[doc(hidden)]
946 #[cfg(not(test))]
947 pub fn _print(args: fmt::Arguments<'_>) {
948     print_to(args, stdout, "stdout");
949 }
950
951 #[unstable(
952     feature = "print_internals",
953     reason = "implementation detail which may disappear or be replaced at any time",
954     issue = "none"
955 )]
956 #[doc(hidden)]
957 #[cfg(not(test))]
958 pub fn _eprint(args: fmt::Arguments<'_>) {
959     print_to(args, stderr, "stderr");
960 }
961
962 #[cfg(test)]
963 pub use realstd::io::{_eprint, _print};