mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
876 B
40 lines
876 B
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
func getCurrentPkg() (string, error) {
|
|
path, err := os.Getwd()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return filepath.Base(path), nil
|
|
}
|
|
|
|
func main() {
|
|
pkg, err := getCurrentPkg()
|
|
if err != nil {
|
|
log.Fatal("Failed to get current package: ", err.Error())
|
|
return
|
|
}
|
|
|
|
file, err := os.OpenFile("errors.generated.go", os.O_WRONLY|os.O_TRUNC|os.O_CREATE, 0644)
|
|
if err != nil {
|
|
log.Fatalf("Failed to generate errors.generated.go: %v", err)
|
|
return
|
|
}
|
|
|
|
fmt.Fprintln(file, "package", pkg)
|
|
fmt.Fprintln(file, "")
|
|
fmt.Fprintln(file, "import \"v2ray.com/core/common/errors\"")
|
|
fmt.Fprintln(file, "")
|
|
fmt.Fprintln(file, "type errPathObjHolder struct {}")
|
|
fmt.Fprintln(file, "func newError(values ...interface{}) *errors.Error { return errors.New(values...).WithPathObj(errPathObjHolder{}) }")
|
|
|
|
file.Close()
|
|
}
|