2021-05-08 13:21:53 +02:00
|
|
|
module io
|
|
|
|
|
|
|
|
// new_multi_writer returns a Writer that writes to all writers. The write
|
|
|
|
// function of the returned Writer writes to all writers of the MultiWriter,
|
|
|
|
// returns the length of bytes written, and if any writer fails to write the
|
|
|
|
// full length an error is returned and writing to other writers stops, and if
|
|
|
|
// any writer returns an error the error is returned immediately and writing to
|
|
|
|
// other writers stops.
|
2021-05-09 08:21:08 +02:00
|
|
|
pub fn new_multi_writer(writers ...Writer) Writer {
|
2021-05-08 13:21:53 +02:00
|
|
|
return &MultiWriter{
|
|
|
|
writers: writers
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MultiWriter writes to all its writers.
|
|
|
|
pub struct MultiWriter {
|
2021-05-13 12:06:42 +02:00
|
|
|
pub mut:
|
2021-05-08 13:21:53 +02:00
|
|
|
writers []Writer
|
|
|
|
}
|
|
|
|
|
|
|
|
// write writes to all writers of the MultiWriter. Returns the length of bytes
|
|
|
|
// written. If any writer fails to write the full length an error is returned
|
|
|
|
// and writing to other writers stops. If any writer returns an error the error
|
|
|
|
// is returned immediately and writing to other writers stops.
|
2021-05-13 12:06:42 +02:00
|
|
|
pub fn (mut m MultiWriter) write(buf []byte) ?int {
|
|
|
|
for mut w in m.writers {
|
2021-05-08 13:21:53 +02:00
|
|
|
n := w.write(buf) ?
|
|
|
|
if n != buf.len {
|
|
|
|
return error('io: incomplete write to writer of MultiWriter')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return buf.len
|
|
|
|
}
|