mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-07 04:23:41 +00:00
f50ad3585d
* initial commit for WASI support
* merge "time" package with wasi build tag
* override syscall package with wasi build tag
* create runtime_wasm_{js,wasi}.go files
* create syscall_wasi.go file
* create time/zoneinfo_wasi.go file as the replacement of zoneinfo_js.go
* add targets/wasi.json target
* set visbility hidden for runtime extern variables
Accodring to the WASI docs (https://github.com/WebAssembly/WASI/blob/master/design/application-abi.md#current-unstable-abi),
none of exports of WASI executable(Command) should no be accessed.
v0.19.0 of bytecodealliance/wasmetime, which is often refered to as the reference implementation of WASI,
does not accept any exports except functions and the only limited variables like "table", "memory".
* merge syscall_{baremetal,wasi}.go
* fix js target build
* mv wasi functions to syscall/wasi && implement sleepTicks
* WASI: set visibility hidden for globals variables
* mv back syscall/wasi/* to runtime package
* WASI: add test
* unexport wasi types
* WASI test: fix wasmtime path
* stop changing visibility of runtime.alloc
* use GOOS=linux, GOARCH=arm for wasi target
Signed-off-by: mathetake <takeshi@tetrate.io>
* WASI: fix build tags for os/runtime packages
Signed-off-by: mathetake <takeshi@tetrate.io>
* run WASI test only on Linux
Signed-off-by: mathetake <takeshi@tetrate.io>
* set InternalLinkage instead of changing visibility
Signed-off-by: mathetake <takeshi@tetrate.io>
111 lines
3.0 KiB
Go
111 lines
3.0 KiB
Go
// +build darwin linux,!baremetal,!wasi freebsd,!baremetal
|
|
|
|
package os
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func init() {
|
|
// Mount the host filesystem at the root directory. This is what most
|
|
// programs will be expecting.
|
|
Mount("/", unixFilesystem{})
|
|
}
|
|
|
|
// Stdin, Stdout, and Stderr are open Files pointing to the standard input,
|
|
// standard output, and standard error file descriptors.
|
|
var (
|
|
Stdin = &File{unixFileHandle(0), "/dev/stdin"}
|
|
Stdout = &File{unixFileHandle(1), "/dev/stdout"}
|
|
Stderr = &File{unixFileHandle(2), "/dev/stderr"}
|
|
)
|
|
|
|
// isOS indicates whether we're running on a real operating system with
|
|
// filesystem support.
|
|
const isOS = true
|
|
|
|
// unixFilesystem is an empty handle for a Unix/Linux filesystem. All operations
|
|
// are relative to the current working directory.
|
|
type unixFilesystem struct {
|
|
}
|
|
|
|
func (fs unixFilesystem) Mkdir(path string, perm FileMode) error {
|
|
return handleSyscallError(syscall.Mkdir(path, uint32(perm)))
|
|
}
|
|
|
|
func (fs unixFilesystem) Remove(path string) error {
|
|
return handleSyscallError(syscall.Unlink(path))
|
|
}
|
|
|
|
func (fs unixFilesystem) OpenFile(path string, flag int, perm FileMode) (FileHandle, error) {
|
|
// Map os package flags to syscall flags.
|
|
syscallFlag := 0
|
|
if flag&O_RDONLY != 0 {
|
|
syscallFlag |= syscall.O_RDONLY
|
|
}
|
|
if flag&O_WRONLY != 0 {
|
|
syscallFlag |= syscall.O_WRONLY
|
|
}
|
|
if flag&O_RDWR != 0 {
|
|
syscallFlag |= syscall.O_RDWR
|
|
}
|
|
if flag&O_APPEND != 0 {
|
|
syscallFlag |= syscall.O_APPEND
|
|
}
|
|
if flag&O_CREATE != 0 {
|
|
syscallFlag |= syscall.O_CREAT
|
|
}
|
|
if flag&O_EXCL != 0 {
|
|
syscallFlag |= syscall.O_EXCL
|
|
}
|
|
if flag&O_SYNC != 0 {
|
|
syscallFlag |= syscall.O_SYNC
|
|
}
|
|
if flag&O_TRUNC != 0 {
|
|
syscallFlag |= syscall.O_TRUNC
|
|
}
|
|
fp, err := syscall.Open(path, syscallFlag, uint32(perm))
|
|
return unixFileHandle(fp), handleSyscallError(err)
|
|
}
|
|
|
|
// unixFileHandle is a Unix file pointer with associated methods that implement
|
|
// the FileHandle interface.
|
|
type unixFileHandle uintptr
|
|
|
|
// Read reads up to len(b) bytes from the File. It returns the number of bytes
|
|
// read and any error encountered. At end of file, Read returns 0, io.EOF.
|
|
func (f unixFileHandle) Read(b []byte) (n int, err error) {
|
|
n, err = syscall.Read(int(f), b)
|
|
err = handleSyscallError(err)
|
|
return
|
|
}
|
|
|
|
// Write writes len(b) bytes to the File. It returns the number of bytes written
|
|
// and an error, if any. Write returns a non-nil error when n != len(b).
|
|
func (f unixFileHandle) Write(b []byte) (n int, err error) {
|
|
n, err = syscall.Write(int(f), b)
|
|
err = handleSyscallError(err)
|
|
return
|
|
}
|
|
|
|
// Close closes the File, rendering it unusable for I/O.
|
|
func (f unixFileHandle) Close() error {
|
|
return handleSyscallError(syscall.Close(int(f)))
|
|
}
|
|
|
|
// handleSyscallError converts syscall errors into regular os package errors.
|
|
// The err parameter must be either nil or of type syscall.Errno.
|
|
func handleSyscallError(err error) error {
|
|
if err == nil {
|
|
return nil
|
|
}
|
|
switch err.(syscall.Errno) {
|
|
case syscall.EEXIST:
|
|
return ErrExist
|
|
case syscall.ENOENT:
|
|
return ErrNotExist
|
|
default:
|
|
return err
|
|
}
|
|
}
|