component/xload/block.go (43 lines of code) (raw):
/*
_____ _____ _____ ____ ______ _____ ------
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| --- | | | | |-----| |---- | | |-----| |----- ------
| | | | | | | | | | | | |
| ____| |_____ | ____| | ____| | |_____| _____| |_____ |_____
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
Copyright © 2020-2025 Microsoft Corporation. All rights reserved.
Author : <blobfusedev@microsoft.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE
*/
package xload
import (
"fmt"
"syscall"
)
// Block is a memory mapped buffer with its state to hold data
type Block struct {
Index int // Index of the block in the pool
Offset int64 // Start offset of the data this block holds
Length int64 // Length of data that this block holds
Id string // ID to represent this block in the blob
Data []byte // Data this block holds
}
// AllocateBlock creates a new memory mapped buffer for the given size
func AllocateBlock(size uint64) (*Block, error) {
if size == 0 {
return nil, fmt.Errorf("invalid size")
}
prot, flags := syscall.PROT_READ|syscall.PROT_WRITE, syscall.MAP_ANON|syscall.MAP_PRIVATE
addr, err := syscall.Mmap(-1, 0, int(size), prot, flags)
if err != nil {
return nil, fmt.Errorf("mmap error: %v", err)
}
block := &Block{
Data: addr,
}
return block, nil
}
// Delete cleans up the memory mapped buffer
func (b *Block) Delete() error {
if b.Data == nil {
return fmt.Errorf("invalid buffer")
}
err := syscall.Munmap(b.Data)
b.Data = nil
if err != nil {
// if we get here, there is likely memory corruption.
return fmt.Errorf("munmap error: %v", err)
}
return nil
}
// Clear the old data of this block
func (b *Block) ReUse() {
b.Id = ""
b.Index = 0
b.Offset = 0
b.Length = 0
}