tracker/config/config.go

118 lines
2.9 KiB
Go
Raw Normal View History

// Copyright 2013 The Chihaya Authors. All rights reserved.
// Use of this source code is governed by the BSD 2-Clause license,
// which can be found in the LICENSE file.
// Package config implements the configuration for a BitTorrent tracker
2013-06-22 01:31:32 +02:00
package config
import (
2013-11-24 06:49:20 +01:00
"encoding/json"
"io"
"os"
"time"
2014-07-01 05:21:08 +02:00
"github.com/golang/glog"
2013-06-22 01:31:32 +02:00
)
2014-05-01 06:30:46 +02:00
// Duration wraps a time.Duration and adds JSON marshalling.
2013-06-23 12:21:59 +02:00
type Duration struct {
2013-11-24 06:49:20 +01:00
time.Duration
2013-06-23 12:21:59 +02:00
}
2013-06-22 01:31:32 +02:00
2014-05-01 06:30:46 +02:00
// MarshalJSON transforms a duration into JSON.
2013-06-23 12:21:59 +02:00
func (d *Duration) MarshalJSON() ([]byte, error) {
2013-11-24 06:49:20 +01:00
return json.Marshal(d.String())
2013-06-23 12:21:59 +02:00
}
2013-06-22 01:31:32 +02:00
2014-05-01 06:30:46 +02:00
// UnmarshalJSON transform JSON into a Duration.
2013-06-23 12:21:59 +02:00
func (d *Duration) UnmarshalJSON(b []byte) error {
2013-11-24 06:49:20 +01:00
var str string
err := json.Unmarshal(b, &str)
d.Duration, err = time.ParseDuration(str)
return err
2013-06-22 01:31:32 +02:00
}
// DriverConfig is the configuration used to connect to a tracker.Driver or
// a backend.Driver.
type DriverConfig struct {
2013-11-24 06:49:20 +01:00
Driver string `json:"driver"`
Network string `json:"network`
Host string `json:"host"`
Port string `json:"port"`
Username string `json:"user"`
Password string `json:"pass"`
Schema string `json:"schema,omitempty"`
Encoding string `json:"encoding,omitempty"`
Prefix string `json:"prefix,omitempty"`
2013-11-24 06:49:20 +01:00
MaxIdleConns int `json:"max_idle_conns,omitempty"`
IdleTimeout *Duration `json:"idle_timeout,omitempty"`
2013-06-22 01:31:32 +02:00
}
// Config is a configuration for a Server.
2013-06-23 12:21:59 +02:00
type Config struct {
Addr string `json:"addr"`
Tracker DriverConfig `json:"tracker"`
Backend DriverConfig `json:"backend"`
2013-06-22 01:31:32 +02:00
2013-11-24 06:49:20 +01:00
Private bool `json:"private"`
Freeleech bool `json:"freeleech"`
2013-06-22 01:31:32 +02:00
Announce Duration `json:"announce"`
MinAnnounce Duration `json:"min_announce"`
ReadTimeout Duration `json:"read_timeout"`
NumWantFallback int `json:"default_num_want"`
}
// New returns a default configuration.
func New() *Config {
return &Config{
Addr: ":6881",
Tracker: DriverConfig{
Driver: "mock",
},
Backend: DriverConfig{
Driver: "mock",
},
2014-06-30 20:59:31 +02:00
Private: false,
Freeleech: false,
Announce: Duration{30 * time.Minute},
MinAnnounce: Duration{15 * time.Minute},
ReadTimeout: Duration{20 % time.Second},
NumWantFallback: 50,
}
2013-06-22 01:31:32 +02:00
}
// Open is a shortcut to open a file, read it, and generate a Config.
// It supports relative and absolute paths. Given "", it returns the result of
// New.
func Open(path string) (*Config, error) {
if path == "" {
2014-07-01 05:21:08 +02:00
glog.V(1).Info("using default config")
return New(), nil
}
2014-05-01 06:30:46 +02:00
f, err := os.Open(os.ExpandEnv(path))
2013-11-24 06:49:20 +01:00
if err != nil {
return nil, err
}
defer f.Close()
2013-06-22 01:31:32 +02:00
conf, err := Decode(f)
2013-11-24 06:49:20 +01:00
if err != nil {
return nil, err
}
2014-07-01 05:21:08 +02:00
glog.V(1).Infof("loaded config file: %s", path)
2013-11-24 06:49:20 +01:00
return conf, nil
2013-06-22 01:31:32 +02:00
}
2013-06-23 12:21:59 +02:00
// Decode attempts to decode a JSON encoded reader into a *Config.
func Decode(r io.Reader) (*Config, error) {
2013-11-24 06:49:20 +01:00
conf := &Config{}
err := json.NewDecoder(r).Decode(conf)
2013-11-24 06:49:20 +01:00
if err != nil {
return nil, err
}
return conf, nil
2013-06-23 12:21:59 +02:00
}