forked from grafana/k6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadsource.go
56 lines (51 loc) · 1.78 KB
/
readsource.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
package loader
import (
"errors"
"fmt"
"io"
"io/ioutil"
"net/url"
"path/filepath"
"github.com/loadimpact/k6/lib/fsext"
"github.com/spf13/afero"
)
// ReadSource Reads a source file from any supported destination.
func ReadSource(src, pwd string, filesystems map[string]afero.Fs, stdin io.Reader) (*SourceData, error) {
if src == "-" {
data, err := ioutil.ReadAll(stdin)
if err != nil {
return nil, err
}
// TODO: don't do it in this way ...
err = afero.WriteFile(filesystems["file"].(fsext.CacheOnReadFs).GetCachingFs(), "/-", data, 0644)
if err != nil {
return nil, fmt.Errorf("caching data read from -: %w", err)
}
return &SourceData{URL: &url.URL{Path: "/-", Scheme: "file"}, Data: data}, err
}
var srcLocalPath string
if filepath.IsAbs(src) {
srcLocalPath = src
} else {
srcLocalPath = filepath.Join(pwd, src)
}
// All paths should start with a / in all fses. This is mostly for windows where it will start
// with a volume name : C:\something.js
srcLocalPath = filepath.Clean(afero.FilePathSeparator + srcLocalPath)
if ok, _ := afero.Exists(filesystems["file"], srcLocalPath); ok {
// there is file on the local disk ... lets use it :)
return Load(filesystems, &url.URL{Scheme: "file", Path: filepath.ToSlash(srcLocalPath)}, src)
}
pwdURL := &url.URL{Scheme: "file", Path: filepath.ToSlash(filepath.Clean(pwd)) + "/"}
srcURL, err := Resolve(pwdURL, filepath.ToSlash(src))
if err != nil {
return nil, err
}
result, err := Load(filesystems, srcURL, src)
var noSchemeError noSchemeRemoteModuleResolutionError
if errors.As(err, &noSchemeError) {
// TODO maybe try to wrap the original error here as well, without butchering the message
return nil, fmt.Errorf(nothingWorkedLoadedMsg, noSchemeError.moduleSpecifier, noSchemeError.err)
}
return result, err
}