1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 21:50:00 -05:00
denoland-deno/main.go

146 lines
2.9 KiB
Go
Raw Normal View History

2018-05-13 23:32:01 -04:00
package main
import (
"crypto/md5"
"encoding/hex"
2018-05-14 00:31:48 -04:00
"github.com/golang/protobuf/proto"
2018-05-13 23:32:01 -04:00
"github.com/ry/v8worker2"
2018-05-14 02:50:55 -04:00
"io/ioutil"
2018-05-14 00:31:48 -04:00
"os"
"path"
"runtime"
2018-05-13 23:32:01 -04:00
)
func SourceCodeHash(filename string, sourceCodeBuf []byte) string {
h := md5.New()
h.Write([]byte(filename))
h.Write(sourceCodeBuf)
return hex.EncodeToString(h.Sum(nil))
}
func HandleSourceCodeFetch(filename string) []byte {
res := &Msg{Kind: Msg_SOURCE_CODE_FETCH_RES}
sourceCodeBuf, err := Asset("dist/" + filename)
if err != nil {
sourceCodeBuf, err = ioutil.ReadFile(filename)
}
if err != nil {
res.Error = err.Error()
} else {
cacheKey := SourceCodeHash(filename, sourceCodeBuf)
println("cacheKey", filename, cacheKey)
// TODO For now don't do any cache lookups..
res.Payload = &Msg_SourceCodeFetchRes{
SourceCodeFetchRes: &SourceCodeFetchResMsg{
SourceCode: string(sourceCodeBuf),
OutputCode: "",
},
}
}
out, err := proto.Marshal(res)
check(err)
return out
}
func HandleSourceCodeCache(filename string, sourceCode string, outputCode string) []byte {
return nil
}
2018-05-14 02:50:55 -04:00
func ReadFileSync(filename string) []byte {
buf, err := ioutil.ReadFile(filename)
msg := &Msg{Kind: Msg_DATA_RESPONSE}
if err != nil {
msg.Error = err.Error()
} else {
msg.Data = buf
}
out, err := proto.Marshal(msg)
check(err)
2018-05-14 02:50:55 -04:00
return out
}
func UserHomeDir() string {
if runtime.GOOS == "windows" {
home := os.Getenv("HOMEDRIVE") + os.Getenv("HOMEPATH")
if home == "" {
home = os.Getenv("USERPROFILE")
}
return home
}
return os.Getenv("HOME")
}
func loadAsset(w *v8worker2.Worker, path string) {
data, err := Asset(path)
check(err)
err = w.Load(path, string(data))
check(err)
}
var DenoDir string
var CompileDir string
var SrcDir string
func createDirs() {
DenoDir = path.Join(UserHomeDir(), ".deno")
CompileDir = path.Join(DenoDir, "compile")
err := os.MkdirAll(CompileDir, 0700)
check(err)
SrcDir = path.Join(DenoDir, "src")
err = os.MkdirAll(SrcDir, 0700)
check(err)
}
func check(e error) {
if e != nil {
panic(e)
}
}
2018-05-14 02:50:55 -04:00
func recv(buf []byte) []byte {
msg := &Msg{}
err := proto.Unmarshal(buf, msg)
check(err)
2018-05-14 02:50:55 -04:00
switch msg.Kind {
case Msg_READ_FILE_SYNC:
return ReadFileSync(msg.Path)
2018-05-14 17:27:34 -04:00
case Msg_EXIT:
os.Exit(int(msg.Code))
case Msg_SOURCE_CODE_FETCH:
payload := msg.GetSourceCodeFetch()
return HandleSourceCodeFetch(payload.Filename)
case Msg_SOURCE_CODE_CACHE:
payload := msg.GetSourceCodeCache()
return HandleSourceCodeCache(payload.Filename, payload.SourceCode, payload.OutputCode)
2018-05-14 02:50:55 -04:00
default:
panic("Unexpected message")
}
2018-05-14 17:27:34 -04:00
return nil
2018-05-13 23:32:01 -04:00
}
2018-05-14 00:31:48 -04:00
func main() {
2018-05-14 20:57:49 -04:00
args := v8worker2.SetFlags(os.Args)
createDirs()
2018-05-13 23:32:01 -04:00
worker := v8worker2.New(recv)
2018-05-14 00:31:48 -04:00
loadAsset(worker, "dist/main.js")
2018-05-14 13:02:47 -04:00
cwd, err := os.Getwd()
check(err)
2018-05-14 13:02:47 -04:00
out, err := proto.Marshal(&Msg{
Kind: Msg_START,
Payload: &Msg_Start{
Start: &StartMsg{
Cwd: cwd,
Argv: args,
},
},
2018-05-14 13:02:47 -04:00
})
check(err)
2018-05-14 00:31:48 -04:00
err = worker.SendBytes(out)
if err != nil {
2018-05-14 03:12:36 -04:00
os.Stderr.WriteString(err.Error())
os.Exit(1)
2018-05-14 00:31:48 -04:00
}
2018-05-13 23:32:01 -04:00
}