package stateless import ( "encoding/json" "errors" "github.com/kelseyhightower/envconfig" "github.com/ipfs/ipfs-cluster/config" ) const configKey = "stateless" const envConfigKey = "cluster_stateless" // Default values for this Config. const ( DefaultMaxPinQueueSize = 50000 DefaultConcurrentPins = 10 ) // Config allows to initialize a Monitor and customize some parameters. type Config struct { config.Saver // If higher, they will automatically marked with an error. MaxPinQueueSize int // ConcurrentPins specifies how many pin requests can be sent to the ipfs // daemon in parallel. If the pinning method is "refs", it might increase // speed. Unpin requests are always processed one by one. ConcurrentPins int } type jsonConfig struct { MaxPinQueueSize int `json:"max_pin_queue_size"` ConcurrentPins int `json:"concurrent_pins"` } // ConfigKey provides a human-friendly identifier for this type of Config. func (cfg *Config) ConfigKey() string { return configKey } // Default sets the fields of this Config to sensible values. func (cfg *Config) Default() error { cfg.MaxPinQueueSize = DefaultMaxPinQueueSize cfg.ConcurrentPins = DefaultConcurrentPins return nil } // ApplyEnvVars fills in any Config fields found // as environment variables. func (cfg *Config) ApplyEnvVars() error { jcfg := cfg.toJSONConfig() err := envconfig.Process(envConfigKey, jcfg) if err != nil { return err } return cfg.applyJSONConfig(jcfg) } // Validate checks that the fields of this Config have working values, // at least in appearance. func (cfg *Config) Validate() error { if cfg.MaxPinQueueSize <= 0 { return errors.New("statelesstracker.max_pin_queue_size too low") } if cfg.ConcurrentPins <= 0 { return errors.New("statelesstracker.concurrent_pins is too low") } return nil } // LoadJSON sets the fields of this Config to the values defined by the JSON // representation of it, as generated by ToJSON. func (cfg *Config) LoadJSON(raw []byte) error { jcfg := &jsonConfig{} err := json.Unmarshal(raw, jcfg) if err != nil { logger.Error("Error unmarshaling statelesstracker config") return err } cfg.Default() return cfg.applyJSONConfig(jcfg) } func (cfg *Config) applyJSONConfig(jcfg *jsonConfig) error { config.SetIfNotDefault(jcfg.MaxPinQueueSize, &cfg.MaxPinQueueSize) config.SetIfNotDefault(jcfg.ConcurrentPins, &cfg.ConcurrentPins) return cfg.Validate() } // ToJSON generates a human-friendly JSON representation of this Config. func (cfg *Config) ToJSON() ([]byte, error) { jcfg := cfg.toJSONConfig() return config.DefaultJSONMarshal(jcfg) } func (cfg *Config) toJSONConfig() *jsonConfig { return &jsonConfig{ MaxPinQueueSize: cfg.MaxPinQueueSize, ConcurrentPins: cfg.ConcurrentPins, } }