| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809 |
- //
- // System.IO.TextWriter.cs
- //
- // Authors:
- // Marcin Szczepanski ([email protected])
- // Miguel de Icaza ([email protected])
- // Paolo Molaro ([email protected])
- // Marek Safar ([email protected])
- //
- // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
- // Copyright 2011 Xamarin Inc.
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System.Text;
- using System.Runtime.InteropServices;
- #if NET_4_5
- using System.Threading.Tasks;
- #endif
- namespace System.IO
- {
- [Serializable]
- [ComVisible (true)]
- #if NET_2_1
- public abstract class TextWriter : IDisposable {
- #else
- public abstract class TextWriter : MarshalByRefObject, IDisposable
- {
- #endif
- //
- // Null version of the TextWriter, for the `Null' instance variable
- //
- sealed class NullTextWriter : TextWriter
- {
- public override Encoding Encoding
- {
- get
- {
- return Encoding.Default;
- }
- }
- public override void Write (string s)
- {
- }
- public override void Write (char value)
- {
- }
- public override void Write (char[] value, int index, int count)
- {
- }
- }
- protected TextWriter ()
- {
- CoreNewLine = System.Environment.NewLine.ToCharArray ();
- }
- protected TextWriter (IFormatProvider formatProvider)
- {
- CoreNewLine = System.Environment.NewLine.ToCharArray ();
- internalFormatProvider = formatProvider;
- }
- protected char[] CoreNewLine;
- internal IFormatProvider internalFormatProvider;
- public static readonly TextWriter Null = new NullTextWriter ();
- public abstract Encoding Encoding { get; }
- public virtual IFormatProvider FormatProvider {
- get {
- return internalFormatProvider;
- }
- }
- public virtual string NewLine {
- get {
- return new string (CoreNewLine);
- }
- set {
- if (value == null)
- value = Environment.NewLine;
- CoreNewLine = value.ToCharArray ();
- }
- }
- public virtual void Close ()
- {
- Dispose (true);
- }
- protected virtual void Dispose (bool disposing)
- {
- if (disposing) {
- // If we are explicitly disposed, we can avoid finalization.
- GC.SuppressFinalize (this);
- }
- }
- public void Dispose ()
- {
- Dispose (true);
- // If we are explicitly disposed, we can avoid finalization.
- GC.SuppressFinalize (this);
- }
- public virtual void Flush ()
- {
- // do nothing
- }
- public static TextWriter Synchronized (TextWriter writer)
- {
- return Synchronized (writer, false);
- }
- internal static TextWriter Synchronized (TextWriter writer, bool neverClose)
- {
- if (writer == null)
- throw new ArgumentNullException ("writer is null");
- if (writer is SynchronizedWriter)
- return writer;
- return new SynchronizedWriter (writer, neverClose);
- }
- public virtual void Write (bool value)
- {
- Write (value.ToString ());
- }
- public virtual void Write (char value)
- {
- // Do nothing
- }
- public virtual void Write (char[] buffer)
- {
- if (buffer == null)
- return;
- Write (buffer, 0, buffer.Length);
- }
- public virtual void Write (decimal value)
- {
- Write (value.ToString (internalFormatProvider));
- }
- public virtual void Write (double value)
- {
- Write (value.ToString (internalFormatProvider));
- }
- public virtual void Write (int value)
- {
- Write (value.ToString (internalFormatProvider));
- }
- public virtual void Write (long value)
- {
- Write (value.ToString (internalFormatProvider));
- }
- public virtual void Write (object value)
- {
- if (value != null)
- Write (value.ToString ());
- }
- public virtual void Write (float value)
- {
- Write (value.ToString (internalFormatProvider));
- }
- public virtual void Write (string value)
- {
- if (value != null)
- Write (value.ToCharArray ());
- }
- [CLSCompliant (false)]
- public virtual void Write (uint value)
- {
- Write (value.ToString (internalFormatProvider));
- }
- [CLSCompliant (false)]
- public virtual void Write (ulong value)
- {
- Write (value.ToString (internalFormatProvider));
- }
- public virtual void Write (string format, object arg0)
- {
- Write (String.Format (format, arg0));
- }
- public virtual void Write (string format, params object[] arg)
- {
- Write (String.Format (format, arg));
- }
- public virtual void Write (char[] buffer, int index, int count)
- {
- if (buffer == null)
- throw new ArgumentNullException ("buffer");
- if (index < 0 || index > buffer.Length)
- throw new ArgumentOutOfRangeException ("index");
- // re-ordered to avoid possible integer overflow
- if (count < 0 || (index > buffer.Length - count))
- throw new ArgumentOutOfRangeException ("count");
- for (; count > 0; --count, ++index) {
- Write (buffer[index]);
- }
- }
- public virtual void Write (string format, object arg0, object arg1)
- {
- Write (String.Format (format, arg0, arg1));
- }
- public virtual void Write (string format, object arg0, object arg1, object arg2)
- {
- Write (String.Format (format, arg0, arg1, arg2));
- }
- public virtual void WriteLine ()
- {
- Write (CoreNewLine);
- }
- public virtual void WriteLine (bool value)
- {
- Write (value);
- WriteLine ();
- }
- public virtual void WriteLine (char value)
- {
- Write (value);
- WriteLine ();
- }
- public virtual void WriteLine (char[] buffer)
- {
- Write (buffer);
- WriteLine ();
- }
- public virtual void WriteLine (decimal value)
- {
- Write (value);
- WriteLine ();
- }
- public virtual void WriteLine (double value)
- {
- Write (value);
- WriteLine ();
- }
- public virtual void WriteLine (int value)
- {
- Write (value);
- WriteLine ();
- }
- public virtual void WriteLine (long value)
- {
- Write (value);
- WriteLine ();
- }
- public virtual void WriteLine (object value)
- {
- Write (value);
- WriteLine ();
- }
- public virtual void WriteLine (float value)
- {
- Write (value);
- WriteLine ();
- }
- public virtual void WriteLine (string value)
- {
- Write (value);
- WriteLine ();
- }
- [CLSCompliant (false)]
- public virtual void WriteLine (uint value)
- {
- Write (value);
- WriteLine ();
- }
- [CLSCompliant (false)]
- public virtual void WriteLine (ulong value)
- {
- Write (value);
- WriteLine ();
- }
- public virtual void WriteLine (string format, object arg0)
- {
- Write (format, arg0);
- WriteLine ();
- }
- public virtual void WriteLine (string format, params object[] arg)
- {
- Write (format, arg);
- WriteLine ();
- }
- public virtual void WriteLine (char[] buffer, int index, int count)
- {
- Write (buffer, index, count);
- WriteLine ();
- }
- public virtual void WriteLine (string format, object arg0, object arg1)
- {
- Write (format, arg0, arg1);
- WriteLine ();
- }
- public virtual void WriteLine (string format, object arg0, object arg1, object arg2)
- {
- Write (format, arg0, arg1, arg2);
- WriteLine ();
- }
- #if NET_4_5
- public virtual Task FlushAsync ()
- {
- return Task.Factory.StartNew (l => ((TextWriter)l).Flush (), this);
- }
- //
- // Use tuple to pack the arguments because it's faster than
- // setting up anonymous method container with an instance delegate
- //
- public virtual Task WriteAsync (char value)
- {
- return Task.Factory.StartNew (l => {
- var t = (Tuple<TextWriter, char>) l;
- t.Item1.Write (t.Item2);
- }, Tuple.Create (this, value));
- }
- public Task WriteAsync (char[] buffer)
- {
- if (buffer == null)
- return TaskConstants.Finished;
- return WriteAsync (buffer, 0, buffer.Length);
- }
- public virtual Task WriteAsync (char[] buffer, int index, int count)
- {
- return Task.Factory.StartNew (l => {
- var t = (Tuple<TextWriter, char[], int, int>) l;
- t.Item1.Write (t.Item2, t.Item3, t.Item4);
- }, Tuple.Create (this, buffer, index, count));
- }
- public virtual Task WriteAsync (string value)
- {
- return Task.Factory.StartNew (l => {
- var t = (Tuple<TextWriter, string>) l;
- t.Item1.Write (t.Item2);
- }, Tuple.Create (this, value));
- }
- public virtual Task WriteLineAsync ()
- {
- return WriteAsync (CoreNewLine);
- }
- public virtual Task WriteLineAsync (char value)
- {
- return Task.Factory.StartNew (l => {
- var t = (Tuple<TextWriter, char>) l;
- t.Item1.WriteLine (t.Item2);
- }, Tuple.Create (this, value));
- }
- public Task WriteLineAsync (char[] buffer)
- {
- return Task.Factory.StartNew (l => {
- var t = (Tuple<TextWriter, char[]>) l;
- t.Item1.WriteLine (t.Item2);
- }, Tuple.Create (this, buffer));
- }
- public virtual Task WriteLineAsync (char[] buffer, int index, int count)
- {
- return Task.Factory.StartNew (l => {
- var t = (Tuple<TextWriter, char[], int, int>) l;
- t.Item1.WriteLine (t.Item2, t.Item3, t.Item4);
- }, Tuple.Create (this, buffer, index, count));
- }
- public virtual Task WriteLineAsync (string value)
- {
- return Task.Factory.StartNew (l => {
- var t = (Tuple<TextWriter, string>) l;
- t.Item1.WriteLine (t.Item2);
- }, Tuple.Create (this, value));
- }
- #endif
- }
- //
- // Sychronized version of the TextWriter.
- //
- [Serializable]
- sealed class SynchronizedWriter : TextWriter
- {
- private TextWriter writer;
- private bool neverClose;
- public SynchronizedWriter (TextWriter writer)
- : this (writer, false)
- {
- }
- public SynchronizedWriter (TextWriter writer, bool neverClose)
- {
- this.writer = writer;
- this.neverClose = neverClose;
- }
- public override void Close ()
- {
- if (neverClose)
- return;
- lock (this) {
- writer.Close ();
- }
- }
- public override void Flush ()
- {
- lock (this) {
- writer.Flush ();
- }
- }
- #region Write methods
- public override void Write (bool value)
- {
- lock (this) {
- writer.Write (value);
- }
- }
- public override void Write (char value)
- {
- lock (this) {
- writer.Write (value);
- }
- }
- public override void Write (char[] value)
- {
- lock (this) {
- writer.Write (value);
- }
- }
- public override void Write (Decimal value)
- {
- lock (this) {
- writer.Write (value);
- }
- }
- public override void Write (int value)
- {
- lock (this) {
- writer.Write (value);
- }
- }
- public override void Write (long value)
- {
- lock (this) {
- writer.Write (value);
- }
- }
- public override void Write (object value)
- {
- lock (this) {
- writer.Write (value);
- }
- }
- public override void Write (float value)
- {
- lock (this) {
- writer.Write (value);
- }
- }
- public override void Write (string value)
- {
- lock (this) {
- writer.Write (value);
- }
- }
- public override void Write (uint value)
- {
- lock (this) {
- writer.Write (value);
- }
- }
- public override void Write (ulong value)
- {
- lock (this) {
- writer.Write (value);
- }
- }
- public override void Write (string format, object value)
- {
- lock (this) {
- writer.Write (format, value);
- }
- }
- public override void Write (string format, object[] value)
- {
- lock (this) {
- writer.Write (format, value);
- }
- }
- public override void Write (char[] buffer, int index, int count)
- {
- lock (this) {
- writer.Write (buffer, index, count);
- }
- }
- public override void Write (string format, object arg0, object arg1)
- {
- lock (this) {
- writer.Write (format, arg0, arg1);
- }
- }
- public override void Write (string format, object arg0, object arg1, object arg2)
- {
- lock (this) {
- writer.Write (format, arg0, arg1, arg2);
- }
- }
- #endregion
- #region WriteLine methods
- public override void WriteLine ()
- {
- lock (this) {
- writer.WriteLine ();
- }
- }
- public override void WriteLine (bool value)
- {
- lock (this) {
- writer.WriteLine (value);
- }
- }
- public override void WriteLine (char value)
- {
- lock (this) {
- writer.WriteLine (value);
- }
- }
- public override void WriteLine (char[] value)
- {
- lock (this) {
- writer.WriteLine (value);
- }
- }
- public override void WriteLine (Decimal value)
- {
- lock (this) {
- writer.WriteLine (value);
- }
- }
- public override void WriteLine (double value)
- {
- lock (this) {
- writer.WriteLine (value);
- }
- }
- public override void WriteLine (int value)
- {
- lock (this) {
- writer.WriteLine (value);
- }
- }
- public override void WriteLine (long value)
- {
- lock (this) {
- writer.WriteLine (value);
- }
- }
- public override void WriteLine (object value)
- {
- lock (this) {
- writer.WriteLine (value);
- }
- }
- public override void WriteLine (float value)
- {
- lock (this) {
- writer.WriteLine (value);
- }
- }
- public override void WriteLine (string value)
- {
- lock (this) {
- writer.WriteLine (value);
- }
- }
- public override void WriteLine (uint value)
- {
- lock (this) {
- writer.WriteLine (value);
- }
- }
- public override void WriteLine (ulong value)
- {
- lock (this) {
- writer.WriteLine (value);
- }
- }
- public override void WriteLine (string format, object value)
- {
- lock (this) {
- writer.WriteLine (format, value);
- }
- }
- public override void WriteLine (string format, object[] value)
- {
- lock (this) {
- writer.WriteLine (format, value);
- }
- }
- public override void WriteLine (char[] buffer, int index, int count)
- {
- lock (this) {
- writer.WriteLine (buffer, index, count);
- }
- }
- public override void WriteLine (string format, object arg0, object arg1)
- {
- lock (this) {
- writer.WriteLine (format, arg0, arg1);
- }
- }
- public override void WriteLine (string format, object arg0, object arg1, object arg2)
- {
- lock (this) {
- writer.WriteLine (format, arg0, arg1, arg2);
- }
- }
- #endregion
- #if NET_4_5
- public override Task FlushAsync ()
- {
- lock (this) {
- return writer.FlushAsync ();
- }
- }
- public override Task WriteAsync (char value)
- {
- lock (this) {
- return writer.WriteAsync (value);
- }
- }
- public override Task WriteAsync (char[] buffer, int index, int count)
- {
- lock (this) {
- return writer.WriteAsync (buffer, index, count);
- }
- }
- public override Task WriteAsync (string value)
- {
- lock (this) {
- return writer.WriteAsync (value);
- }
- }
- public override Task WriteLineAsync ()
- {
- lock (this) {
- return writer.WriteLineAsync ();
- }
- }
- public override Task WriteLineAsync (char value)
- {
- lock (this) {
- return writer.WriteLineAsync (value);
- }
- }
- public override Task WriteLineAsync (char[] buffer, int index, int count)
- {
- lock (this) {
- return writer.WriteLineAsync (buffer, index, count);
- }
- }
- public override Task WriteLineAsync (string value)
- {
- lock (this) {
- return writer.WriteLineAsync (value);
- }
- }
- #endif
- public override Encoding Encoding {
- get {
- lock (this) {
- return writer.Encoding;
- }
- }
- }
- public override IFormatProvider FormatProvider {
- get {
- lock (this) {
- return writer.FormatProvider;
- }
- }
- }
- public override string NewLine {
- get {
- lock (this) {
- return writer.NewLine;
- }
- }
- set {
- lock (this) {
- writer.NewLine = value;
- }
- }
- }
- }
- }
|