add basic command framework and apiserver

This commit is contained in:
Lei Xue
2016-08-27 20:07:03 +08:00
parent 283d26e1ea
commit f97ab027de
34 changed files with 2493 additions and 260 deletions

43
cmd/cmd.go Normal file
View File

@@ -0,0 +1,43 @@
package cmd
import (
"fmt"
"strings"
"github.com/gostor/gotgt/pkg/api/client"
"github.com/spf13/cobra"
)
func NewCommand(cli *client.Client) *cobra.Command {
var cmd = &cobra.Command{
Use: "citadm",
Short: "Gotgt is a very fast and stable SCSI target framework",
Long: ``,
Run: func(cmd *cobra.Command, args []string) {
// Do Stuff Here
},
}
cmd.AddCommand(
newCreateCommand(cli),
newRemoveCommand(cli),
newListCommand(cli),
newVersionCommand(cli),
)
return cmd
}
// NoArgs validate args and returns an error if there are any args
func NoArgs(cmd *cobra.Command, args []string) error {
if len(args) == 0 {
return nil
}
if cmd.HasSubCommands() {
return fmt.Errorf("\n" + strings.TrimRight(cmd.UsageString(), "\n"))
}
return fmt.Errorf(
"\"%s\" accepts no argument(s).\n",
cmd.CommandPath(),
)
}

95
cmd/create.go Normal file
View File

