forked from go-python/gopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
78 lines (65 loc) · 1.47 KB
/
main.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Copyright 2015 The go-python Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"fmt"
"io"
"log"
"os"
"path"
"github.com/gonuts/commander"
"github.com/gonuts/flag"
"github.com/pkg/errors"
)
func run(args []string) error {
app := &commander.Command{
UsageLine: "gopy",
Subcommands: []*commander.Command{
gopyMakeCmdGen(),
gopyMakeCmdBuild(),
gopyMakeCmdPkg(),
gopyMakeCmdExe(),
},
Flag: *flag.NewFlagSet("gopy", flag.ExitOnError),
}
err := app.Flag.Parse(args)
if err != nil {
return fmt.Errorf("could not parse flags: %v", err)
}
appArgs := app.Flag.Args()
err = app.Dispatch(appArgs)
if err != nil {
return fmt.Errorf("error dispatching command: %v", err)
}
return nil
}
func main() {
err := run(os.Args[1:])
if err != nil {
log.Fatal(err)
}
os.Exit(0)
}
func copyCmd(src, dst string) error {
srcf, err := os.Open(src)
if err != nil {
return errors.Wrap(err, "could not open source for copy")
}
defer srcf.Close()
os.MkdirAll(path.Dir(dst), 0755)
dstf, err := os.Create(dst)
if err != nil {
return errors.Wrap(err, "could not create destination for copy")
}
defer dstf.Close()
_, err = io.Copy(dstf, srcf)
if err != nil {
return errors.Wrap(err, "could not copy bytes to destination")
}
err = dstf.Sync()
if err != nil {
return errors.Wrap(err, "could not synchronize destination")
}
return dstf.Close()
}