1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2024-12-14 12:37:31 +00:00
ctrl/central/main.go

199 lines
5 KiB
Go
Raw Normal View History

// Notes:
2021-01-25 14:23:00 +00:00
package main
import (
"bytes"
"encoding/gob"
"fmt"
"log"
2021-01-27 13:02:57 +00:00
"os"
2021-01-25 14:23:00 +00:00
"time"
"github.com/nats-io/nats.go"
)
2021-01-25 14:50:44 +00:00
type messageType int
// TODO: Figure it makes sense to have these types at all.
// It might make more sense to implement these as two
// individual subjects.
2021-01-25 14:50:44 +00:00
const (
2021-01-27 08:45:52 +00:00
// shellCommand, command that will just wait for an
// ack, and nothing of the output of the command are
// delivered back in the reply ack message.
// The message should contain the unique ID of the
// command.
2021-01-27 13:02:57 +00:00
commandReturnOutput messageType = iota
2021-01-25 14:50:44 +00:00
// shellCommand, wait for and return the output
// of the command in the ACK message. This means
// that the command should be executed immediately
// and that we should get the confirmation that it
// was successful or not.
2021-01-27 13:02:57 +00:00
eventReturnAck messageType = iota
2021-01-25 14:50:44 +00:00
// eventCommand, just wait for the ACK that the
// message is received. What action happens on the
// receiving side is up to the received to decide.
)
2021-01-25 14:23:00 +00:00
type Message struct {
2021-01-25 14:50:44 +00:00
// The Unique ID of the message
ID int
// The actual data in the message
2021-01-25 15:50:21 +00:00
// TODO: Change this to a slice instead...or maybe use an
// interface type here to handle several data types ?
2021-01-27 08:45:52 +00:00
Data []string
2021-01-25 14:50:44 +00:00
// The type of the message being sent
MessageType messageType
2021-01-25 14:23:00 +00:00
}
type node string
// process are represent the communication to one individual host
type process struct {
2021-01-27 13:02:57 +00:00
messageID int
subject string
// Put a node here to be able know the node a process is at.
// NB: Might not be needed later on.
node node
// The processID for the current process
processID int
2021-01-27 13:02:57 +00:00
}
2021-01-27 08:45:52 +00:00
// server is the structure that will hold the state about spawned
// processes on a local instance.
2021-01-27 08:45:52 +00:00
2021-01-27 13:02:57 +00:00
type server struct {
natsConn *nats.Conn
// TODO: sessions should probably hold a slice/map of processes ?
processes map[node]process
// The last processID created
lastProcessID int
2021-01-27 13:02:57 +00:00
}
// newServer will prepare and return a server type
2021-01-27 13:02:57 +00:00
func newServer(brokerAddress string) (*server, error) {
return &server{
processes: make(map[node]process),
2021-01-27 13:02:57 +00:00
}, nil
}
2021-01-27 08:45:52 +00:00
func (s *server) Run() {
proc := s.prepareNewProcess("btship1")
go s.spawnProcess(proc)
select {}
}
func (s *server) prepareNewProcess(nodeName string) process {
2021-01-27 13:02:57 +00:00
// create the initial configuration for a sessions communicating with 1 host.
s.lastProcessID++
proc := process{
2021-01-27 13:02:57 +00:00
messageID: 0,
node: node(nodeName),
processID: s.lastProcessID,
2021-01-27 13:02:57 +00:00
}
return proc
}
// spawnProcess will spawn a new process
func (s *server) spawnProcess(proc process) {
s.processes[proc.node] = proc
2021-01-27 13:02:57 +00:00
// Loop creating one new message every second to simulate getting new
// messages to deliver.
for {
m := getMessageToDeliver()
m.ID = s.processes["btship1"].messageID
2021-01-27 13:02:57 +00:00
messageDeliver("btship1", m, s.natsConn)
2021-01-27 08:45:52 +00:00
// Increment the counter for the next message to be sent.
proc.messageID++
s.processes["btship1"] = proc
2021-01-27 08:45:52 +00:00
time.Sleep(time.Second * 1)
}
}
2021-01-27 13:02:57 +00:00
// get MessageToDeliver will pick up the next message to be created.
// TODO: read this from local file or rest or....?
func getMessageToDeliver() Message {
return Message{
Data: []string{"uname", "-a"},
MessageType: eventReturnAck,
}
}
2021-01-27 08:45:52 +00:00
func messageDeliver(edgeID string, message Message, natsConn *nats.Conn) {
for {
2021-01-27 13:02:57 +00:00
dataPayload, err := gobEncodePayload(message)
2021-01-27 08:45:52 +00:00
if err != nil {
log.Printf("error: createDataPayload: %v\n", err)
}
msg := &nats.Msg{
Subject: edgeID,
Reply: "subjectReply",
Data: dataPayload,
2021-01-25 14:23:00 +00:00
}
2021-01-27 08:45:52 +00:00
// The SubscribeSync used in the subscriber, will get messages that
// are sent after it started subscribing, so we start a publisher
// that sends out a message every second.
//
// Create a subscriber for the reply message.
subReply, err := natsConn.SubscribeSync(msg.Reply)
if err != nil {
log.Printf("error: nc.SubscribeSync failed: %v\n", err)
continue
}
// Publish message
err = natsConn.PublishMsg(msg)
if err != nil {
log.Printf("error: publish failed: %v\n", err)
continue
}
// Wait up until 10 seconds for a reply,
// continue and resend if to reply received.
msgReply, err := subReply.NextMsg(time.Second * 10)
if err != nil {
log.Printf("error: subRepl.NextMsg failed: %v\n", err)
// did not receive a reply, continuing from top again
continue
}
fmt.Printf("publisher: received: %s\n", msgReply.Data)
return
}
}
2021-01-27 13:02:57 +00:00
// gobEncodePayload will encode the message structure along with its
// valued in gob binary format.
// TODO: Check if it adds value to compress with gzip.
2021-01-27 13:02:57 +00:00
func gobEncodePayload(m Message) ([]byte, error) {
2021-01-27 08:45:52 +00:00
var buf bytes.Buffer
gobEnc := gob.NewEncoder(&buf)
err := gobEnc.Encode(m)
if err != nil {
return nil, fmt.Errorf("error: gob.Enode failed: %v", err)
}
2021-01-25 14:23:00 +00:00
2021-01-27 08:45:52 +00:00
return buf.Bytes(), nil
2021-01-25 14:23:00 +00:00
}
2021-01-27 13:02:57 +00:00
func main() {
s, err := newServer("localhost")
if err != nil {
log.Printf("error: failed to connect to broker: %v\n", err)
os.Exit(1)
}
// Create a connection to nats server
2021-01-27 13:02:57 +00:00
s.natsConn, err = nats.Connect("localhost", nil)
if err != nil {
log.Printf("error: nats.Connect failed: %v\n", err)
}
defer s.natsConn.Close()
s.Run()
}