106 lines
3.0 KiB
C#
106 lines
3.0 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Globalization;
|
|
using Microsoft.Extensions.Internal;
|
|
|
|
namespace Microsoft.AspNetCore.Razor.Evolution.Legacy
|
|
{
|
|
internal class MappingLocation
|
|
{
|
|
public MappingLocation()
|
|
{
|
|
}
|
|
|
|
public MappingLocation(SourceLocation location, int contentLength)
|
|
{
|
|
ContentLength = contentLength;
|
|
AbsoluteIndex = location.AbsoluteIndex;
|
|
LineIndex = location.LineIndex;
|
|
CharacterIndex = location.CharacterIndex;
|
|
FilePath = location.FilePath;
|
|
}
|
|
|
|
public int ContentLength { get; }
|
|
|
|
public int AbsoluteIndex { get; }
|
|
|
|
public int LineIndex { get; }
|
|
|
|
public int CharacterIndex { get; }
|
|
|
|
public string FilePath { get; }
|
|
|
|
public override bool Equals(object obj)
|
|
{
|
|
var other = obj as MappingLocation;
|
|
if (ReferenceEquals(other, null))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return string.Equals(FilePath, other.FilePath, StringComparison.Ordinal) &&
|
|
AbsoluteIndex == other.AbsoluteIndex &&
|
|
ContentLength == other.ContentLength &&
|
|
LineIndex == other.LineIndex &&
|
|
CharacterIndex == other.CharacterIndex;
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
var hashCodeCombiner = HashCodeCombiner.Start();
|
|
hashCodeCombiner.Add(FilePath, StringComparer.Ordinal);
|
|
hashCodeCombiner.Add(AbsoluteIndex);
|
|
hashCodeCombiner.Add(ContentLength);
|
|
hashCodeCombiner.Add(LineIndex);
|
|
hashCodeCombiner.Add(CharacterIndex);
|
|
|
|
return hashCodeCombiner;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format(
|
|
CultureInfo.CurrentCulture, "({0}:{1},{2} [{3}] {4})",
|
|
AbsoluteIndex,
|
|
LineIndex,
|
|
CharacterIndex,
|
|
ContentLength,
|
|
FilePath);
|
|
}
|
|
|
|
public static bool operator ==(MappingLocation left, MappingLocation right)
|
|
{
|
|
if (ReferenceEquals(left, right))
|
|
{
|
|
// Exact equality e.g. both objects are null.
|
|
return true;
|
|
}
|
|
|
|
if (ReferenceEquals(left, null))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return left.Equals(right);
|
|
}
|
|
|
|
public static bool operator !=(MappingLocation left, MappingLocation right)
|
|
{
|
|
if (ReferenceEquals(left, right))
|
|
{
|
|
// Exact equality e.g. both objects are null.
|
|
return false;
|
|
}
|
|
|
|
if (ReferenceEquals(left, null))
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return !left.Equals(right);
|
|
}
|
|
}
|
|
}
|