7.4. flag.Value接口

在本章,我们会学到另一个标准的接口类型flag.Value是怎么帮助命令行标记定义新的符号的。思考下面这个会休眠特定时间的程序:

gopl.io/ch7/sleep

  1. var period = flag.Duration("period", 1*time.Second, "sleep period")
  2. func main() {
  3. flag.Parse()
  4. fmt.Printf("Sleeping for %v...", *period)
  5. time.Sleep(*period)
  6. fmt.Println()
  7. }

在它休眠前它会打印出休眠的时间周期。fmt包调用time.Duration的String方法打印这个时间周期是以用户友好的注解方式,而不是一个纳秒数字:

  1. $ go build gopl.io/ch7/sleep
  2. $ ./sleep
  3. Sleeping for 1s...

默认情况下,休眠周期是一秒,但是可以通过 -period 这个命令行标记来控制。flag.Duration函数创建一个time.Duration类型的标记变量并且允许用户通过多种用户友好的方式来设置这个变量的大小,这种方式还包括和String方法相同的符号排版形式。这种对称设计使得用户交互良好。

  1. $ ./sleep -period 50ms
  2. Sleeping for 50ms...
  3. $ ./sleep -period 2m30s
  4. Sleeping for 2m30s...
  5. $ ./sleep -period 1.5h
  6. Sleeping for 1h30m0s...
  7. $ ./sleep -period "1 day"
  8. invalid value "1 day" for flag -period: time: invalid duration 1 day

因为时间周期标记值非常的有用,所以这个特性被构建到了flag包中;但是我们为我们自己的数据类型定义新的标记符号是简单容易的。我们只需要定义一个实现flag.Value接口的类型,如下:

  1. package flag
  2. // Value is the interface to the value stored in a flag.
  3. type Value interface {
  4. String() string
  5. Set(string) error
  6. }

String方法格式化标记的值用在命令行帮助消息中;这样每一个flag.Value也是一个fmt.Stringer。Set方法解析它的字符串参数并且更新标记变量的值。实际上,Set方法和String是两个相反的操作,所以最好的办法就是对他们使用相同的注解方式。

让我们定义一个允许通过摄氏度或者华氏温度变换的形式指定温度的celsiusFlag类型。注意celsiusFlag内嵌了一个Celsius类型(§2.5),因此不用实现本身就已经有String方法了。为了实现flag.Value,我们只需要定义Set方法:

gopl.io/ch7/tempconv

  1. // *celsiusFlag satisfies the flag.Value interface.
  2. type celsiusFlag struct{ Celsius }
  3. func (f *celsiusFlag) Set(s string) error {
  4. var unit string
  5. var value float64
  6. fmt.Sscanf(s, "%f%s", &value, &unit) // no error check needed
  7. switch unit {
  8. case "C", "°C":
  9. f.Celsius = Celsius(value)
  10. return nil
  11. case "F", "°F":
  12. f.Celsius = FToC(Fahrenheit(value))
  13. return nil
  14. }
  15. return fmt.Errorf("invalid temperature %q", s)
  16. }

调用fmt.Sscanf函数从输入s中解析一个浮点数(value)和一个字符串(unit)。虽然通常必须检查Sscanf的错误返回,但是在这个例子中我们不需要因为如果有错误发生,就没有switch case会匹配到。

下面的CelsiusFlag函数将所有逻辑都封装在一起。它返回一个内嵌在celsiusFlag变量f中的Celsius指针给调用者。Celsius字段是一个会通过Set方法在标记处理的过程中更新的变量。调用Var方法将标记加入应用的命令行标记集合中,有异常复杂命令行接口的全局变量flag.CommandLine.Programs可能有几个这个类型的变量。调用Var方法将一个*celsiusFlag参数赋值给一个flag.Value参数,导致编译器去检查*celsiusFlag是否有必须的方法。

  1. // CelsiusFlag defines a Celsius flag with the specified name,
  2. // default value, and usage, and returns the address of the flag variable.
  3. // The flag argument must have a quantity and a unit, e.g., "100C".
  4. func CelsiusFlag(name string, value Celsius, usage string) *Celsius {
  5. f := celsiusFlag{value}
  6. flag.CommandLine.Var(&f, name, usage)
  7. return &f.Celsius
  8. }

现在我们可以开始在我们的程序中使用新的标记:

gopl.io/ch7/tempflag

  1. var temp = tempconv.CelsiusFlag("temp", 20.0, "the temperature")
  2. func main() {
  3. flag.Parse()
  4. fmt.Println(*temp)
  5. }

下面是典型的场景:

  1. $ go build gopl.io/ch7/tempflag
  2. $ ./tempflag
  3. 20°C
  4. $ ./tempflag -temp -18C
  5. -18°C
  6. $ ./tempflag -temp 212°F
  7. 100°C
  8. $ ./tempflag -temp 273.15K
  9. invalid value "273.15K" for flag -temp: invalid temperature "273.15K"
  10. Usage of ./tempflag:
  11. -temp value
  12. the temperature (default 20°C)
  13. $ ./tempflag -help
  14. Usage of ./tempflag:
  15. -temp value
  16. the temperature (default 20°C)

练习 7.6: 对tempFlag加入支持开尔文温度。

练习 7.7: 解释为什么帮助信息在它的默认值是20.0没有包含°C的情况下输出了°C。