blob: 900cf80188b2f196519d4d3afd9ee98c60d7b324 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 (
"runtime"
)
import (
"github.com/spf13/cobra"
)
import (
"dubbo.apache.org/dubbo-go/v3/dubbogo-cli/generator/sample"
"dubbo.apache.org/dubbo-go/v3/dubbogo-cli/generator/sample/hessian"
)
// hessianCmd represents the hessian-register-generator command
var hessianCmd = &cobra.Command{
Use: "hessian",
Short: "automatic generate hessian pojo register statement",
Run: generateHessianRegistry,
}
func init() {
rootCmd.AddCommand(hessianCmd)
hessianCmd.Flags().StringP(hessian.CmdFlagInclude, "i", "./", "file scan directory path, default `./`")
hessianCmd.Flags().IntP(hessian.CmdFlagThread, "t", runtime.NumCPU()*2, "worker thread limit, default (cpu core) * 2")
hessianCmd.Flags().BoolP(hessian.CmdFlagOnlyError, "e", false, "only print error message, default false")
}
func generateHessianRegistry(cmd *cobra.Command, _ []string) {
var include string
var thread int
var onlyError bool
var err error
include, err = cmd.Flags().GetString(hessian.CmdFlagInclude)
if err != nil {
panic(err)
}
thread, err = cmd.Flags().GetInt(hessian.CmdFlagThread)
if err != nil {
panic(err)
}
onlyError, err = cmd.Flags().GetBool(hessian.CmdFlagOnlyError)
if err != nil {
panic(err)
}
if err = sample.HessianRegistryGenerate(include, thread, onlyError); err != nil {
panic(err)
}
}