// Copyright 2025 The Ip2Region Authors. All rights reserved. // Use of this source code is governed by a Apache2.0-style // license that can be found in the LICENSE file. // @Author Alan // @Date 2023/07/25 // Updated by Argo Zhang at 2025/11/21 using System.Buffers; namespace IP2Region.Net.Internal.Abstractions; internal abstract class AbstractCacheStrategy(string xdbPath) { protected const int HeaderInfoLength = 256; protected const int VectorIndexSize = 8; private const int BufferSize = 64 * 1024; public int IoCount { get; private set; } protected FileStream XdbFileStream = new(xdbPath, FileMode.Open, FileAccess.Read, FileShare.Read, BufferSize, FileOptions.RandomAccess); public void ResetIoCount() { IoCount = 0; } public virtual ReadOnlyMemory GetVectorIndex(int offset) => GetData(HeaderInfoLength + offset, VectorIndexSize); public virtual ReadOnlyMemory GetData(long offset, int length) { byte[] buffer = ArrayPool.Shared.Rent(length); int totalBytesRead = 0; try { XdbFileStream.Seek(offset, SeekOrigin.Begin); int bytesRead; while (totalBytesRead < length) { bytesRead = XdbFileStream.Read(buffer, totalBytesRead, length); totalBytesRead += bytesRead; IoCount++; } } finally { ArrayPool.Shared.Return(buffer); } return new ReadOnlyMemory(buffer, 0, totalBytesRead); } }