生データにアクセスするために、MemoryMappedFile に 222MB のファイルをロードしています。このデータは write メソッドを使用して更新されます。いくつかの計算の後、データをファイルの元の値にリセットする必要があります。現在、クラスを破棄して新しいインスタンスを作成することでそれを行っています。これは多くの場合うまくいきますが、CreateViewAccessor が次の例外でクラッシュすることがあります。
System.Exception: このコマンドを処理するのに十分な記憶域がありません。---> System.IO.IOException: このコマンドを処理するのに十分なストレージがありません。
System.IO.__Error.WinIOError (Int32 errorCode、おそらくフルパスの文字列) で System.IO.MemoryMappedFiles.MemoryMappedView.CreateView (SafeMemoryMappedFileHandle > memMappedFileHandle、MemoryMappedFileAccess アクセス、Int64 オフセット、Int64 サイズ) で System.IO.MemoryMappedFiles.MemoryMappedFile.CreateViewAccessor ( Int64 オフセット、Int64 > サイズ、MemoryMappedFileAccess アクセス)
次のクラスは、メモリマップ ファイルにアクセスするために使用されます。
public unsafe class MemoryMapAccessor : IDisposable
{
private MemoryMappedViewAccessor _bmaccessor;
private MemoryMappedFile _mmf;
private byte* _ptr;
private long _size;
public MemoryMapAccessor(string path, string mapName)
{
FileInfo info = new FileInfo(path);
_size = info.Length;
using (FileStream stream = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Delete | FileShare.ReadWrite))
_mmf = MemoryMappedFile.CreateFromFile(stream, mapName, _size, MemoryMappedFileAccess.Read, null, HandleInheritability.None, false);
_bmaccessor = _mmf.CreateViewAccessor(0, 0, MemoryMappedFileAccess.CopyOnWrite);
_bmaccessor.SafeMemoryMappedViewHandle.AcquirePointer(ref _ptr);
}
public void Dispose()
{
if (_bmaccessor != null)
{
_bmaccessor.SafeMemoryMappedViewHandle.ReleasePointer();
_bmaccessor.Dispose();
}
if (_mmf != null)
_mmf.Dispose();
}
public long Size { get { return _size; } }
public byte ReadByte(long idx)
{
if ((idx >= 0) && (idx < _size))
{
return *(_ptr + idx);
}
Debug.Fail(string.Format("MemoryMapAccessor: Index out of range {0}", idx));
return 0;
}
public void Write(long position, byte value)
{
if ((position >= 0) && (position < _size))
{
*(_ptr + position) = value;
}
else
throw new Exception(string.Format("MemoryMapAccessor: Index out of range {0}", position));
}
}
この問題の考えられる原因は何ですか?解決策/回避策はありますか?