2021-02-24 09:58:02 +00:00
|
|
|
package steward
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2021-03-12 11:08:11 +00:00
|
|
|
"log"
|
2021-03-09 10:58:50 +00:00
|
|
|
"time"
|
2021-03-04 15:27:55 +00:00
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2021-02-24 09:58:02 +00:00
|
|
|
)
|
|
|
|
|
2021-03-10 06:11:14 +00:00
|
|
|
func (s *server) ProcessesStart() {
|
2021-03-26 08:08:47 +00:00
|
|
|
|
|
|
|
// --- Subscriber services that can be started via flags
|
|
|
|
|
2021-03-01 11:16:36 +00:00
|
|
|
// Start a subscriber for CLICommand messages
|
2021-03-26 06:55:42 +00:00
|
|
|
if s.configuration.StartSubCLICommand.OK {
|
|
|
|
{
|
|
|
|
fmt.Printf("Starting CLICommand subscriber: %#v\n", s.nodeName)
|
|
|
|
sub := newSubject(CLICommand, CommandACK, s.nodeName)
|
|
|
|
proc := newProcess(s.processes, s.newMessagesCh, s.configuration, sub, s.errorKernel.errorCh, processKindSubscriber, s.configuration.StartSubCLICommand.Values, nil)
|
|
|
|
// fmt.Printf("*** %#v\n", proc)
|
|
|
|
go proc.spawnWorker(s)
|
|
|
|
}
|
2021-02-24 09:58:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start a subscriber for textLogging messages
|
2021-03-26 08:08:47 +00:00
|
|
|
if s.configuration.StartSubTextLogging.OK {
|
|
|
|
{
|
|
|
|
fmt.Printf("Starting textlogging subscriber: %#v\n", s.nodeName)
|
|
|
|
sub := newSubject(TextLogging, EventACK, s.nodeName)
|
|
|
|
proc := newProcess(s.processes, s.newMessagesCh, s.configuration, sub, s.errorKernel.errorCh, processKindSubscriber, s.configuration.StartSubTextLogging.Values, nil)
|
|
|
|
// fmt.Printf("*** %#v\n", proc)
|
|
|
|
go proc.spawnWorker(s)
|
|
|
|
}
|
2021-02-24 09:58:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start a subscriber for SayHello messages
|
2021-03-25 12:39:59 +00:00
|
|
|
if s.configuration.StartSubSayHello.OK {
|
|
|
|
{
|
|
|
|
fmt.Printf("Starting SayHello subscriber: %#v\n", s.nodeName)
|
|
|
|
sub := newSubject(SayHello, EventNACK, s.nodeName)
|
|
|
|
proc := newProcess(s.processes, s.newMessagesCh, s.configuration, sub, s.errorKernel.errorCh, processKindSubscriber, s.configuration.StartSubSayHello.Values, nil)
|
|
|
|
proc.procFuncCh = make(chan Message)
|
2021-03-10 06:11:14 +00:00
|
|
|
|
2021-03-25 12:39:59 +00:00
|
|
|
proc.procFunc = func() error {
|
|
|
|
sayHelloNodes := make(map[node]struct{})
|
|
|
|
for {
|
|
|
|
// Receive a copy of the message sent from the method handler.
|
|
|
|
m := <-proc.procFuncCh
|
|
|
|
fmt.Printf("--- DEBUG : procFunc call:kind=%v, Subject=%v, toNode=%v\n", proc.processKind, proc.subject, proc.subject.ToNode)
|
2021-03-10 13:14:09 +00:00
|
|
|
|
2021-03-25 12:39:59 +00:00
|
|
|
sayHelloNodes[m.FromNode] = struct{}{}
|
2021-03-05 12:10:46 +00:00
|
|
|
|
2021-03-25 12:39:59 +00:00
|
|
|
// update the prometheus metrics
|
|
|
|
s.metrics.metricsCh <- metricType{
|
|
|
|
metric: prometheus.NewGauge(prometheus.GaugeOpts{
|
|
|
|
Name: "hello_nodes",
|
|
|
|
Help: "The current number of total nodes who have said hello",
|
|
|
|
}),
|
|
|
|
value: float64(len(sayHelloNodes)),
|
|
|
|
}
|
2021-03-05 12:10:46 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-25 12:39:59 +00:00
|
|
|
go proc.spawnWorker(s)
|
2021-03-05 12:10:46 +00:00
|
|
|
}
|
2021-02-24 09:58:02 +00:00
|
|
|
}
|
2021-02-24 14:43:31 +00:00
|
|
|
|
2021-03-25 11:50:58 +00:00
|
|
|
if s.configuration.StartSubErrorLog.OK {
|
2021-02-24 14:43:31 +00:00
|
|
|
// Start a subscriber for ErrorLog messages
|
|
|
|
{
|
|
|
|
fmt.Printf("Starting ErrorLog subscriber: %#v\n", s.nodeName)
|
|
|
|
sub := newSubject(ErrorLog, EventNACK, "errorCentral")
|
2021-03-25 11:50:58 +00:00
|
|
|
proc := newProcess(s.processes, s.newMessagesCh, s.configuration, sub, s.errorKernel.errorCh, processKindSubscriber, s.configuration.StartSubErrorLog.Values, nil)
|
2021-03-03 13:14:32 +00:00
|
|
|
go proc.spawnWorker(s)
|
2021-02-24 14:43:31 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-09 10:58:50 +00:00
|
|
|
|
2021-03-26 08:08:47 +00:00
|
|
|
// Start a subscriber for ECHORequest messages
|
|
|
|
if s.configuration.StartSubEchoRequest.OK {
|
|
|
|
{
|
|
|
|
fmt.Printf("Starting Echo Request subscriber: %#v\n", s.nodeName)
|
|
|
|
sub := newSubject(ECHORequest, EventACK, s.nodeName)
|
|
|
|
proc := newProcess(s.processes, s.newMessagesCh, s.configuration, sub, s.errorKernel.errorCh, processKindSubscriber, s.configuration.StartSubEchoRequest.Values, nil)
|
|
|
|
go proc.spawnWorker(s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start a subscriber for ECHOReply messages
|
|
|
|
if s.configuration.StartSubEchoReply.OK {
|
|
|
|
{
|
|
|
|
fmt.Printf("Starting Echo Reply subscriber: %#v\n", s.nodeName)
|
|
|
|
sub := newSubject(ECHOReply, EventACK, s.nodeName)
|
|
|
|
proc := newProcess(s.processes, s.newMessagesCh, s.configuration, sub, s.errorKernel.errorCh, processKindSubscriber, s.configuration.StartSubEchoReply.Values, nil)
|
|
|
|
go proc.spawnWorker(s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start a subscriber for CLICommandRequest messages
|
|
|
|
if s.configuration.StartSubCLICommandRequest.OK {
|
|
|
|
{
|
|
|
|
fmt.Printf("Starting CLICommand Request subscriber: %#v\n", s.nodeName)
|
|
|
|
sub := newSubject(CLICommandRequest, EventACK, s.nodeName)
|
|
|
|
proc := newProcess(s.processes, s.newMessagesCh, s.configuration, sub, s.errorKernel.errorCh, processKindSubscriber, s.configuration.StartSubCLICommandRequest.Values, nil)
|
|
|
|
go proc.spawnWorker(s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start a subscriber for CLICommandRequestNOSEQ messages
|
|
|
|
if s.configuration.StartSubCLICommandRequestNOSEQ.OK {
|
|
|
|
{
|
|
|
|
fmt.Printf("Starting CLICommand NOSEQ Request subscriber: %#v\n", s.nodeName)
|
|
|
|
sub := newSubject(CLICommandRequestNOSEQ, EventACK, s.nodeName)
|
|
|
|
proc := newProcess(s.processes, s.newMessagesCh, s.configuration, sub, s.errorKernel.errorCh, processKindSubscriber, s.configuration.StartSubCLICommandRequestNOSEQ.Values, nil)
|
|
|
|
go proc.spawnWorker(s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start a subscriber for CLICommandReply messages
|
|
|
|
if s.configuration.StartSubCLICommandReply.OK {
|
|
|
|
{
|
|
|
|
fmt.Printf("Starting CLICommand Reply subscriber: %#v\n", s.nodeName)
|
|
|
|
sub := newSubject(CLICommandReply, EventACK, s.nodeName)
|
|
|
|
proc := newProcess(s.processes, s.newMessagesCh, s.configuration, sub, s.errorKernel.errorCh, processKindSubscriber, s.configuration.StartSubCLICommandReply.Values, nil)
|
|
|
|
go proc.spawnWorker(s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- Publisher services that can be started via flags
|
|
|
|
|
2021-03-09 10:58:50 +00:00
|
|
|
// --------- Testing with publisher ------------
|
|
|
|
// Define a process of kind publisher with subject for SayHello to central,
|
|
|
|
// and register a procFunc with the process that will handle the actual
|
|
|
|
// sending of say hello.
|
2021-03-26 09:25:56 +00:00
|
|
|
if s.configuration.StartPubSayHello != 0 {
|
2021-03-09 10:58:50 +00:00
|
|
|
fmt.Printf("Starting SayHello Publisher: %#v\n", s.nodeName)
|
2021-03-10 13:14:09 +00:00
|
|
|
|
2021-03-12 10:13:42 +00:00
|
|
|
sub := newSubject(SayHello, EventNACK, s.configuration.CentralNodeName)
|
2021-03-09 10:58:50 +00:00
|
|
|
proc := newProcess(s.processes, s.newMessagesCh, s.configuration, sub, s.errorKernel.errorCh, processKindPublisher, []node{}, nil)
|
|
|
|
|
2021-03-26 09:25:56 +00:00
|
|
|
// Define the procFunc to be used for the process.
|
2021-03-10 13:14:09 +00:00
|
|
|
proc.procFunc = procFunc(
|
|
|
|
func() error {
|
|
|
|
for {
|
|
|
|
fmt.Printf("--- DEBUG : procFunc call:kind=%v, Subject=%v, toNode=%v\n", proc.processKind, proc.subject, proc.subject.ToNode)
|
2021-03-09 10:58:50 +00:00
|
|
|
|
2021-03-10 13:14:09 +00:00
|
|
|
d := fmt.Sprintf("Hello from %v\n", s.nodeName)
|
2021-03-09 10:58:50 +00:00
|
|
|
|
2021-03-10 13:14:09 +00:00
|
|
|
m := Message{
|
|
|
|
ToNode: "central",
|
|
|
|
FromNode: node(s.nodeName),
|
|
|
|
Data: []string{d},
|
|
|
|
Method: SayHello,
|
|
|
|
}
|
2021-03-10 06:11:14 +00:00
|
|
|
|
2021-03-12 11:08:11 +00:00
|
|
|
sam, err := newSAM(m)
|
|
|
|
if err != nil {
|
|
|
|
// In theory the system should drop the message before it reaches here.
|
|
|
|
log.Printf("error: ProcessesStart: %v\n", err)
|
|
|
|
}
|
2021-03-10 13:14:09 +00:00
|
|
|
proc.newMessagesCh <- []subjectAndMessage{sam}
|
2021-03-26 09:25:56 +00:00
|
|
|
time.Sleep(time.Second * time.Duration(s.configuration.StartPubSayHello))
|
2021-03-10 13:14:09 +00:00
|
|
|
}
|
|
|
|
})
|
2021-03-09 10:58:50 +00:00
|
|
|
go proc.spawnWorker(s)
|
|
|
|
}
|
2021-02-24 09:58:02 +00:00
|
|
|
}
|