-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
80 lines (65 loc) · 1.63 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package main
import (
"fmt"
"os"
"path/filepath"
"ph1-assembly/constants"
"ph1-assembly/extractor"
"ph1-assembly/input"
"ph1-assembly/output"
"ph1-assembly/pherror"
"strings"
)
// Options armazenam as opções do montador
type Options struct {
InputFile string
OutputFile string
Compress bool
}
// Mount lê um arquivo fonte em assembly PH1 e monta para linguagem de máquina
// no padrão do emulador PH1
func Mount(opt *Options) {
// Inicializa os logs de erro
pherror.Setup(opt.InputFile)
// Validação para permitir que o usuário tente mais vezes caso o nome do arquivo esteja
// errado
Input := input.ReadSource(opt.InputFile)
// Primeira passagem: labels
labels := extractor.ExtractLabels(Input)
// Segunda passagem: instruções
instructions, data := extractor.ExtractInstructionsAndData(Input, labels)
// Gera o arquivo de saída a partir do nome definido no options
output.CreateOutputFile(*instructions, *data, opt.OutputFile)
}
func main() {
// Tratamento de erro
defer func() {
if err := recover(); err != nil {
pherr := pherror.Format(err)
fmt.Println(pherr)
if pherr.Code != 0 {
os.Exit(pherr.Code)
}
os.Exit(1)
}
}()
if len(os.Args) < 2 {
panic(pherror.MissingInputFile)
}
var input, output string
// Pega o arquivo de entrada dos argumentos
input = os.Args[1]
// Verifica o output
if len(os.Args) == 3 {
output = os.Args[2]
} else {
// Gera o output através do nome do arquivo
output = strings.Split(filepath.Base(input), ".")[0] + constants.OutputExtension
}
options := &Options{
InputFile: input,
OutputFile: output,
Compress: false,
}
Mount(options)
}