b3494afc47
Globals values can be reloaded from configuration.
98 lines
3.8 KiB
C#
98 lines
3.8 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.Globalization;
|
|
using System.Linq;
|
|
|
|
namespace QuantConnect.Util
|
|
{
|
|
/// <summary>
|
|
/// Provides methods for dealing with lean assembly versions
|
|
/// </summary>
|
|
public static class VersionHelper
|
|
{
|
|
private static readonly bool IgnoreVersionChecks = Configuration.Config.GetBool("ignore-version-checks");
|
|
|
|
/// <summary>
|
|
/// Determines whether or not the specified version is older than this instance
|
|
/// </summary>
|
|
/// <param name="version">The version to compare</param>
|
|
/// <returns>True if the specified version is older, false otherwise</returns>
|
|
public static bool IsOlderVersion(string version)
|
|
{
|
|
return CompareVersions(version, Globals.Version) < 0;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Determines whether or not the specified version is newer than this instance
|
|
/// </summary>
|
|
/// <param name="version">The version to compare</param>
|
|
/// <returns>True if the specified version is newer, false otherwise</returns>
|
|
public static bool IsNewerVersion(string version)
|
|
{
|
|
return CompareVersions(version, Globals.Version) > 0;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Determines whether or not the specified version is equal to this instance
|
|
/// </summary>
|
|
/// <param name="version">The version to compare</param>
|
|
/// <returns>True if the specified version is equal, false otherwise</returns>
|
|
public static bool IsEqualVersion(string version)
|
|
{
|
|
return CompareVersions(version, Globals.Version) == 0;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Determines whether or not the specified version is not equal to this instance
|
|
/// </summary>
|
|
/// <param name="version">The version to compare</param>
|
|
/// <returns>True if the specified version is not equal, false otherwise</returns>
|
|
public static bool IsNotEqualVersion(string version)
|
|
{
|
|
return !IsEqualVersion(version);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Compares two versions
|
|
/// </summary>
|
|
/// <returns>1 if the left version is after the right, 0 if they're the same, -1 if the left is before the right</returns>
|
|
public static int CompareVersions(string left, string right)
|
|
{
|
|
if (IgnoreVersionChecks || left == right) return 0;
|
|
|
|
// we actually need to parse the ints here, made up of 4 parts separated by '.'
|
|
// sample: 123.45.67.90123
|
|
var leftv = ParseVersion(left);
|
|
var rightv = ParseVersion(right);
|
|
for (int i = 0; i < leftv.Length; i++)
|
|
{
|
|
int comparison = leftv[i].CompareTo(rightv[i]);
|
|
if (comparison != 0)
|
|
{
|
|
return comparison;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
private static int[] ParseVersion(string version)
|
|
{
|
|
var parts = version.Split('.');
|
|
return parts.Select(x => int.Parse(x, CultureInfo.InvariantCulture)).ToArray();
|
|
}
|
|
}
|
|
}
|