Esempio n. 1
0
 /// <summary>
 /// Creates a console printer.
 /// </summary>
 /// <param name="rowFormat"> A format of a columns. </param>
 /// <param name="formater"> A type of formater. </param>
 public ConsolePrinter(List <ExpressionToStringWrapper> rowFormat, FormaterType formater) : base(rowFormat)
 {
     try
     {
         this.writer = Console.Out;
     }
     catch (IOException)
     {
         throw new IOException($"{this.GetType()}, failed to open console for writing.");
     }
     this.formater = Formater.Factory(formater, rowFormat.Count, writer);
 }
Esempio n. 2
0
        /// <summary>
        /// Creates a file printer.
        /// </summary>
        /// <param name="rowFormat"> A format of a columns. </param>
        /// <param name="formater"> A type of formater. </param>
        /// <param name="fileName"> A file to print into. </param>
        public FilePrinter(List <ExpressionToStringWrapper> rowFormat, FormaterType formater, string fileName) : base(rowFormat)
        {
            if (!Formater.FileEndings.TryGetValue(formater, out string ending))
            {
                throw new ArgumentException($"{this.GetType()}, file ending for given formater does not exist. Formater = {formater}");
            }

            try
            {
                this.writer = File.AppendText(fileName + ending);
            }
            catch (IOException)
            {
                throw new IOException($"{this.GetType()}, failed to open file for writing. File name = {fileName}.");
            }
            this.formater = Formater.Factory(formater, rowFormat.Count, writer);
        }