Skip to content

Commit

Permalink
Split into client package
Browse files Browse the repository at this point in the history
  • Loading branch information
deven96 committed Nov 2, 2022
1 parent dff40a1 commit 6f8fcda
Show file tree
Hide file tree
Showing 6 changed files with 239 additions and 158 deletions.
39 changes: 39 additions & 0 deletions client/client.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
package client

import (
"github.com/gorilla/websocket"
log "github.com/sirupsen/logrus"
)

type Client struct {
Socket *websocket.Conn
Send chan *SendMessage
Received chan *ReceiveMessage
}

// Write to websocket
func (client *Client) Write() {
defer client.Socket.Close()
var err error
for msg := range client.Send {
err = client.Socket.WriteJSON(msg)
if err != nil {
log.Error("Error inside client write ", err)
}
}
}

// Read from websocket
func (client *Client) Read() {
defer client.Socket.Close()
for {
var message *ReceiveMessage
err := client.Socket.ReadJSON(&message)
if err != nil {
log.Errorf("While reading from client: %s", err)
} else {
client.Received <- message
}

}
}
6 changes: 6 additions & 0 deletions client/const.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package client

const (
socketBufferSize = 1042
messageBufferSize = 256
)
152 changes: 152 additions & 0 deletions client/controller.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,152 @@
package client

import (
"encoding/json"
"fmt"
"net/http"
"strings"
"sync"
"time"

"github.com/gorilla/websocket"
log "github.com/sirupsen/logrus"

"github.com/bisohns/saido/config"
"github.com/bisohns/saido/driver"
"github.com/bisohns/saido/inspector"
)

var upgrader = &websocket.Upgrader{
ReadBufferSize: socketBufferSize,
WriteBufferSize: socketBufferSize,
CheckOrigin: func(r *http.Request) bool {
return true
}}

type HostsController struct {
Info *config.DashboardInfo
// Connections : hostname mapped to connection instances to reuse
// across metrics
mu sync.Mutex
Drivers map[string]*driver.Driver
// ReadOnlyHosts : restrict pinging every other server except these
ReadOnlyHosts []string
Client chan *Client
Received chan *ReceiveMessage
}

func (hosts *HostsController) getDriver(address string) *driver.Driver {
hosts.mu.Lock()
defer hosts.mu.Unlock()
return hosts.Drivers[address]
}

func (hosts *HostsController) resetDriver(host config.Host) {
hosts.mu.Lock()
defer hosts.mu.Unlock()
hostDriver := host.Connection.ToDriver()
hosts.Drivers[host.Address] = &hostDriver
}

func (hosts *HostsController) setReadOnlyHost(hostlist config.HostList) {
hosts.mu.Lock()
defer hosts.mu.Unlock()
hosts.ReadOnlyHosts = hostlist
}

func (hosts *HostsController) sendMetric(host config.Host, client *Client) {
if hosts.getDriver(host.Address) == nil {
hosts.resetDriver(host)
}
for _, metric := range hosts.Info.Metrics {
driver := hosts.getDriver(host.Address)
initializedMetric, err := inspector.Init(metric, driver)
data, err := initializedMetric.Execute()
if err == nil {
var unmarsh interface{}
json.Unmarshal(data, &unmarsh)
message := &SendMessage{
Message: Message{
Host: host.Address,
Platform: (*driver).GetDetails().Name,
Name: metric,
Data: unmarsh,
},
Error: false,
}
client.Send <- message
} else {
// check for error 127 which means command was not found
var errorContent string
if !strings.Contains(fmt.Sprintf("%s", err), "127") {
errorContent = fmt.Sprintf("Could not retrieve metric %s from driver %s with error %s, resetting connection...", metric, host.Address, err)
} else {
errorContent = fmt.Sprintf("Command %s not found on driver %s", metric, host.Address)
}
log.Error(errorContent)
hosts.resetDriver(host)
message := &SendMessage{
Message: errorContent,
Error: true,
}
client.Send <- message
}
}
}

func (hosts *HostsController) Poll(client *Client) {
for {
for _, host := range hosts.Info.Hosts {
if config.Contains(hosts.ReadOnlyHosts, host) {
go hosts.sendMetric(host, client)
}
}
log.Infof("Delaying for %d seconds", hosts.Info.PollInterval)
time.Sleep(time.Duration(hosts.Info.PollInterval) * time.Second)
}
}

func (hosts *HostsController) Run() {
for {
select {
case client := <-hosts.Client:
go hosts.Poll(client)
case received := <-hosts.Received:
if received.FilterBy == "" {
hosts.setReadOnlyHost(hosts.Info.GetAllHostAddresses())
} else {
hosts.setReadOnlyHost([]string{received.FilterBy})
}
}
}

}

func (hosts *HostsController) ServeHTTP(w http.ResponseWriter, req *http.Request) {
socket, err := upgrader.Upgrade(w, req, nil)
if err != nil {
log.Fatal(err)
return
}
client := &Client{
Socket: socket,
Send: make(chan *SendMessage, messageBufferSize),
Received: hosts.Received,
}
hosts.Client <- client
go client.Write()
client.Read()
}

// NewHostsController : initialze host controller with config file
func NewHostsController(cfg *config.Config) *HostsController {
dashboardInfo := config.GetDashboardInfoConfig(cfg)
hosts := &HostsController{
Info: dashboardInfo,
Drivers: make(map[string]*driver.Driver),
ReadOnlyHosts: dashboardInfo.GetAllHostAddresses(),
Client: make(chan *Client),
Received: make(chan *ReceiveMessage),
}
return hosts
}
18 changes: 18 additions & 0 deletions client/messages.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package client

type SendMessage struct {
Error bool
Message interface{}
}

type Message struct {
Host string
Name string
Platform string
Data interface{}
}

// ReceiveMessage : specify the host to filter by
type ReceiveMessage struct {
FilterBy string
}
Loading

0 comments on commit 6f8fcda

Please sign in to comment.