mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
//----------------------------------------------------------------------------- |
|
// |
|
// Copyright (C) Microsoft Corporation. All Rights Reserved. |
|
// |
|
//----------------------------------------------------------------------------- |
|
using System; |
|
|
|
namespace Microsoft.Cci.Pdb { |
|
internal class MsfDirectory { |
|
internal MsfDirectory(PdbReader reader, PdbFileHeader head, BitAccess bits) { |
|
bits.MinCapacity(head.directorySize); |
|
int pages = reader.PagesFromSize(head.directorySize); |
|
|
|
// 0..n in page of directory pages. |
|
reader.Seek(head.directoryRoot, 0); |
|
bits.FillBuffer(reader.reader, pages * 4); |
|
|
|
DataStream stream = new DataStream(head.directorySize, bits, pages); |
|
bits.MinCapacity(head.directorySize); |
|
stream.Read(reader, bits); |
|
|
|
// 0..3 in directory pages |
|
int count; |
|
bits.ReadInt32(out count); |
|
|
|
// 4..n |
|
int[] sizes = new int[count]; |
|
bits.ReadInt32(sizes); |
|
|
|
// n..m |
|
streams = new DataStream[count]; |
|
for (int i = 0; i < count; i++) { |
|
if (sizes[i] <= 0) { |
|
streams[i] = new DataStream(); |
|
} else { |
|
streams[i] = new DataStream(sizes[i], bits, |
|
reader.PagesFromSize(sizes[i])); |
|
} |
|
} |
|
} |
|
|
|
internal DataStream[] streams; |
|
} |
|
|
|
}
|
|
|