mirror of
https://github.com/mudler/LocalAI.git
synced 2024-12-18 20:27:57 +00:00
6d350ccce0
* refactor: extract proxy into functions * feat(federation): do not allocate services, directly connect with libp2p Signed-off-by: Ettore Di Giacinto <mudler@localai.io> --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
67 lines
1.3 KiB
Go
67 lines
1.3 KiB
Go
package p2p
|
|
|
|
import (
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
defaultServicesID = "services"
|
|
WorkerID = "worker"
|
|
)
|
|
|
|
type NodeData struct {
|
|
Name string
|
|
ID string
|
|
TunnelAddress string
|
|
ServiceID string
|
|
LastSeen time.Time
|
|
}
|
|
|
|
func (d NodeData) IsOnline() bool {
|
|
now := time.Now()
|
|
// if the node was seen in the last 40 seconds, it's online
|
|
return now.Sub(d.LastSeen) < 40*time.Second
|
|
}
|
|
|
|
var mu sync.Mutex
|
|
var nodes = map[string]map[string]NodeData{}
|
|
|
|
func GetAvailableNodes(serviceID string) []NodeData {
|
|
if serviceID == "" {
|
|
serviceID = defaultServicesID
|
|
}
|
|
mu.Lock()
|
|
defer mu.Unlock()
|
|
var availableNodes = []NodeData{}
|
|
for _, v := range nodes[serviceID] {
|
|
availableNodes = append(availableNodes, v)
|
|
}
|
|
return availableNodes
|
|
}
|
|
|
|
func GetNode(serviceID, nodeID string) (NodeData, bool) {
|
|
if serviceID == "" {
|
|
serviceID = defaultServicesID
|
|
}
|
|
mu.Lock()
|
|
defer mu.Unlock()
|
|
if _, ok := nodes[serviceID]; !ok {
|
|
return NodeData{}, false
|
|
}
|
|
nd, exists := nodes[serviceID][nodeID]
|
|
return nd, exists
|
|
}
|
|
|
|
func AddNode(serviceID string, node NodeData) {
|
|
if serviceID == "" {
|
|
serviceID = defaultServicesID
|
|
}
|
|
mu.Lock()
|
|
defer mu.Unlock()
|
|
if nodes[serviceID] == nil {
|
|
nodes[serviceID] = map[string]NodeData{}
|
|
}
|
|
nodes[serviceID][node.ID] = node
|
|
}
|