Files
quantconnect--lean/Common/Data/Auxiliary/MapFileRow.cs
Michael Handschuh d709d1c4e0 Update Common to respect CA1304 and CA1305
Updates all occurrences of parsing/ToString-ing to go through the new
StringExtensions methods that use CultureInfo.InvariantCulture

See #3045
2019-09-12 14:13:24 -04:00

153 lines
5.3 KiB
C#

/*
* 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.Linq;
namespace QuantConnect.Data.Auxiliary
{
/// <summary>
/// Represents a single row in a map_file. This is a csv file ordered as {date, mapped symbol}
/// </summary>
public class MapFileRow : IEquatable<MapFileRow>
{
/// <summary>
/// Gets the date associated with this data
/// </summary>
public DateTime Date { get; private set; }
/// <summary>
/// Gets the mapped symbol
/// </summary>
public string MappedSymbol { get; private set; }
/// <summary>
/// Initializes a new instance of the <see cref="MapFileRow"/> class.
/// </summary>
public MapFileRow(DateTime date, string mappedSymbol)
{
Date = date;
MappedSymbol = mappedSymbol.LazyToUpper();
}
/// <summary>
/// Reads in the map_file for the specified equity symbol
/// </summary>
public static IEnumerable<MapFileRow> Read(string permtick, string market)
{
var path = MapFile.GetMapFilePath(permtick, market);
return File.Exists(path)
? Read(path)
: Enumerable.Empty<MapFileRow>();
}
/// <summary>
/// Reads in the map_file at the specified path
/// </summary>
public static IEnumerable<MapFileRow> Read(string path)
{
return File.ReadAllLines(path).Where(l => !string.IsNullOrWhiteSpace(l)).Select(Parse);
}
/// <summary>
/// Parses the specified line into a MapFileRow
/// </summary>
public static MapFileRow Parse(string line)
{
var csv = line.Split(',');
return new MapFileRow(DateTime.ParseExact(csv[0], DateFormat.EightCharacter, null), csv[1]);
}
#region Equality members
/// <summary>
/// Indicates whether the current object is equal to another object of the same type.
/// </summary>
/// <returns>
/// true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
/// </returns>
/// <param name="other">An object to compare with this object.</param>
public bool Equals(MapFileRow other)
{
if (ReferenceEquals(null, other)) return false;
if (ReferenceEquals(this, other)) return true;
return Date.Equals(other.Date) && string.Equals(MappedSymbol, other.MappedSymbol);
}
/// <summary>
/// Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
/// </summary>
/// <returns>
/// true if the specified object is equal to the current object; otherwise, false.
/// </returns>
/// <param name="obj">The object to compare with the current object. </param><filterpriority>2</filterpriority>
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj)) return false;
if (ReferenceEquals(this, obj)) return true;
if (obj.GetType() != this.GetType()) return false;
return Equals((MapFileRow)obj);
}
/// <summary>
/// Serves as a hash function for a particular type.
/// </summary>
/// <returns>
/// A hash code for the current <see cref="T:System.Object"/>.
/// </returns>
/// <filterpriority>2</filterpriority>
public override int GetHashCode()
{
unchecked
{
return (Date.GetHashCode() * 397) ^ (MappedSymbol != null ? MappedSymbol.GetHashCode() : 0);
}
}
/// <summary>
/// Determines whether or not the two instances are equal
/// </summary>
public static bool operator ==(MapFileRow left, MapFileRow right)
{
return Equals(left, right);
}
/// <summary>
/// Determines whether or not the two instances are not equal
/// </summary>
public static bool operator !=(MapFileRow left, MapFileRow right)
{
return !Equals(left, right);
}
#endregion
/// <summary>
/// Writes this row to csv format
/// </summary>
public string ToCsv()
{
return $"{Date.ToStringInvariant(DateFormat.EightCharacter)},{MappedSymbol.ToLowerInvariant()}";
}
public override string ToString()
{
return Date.ToShortDateString() + ": " + MappedSymbol;
}
}
}