This repository was archived by the owner on Feb 25, 2022. It is now read-only.
File tree 3 files changed +34
-2
lines changed
3 files changed +34
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ package alpaca
2
2
3
3
import (
4
4
"bitbucket.org/pkg/inflect"
5
+ "fmt"
6
+ "os"
5
7
"path/filepath"
6
8
"strings"
7
9
)
@@ -12,6 +14,7 @@ const (
12
14
13
15
var (
14
16
LibraryRoot string
17
+ FormatList []string
15
18
)
16
19
17
20
type Data struct {
@@ -28,12 +31,32 @@ type LanguageOptions struct {
28
31
Node bool `long:"no-node" description:"Do not write node library"`
29
32
}
30
33
31
- func WriteLibraries (directory string , opts * LanguageOptions ) {
34
+ func LoadLibraryPath (directory string ) {
32
35
var err error
33
36
34
37
LibraryRoot , err = filepath .Abs (directory )
35
38
HandleError (err )
39
+ }
40
+
41
+ func ConvertFormat (format string ) {
42
+ acceptable := false
43
+
44
+ FormatList = []string {"blueprint" }
45
+
46
+ for _ , v := range FormatList {
47
+ if v == format {
48
+ acceptable = true
49
+ }
50
+ }
51
+
52
+ if ! acceptable {
53
+ fmt .Println ("The given format is not allowed. Please choose one from the following:\n " )
54
+ fmt .Println (strings .Join (FormatList , ", " ) + "\n " )
55
+ os .Exit (0 )
56
+ }
57
+ }
36
58
59
+ func WriteLibraries (opts * LanguageOptions ) {
37
60
data := ReadData ()
38
61
ModifyData (data )
39
62
Original file line number Diff line number Diff line change
1
+ package alpaca
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ func main() {
13
13
var opts struct {
14
14
Version bool `short:"v" long:"version" description:"Show version information"`
15
15
16
+ Format string `short:"f" long:"format" description:"API description format" value-name:"FORMAT"`
17
+
16
18
Langs alpaca.LanguageOptions `group:"Language Options"`
17
19
}
18
20
@@ -41,5 +43,11 @@ func main() {
41
43
os .Exit (0 )
42
44
}
43
45
44
- alpaca .WriteLibraries (args [0 ], & opts .Langs )
46
+ alpaca .LoadLibraryPath (args [0 ])
47
+
48
+ if opts .Format != "" {
49
+ alpaca .ConvertFormat (opts .Format )
50
+ }
51
+
52
+ alpaca .WriteLibraries (& opts .Langs )
45
53
}
You can’t perform that action at this time.
0 commit comments