Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve alternate parsing #596

Merged
merged 3 commits into from Apr 30, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 19 additions & 0 deletions src/NerdBank.GitVersioning.Tests/ManagedGit/GitRepositoryTests.cs
Expand Up @@ -286,6 +286,25 @@ public void GetMissingObjectByShaTest()
}
}

[Fact]
AArnott marked this conversation as resolved.
Show resolved Hide resolved
public void ParseAlternates_SingleValue_Test()
{
var alternates = GitRepository.ParseAlternates(Encoding.UTF8.GetBytes("/home/git/nbgv/.git/objects\n"));
Assert.Collection(
alternates,
a => Assert.Equal("/home/git/nbgv/.git/objects", a));
}

[Fact]
public void ParseAlternates_TwoValues_Test()
{
var alternates = GitRepository.ParseAlternates(Encoding.UTF8.GetBytes("/home/git/nbgv/.git/objects:../../clone/.git/objects\n"));
Assert.Collection(
alternates,
a => Assert.Equal("/home/git/nbgv/.git/objects", a),
a => Assert.Equal("../../clone/.git/objects", a));
}

private static void AssertPath(string expected, string actual)
{
Assert.Equal(
Expand Down
45 changes: 36 additions & 9 deletions src/NerdBank.GitVersioning/ManagedGit/GitRepository.cs
Expand Up @@ -6,6 +6,7 @@
using System.Globalization;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;

namespace Nerdbank.GitVersioning.ManagedGit
Expand Down Expand Up @@ -110,16 +111,14 @@ public GitRepository(string workingDirectory, string gitDirectory, string common
var length = alternateStream!.Read(alternates);
alternates = alternates.Slice(0, length);

int index = 0;

while ((index = alternates.IndexOf((byte)':')) > 0)
foreach(var alternate in ParseAlternates(alternates))
{
var alternate = GetString(alternates.Slice(0, index));
alternate = Path.GetFullPath(Path.Combine(this.ObjectDirectory, alternate));

this.alternates.Add(GitRepository.Create(workingDirectory, gitDirectory, commonDirectory, alternate));

alternates = alternates.Slice(index + 1);
this.alternates.Add(
GitRepository.Create(
workingDirectory,
gitDirectory,
commonDirectory,
objectDirectory: Path.GetFullPath(Path.Combine(this.ObjectDirectory, alternate))));
}
}

Expand Down Expand Up @@ -714,5 +713,33 @@ public static unsafe string GetString(ReadOnlySpan<byte> bytes)
return Encoding.GetString(pBytes, bytes.Length);
}
}

/// <summary>
/// Parses the contents of the alternates file, and returns a list of (relative) paths to the alternate object directories.
/// </summary>
/// <param name="alternates">
/// The contents of the alternates files.
/// </param>
/// <returns>
/// A list of (relative) paths to the alternate object directories.</returns>
qmfrederik marked this conversation as resolved.
Show resolved Hide resolved
public static List<string> ParseAlternates(ReadOnlySpan<byte> alternates)
{
List<string> values = new List<string>();

int index = 0;

// The alternates path is colon (:)-separated. On Windows, there may be full paths, such as
// C:/Users/username/source/repos/nbgv/.git, which also contain a colon. Because the colon
// can only appear at the second position, we skip the first two characters (e.g. C:) on Windows.
int skipCount = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? 2 : 0;

while (alternates.Length > skipCount && (index = alternates.Slice(skipCount).IndexOfAny((byte)':', (byte)'\n')) > 0)
{
values.Add(GetString(alternates.Slice(0, skipCount + index)));
alternates = alternates.Slice(skipCount + index + 1);
}

return values;
}
}
}