-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathroot.go
95 lines (81 loc) · 3.59 KB
/
root.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// root.go viper root command code
package cmd
import (
"fmt"
"log"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/tphakala/birdnet-go/cmd/authors"
"github.com/tphakala/birdnet-go/cmd/benchmark"
"github.com/tphakala/birdnet-go/cmd/directory"
"github.com/tphakala/birdnet-go/cmd/file"
"github.com/tphakala/birdnet-go/cmd/license"
"github.com/tphakala/birdnet-go/cmd/rangefilter"
"github.com/tphakala/birdnet-go/cmd/realtime"
"github.com/tphakala/birdnet-go/cmd/support"
"github.com/tphakala/birdnet-go/internal/conf"
)
// RootCommand creates and returns the root command
func RootCommand(settings *conf.Settings) *cobra.Command {
// Create the root command
rootCmd := &cobra.Command{
Use: "birdnet",
Short: "BirdNET-Go CLI",
}
// Set up the global flags for the root command.
err := setupFlags(rootCmd, settings)
if err != nil {
log.Printf("error setting up flags: %v\n", err)
}
// Add sub-commands to the root command.
fileCmd := file.Command(settings)
directoryCmd := directory.Command(settings)
realtimeCmd := realtime.Command(settings)
authorsCmd := authors.Command()
licenseCmd := license.Command()
rangeCmd := rangefilter.Command(settings)
supportCmd := support.Command(settings)
benchmarkCmd := benchmark.Command(settings)
subcommands := []*cobra.Command{
fileCmd,
directoryCmd,
realtimeCmd,
authorsCmd,
licenseCmd,
rangeCmd,
supportCmd,
benchmarkCmd,
}
rootCmd.AddCommand(subcommands...)
rootCmd.PersistentPreRunE = func(cmd *cobra.Command, args []string) error {
// Skip setup for authors and license commands
if cmd.Name() != authorsCmd.Name() && cmd.Name() != licenseCmd.Name() {
if err := initialize(); err != nil {
return fmt.Errorf("error initializing: %w", err)
}
}
return nil
}
return rootCmd
}
// initialize is called before any subcommands are run, but after the context is ready
// This function is responsible for setting up configurations, ensuring the environment is ready, etc.
func initialize() error {
return nil
}
// defineGlobalFlags defines flags that are global to the command line interface
func setupFlags(rootCmd *cobra.Command, settings *conf.Settings) error {
rootCmd.PersistentFlags().BoolVarP(&settings.Debug, "debug", "d", viper.GetBool("debug"), "Enable debug output")
rootCmd.PersistentFlags().StringVar(&settings.BirdNET.Locale, "locale", viper.GetString("birdnet.locale"), "Set the locale for labels. Accepts full name or 2-letter code.")
rootCmd.PersistentFlags().IntVarP(&settings.BirdNET.Threads, "threads", "j", viper.GetInt("birdnet.threads"), "Number of CPU threads to use for analysis (default 0 which is all CPUs)")
rootCmd.PersistentFlags().Float64VarP(&settings.BirdNET.Sensitivity, "sensitivity", "s", viper.GetFloat64("birdnet.sensitivity"), "Sigmoid sensitivity value between 0.0 and 1.5")
rootCmd.PersistentFlags().Float64VarP(&settings.BirdNET.Threshold, "threshold", "t", viper.GetFloat64("birdnet.threshold"), "Confidency threshold for detections, value between 0.1 to 1.0")
rootCmd.PersistentFlags().Float64Var(&settings.BirdNET.Overlap, "overlap", viper.GetFloat64("birdnet.overlap"), "Overlap value between 0.0 and 2.9")
rootCmd.PersistentFlags().Float64Var(&settings.BirdNET.Latitude, "latitude", viper.GetFloat64("birdnet.latitude"), "Latitude for species prediction")
rootCmd.PersistentFlags().Float64Var(&settings.BirdNET.Longitude, "longitude", viper.GetFloat64("birdnet.longitude"), "Longitude for species prediction")
// Bind flags to the viper settings
if err := viper.BindPFlags(rootCmd.PersistentFlags()); err != nil {
return fmt.Errorf("error binding flags: %w", err)
}
return nil
}