aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/api/inspector.go
blob: c4151bf20a517468d8a09fa1ca6cb96af9a5d759 (plain) (blame)
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
// Copyright 2019 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

package api

import (
    "context"
    "fmt"
    "strings"
    "time"

    "github.com/ethereum/go-ethereum/metrics"
    "github.com/ethereum/go-ethereum/swarm/log"
    "github.com/ethereum/go-ethereum/swarm/network"
    "github.com/ethereum/go-ethereum/swarm/storage"
)

type Inspector struct {
    api      *API
    hive     *network.Hive
    netStore *storage.NetStore
}

func NewInspector(api *API, hive *network.Hive, netStore *storage.NetStore) *Inspector {
    return &Inspector{api, hive, netStore}
}

// Hive prints the kademlia table
func (inspector *Inspector) Hive() string {
    return inspector.hive.String()
}

func (inspector *Inspector) ListKnown() []string {
    res := []string{}
    for _, v := range inspector.hive.Kademlia.ListKnown() {
        res = append(res, fmt.Sprintf("%v", v))
    }
    return res
}

func (inspector *Inspector) IsSyncing() bool {
    lastReceivedChunksMsg := metrics.GetOrRegisterGauge("network.stream.received_chunks", nil)

    // last received chunks msg time
    lrct := time.Unix(0, lastReceivedChunksMsg.Value())

    // if last received chunks msg time is after now-15sec. (i.e. within the last 15sec.) then we say that the node is still syncing
    // technically this is not correct, because this might have been a retrieve request, but for the time being it works for our purposes
    // because we know we are not making retrieve requests on the node while checking this
    return lrct.After(time.Now().Add(-15 * time.Second))
}

// Has checks whether each chunk address is present in the underlying datastore,
// the bool in the returned structs indicates if the underlying datastore has
// the chunk stored with the given address (true), or not (false)
func (inspector *Inspector) Has(chunkAddresses []storage.Address) string {
    hostChunks := []string{}
    for _, addr := range chunkAddresses {
        has, err := inspector.netStore.Has(context.Background(), addr)
        if err != nil {
            log.Error(err.Error())
        }
        if has {
            hostChunks = append(hostChunks, "1")
        } else {
            hostChunks = append(hostChunks, "0")
        }
    }

    return strings.Join(hostChunks, "")
}