Reorganized file structure

This commit is contained in:
2024-06-10 15:51:39 +02:00
parent c7354b8613
commit 6fe30f31da
57 changed files with 431 additions and 614 deletions

View File

@ -1,12 +1,7 @@
package build
import (
"bufio"
"os"
"path/filepath"
"git.akyoto.dev/cli/q/src/compiler"
"git.akyoto.dev/cli/q/src/elf"
)
// Build describes a compiler build.
@ -25,7 +20,7 @@ func New(directory string) *Build {
// Run parses the input files and generates an executable file.
func (build *Build) Run() error {
functions, err := compiler.Compile(build.Directory)
functions, err := Compile(build.Directory)
if err != nil {
return err
@ -35,33 +30,12 @@ func (build *Build) Run() error {
return nil
}
code, data := compiler.Finalize(functions)
return writeToDisk(build.Executable(), code, data)
path := build.Executable()
code, data := Finalize(functions)
return Write(path, code, data)
}
// Executable returns the path to the executable.
func (build *Build) Executable() string {
return filepath.Join(build.Directory, filepath.Base(build.Directory))
}
// writeToDisk writes the executable file to disk.
func writeToDisk(filePath string, code []byte, data []byte) error {
file, err := os.Create(filePath)
if err != nil {
return err
}
buffer := bufio.NewWriter(file)
executable := elf.New(code, data)
executable.Write(buffer)
buffer.Flush()
err = file.Close()
if err != nil {
return err
}
return os.Chmod(filePath, 0755)
}