-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIMappableFileStream.cs
70 lines (54 loc) · 2.03 KB
/
IMappableFileStream.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
58
59
60
61
62
63
64
65
66
67
68
69
70
using System;
namespace MappableFileStream
{
public interface IReadOnlyMappableFileStream : IDisposable
{
/// <summary>
/// Indicates if the stream has been disposed and cannot be used anymore.
/// </summary>
bool IsDisposed { get; }
int BlockSize { get; }
/// <summary>
/// Returns a pointer to the first element of the first block.
/// </summary>
/// <returns></returns>
IntPtr DangerousGetHandle();
/// <summary>
/// Advises the memory manager that the given block has been in use and shall not be preferred in paging when necessary.
/// </summary>
/// <param name="blockNo"></param>
void TouchBlock(int blockNo);
/// <summary>
/// Suggests the memory manager that the memory area is invalid and can be paged if necessary.
/// </summary>
/// <param name="blockNo"></param>
void Invalidate(int blockNo);
/// <summary>
/// Suggests the memory manager that the memory area is invalid and can be paged if necessary.
/// </summary>
/// <param name="blockNo"></param>
void Invalidate(int startBlock, int noOfBlocks);
/// <summary>
/// Suggests the memory manager that the memory area can be paged if necessary.
/// </summary>
/// <param name="blockNo"></param>
void Unmap(int blockNo);
/// <summary>
/// Suggests the memory manager that the memory area can be paged if necessary.
/// </summary>
/// <param name="blockNo"></param>
void UnmapRange(int startBlock, int noOfBlocks);
void Flush();
}
public interface IMappableFileStream : IReadOnlyMappableFileStream
{
}
public unsafe interface IReadOnlyMappableFileStream<T> : IReadOnlyMappableFileStream where T : unmanaged
{
unsafe T* DangerousGetHandle(int blockNo);
}
public interface IMappableFileStream<T> : IReadOnlyMappableFileStream<T> where T : unmanaged
{
}
}