2019-10-31 17:46:09 +03:00
|
|
|
package repository
|
|
|
|
|
2019-11-01 20:39:45 +03:00
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
"time"
|
|
|
|
)
|
2019-10-31 21:05:50 +03:00
|
|
|
|
2019-10-31 17:46:09 +03:00
|
|
|
// Config represent the common function interacting with the repository config storage
|
|
|
|
type Config interface {
|
2019-11-01 20:39:45 +03:00
|
|
|
// Store writes a single key/value pair in the config
|
|
|
|
StoreString(key, value string) error
|
|
|
|
|
|
|
|
// Store writes a key and timestamp value to the config
|
|
|
|
StoreTimestamp(key string, value time.Time) error
|
|
|
|
|
|
|
|
// Store writes a key and boolean value to the config
|
|
|
|
StoreBool(key string, value bool) error
|
2019-10-31 17:46:09 +03:00
|
|
|
|
|
|
|
// ReadAll reads all key/value pair matching the key prefix
|
|
|
|
ReadAll(keyPrefix string) (map[string]string, error)
|
|
|
|
|
|
|
|
// ReadBool read a single boolean value from the config
|
|
|
|
// Return ErrNoConfigEntry or ErrMultipleConfigEntry if
|
|
|
|
// there is zero or more than one entry for this key
|
|
|
|
ReadBool(key string) (bool, error)
|
|
|
|
|
|
|
|
// ReadBool read a single string value from the config
|
|
|
|
// Return ErrNoConfigEntry or ErrMultipleConfigEntry if
|
|
|
|
// there is zero or more than one entry for this key
|
|
|
|
ReadString(key string) (string, error)
|
|
|
|
|
2019-10-31 21:05:50 +03:00
|
|
|
// ReadTimestamp read a single timestamp value from the config
|
|
|
|
// Return ErrNoConfigEntry or ErrMultipleConfigEntry if
|
|
|
|
// there is zero or more than one entry for this key
|
2019-11-03 18:46:51 +03:00
|
|
|
ReadTimestamp(key string) (time.Time, error)
|
2019-10-31 21:05:50 +03:00
|
|
|
|
2019-10-31 17:46:09 +03:00
|
|
|
// RemoveAll removes all key/value pair matching the key prefix
|
|
|
|
RemoveAll(keyPrefix string) error
|
|
|
|
}
|
2019-11-01 20:39:45 +03:00
|
|
|
|
2019-11-03 18:46:51 +03:00
|
|
|
func parseTimestamp(s string) (time.Time, error) {
|
2019-11-01 20:39:45 +03:00
|
|
|
timestamp, err := strconv.Atoi(s)
|
|
|
|
if err != nil {
|
2019-11-03 18:46:51 +03:00
|
|
|
return time.Time{}, err
|
2019-11-01 20:39:45 +03:00
|
|
|
}
|
|
|
|
|
2019-11-03 18:46:51 +03:00
|
|
|
return time.Unix(int64(timestamp), 0), nil
|
2019-11-01 20:39:45 +03:00
|
|
|
}
|