mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 19:01:02 +08:00

* WIP
* Generation of index.js
* Add RelativeToCwd
* Add JSDoc comments
* Convert to ES6 syntax
* Fix typo
* Initial generation of typescript declarations
* Typescript improvements
* Improved @returns jsdoc
* Improved declaration files
* Simplified output
* Rename file
* Tidy up
* Revert "Simplified output"
This reverts commit 15cdf7382b
.
* Now parsing actual code
* Support Array types
* Reimagined parser
* Wrap parsing in Parser
* Rewritten module generator (TS Only)
* Final touches
* Slight refactor to improve output
* Struct comments. External struct literal binding
* Reworked project parser *working*
* remove debug info
* Refactor of parser
* remove the spew
* Better Ts support
* Better project generation logic
* Support local functions in bind()
* JS Object generation. Linting.
* Support json tags in module generation
* Updated mod files
* Support vscode file generation
* Better global.d.ts
* add ts-check to templates
* Support TS declaration files
* improved 'generate' command for module
203 lines
4.8 KiB
Go
203 lines
4.8 KiB
Go
package fs
|
|
|
|
import (
|
|
"crypto/md5"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"runtime"
|
|
"unsafe"
|
|
|
|
"github.com/leaanthony/slicer"
|
|
)
|
|
|
|
// LocalDirectory gets the caller's file directory
|
|
// Equivalent to node's __DIRNAME
|
|
func LocalDirectory() string {
|
|
_, thisFile, _, _ := runtime.Caller(1)
|
|
return filepath.Dir(thisFile)
|
|
}
|
|
|
|
// RelativeToCwd returns an absolute path based on the cwd
|
|
// and the given relative path
|
|
func RelativeToCwd(relativePath string) (string, error) {
|
|
cwd, err := os.Getwd()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return filepath.Join(cwd, relativePath), nil
|
|
}
|
|
|
|
// Mkdir will create the given directory
|
|
func Mkdir(dirname string) error {
|
|
return os.Mkdir(dirname, 0755)
|
|
}
|
|
|
|
// DeleteFile will delete the given file
|
|
func DeleteFile(filename string) error {
|
|
return os.Remove(filename)
|
|
}
|
|
|
|
// CopyFile from source to target
|
|
func CopyFile(source string, target string) error {
|
|
s, err := os.Open(source)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer s.Close()
|
|
d, err := os.Create(target)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if _, err := io.Copy(d, s); err != nil {
|
|
d.Close()
|
|
return err
|
|
}
|
|
return d.Close()
|
|
}
|
|
|
|
// DirExists - Returns true if the given path resolves to a directory on the filesystem
|
|
func DirExists(path string) bool {
|
|
fi, err := os.Lstat(path)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
|
|
return fi.Mode().IsDir()
|
|
}
|
|
|
|
// FileExists returns a boolean value indicating whether
|
|
// the given file exists
|
|
func FileExists(path string) bool {
|
|
fi, err := os.Lstat(path)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
|
|
return fi.Mode().IsRegular()
|
|
}
|
|
|
|
// RelativePath returns a qualified path created by joining the
|
|
// directory of the calling file and the given relative path.
|
|
//
|
|
// Example: RelativePath("..") in *this* file would give you '/path/to/wails2/v2/internal`
|
|
func RelativePath(relativepath string, optionalpaths ...string) string {
|
|
_, thisFile, _, _ := runtime.Caller(1)
|
|
localDir := filepath.Dir(thisFile)
|
|
|
|
// If we have optional paths, join them to the relativepath
|
|
if len(optionalpaths) > 0 {
|
|
paths := []string{relativepath}
|
|
paths = append(paths, optionalpaths...)
|
|
relativepath = filepath.Join(paths...)
|
|
}
|
|
result, err := filepath.Abs(filepath.Join(localDir, relativepath))
|
|
if err != nil {
|
|
// I'm allowing this for 1 reason only: It's fatal if the path
|
|
// supplied is wrong as it's only used internally in Wails. If we get
|
|
// that path wrong, we should know about it immediately. The other reason is
|
|
// that it cuts down a ton of unnecassary error handling.
|
|
panic(err)
|
|
}
|
|
return result
|
|
}
|
|
|
|
// MustLoadString attempts to load a string and will abort with a fatal message if
|
|
// something goes wrong
|
|
func MustLoadString(filename string) string {
|
|
data, err := ioutil.ReadFile(filename)
|
|
if err != nil {
|
|
fmt.Printf("FATAL: Unable to load file '%s': %s\n", filename, err.Error())
|
|
os.Exit(1)
|
|
}
|
|
return *(*string)(unsafe.Pointer(&data))
|
|
}
|
|
|
|
// MD5File returns the md5sum of the given file
|
|
func MD5File(filename string) (string, error) {
|
|
f, err := os.Open(filename)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
defer f.Close()
|
|
|
|
h := md5.New()
|
|
if _, err := io.Copy(h, f); err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return fmt.Sprintf("%x", h.Sum(nil)), nil
|
|
}
|
|
|
|
// MustMD5File will call MD5File and abort the program on error
|
|
func MustMD5File(filename string) string {
|
|
result, err := MD5File(filename)
|
|
if err != nil {
|
|
println("FATAL: Unable to MD5Sum file:", err.Error())
|
|
os.Exit(1)
|
|
}
|
|
return result
|
|
}
|
|
|
|
// MustWriteString will attempt to write the given data to the given filename
|
|
// It will abort the program in the event of a failure
|
|
func MustWriteString(filename string, data string) {
|
|
err := ioutil.WriteFile(filename, []byte(data), 0755)
|
|
if err != nil {
|
|
fatal("Unable to write file", filename, ":", err.Error())
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
// fatal will print the optional messages and die
|
|
func fatal(message ...string) {
|
|
if len(message) > 0 {
|
|
print("FATAL:")
|
|
for text := range message {
|
|
print(text)
|
|
}
|
|
}
|
|
os.Exit(1)
|
|
}
|
|
|
|
// GetSubdirectories returns a list of subdirectories for the given root directory
|
|
func GetSubdirectories(rootDir string) (*slicer.StringSlicer, error) {
|
|
var result slicer.StringSlicer
|
|
|
|
// Iterate root dir
|
|
err := filepath.Walk(rootDir, func(path string, info os.FileInfo, err error) error {
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// If we have a directory, save it
|
|
if info.IsDir() {
|
|
result.Add(path)
|
|
}
|
|
return nil
|
|
})
|
|
return &result, err
|
|
}
|
|
|
|
func DirIsEmpty(dir string) (bool, error) {
|
|
|
|
if !DirExists(dir) {
|
|
return false, fmt.Errorf("DirIsEmpty called with a non-existant directory: %s", dir)
|
|
}
|
|
|
|
// CREDIT: https://stackoverflow.com/a/30708914/8325411
|
|
f, err := os.Open(dir)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
defer f.Close()
|
|
|
|
_, err = f.Readdirnames(1) // Or f.Readdir(1)
|
|
if err == io.EOF {
|
|
return true, nil
|
|
}
|
|
return false, err // Either not empty or error, suits both cases
|
|
}
|