/* * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals. * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ using System; using System.IO; using System.Text; namespace QuantConnect.Util { /// /// Provides an implementation of that redirects Write(string) and WriteLine(string) /// public class FuncTextWriter : TextWriter { private readonly Action _writer; /// public override Encoding Encoding { get { return Encoding.Default; } } /// /// Initializes a new instance of the that will direct /// messages to the algorithm's Debug function. /// /// The algorithm hosting the Debug function where messages will be directed public FuncTextWriter(Action writer) { _writer = writer; } /// /// Writes the string value using the delegate provided at construction /// /// The string value to be written public override void Write(string value) { _writer(value); } /// /// Writes the string value using the delegate provided at construction /// /// public override void WriteLine(string value) { // these are grouped in a list so we don't need to add new line characters here _writer(value); } } }