mirror of
https://github.com/tjboldt/Apple2-IO-RPi.git
synced 2024-11-22 17:33:22 +00:00
50 lines
1002 B
Go
50 lines
1002 B
Go
// Copyright Terence J. Boldt (c)2020-2021
|
|
// Use of this source code is governed by an MIT
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// This file is contains the handler for loading files directly from the
|
|
// Raspberry Pi onto the Apple II
|
|
package handlers
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func LoadFileCommand() {
|
|
fileName, _ := comm.ReadString()
|
|
|
|
file, err := os.OpenFile(fileName, os.O_RDWR, 0755)
|
|
if err != nil {
|
|
fmt.Printf("ERROR: %s\n", err.Error())
|
|
comm.WriteByte(0)
|
|
comm.WriteByte(0)
|
|
return
|
|
}
|
|
|
|
fileInfo, _ := file.Stat()
|
|
fileSize := int(fileInfo.Size())
|
|
|
|
fmt.Printf("FileSize: %d\n", fileSize)
|
|
|
|
fileSizeHigh := byte(fileSize >> 8)
|
|
fileSizeLow := byte(fileSize & 255)
|
|
|
|
err = comm.WriteByte(fileSizeLow)
|
|
if err != nil {
|
|
return
|
|
}
|
|
err = comm.WriteByte(fileSizeHigh)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
buffer := make([]byte, fileSize)
|
|
|
|
fmt.Printf("Read file %s SizeHigh: %d SizeLow: %d\n", fileName, fileSizeHigh, fileSizeLow)
|
|
|
|
file.Read(buffer)
|
|
|
|
comm.WriteBuffer(buffer)
|
|
}
|