forked from SolaceSamples/solace-samples-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
direct_processor.go
151 lines (122 loc) · 4.37 KB
/
direct_processor.go
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
package main
import (
"fmt"
"os"
"os/signal"
"strings"
"time"
"solace.dev/go/messaging"
"solace.dev/go/messaging/pkg/solace"
"solace.dev/go/messaging/pkg/solace/config"
"solace.dev/go/messaging/pkg/solace/message"
"solace.dev/go/messaging/pkg/solace/resource"
)
func ReconnectionHandler(e solace.ServiceEvent) {
e.GetTimestamp()
e.GetBrokerURI()
err := e.GetCause()
if err != nil {
fmt.Println(err)
}
}
func getEnv(key, def string) string {
if val, ok := os.LookupEnv(key); ok {
return val
}
return def
}
// Define Topic Prefix
const TopicPrefix = "solace/samples"
func main() {
// Configuration parameters
brokerConfig := config.ServicePropertyMap{
config.TransportLayerPropertyHost: getEnv("SOLACE_HOST", "tcp://localhost:55555,tcp://localhost:55554"),
config.ServicePropertyVPNName: getEnv("SOLACE_VPN", "default"),
config.AuthenticationPropertySchemeBasicPassword: getEnv("SOLACE_PASSWORD", "default"),
config.AuthenticationPropertySchemeBasicUserName: getEnv("SOLACE_USERNAME", "default"),
}
messagingService, err := messaging.NewMessagingServiceBuilder().FromConfigurationProvider(brokerConfig).Build()
if err != nil {
panic(err)
}
messagingService.AddReconnectionListener(ReconnectionHandler)
// Connect to the messaging serice
if err := messagingService.Connect(); err != nil {
panic(err)
}
fmt.Println("Connected to the broker? ", messagingService.IsConnected())
// Define Topic Subscriptions
subscriptionTopic := resource.TopicSubscriptionOf(TopicPrefix + "/direct/processor/input")
// Build a Direct message receivers with given topics
directReceiver, err := messagingService.CreateDirectMessageReceiverBuilder().
WithSubscriptions(subscriptionTopic).
Build()
fmt.Println("Subscribed to: ", subscriptionTopic.GetName())
if err != nil {
panic(err)
}
// Start Direct Message Receiver
if err := directReceiver.Start(); err != nil {
panic(err)
}
fmt.Println("Direct Receiver running? ", directReceiver.IsRunning())
// Build a direct publish to use for publishing the processed message
directPublisher, builderErr := messagingService.CreateDirectMessagePublisherBuilder().Build()
if builderErr != nil {
panic(builderErr)
}
startErr := directPublisher.Start()
if startErr != nil {
panic(startErr)
}
messageBuilder := messagingService.MessageBuilder()
// Message Handler
var messageHandler solace.MessageHandler = func(message message.InboundMessage) {
var messageBody string
if payload, ok := message.GetPayloadAsString(); ok {
messageBody = payload
} else if payload, ok := message.GetPayloadAsBytes(); ok {
messageBody = string(payload)
}
receivedTopic := message.GetDestinationName()
// Generate processed topic
slice := strings.Split(receivedTopic, "/")
processedTopic := strings.Join(slice[:len(slice)-1][:], "/") + "/output"
// Process the message
// For example, change the body of the message to uppercased
processedMsg := strings.ToUpper(messageBody)
fmt.Printf("Received a message: %s on topic %s\n", messageBody, receivedTopic)
fmt.Printf("Uppercasing to %s and publishing on %s\n\n", processedMsg, processedTopic)
outMessage, err := messageBuilder.BuildWithStringPayload(processedMsg)
if err != nil {
panic(err)
}
// Publish on dynamic topic with dynamic body
publishErr := directPublisher.Publish(outMessage, resource.TopicOf(processedTopic))
if publishErr != nil {
panic(publishErr)
}
}
// Register Message callback handler to the Message Receiver
if regErr := directReceiver.ReceiveAsync(messageHandler); regErr != nil {
panic(regErr)
}
fmt.Println("\n===Interrupt (CTR+C) to handle graceful termination of the receiver===\n")
// cleanup after the main calling function has finished execution
defer func() {
// Terminate the Direct Receiver
directReceiver.Terminate(1 * time.Second)
fmt.Println("\nDirect Receiver Terminated? ", directReceiver.IsTerminated())
// Terminate the Direct Publisher
directPublisher.Terminate(1 * time.Second)
fmt.Println("\nDirect Publisher Terminated? ", directPublisher.IsTerminated())
// Disconnect the Message Service
messagingService.Disconnect()
fmt.Println("Messaging Service Disconnected? ", !messagingService.IsConnected())
}()
// Run forever until an interrupt signal is received
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
// Block until a interrupt signal is received.
<-c
}