Skip to content

Commit 54265e9

Browse files
committed
add completion stub code
1 parent 3f0f446 commit 54265e9

File tree

6 files changed

+58
-5
lines changed

6 files changed

+58
-5
lines changed

bin/describe_regions

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
aliyun ecs DescribeRegions | jq '.Regions.Region'| jq -r '["RegionId ", "LocalName "], ["---------------------", "---------------------"],(.[] | [.RegionId, .LocalName]) | @tsv'

cli/command.go

+12-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ package cli
66
import (
77
"fmt"
88
"github.com/aliyun/aliyun-cli/i18n"
9+
"os"
910
)
1011

1112
type Command struct {
@@ -41,6 +42,9 @@ type Command struct {
4142
// Help
4243
Help func(ctx *Context, args []string) error
4344

45+
// auto compete
46+
AutoComplete func(ctx *Context) []string
47+
4448
suggestDistance int
4549
parent *Command
4650
subCommands []*Command
@@ -62,6 +66,13 @@ func (c *Command) Flags() (*FlagSet) {
6266
func (c *Command) Execute(args []string) {
6367
ctx := NewCommandContext()
6468
ctx.EnterCommand(c)
69+
ctx.completion = NewCompletion()
70+
71+
//
72+
// if
73+
if ctx.completion != nil {
74+
args = ctx.completion.GetArgs()
75+
}
6576

6677
err := c.executeInner(ctx, args)
6778
if err != nil {
@@ -103,8 +114,7 @@ func (c *Command) GetUsageWithParent() string {
103114
}
104115
return usage
105116
}
106-
//
107-
//
117+
108118
func (c *Command) executeInner(ctx *Context, args []string) error {
109119
//
110120
// fmt.Printf(">>> Execute Command: %s args=%v\n", c.Name, args)

cli/completion.go

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* Copyright (C) 2017-2018 Alibaba Group Holding Limited
3+
*/
4+
package cli
5+
6+
import (
7+
"os"
8+
"strconv"
9+
"strings"
10+
)
11+
12+
type Completion struct {
13+
Words []string
14+
Line string
15+
Point int
16+
}
17+
18+
func NewCompletion() *Completion {
19+
line := os.Getenv("COMP_LINE")
20+
point, _ := strconv.Atoi(os.Getenv("COMP_POINT"))
21+
words := os.Getenv("COMP_WORDS")
22+
23+
return &Completion{
24+
Words: strings.Split(words, " "),
25+
Line: line,
26+
Point: point,
27+
}
28+
}
29+
30+
func (c *Completion) GetArgs() []string {
31+
return []string{}
32+
}

cli/context.go

+5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ type Context struct {
2323
flags *FlagSet
2424
unknownFlags *FlagSet
2525
command *Command
26+
completion *Completion
2627
}
2728

2829
func NewCommandContext() (*Context){
@@ -40,6 +41,10 @@ func (ctx *Context) Command() *Command {
4041
return ctx.command
4142
}
4243

44+
func (ctx *Context) Completion() *Completion {
45+
return ctx.completion
46+
}
47+
4348
func (ctx *Context) Flags() *FlagSet {
4449
return ctx.flags
4550
}

main/main.go

+8
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ func main() {
6060
Help: func(ctx *cli.Context, args []string) error {
6161
return processHelp(ctx, args)
6262
},
63+
AutoComplete: func(ctx *cli.Context) []string {
64+
return processCompletion(ctx)
65+
},
6366
}
6467

6568
fs := rootCmd.Flags()
@@ -112,6 +115,11 @@ func processMain(ctx *cli.Context, args []string) error {
112115
}
113116
}
114117

118+
func processCompletion(ctx *cli.Context) []string {
119+
//openapi.
120+
return make([]string, 0)
121+
}
122+
115123
func processHelp(ctx *cli.Context, args []string) error {
116124
c := ctx.Command()
117125
//if err != nil {

oss/lib/cli_bridge.go

-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ func NewOssCommand() *cli.Command {
1616
Usage: "aliyun oss [command] [args...] [options...]",
1717
Hidden: false,
1818
Short: i18n.T("Object Storage Service", "阿里云OSS对象存储"),
19-
//Run: func(ctx *cli.Context, args []string) error {
20-
// return nil
21-
//},
2219
}
2320

2421
result.AddSubCommand(NewCommandBridge(&configCommand))

0 commit comments

Comments
 (0)