package routing

// Option is a single routing option.
type Option func(opts *Options) error

// Options is a set of routing options
type Options struct {
	// Allow expired values.
	Expired bool
	Offline bool
	// Other (ValueStore implementation specific) options.
	Other map[interface{}]interface{}
}

// Apply applies the given options to this Options
func ( *Options) ( ...Option) error {
	for ,  := range  {
		if  := ();  != nil {
			return 
		}
	}
	return nil
}

// ToOption converts this Options to a single Option.
func ( *Options) () Option {
	return func( *Options) error {
		* = *
		if .Other != nil {
			.Other = make(map[interface{}]interface{}, len(.Other))
			for ,  := range .Other {
				.Other[] = 
			}
		}
		return nil
	}
}

// Expired is an option that tells the routing system to return expired records
// when no newer records are known.
var Expired Option = func( *Options) error {
	.Expired = true
	return nil
}

// Offline is an option that tells the routing system to operate offline (i.e., rely on cached/local data only).
var Offline Option = func( *Options) error {
	.Offline = true
	return nil
}