Skip to content
This repository was archived by the owner on Feb 25, 2022. It is now read-only.

Commit bc0ebb7

Browse files
committed
Started on other description formats
1 parent 382beb7 commit bc0ebb7

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

alpaca/alpaca.go

+24-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ package alpaca
22

33
import (
44
"bitbucket.org/pkg/inflect"
5+
"fmt"
6+
"os"
57
"path/filepath"
68
"strings"
79
)
@@ -12,6 +14,7 @@ const (
1214

1315
var (
1416
LibraryRoot string
17+
FormatList []string
1518
)
1619

1720
type Data struct {
@@ -28,12 +31,32 @@ type LanguageOptions struct {
2831
Node bool `long:"no-node" description:"Do not write node library"`
2932
}
3033

31-
func WriteLibraries(directory string, opts *LanguageOptions) {
34+
func LoadLibraryPath(directory string) {
3235
var err error
3336

3437
LibraryRoot, err = filepath.Abs(directory)
3538
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+
}
3658

59+
func WriteLibraries(opts *LanguageOptions) {
3760
data := ReadData()
3861
ModifyData(data)
3962

alpaca/format_blueprint.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package alpaca

main.go

+9-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ func main() {
1313
var opts struct {
1414
Version bool `short:"v" long:"version" description:"Show version information"`
1515

16+
Format string `short:"f" long:"format" description:"API description format" value-name:"FORMAT"`
17+
1618
Langs alpaca.LanguageOptions `group:"Language Options"`
1719
}
1820

@@ -41,5 +43,11 @@ func main() {
4143
os.Exit(0)
4244
}
4345

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)
4553
}

0 commit comments

Comments
 (0)