gosync/settings/arguments.go

84 lines
1.6 KiB
Go
Raw Normal View History

2023-09-07 15:20:19 +02:00
package settings
import (
"os"
"runtime"
"strconv"
"strings"
"velvettear/gosync/log"
)
// exported function(s)
func Initialize() {
os.Args = os.Args[1:]
if len(os.Args) < 2 {
log.Fatal("error: missing arguments")
}
var arguments []string
for index, arg := range os.Args {
switch strings.ToLower(arg) {
case "-v":
fallthrough
case "--verbose":
setVerbose(true)
case "-c":
fallthrough
case "--concurrency":
var concurrency int
tmpIndex := index + 1
if tmpIndex < len(os.Args) {
tmp, error := strconv.Atoi(os.Args[tmpIndex])
if error == nil {
concurrency = tmp
}
}
if concurrency == 0 {
concurrency = runtime.NumCPU()
}
setConcurrency(concurrency)
case "-p":
fallthrough
case "--password":
tmpIndex := index + 1
if index > len(os.Args) {
break
}
setPassword(os.Args[tmpIndex])
case "-u":
fallthrough
case "--user":
tmpIndex := index + 1
if index > len(os.Args) {
break
}
setUser(os.Args[tmpIndex])
default:
arguments = append(arguments, arg)
}
}
setSource(arguments[0])
setTarget(arguments[1])
if Concurrency == 0 {
setConcurrency(runtime.NumCPU())
}
_, error := os.Stat(Source)
if os.IsNotExist(error) {
log.Fatal("given source does not exist", Source)
}
if !Verbose {
setVerbose(false)
}
}
// unexported function(s)
func removeArgument(index int) {
removeArguments(index, 0, 0)
}
func removeArguments(index int, before int, after int) {
// derp := index - 1 - before
copyArgs := os.Args[0 : index-before]
copyArgs = append(copyArgs, os.Args[index+1+after:]...)
os.Args = copyArgs
}