Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support build / run under wasm / gopherjs #15

Merged
merged 1 commit into from Apr 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions osfs/os.go
@@ -1,3 +1,5 @@
// +build !js

// Package osfs provides a billy filesystem for the OS.
package osfs // import "github.com/go-git/go-billy/v5/osfs"

Expand Down
23 changes: 23 additions & 0 deletions osfs/os_js.go
@@ -0,0 +1,23 @@
package osfs
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since in go-git, you can open and clone a repository declaring the kind of fs, I rather having this implementation as an implementation that returns "Not Implemented" errors for every method or one that simply panics if you call to os.New()


import (
"github.com/go-git/go-billy/v5"
"github.com/go-git/go-billy/v5/helper/chroot"
"github.com/go-git/go-billy/v5/memfs"
)

// globalMemFs is the global memory fs
var globalMemFs = memfs.New()

const (
defaultDirectoryMode = 0755
defaultCreateMode = 0666
)

// OS is a filesystem shim for js.
type OS struct{}

// New returns a new OS filesystem.
func New(baseDir string) billy.Filesystem {
return chroot.New(globalMemFs, baseDir)
}
2 changes: 1 addition & 1 deletion osfs/os_posix.go
@@ -1,4 +1,4 @@
// +build !plan9,!windows
// +build !plan9,!windows,!js

package osfs

Expand Down