dongxi7722 2017-01-10 20:56 采纳率: 0%
浏览 31
已采纳

眼镜蛇和毒蛇的配置文件

Basic information: I have created a go application and used Cobra for it. Cobra uses Viper for command line parameters and flags.

I have a command listen with a flag bind and I want to configure it in a yaml file.

Code:

The init function of the listen command looks like this:

func init() {
    RootCmd.AddCommand(listenCmd)
    listenCmd.Flags().StringP("bind", "b", ":50051", "Provide bind definition")
    viper.BindPFlag("bind", listenCmd.Flags().Lookup("bind"))
}

Code of my application is at https://github.com/sascha-andres/go-logsink

Problem:

When I call the app with listen --bind "bla" the flag is set correctly to bla, but I have not found a way to achieve this using a YAML file located in my home directory.

Config files tried:

---

connect:
  bind: "bla"

and

---

bind: "bla"

In both cases the config file was found but the flag had not the expected value but the default value.

How do I have to write the config file to have the flag populated correctly?

  • 写回答

1条回答 默认 最新

  • dongren5293 2017-01-11 12:32
    关注

    Ok, thanks for the additional information, It helped a lot !

    Problem

    The problem arises from the way you're retrieving the value of the flag. Here is what you currently have:

    bind := cmd.Flag("bind").Value.String()
    fmt.Printf("Binding definition provided: %s
    ", bind)
    server.Listen(bind)
    

    When binding a flag with viper, it's actually viper that will hold the final value, according to this priorities:

    1. If present, use the flag value
    2. Else, use the value from the config file
    3. Else, use the default flag value
    

    Your problem is that you retrieve the flag value from the flag set of the command, and not from viper.

    Behavior

    Here is the code I tested:

    bind := cmd.Flag("bind").Value.String()
    fmt.Printf("Binding definition provided: %s
    ", bind)
    fmt.Printf("Binding definition provided from viper: %s
    ", viper.GetString("bind"))
    

    Without the bind config param:

    $ go-logsink listen
    Using config file: /xxx/.go-logsink.yaml
    Binding definition provided: :50051
    Binding definition provided from viper: :50051
    

    With the bind config param set to "bla" (not nested, second config file):

    $ go-logsink listen
    Using config file: /xxx/.go-logsink.yaml
    Binding definition provided: :50051
    Binding definition provided from viper: bla
    

    With the bind config param set to "bla" (not nested, second config file) and an explicit flag:

    $ go-logsink listen --bind ":3333"
    Using config file: /xxx/.go-logsink.yaml
    Binding definition provided: :3333
    Binding definition provided from viper: :3333
    

    Bottomline : when binding your flags with viper, use viper to retrieve them.

    Additional note : In your README, the proper way to generate grpc compatible code is by adding the grpc plugin to protobuf generation: protoc --go_out=plugins=grpc:. *.proto

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化