123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197 |
- // Copyright 2021-2023 EMQ Technologies Co., Ltd.
- //
- // 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 main
- import (
- "bufio"
- "encoding/json"
- "fmt"
- "net/rpc"
- "os"
- "sort"
- "strings"
- "time"
- "github.com/urfave/cli"
- "github.com/lf-edge/ekuiper/internal/conf"
- "github.com/lf-edge/ekuiper/internal/pkg/model"
- "github.com/lf-edge/ekuiper/pkg/infra"
- )
- type clientConf struct {
- Host string `yaml:"host"`
- Port int `yaml:"port"`
- }
- const ClientYaml = "client.yaml"
- func streamProcess(client *rpc.Client, args string) {
- var reply string
- if args == "" {
- args = strings.Join(os.Args[1:], " ")
- }
- err := client.Call("Server.Stream", args, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- }
- var (
- Version = "unknown"
- LoadFileType = "relative"
- )
- func main() {
- conf.LoadFileType = LoadFileType
- app := cli.NewApp()
- app.Version = Version
- // nflag := []cli.Flag { cli.StringFlag{
- // Name: "name, n",
- // Usage: "the name of stream",
- // }}
- var cfg map[string]clientConf
- err := conf.LoadConfigByName(ClientYaml, &cfg)
- if err != nil {
- conf.Log.Fatal(err)
- fmt.Printf("Failed to load config file with error %s.\n", err)
- }
- var config *clientConf
- c, ok := cfg["basic"]
- if !ok {
- fmt.Printf("No basic config in client.yaml, will use the default configuration.\n")
- } else {
- config = &c
- }
- if config == nil {
- config = &clientConf{
- Host: "127.0.0.1",
- Port: 20498,
- }
- }
- fmt.Printf("Connecting to %s:%d... \n", config.Host, config.Port)
- // Create a TCP connection to localhost on port 1234
- client, err := rpc.DialHTTP("tcp", fmt.Sprintf("%s:%d", config.Host, config.Port))
- if err != nil {
- fmt.Printf("Failed to connect the server, please start the server.\n")
- return
- }
- app.Commands = []cli.Command{
- {
- Name: "query",
- Aliases: []string{"query"},
- Usage: "query command line",
- Action: func(c *cli.Context) error {
- reader := bufio.NewReader(os.Stdin)
- ticker := time.NewTicker(time.Millisecond * 300)
- defer ticker.Stop()
- for {
- fmt.Print("kuiper > ")
- text, _ := reader.ReadString('\n')
- // convert CRLF to LF
- text = strings.Replace(text, "\n", "", -1)
- if strings.EqualFold(text, "quit") || strings.EqualFold(text, "exit") {
- break
- } else if strings.Trim(text, " ") == "" {
- continue
- } else {
- var reply string
- err := client.Call("Server.CreateQuery", text, &reply)
- if err != nil {
- fmt.Println(err)
- continue
- }
- fmt.Println(reply)
- go func() {
- err := infra.SafeRun(func() error {
- for {
- <-ticker.C
- var result string
- e := client.Call("Server.GetQueryResult", "", &result)
- if e != nil {
- return e
- }
- if result != "" {
- fmt.Println(result)
- }
- }
- })
- if err != nil {
- fmt.Println(err)
- fmt.Print("kuiper > ")
- }
- }()
- }
- }
- return nil
- },
- },
- {
- Name: "create",
- Aliases: []string{"create"},
- Usage: "create stream $stream_name | create stream $stream_name -f $stream_def_file | create table $table_name | create table $table_name -f $table_def_file| create rule $rule_name $rule_json | create rule $rule_name -f $rule_def_file | create plugin $plugin_type $plugin_name $plugin_json | create plugin $plugin_type $plugin_name -f $plugin_def_file | create service $service_name $service_json | create schema $schema_type $schema_name $schema_json",
- Subcommands: []cli.Command{
- {
- Name: "stream",
- Usage: "create stream $stream_name [-f stream_def_file]",
- Flags: []cli.Flag{
- cli.StringFlag{
- Name: "file, f",
- Usage: "the location of stream definition file",
- FilePath: "/home/mystream.txt",
- },
- },
- Action: func(c *cli.Context) error {
- sfile := c.String("file")
- if sfile != "" {
- if stream, err := readDef(sfile, "stream"); err != nil {
- fmt.Printf("%s", err)
- return nil
- } else {
- args := strings.Join([]string{"CREATE STREAM ", string(stream)}, " ")
- streamProcess(client, args)
- return nil
- }
- } else {
- streamProcess(client, "")
- return nil
- }
- },
- },
- {
- Name: "table",
- Usage: "create table $table_name [-f table_def_file]",
- Flags: []cli.Flag{
- cli.StringFlag{
- Name: "file, f",
- Usage: "the location of table definition file",
- FilePath: "/home/mytable.txt",
- },
- },
- Action: func(c *cli.Context) error {
- sfile := c.String("file")
- if sfile != "" {
- if stream, err := readDef(sfile, "table"); err != nil {
- fmt.Printf("%s", err)
- return nil
- } else {
- args := strings.Join([]string{"CREATE TABLE ", string(stream)}, " ")
- streamProcess(client, args)
- return nil
- }
- } else {
- streamProcess(client, "")
- return nil
- }
- },
- },
- {
- Name: "rule",
- Usage: "create rule $rule_name [$rule_json | -f rule_def_file]",
- Flags: []cli.Flag{
- cli.StringFlag{
- Name: "file, f",
- Usage: "the location of rule definition file",
- FilePath: "/home/myrule.txt",
- },
- },
- Action: func(c *cli.Context) error {
- sfile := c.String("file")
- if sfile != "" {
- if rule, err := readDef(sfile, "rule"); err != nil {
- fmt.Printf("%s", err)
- return nil
- } else {
- if len(c.Args()) != 1 {
- fmt.Printf("Expect rule name.\n")
- return nil
- }
- rname := c.Args()[0]
- var reply string
- args := &model.RPCArgDesc{Name: rname, Json: string(rule)}
- err = client.Call("Server.CreateRule", args, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- }
- return nil
- } else {
- if len(c.Args()) != 2 {
- fmt.Printf("Expect rule name and json.\nBut found %d args:%s.\n", len(c.Args()), c.Args())
- return nil
- }
- rname := c.Args()[0]
- rjson := c.Args()[1]
- var reply string
- args := &model.RPCArgDesc{Name: rname, Json: rjson}
- err = client.Call("Server.CreateRule", args, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- }
- },
- },
- {
- Name: "plugin",
- Usage: "create plugin $plugin_type $plugin_name [$plugin_json | -f plugin_def_file]",
- Flags: []cli.Flag{
- cli.StringFlag{
- Name: "file, f",
- Usage: "the location of plugin definition file",
- FilePath: "/home/myplugin.txt",
- },
- },
- Action: func(c *cli.Context) error {
- if len(c.Args()) < 2 {
- fmt.Printf("Expect plugin type and name.\n")
- return nil
- }
- ptype, err := getPluginType(c.Args()[0])
- if err != nil {
- fmt.Printf("%s\n", err)
- return nil
- }
- pname := c.Args()[1]
- sfile := c.String("file")
- args := &model.PluginDesc{
- RPCArgDesc: model.RPCArgDesc{
- Name: pname,
- },
- Type: ptype,
- }
- if sfile != "" {
- if len(c.Args()) != 2 {
- fmt.Printf("Expect plugin type, name.\nBut found %d args:%s.\n", len(c.Args()), c.Args())
- return nil
- }
- if p, err := readDef(sfile, "plugin"); err != nil {
- fmt.Printf("%s", err)
- return nil
- } else {
- args.Json = string(p)
- }
- } else {
- if len(c.Args()) != 3 {
- fmt.Printf("Expect plugin type, name and json.\nBut found %d args:%s.\n", len(c.Args()), c.Args())
- return nil
- }
- args.Json = c.Args()[2]
- }
- var reply string
- err = client.Call("Server.CreatePlugin", args, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "service",
- Usage: "create service $service_name $service_json",
- Action: func(c *cli.Context) error {
- if len(c.Args()) < 2 {
- fmt.Printf("Expect service name and json.\n")
- return nil
- }
- var reply string
- err = client.Call("Server.CreateService", &model.RPCArgDesc{
- Name: c.Args()[0],
- Json: c.Args()[1],
- }, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "schema",
- Usage: "create schema $schema_type $schema_name $schema_json",
- Action: func(c *cli.Context) error {
- if len(c.Args()) < 3 {
- fmt.Printf("Expect plugin type, name and json.\n")
- return nil
- }
- var reply string
- err = client.Call("Server.CreateSchema", &model.RPCTypedArgDesc{
- Type: c.Args()[0],
- Name: c.Args()[1],
- Json: c.Args()[2],
- }, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- },
- },
- {
- Name: "describe",
- Aliases: []string{"describe"},
- Usage: "describe stream $stream_name | describe table $table_name | describe rule $rule_name | describe plugin $plugin_type $plugin_name | describe udf $udf_name | describe service $service_name | describe service_func $service_func_name | describe schema $schema_type $schema_name",
- Subcommands: []cli.Command{
- {
- Name: "stream",
- Usage: "describe stream $stream_name",
- // Flags: nflag,
- Action: func(c *cli.Context) error {
- streamProcess(client, "")
- return nil
- },
- },
- {
- Name: "table",
- Usage: "describe table $table_name",
- // Flags: nflag,
- Action: func(c *cli.Context) error {
- streamProcess(client, "")
- return nil
- },
- },
- {
- Name: "rule",
- Usage: "describe rule $rule_name",
- Action: func(c *cli.Context) error {
- if len(c.Args()) != 1 {
- fmt.Printf("Expect rule name.\n")
- return nil
- }
- rname := c.Args()[0]
- var reply string
- err = client.Call("Server.DescRule", rname, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "plugin",
- Usage: "describe plugin $plugin_type $plugin_name",
- // Flags: nflag,
- Action: func(c *cli.Context) error {
- ptype, err := getPluginType(c.Args()[0])
- if err != nil {
- fmt.Printf("%s\n", err)
- return nil
- }
- if len(c.Args()) != 2 {
- fmt.Printf("Expect plugin name.\n")
- return nil
- }
- pname := c.Args()[1]
- args := &model.PluginDesc{
- RPCArgDesc: model.RPCArgDesc{
- Name: pname,
- },
- Type: ptype,
- }
- var reply string
- err = client.Call("Server.DescPlugin", args, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "udf",
- Usage: "describe udf $udf_name",
- // Flags: nflag,
- Action: func(c *cli.Context) error {
- if len(c.Args()) != 1 {
- fmt.Printf("Expect udf name.\n")
- return nil
- }
- pname := c.Args()[0]
- var reply string
- err = client.Call("Server.DescUdf", pname, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "service",
- Usage: "describe service $service_name",
- Action: func(c *cli.Context) error {
- if len(c.Args()) != 1 {
- fmt.Printf("Expect service name.\n")
- return nil
- }
- name := c.Args()[0]
- var reply string
- err = client.Call("Server.DescService", name, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "service_func",
- Usage: "describe service_func $service_func_name",
- Action: func(c *cli.Context) error {
- if len(c.Args()) != 1 {
- fmt.Printf("Expect service func name.\n")
- return nil
- }
- name := c.Args()[0]
- var reply string
- err = client.Call("Server.DescServiceFunc", name, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "schema",
- Usage: "describe schema $schema_type $schema_name",
- Action: func(c *cli.Context) error {
- if len(c.Args()) != 2 {
- fmt.Printf("Expect schema type and name.\n")
- return nil
- }
- args := &model.RPCTypedArgDesc{
- Type: c.Args()[0],
- Name: c.Args()[1],
- }
- var reply string
- err = client.Call("Server.DescSchema", args, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- },
- },
- {
- Name: "drop",
- Aliases: []string{"drop"},
- Usage: "drop stream $stream_name | drop table $table_name |drop rule $rule_name | drop plugin $plugin_type $plugin_name -s $stop | drop service $service_name | drop schema $schema_type $schema_name",
- Subcommands: []cli.Command{
- {
- Name: "stream",
- Usage: "drop stream $stream_name",
- // Flags: nflag,
- Action: func(c *cli.Context) error {
- streamProcess(client, "")
- return nil
- },
- },
- {
- Name: "table",
- Usage: "drop table $table_name",
- // Flags: nflag,
- Action: func(c *cli.Context) error {
- streamProcess(client, "")
- return nil
- },
- },
- {
- Name: "rule",
- Usage: "drop rule $rule_name",
- // Flags: nflag,
- Action: func(c *cli.Context) error {
- if len(c.Args()) != 1 {
- fmt.Printf("Expect rule name.\n")
- return nil
- }
- rname := c.Args()[0]
- var reply string
- err = client.Call("Server.DropRule", rname, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "plugin",
- Usage: "drop plugin $plugin_type $plugin_name -s stop",
- Flags: []cli.Flag{
- cli.StringFlag{
- Name: "stop, s",
- Usage: "stop kuiper after the action",
- },
- },
- Action: func(c *cli.Context) error {
- r := c.String("stop")
- if r != "true" && r != "false" {
- fmt.Printf("Expect s flag to be a boolean value.\n")
- return nil
- }
- if len(c.Args()) < 2 || len(c.Args()) > 3 {
- fmt.Printf("Expect plugin type and name.\n")
- return nil
- }
- ptype, err := getPluginType(c.Args()[0])
- if err != nil {
- fmt.Printf("%s\n", err)
- return nil
- }
- pname := c.Args()[1]
- args := &model.PluginDesc{
- RPCArgDesc: model.RPCArgDesc{
- Name: pname,
- },
- Type: ptype,
- Stop: r == "true",
- }
- var reply string
- err = client.Call("Server.DropPlugin", args, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "service",
- Usage: "drop service $service_name",
- Action: func(c *cli.Context) error {
- if len(c.Args()) != 1 {
- fmt.Printf("Expect service name.\n")
- return nil
- }
- name := c.Args()[0]
- var reply string
- err = client.Call("Server.DropService", name, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "schema",
- Usage: "drop schema $schema_type $schema_name",
- Action: func(c *cli.Context) error {
- if len(c.Args()) != 2 {
- fmt.Printf("Expect schema type and name.\n")
- return nil
- }
- args := &model.RPCTypedArgDesc{
- Type: c.Args()[0],
- Name: c.Args()[1],
- }
- var reply string
- err = client.Call("Server.DropSchema", args, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- },
- },
- {
- Name: "show",
- Aliases: []string{"show"},
- Usage: "show streams | show tables | show rules | show plugins $plugin_type | show services | show service_funcs | show schemas $schema_type",
- Subcommands: []cli.Command{
- {
- Name: "streams",
- Usage: "show streams",
- Action: func(c *cli.Context) error {
- streamProcess(client, "")
- return nil
- },
- },
- {
- Name: "tables",
- Usage: "show tables",
- Action: func(c *cli.Context) error {
- streamProcess(client, "")
- return nil
- },
- },
- {
- Name: "rules",
- Usage: "show rules",
- Action: func(c *cli.Context) error {
- var reply string
- err = client.Call("Server.ShowRules", 0, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "plugins",
- Usage: "show plugins $plugin_type",
- Action: func(c *cli.Context) error {
- if len(c.Args()) != 1 {
- fmt.Printf("Expect plugin type.\n")
- return nil
- }
- ptype, err := getPluginType(c.Args()[0])
- if err != nil {
- fmt.Printf("%s\n", err)
- return nil
- }
- var reply string
- err = client.Call("Server.ShowPlugins", ptype, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "udfs",
- Usage: "show udfs",
- Action: func(c *cli.Context) error {
- var reply string
- err = client.Call("Server.ShowUdfs", 0, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "services",
- Usage: "show services",
- Action: func(c *cli.Context) error {
- var reply string
- err = client.Call("Server.ShowServices", 0, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "service_funcs",
- Usage: "show service_funcs",
- Action: func(c *cli.Context) error {
- var reply string
- err = client.Call("Server.ShowServiceFuncs", 0, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "schemas",
- Usage: "show schemas $schema_type",
- Action: func(c *cli.Context) error {
- if len(c.Args()) != 1 {
- fmt.Printf("Expect schema type.\n")
- return nil
- }
- var reply string
- err = client.Call("Server.ShowSchemas", c.Args()[0], &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- },
- },
- {
- Name: "getstatus",
- Aliases: []string{"getstatus"},
- Usage: "getstatus rule $rule_name | import",
- Subcommands: []cli.Command{
- {
- Name: "rule",
- Usage: "getstatus rule $rule_name",
- // Flags: nflag,
- Action: func(c *cli.Context) error {
- if len(c.Args()) != 1 {
- fmt.Printf("Expect rule name.\n")
- return nil
- }
- rname := c.Args()[0]
- var reply string
- err = client.Call("Server.GetStatusRule", rname, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "import",
- Usage: "getstatus import",
- // Flags: nflag,
- Action: func(c *cli.Context) error {
- var reply string
- err = client.Call("Server.GetStatusImport", 0, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- },
- },
- {
- Name: "gettopo",
- Aliases: []string{"gettopo"},
- Usage: "gettopo rule $rule_name",
- Subcommands: []cli.Command{
- {
- Name: "rule",
- Usage: "getstopo rule $rule_name",
- // Flags: nflag,
- Action: func(c *cli.Context) error {
- if len(c.Args()) != 1 {
- fmt.Printf("Expect rule name.\n")
- return nil
- }
- rname := c.Args()[0]
- var reply string
- err = client.Call("Server.GetTopoRule", rname, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- },
- },
- {
- Name: "start",
- Aliases: []string{"start"},
- Usage: "start rule $rule_name",
- Subcommands: []cli.Command{
- {
- Name: "rule",
- Usage: "start rule $rule_name",
- // Flags: nflag,
- Action: func(c *cli.Context) error {
- if len(c.Args()) != 1 {
- fmt.Printf("Expect rule name.\n")
- return nil
- }
- rname := c.Args()[0]
- var reply string
- err = client.Call("Server.StartRule", rname, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- },
- },
- {
- Name: "stop",
- Aliases: []string{"stop"},
- Usage: "stop rule $rule_name",
- Subcommands: []cli.Command{
- {
- Name: "rule",
- Usage: "stop rule $rule_name",
- // Flags: nflag,
- Action: func(c *cli.Context) error {
- if len(c.Args()) != 1 {
- fmt.Printf("Expect rule name.\n")
- return nil
- }
- rname := c.Args()[0]
- var reply string
- err = client.Call("Server.StopRule", rname, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- },
- },
- {
- Name: "restart",
- Aliases: []string{"restart"},
- Usage: "restart rule $rule_name",
- Subcommands: []cli.Command{
- {
- Name: "rule",
- Usage: "restart rule $rule_name",
- // Flags: nflag,
- Action: func(c *cli.Context) error {
- if len(c.Args()) != 1 {
- fmt.Printf("Expect rule name.\n")
- return nil
- }
- rname := c.Args()[0]
- var reply string
- err = client.Call("Server.RestartRule", rname, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- },
- },
- {
- Name: "register",
- Aliases: []string{"register"},
- Usage: "register plugin function $plugin_name [$plugin_json | -f plugin_def_file]",
- Subcommands: []cli.Command{
- {
- Name: "plugin",
- Usage: "register plugin $plugin_type $plugin_name [$plugin_json | -f plugin_def_file]",
- Flags: []cli.Flag{
- cli.StringFlag{
- Name: "file, f",
- Usage: "the location of plugin functions definition file",
- FilePath: "/home/myplugin.txt",
- },
- },
- Action: func(c *cli.Context) error {
- if len(c.Args()) < 2 {
- fmt.Printf("Expect plugin type and name.\n")
- return nil
- }
- ptype := c.Args()[0]
- if !strings.EqualFold(ptype, "function") {
- fmt.Printf("Plugin type must be function.\n")
- return nil
- }
- pname := c.Args()[1]
- sfile := c.String("file")
- args := &model.PluginDesc{
- RPCArgDesc: model.RPCArgDesc{
- Name: pname,
- },
- }
- if sfile != "" {
- if len(c.Args()) != 2 {
- fmt.Printf("Expect plugin type, name.\nBut found %d args:%s.\n", len(c.Args()), c.Args())
- return nil
- }
- if p, err := readDef(sfile, "plugin"); err != nil {
- fmt.Printf("%s", err)
- return nil
- } else {
- args.Json = string(p)
- }
- } else {
- if len(c.Args()) != 3 {
- fmt.Printf("Expect plugin type, name and json.\nBut found %d args:%s.\n", len(c.Args()), c.Args())
- return nil
- }
- args.Json = c.Args()[2]
- }
- var reply string
- err = client.Call("Server.RegisterPlugin", args, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- },
- },
- {
- Name: "import",
- Aliases: []string{"import"},
- Usage: "import ruleset | data -f file -p partial -s stop",
- Subcommands: []cli.Command{
- {
- Name: "ruleset",
- Usage: "\"import ruleset -f ruleset_file",
- Flags: []cli.Flag{
- cli.StringFlag{
- Name: "file, f",
- Usage: "the location of the ruleset json file",
- FilePath: "/home/ekuiper_ruleset.json",
- },
- },
- Action: func(c *cli.Context) error {
- sfile := c.String("file")
- if sfile == "" {
- fmt.Print("Required ruleset json file to import")
- return nil
- }
- var reply string
- err = client.Call("Server.Import", sfile, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "data",
- Usage: "\"import data -f configuration_file -p partial -s stop",
- Flags: []cli.Flag{
- cli.StringFlag{
- Name: "file, f",
- Usage: "the location of the configuration json file",
- FilePath: "/home/ekuiper_configuration.json",
- },
- cli.StringFlag{
- Name: "stop, s",
- Usage: "stop kuiper after the action",
- },
- cli.StringFlag{
- Name: "partial, p",
- Usage: "import partial configuration",
- },
- },
- Action: func(c *cli.Context) error {
- sfile := c.String("file")
- if sfile == "" {
- fmt.Print("Required configuration json file to import")
- return nil
- }
- r := c.String("stop")
- if r != "true" && r != "false" {
- fmt.Printf("Expect s flag to be a boolean value.\n")
- return nil
- }
- p := c.String("partial")
- if p != "true" && p != "false" {
- fmt.Printf("Expect p flag to be a boolean value.\n")
- return nil
- }
- args := &model.ImportDataDesc{
- FileName: sfile,
- Stop: r == "true",
- Partial: p == "true",
- }
- var reply string
- err = client.Call("Server.ImportConfiguration", args, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- },
- },
- {
- Name: "export",
- Aliases: []string{"export"},
- Usage: "export ruleset | data $ruleset_file [ -r rules ]",
- Subcommands: []cli.Command{
- {
- Name: "ruleset",
- Usage: "\"export ruleset $ruleset_file",
- Action: func(c *cli.Context) error {
- if len(c.Args()) < 1 {
- fmt.Printf("Require exported file name.\n")
- return nil
- }
- var reply string
- err = client.Call("Server.Export", c.Args()[0], &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- return nil
- },
- },
- {
- Name: "data",
- Usage: "export data $configuration_file [ -r rules ]",
- Flags: []cli.Flag{
- cli.StringFlag{
- Name: "rules, r",
- Usage: "the rules id in json array format",
- },
- },
- Action: func(c *cli.Context) error {
- args := model.ExportDataDesc{
- Rules: []string{},
- FileName: "",
- }
- rulesArray := c.String("rules")
- if rulesArray != "" {
- var rules []string
- err := json.Unmarshal([]byte(rulesArray), &rules)
- if err != nil {
- fmt.Printf("rules %s unmarshal error %s", rules, err)
- return nil
- }
- args.Rules = rules
- if len(c.Args()) != 1 {
- fmt.Printf("Expect configuration file.\n")
- return nil
- }
- args.FileName = c.Args()[0]
- var reply string
- err = client.Call("Server.ExportConfiguration", args, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- } else {
- if len(c.Args()) != 1 {
- fmt.Printf("Expect configuration file.\n")
- return nil
- }
- args.FileName = c.Args()[0]
- var reply string
- err = client.Call("Server.ExportConfiguration", args, &reply)
- if err != nil {
- fmt.Println(err)
- } else {
- fmt.Println(reply)
- }
- }
- return nil
- },
- },
- },
- },
- }
- app.Name = "Kuiper"
- app.Usage = "The command line tool for EMQ X Kuiper."
- app.Action = func(c *cli.Context) error {
- cli.ShowSubcommandHelp(c)
- // cli.ShowVersion(c)
- return nil
- }
- sort.Sort(cli.FlagsByName(app.Flags))
- sort.Sort(cli.CommandsByName(app.Commands))
- err = app.Run(os.Args)
- if err != nil {
- fmt.Printf("%v", err)
- }
- }
- func getPluginType(arg string) (ptype int, err error) {
- switch arg {
- case "source":
- ptype = 0
- case "sink":
- ptype = 1
- case "function":
- ptype = 2
- case "portable":
- ptype = 3
- case "wasm":
- ptype = 4
- default:
- err = fmt.Errorf("Invalid plugin type %s, should be \"source\", \"sink\", \"function\" or \"portable\" or \"wasm\".\n", arg)
- }
- return
- }
- func readDef(sfile string, t string) ([]byte, error) {
- if _, err := os.Stat(sfile); os.IsNotExist(err) {
- return nil, fmt.Errorf("The specified %s defenition file %s is not existed.\n", t, sfile)
- }
- fmt.Printf("Creating a new %s from file %s.\n", t, sfile)
- if rule, err := os.ReadFile(sfile); err != nil {
- return nil, fmt.Errorf("Failed to read from %s definition file %s.\n", t, sfile)
- } else {
- return rule, nil
- }
- }
|