forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlob.cs
57 lines (50 loc) · 1.87 KB
/
Blob.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System;
using System.IO;
using LibGit2Sharp.Core;
namespace LibGit2Sharp
{
/// <summary>
/// Stores the binary content of a tracked file.
/// </summary>
public class Blob : GitObject
{
private readonly ILazy<Int64> lazySize;
private readonly ILazy<bool> lazyIsBinary;
/// <summary>
/// Needed for mocking purposes.
/// </summary>
protected Blob()
{ }
internal Blob(Repository repo, ObjectId id)
: base(repo, id)
{
lazySize = GitObjectLazyGroup.Singleton(repo, id, Proxy.git_blob_rawsize);
lazyIsBinary = GitObjectLazyGroup.Singleton(repo, id, Proxy.git_blob_is_binary);
}
/// <summary>
/// Gets the size in bytes of the raw content of a blob.
/// </summary>
public virtual int Size { get { return (int)lazySize.Value; } }
/// <summary>
/// Determine if the blob content is most certainly binary or not.
/// </summary>
public virtual bool IsBinary { get { return lazyIsBinary.Value; } }
/// <summary>
/// Gets the blob content in a <see cref="Stream"/>.
/// </summary>
public virtual Stream GetContentStream()
{
return Proxy.git_blob_rawcontent_stream(repo.Handle, Id, Size);
}
/// <summary>
/// Gets the blob content in a <see cref="Stream"/> as it would be
/// checked out to the working directory.
/// <param name="filteringOptions">Parameter controlling content filtering behavior</param>
/// </summary>
public virtual Stream GetContentStream(FilteringOptions filteringOptions)
{
Ensure.ArgumentNotNull(filteringOptions, "filteringOptions");
return Proxy.git_blob_filtered_content_stream(repo.Handle, Id, filteringOptions.HintPath, false);
}
}
}