/*
* 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 QuantConnect.Interfaces;
using QuantConnect.Logging;
using RestSharp;
namespace QuantConnect.Lean.Engine.DataFeeds.Transport
{
///
/// Represents a stream reader capable of polling a rest client
///
public class RestSubscriptionStreamReader : IStreamReader
{
private readonly RestClient _client;
private readonly RestRequest _request;
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)
{
_client = new RestClient(source);
_request = new RestRequest(Method.GET);
_isLiveMode = isLiveMode;
_delivered = false;
if (headers != null)
{
foreach (var header in headers)
{
_request.AddHeader(header.Key, header.Value);
}
}
}
///
/// 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
{
var response = _client.Execute(_request);
if (response != null)
{
_delivered = true;
return response.Content;
}
}
catch (Exception err)
{
Log.Error(err);
}
return string.Empty;
}
///
/// This stream reader doesn't require disposal
///
public void Dispose()
{
}
}
}