forked from LTU-D7024E/kadlab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcli.go
103 lines (83 loc) · 1.91 KB
/
cli.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package cli
import (
"bufio"
"context"
"d7024e_group04/internal/node"
"fmt"
"os"
"strings"
)
func InputLoop(ctx context.Context, cancelCtx context.CancelFunc, node node.NodeHandler) error {
reader := bufio.NewReader(os.Stdin)
errChan := make(chan error, 1)
go func() {
for {
cliLogic(ctx, cancelCtx, errChan, reader, node)
}
}()
for {
select {
case err := <-errChan:
return err
case <-ctx.Done():
return ctx.Err()
}
}
}
func cliLogic(ctx context.Context, cancelCtx context.CancelFunc, errChan chan error, reader *bufio.Reader, node node.NodeHandler) {
fmt.Printf("$")
input, err := reader.ReadString('\n')
if err != nil {
errChan <- err
}
if len(input) <= 0 {
return
}
command := strings.Fields(strings.TrimSpace(input))
switch command[0] {
case "me":
fmt.Println(node.Me())
case "put":
hash, err := node.PutObject(ctx, command[1])
if err != nil {
fmt.Println(err)
} else {
fmt.Println(hash)
}
case "get":
hash := command[1]
if hash == "" {
fmt.Println("no hash was provided")
break
}
str, err := getCommand(ctx, node, hash)
if err != nil {
fmt.Println(err)
} else {
fmt.Println(str)
}
case "exit":
cancelCtx()
case "forget":
node.Forget(command[1])
default:
fmt.Println("invalid command")
}
}
func getCommand(ctx context.Context, node node.NodeHandler, hash string) (string, error) {
dataObject, candidates, err := node.GetObject(ctx, hash)
if err != nil {
return "", fmt.Errorf("failed to get value and candidates, err: %v", err)
}
if dataObject != nil {
return fmt.Sprintf("value: %v, found in node: %v, original uploader: %v", dataObject.DataValue, dataObject.NodeWithValue, dataObject.OriginalUploader), nil
}
if candidates != nil {
str := "could not find value, closest contacts are:"
for _, contact := range candidates {
str += fmt.Sprintln(contact)
}
return str, nil
}
return "", fmt.Errorf("wtf")
}