public StoreArea(StoreBase store, long id, long offset, bool readOnly, long fixedSize) { Store = store; Id = id; IsReadOnly = readOnly; // Check the offset is valid if (offset != FixedAreaOffset) { store.CheckOffset(offset); } StartOffset = offset; position = StartOffset; EndOffset = StartOffset + fixedSize; }
public StoreArea(StoreBase store, long id, long offset, bool readOnly) { Store = store; Id = id; IsReadOnly = readOnly; store.CheckOffset(offset); store.Read(offset, buffer, 0, 8); long v = ByteBuffer.ReadInt8(buffer, 0); if ((v & DeletedFlag) != 0) { throw new IOException("Store being constructed on deleted area."); } long maxSize = v - 16; StartOffset = offset + 8; position = StartOffset; EndOffset = StartOffset + maxSize; }
public StoreArea(StoreBase store, long id, long offset, bool readOnly) { Store = store; Id = id; IsReadOnly = readOnly; store.CheckOffset(offset); store.Read(offset, buffer, 0, 8); long v = ByteBuffer.ReadInt8(buffer, 0); if ((v & DeletedFlag) != 0) throw new IOException("Store being constructed on deleted area."); long maxSize = v - 16; StartOffset = offset + 8; position = StartOffset; EndOffset = StartOffset + maxSize; }
protected virtual void Dispose(bool disposing) { if (disposing) { // TODO: } buffer = null; Store = null; }