@@ -0,0 +1,95 @@
/*
Copyright 2016 The GoStor Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cmd
import (
"fmt"
"github.com/gostor/gotgt/pkg/api"
"github.com/gostor/gotgt/pkg/api/client"
"github.com/spf13/cobra"
"golang.org/x/net/context"
)
func newCreateCommand(cli *client.Client) *cobra.Command {
var cmd = &cobra.Command{
Use: "create",
Short: "Create a new object",
Long: `All software has versions. This is Gotgt 's`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println(cmd.UsageString())
},
}
cmd.AddCommand(
newCreateTargetCmd(cli),
newCreateLuCmd(cli),
)
return cmd
}
func newCreateTargetCmd(cli *client.Client) *cobra.Command {
opts := api.TargetCreateRequest{}
var cmd = &cobra.Command{
Use: "target",
Short: "Create a new target into gotgt",
Long: `All software has versions. This is Gotgt 's`,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) > 0 {
return fmt.Errorf(
"\"%s\" accepts no argument(s).\n",
cmd.CommandPath(),
)
}
return createTarget(cli, opts)
},
}
flags := cmd.Flags()
flags.StringVar(&opts.Name, "name", "", "Specify target name")
return cmd
}
func newCreateLuCmd(cli *client.Client) *cobra.Command {
var cmd = &cobra.Command{
Use: "lu",
Short: "Create a new Lu into gotgt",
Long: `All software has versions. This is Gotgt 's`,
RunE: func(cmd *cobra.Command, args []string) error {
if err := NoArgs(cmd, args); err != nil {
return err
}
return createLu(cli)
},
}
flags := cmd.Flags()
_ = flags
return cmd
}
func createTarget(cli *client.Client, opts api.TargetCreateRequest) error {
tgt, err := cli.TargetCreate(context.Background(), opts)
if err != nil {
return err
}
fmt.Printf("Target %s successfully created\n", tgt.Name)
return nil
}
func createLu(cli *client.Client) error {
return nil
}

108
cmd/list.go Normal file
View File

@@ -0,0 +1,108 @@
/*
Copyright 2016 The GoStor Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cmd
import (
"fmt"
"os"
"text/tabwriter"
"github.com/gostor/gotgt/pkg/api"
"github.com/gostor/gotgt/pkg/api/client"
"github.com/spf13/cobra"
"golang.org/x/net/context"
)
func newListCommand(cli *client.Client) *cobra.Command {
var cmd = &cobra.Command{
Use: "list",
Short: "List object(s)",
Long: `All software has versions. This is Gotgt 's`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println(cmd.UsageString())
},
}
cmd.AddCommand(
newListTargetCmd(cli),
newListLuCmd(cli),
)
return cmd
}
func newListTargetCmd(cli *client.Client) *cobra.Command {
opts := api.TargetListOptions{}
var cmd = &cobra.Command{
Use: "target",
Short: "List target(s) of gotgt",
Long: `All software has versions. This is Gotgt 's`,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) > 0 {
return fmt.Errorf(
"\"%s\" accepts no argument(s).\n",
cmd.CommandPath(),
)
}
return listTarget(cli, opts)
},
}
flags := cmd.Flags()
flags.StringVar(&opts.Name, "name", "", "Specify target name")
flags.BoolVar(&opts.Verbose, "verbose", false, "Show more details")
return cmd
}
func newListLuCmd(cli *client.Client) *cobra.Command {
var cmd = &cobra.Command{
Use: "lu",
Short: "List Lu(s) of gotgt",
Long: `All software has versions. This is Gotgt 's`,
RunE: func(cmd *cobra.Command, args []string) error {
if err := NoArgs(cmd, args); err != nil {
return err
}
return listLu(cli)
},
}
flags := cmd.Flags()
_ = flags
return cmd
}
func listTarget(cli *client.Client, opts api.TargetListOptions) error {
results, err := cli.TargetList(context.Background(), opts)
if err != nil {
return err
}
w := tabwriter.NewWriter(os.Stdout, 20, 1, 3, ' ', 0)
fmt.Fprintln(w, "TARGET NAME\tSTATE\tSESSIONS")
for _, tgt := range results {
status := "online"
if tgt.State == api.TargetReady {
status = "ready"
}
fmt.Fprintf(w, "%s\t%s\t%d\n", tgt.Name, status, len(tgt.ITNexus))
}
w.Flush()
return nil
}
func listLu(cli *client.Client) error {
return nil
}

87
cmd/remove.go Normal file
View File

@@ -0,0 +1,87 @@
/*
Copyright 2016 The GoStor Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cmd
import (
"fmt"
"github.com/gostor/gotgt/pkg/api"
"github.com/gostor/gotgt/pkg/api/client"
"github.com/spf13/cobra"
"golang.org/x/net/context"
)
func newRemoveCommand(cli *client.Client) *cobra.Command {
var cmd = &cobra.Command{
Use: "rm",
Short: "remove a new object",
Long: `All software has versions. This is Gotgt 's`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println(cmd.UsageString())
},
}
cmd.AddCommand(
newRemoveTargetCmd(cli),
newRemoveLuCmd(cli),
)
return cmd
}
func newRemoveTargetCmd(cli *client.Client) *cobra.Command {
opts := api.TargetRemoveOptions{}
var cmd = &cobra.Command{
Use: "target",
Short: "Remove a new target into gotgt",
Long: `All software has versions. This is Gotgt 's`,
RunE: func(cmd *cobra.Command, args []string) error {
return removeTarget(cli, opts)
},
}
flags := cmd.Flags()
flags.StringVar(&opts.Name, "name", "", "Specify target name")
flags.BoolVar(&opts.Force, "force", false, "Specify target name")
return cmd
}
func newRemoveLuCmd(cli *client.Client) *cobra.Command {
var cmd = &cobra.Command{
Use: "lu",
Short: "Remove a new Lu into gotgt",
Long: `All software has versions. This is Gotgt 's`,
RunE: func(cmd *cobra.Command, args []string) error {
return removeLu(cli)
},
}
flags := cmd.Flags()
_ = flags
return cmd
}
func removeTarget(cli *client.Client, opts api.TargetRemoveOptions) error {
err := cli.TargetRemove(context.Background(), opts)
if err != nil {
return err
}
fmt.Printf("Target %s successfully removed\n", opts.Name)
return nil
}
func removeLu(cli *client.Client) error {
return nil
}

21
cmd/version.go Normal file
View File

@@ -0,0 +1,21 @@
package cmd
import (
"fmt"
"github.com/gostor/gotgt/pkg/api/client"
"github.com/gostor/gotgt/pkg/version"
"github.com/spf13/cobra"
)
func newVersionCommand(cli *client.Client) *cobra.Command {
var cmd = &cobra.Command{
Use: "version",
Short: "Print the version number of gotgt",
Long: `All software has versions. This is Gotgt 's`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Printf("Gotgt %s -- HEAD\n", version.VERSION)
},
}
return cmd
}