1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/os.go

127 lines
2.9 KiB
Go
Raw Normal View History

2018-05-19 05:53:29 -04:00
package main
import (
"github.com/golang/protobuf/proto"
"io/ioutil"
2018-05-23 11:09:38 -04:00
"net/url"
2018-05-19 05:53:29 -04:00
"os"
2018-05-23 11:09:38 -04:00
"path"
2018-05-19 05:53:29 -04:00
"strings"
)
const assetPrefix string = "/$asset$/"
2018-05-21 23:00:36 -04:00
func InitOS() {
2018-05-21 22:07:40 -04:00
Sub("os", func(buf []byte) []byte {
msg := &Msg{}
check(proto.Unmarshal(buf, msg))
2018-05-25 15:36:13 -04:00
switch msg.Command {
case Msg_SOURCE_CODE_FETCH:
return HandleSourceCodeFetch(
msg.SourceCodeFetchModuleSpecifier,
msg.SourceCodeFetchContainingFile)
case Msg_SOURCE_CODE_CACHE:
return HandleSourceCodeCache(
msg.SourceCodeCacheFilename,
msg.SourceCodeCacheSourceCode,
msg.SourceCodeCacheOutputCode)
case Msg_EXIT:
os.Exit(int(msg.ExitCode))
2018-05-21 22:07:40 -04:00
default:
panic("[os] Unexpected message " + string(buf))
}
return nil
})
2018-05-19 05:53:29 -04:00
}
2018-05-23 11:09:38 -04:00
func ResolveModule(moduleSpecifier string, containingFile string) (
moduleName string, filename string, err error) {
2018-05-23 13:23:29 -04:00
2018-05-25 12:25:55 -04:00
logDebug("ResolveModule %s %s", moduleSpecifier, containingFile)
2018-05-23 13:23:29 -04:00
2018-05-23 11:09:38 -04:00
moduleUrl, err := url.Parse(moduleSpecifier)
if err != nil {
return
}
baseUrl, err := url.Parse(containingFile)
if err != nil {
return
}
resolved := baseUrl.ResolveReference(moduleUrl)
moduleName = resolved.String()
if moduleUrl.IsAbs() {
filename = path.Join(SrcDir, resolved.Host, resolved.Path)
} else {
filename = resolved.Path
}
return
}
2018-05-19 05:53:29 -04:00
func HandleSourceCodeFetch(moduleSpecifier string, containingFile string) (out []byte) {
2018-05-19 05:56:02 -04:00
assert(moduleSpecifier != "", "moduleSpecifier shouldn't be empty")
2018-05-19 05:53:29 -04:00
res := &Msg{}
var sourceCodeBuf []byte
var err error
defer func() {
if err != nil {
2018-05-25 15:30:09 -04:00
res.Error = err.Error()
2018-05-19 05:53:29 -04:00
}
out, err = proto.Marshal(res)
check(err)
}()
moduleName, filename, err := ResolveModule(moduleSpecifier, containingFile)
if err != nil {
return
}
//println("HandleSourceCodeFetch", "moduleSpecifier", moduleSpecifier,
// "containingFile", containingFile, "filename", filename)
2018-05-19 05:56:02 -04:00
if isRemote(moduleName) {
2018-05-19 05:53:29 -04:00
sourceCodeBuf, err = FetchRemoteSource(moduleName, filename)
} else if strings.HasPrefix(moduleName, assetPrefix) {
f := strings.TrimPrefix(moduleName, assetPrefix)
sourceCodeBuf, err = Asset("dist/" + f)
} else {
2018-05-19 05:56:02 -04:00
assert(moduleName == filename,
2018-05-19 05:53:29 -04:00
"if a module isn't remote, it should have the same filename")
sourceCodeBuf, err = ioutil.ReadFile(moduleName)
}
if err != nil {
return
}
outputCode, err := LoadOutputCodeCache(filename, sourceCodeBuf)
if err != nil {
return
}
var sourceCode = string(sourceCodeBuf)
var command = Msg_SOURCE_CODE_FETCH_RES
res = &Msg{
2018-05-25 15:30:09 -04:00
Command: command,
SourceCodeFetchResModuleName: moduleName,
SourceCodeFetchResFilename: filename,
SourceCodeFetchResSourceCode: sourceCode,
SourceCodeFetchResOutputCode: outputCode,
2018-05-19 05:53:29 -04:00
}
return
}
func HandleSourceCodeCache(filename string, sourceCode string,
outputCode string) []byte {
fn := CacheFileName(filename, []byte(sourceCode))
outputCodeBuf := []byte(outputCode)
err := ioutil.WriteFile(fn, outputCodeBuf, 0600)
res := &Msg{}
if err != nil {
2018-05-25 15:30:09 -04:00
res.Error = err.Error()
2018-05-19 05:53:29 -04:00
}
out, err := proto.Marshal(res)
check(err)
return out
}