ProDOS-Utilities/prodos/block.go

39 lines
981 B
Go
Raw Normal View History

2024-03-12 02:16:02 +00:00
// Copyright Terence J. Boldt (c)2021-2024
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.
// This file provides access to read and write
// blocks on a ProDOS drive image
2021-06-09 12:23:18 +00:00
package prodos
import (
"errors"
"fmt"
"io"
2021-06-09 12:23:18 +00:00
)
2022-01-23 22:30:18 +00:00
// ReadBlock reads a block from a ProDOS volume into a byte array
2024-03-11 13:05:23 +00:00
func ReadBlock(reader io.ReaderAt, block uint16) ([]byte, error) {
2021-06-09 12:23:18 +00:00
buffer := make([]byte, 512)
_, err := reader.ReadAt(buffer, int64(block)*512)
if err != nil {
errString := fmt.Sprintf("failed to read block %04X: %s", block, err.Error())
err = errors.New(errString)
}
2021-06-09 12:23:18 +00:00
return buffer, err
2021-06-09 12:23:18 +00:00
}
2022-01-23 22:30:18 +00:00
// WriteBlock writes a block to a ProDOS volume from a byte array
2024-03-11 13:05:23 +00:00
func WriteBlock(writer io.WriterAt, block uint16, buffer []byte) error {
_, err := writer.WriteAt(buffer, int64(block)*512)
if err != nil {
errString := fmt.Sprintf("failed to write block %04X: %s", block, err.Error())
err = errors.New(errString)
}
return err
2021-06-09 12:23:18 +00:00
}