/* * 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.Collections.Generic; using System.IO; using System.Net.Http; using QuantConnect.Interfaces; using QuantConnect.Logging; namespace QuantConnect.Lean.Engine.DataFeeds.Transport { /// /// Represents a stream reader capable of polling a rest client /// public class RestSubscriptionStreamReader : IStreamReader { private static readonly HttpClient _client = new HttpClient(); private readonly string _baseUrl; private readonly Dictionary _headers; private readonly bool _isLiveMode; private bool _delivered; /// /// Gets whether or not this stream reader should be rate limited /// public bool ShouldBeRateLimited => _isLiveMode; /// /// Direct access to the StreamReader instance /// public StreamReader StreamReader => null; /// /// Initializes a new instance of the class. /// /// The source url to poll with a GET /// Defines header values to add to the request /// True for live mode, false otherwise public RestSubscriptionStreamReader(string source, IEnumerable> headers, bool isLiveMode) { _baseUrl = source; if (headers != null) { _headers = new Dictionary(headers); } _isLiveMode = isLiveMode; _delivered = false; } /// /// Gets /// public SubscriptionTransportMedium TransportMedium { get { return SubscriptionTransportMedium.Rest; } } /// /// Gets whether or not there's more data to be read in the stream /// public bool EndOfStream { get { return !_isLiveMode && _delivered; } } /// /// Gets the next line/batch of content from the stream /// public string ReadLine() { try { if (_client.TryDownloadData(_baseUrl, out string data, out _, _headers)) { _delivered = true; return data; } } catch (Exception err) { Log.Error(err); } return string.Empty; } /// /// This stream reader doesn't require disposal /// public void Dispose() { _client.Dispose(); } } }