2017-04-12 09:01:19 +00:00
|
|
|
// Copyright (C) 2017 The Syncthing Authors.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2017-10-24 07:58:55 +00:00
|
|
|
|
|
|
|
"github.com/syncthing/syncthing/lib/fs"
|
2017-04-12 09:01:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func ParseSize(s string) (Size, error) {
|
|
|
|
s = strings.TrimSpace(s)
|
2022-07-28 14:51:03 +00:00
|
|
|
if s == "" {
|
2017-04-12 09:01:19 +00:00
|
|
|
return Size{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var num, unit string
|
|
|
|
for i := 0; i < len(s) && (s[i] >= '0' && s[i] <= '9' || s[i] == '.' || s[i] == ','); i++ {
|
|
|
|
num = s[:i+1]
|
|
|
|
}
|
|
|
|
var i = len(num)
|
|
|
|
for i < len(s) && s[i] == ' ' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
unit = s[i:]
|
|
|
|
|
|
|
|
val, err := strconv.ParseFloat(num, 64)
|
|
|
|
if err != nil {
|
|
|
|
return Size{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return Size{val, unit}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Size) BaseValue() float64 {
|
|
|
|
unitPrefix := s.Unit
|
|
|
|
if len(unitPrefix) > 1 {
|
|
|
|
unitPrefix = unitPrefix[:1]
|
|
|
|
}
|
|
|
|
|
|
|
|
mult := 1.0
|
|
|
|
switch unitPrefix {
|
|
|
|
case "k", "K":
|
|
|
|
mult = 1000
|
|
|
|
case "m", "M":
|
|
|
|
mult = 1000 * 1000
|
|
|
|
case "g", "G":
|
|
|
|
mult = 1000 * 1000 * 1000
|
|
|
|
case "t", "T":
|
|
|
|
mult = 1000 * 1000 * 1000 * 1000
|
|
|
|
}
|
|
|
|
|
|
|
|
return s.Value * mult
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Size) Percentage() bool {
|
|
|
|
return strings.Contains(s.Unit, "%")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s Size) String() string {
|
|
|
|
return fmt.Sprintf("%v %s", s.Value, s.Unit)
|
|
|
|
}
|
|
|
|
|
2019-02-12 06:58:24 +00:00
|
|
|
func (s *Size) ParseDefault(str string) error {
|
|
|
|
sz, err := ParseSize(str)
|
|
|
|
*s = sz
|
|
|
|
return err
|
2017-04-12 09:01:19 +00:00
|
|
|
}
|
2017-10-24 07:58:55 +00:00
|
|
|
|
2020-10-02 13:22:28 +00:00
|
|
|
// CheckFreeSpace checks that the free space does not fall below the minimum required free space.
|
|
|
|
func CheckFreeSpace(minFree Size, usage fs.Usage) error {
|
|
|
|
val := minFree.BaseValue()
|
2017-10-24 07:58:55 +00:00
|
|
|
if val <= 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-10-02 13:22:28 +00:00
|
|
|
if minFree.Percentage() {
|
2017-10-24 07:58:55 +00:00
|
|
|
freePct := (float64(usage.Free) / float64(usage.Total)) * 100
|
2018-08-25 08:16:38 +00:00
|
|
|
if freePct < val {
|
2022-02-24 16:07:51 +00:00
|
|
|
return fmt.Errorf("current %.2f %% < required %v", freePct, minFree)
|
2017-10-24 07:58:55 +00:00
|
|
|
}
|
2018-08-25 08:16:38 +00:00
|
|
|
} else if float64(usage.Free) < val {
|
2022-02-24 16:07:51 +00:00
|
|
|
return fmt.Errorf("current %sB < required %v", formatSI(usage.Free), minFree)
|
2017-10-24 07:58:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2019-08-02 12:43:05 +00:00
|
|
|
|
2020-10-02 13:22:28 +00:00
|
|
|
// checkAvailableSpace checks that the free space does not fall below the minimum
|
|
|
|
// required free space, considering additional required space for a future operation.
|
2022-02-24 16:07:51 +00:00
|
|
|
func checkAvailableSpace(req uint64, minFree Size, usage fs.Usage) error {
|
2020-10-02 13:22:28 +00:00
|
|
|
if usage.Free < req {
|
2022-02-24 16:07:51 +00:00
|
|
|
return fmt.Errorf("current %sB < required %sB", formatSI(usage.Free), formatSI(req))
|
2020-10-02 13:22:28 +00:00
|
|
|
}
|
|
|
|
usage.Free -= req
|
2022-02-24 16:07:51 +00:00
|
|
|
return CheckFreeSpace(minFree, usage)
|
2020-10-02 13:22:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func formatSI(b uint64) string {
|
2019-08-02 12:43:05 +00:00
|
|
|
switch {
|
|
|
|
case b < 1000:
|
|
|
|
return fmt.Sprintf("%d ", b)
|
|
|
|
case b < 1000*1000:
|
|
|
|
return fmt.Sprintf("%.1f K", float64(b)/1000)
|
|
|
|
case b < 1000*1000*1000:
|
|
|
|
return fmt.Sprintf("%.1f M", float64(b)/(1000*1000))
|
|
|
|
case b < 1000*1000*1000*1000:
|
|
|
|
return fmt.Sprintf("%.1f G", float64(b)/(1000*1000*1000))
|
|
|
|
default:
|
|
|
|
return fmt.Sprintf("%.1f T", float64(b)/(1000*1000*1000*1000))
|
|
|
|
}
|
|
|
|
}
|