-
Notifications
You must be signed in to change notification settings - Fork 913
/
Copy pathBasicSubscriber.cpp
171 lines (143 loc) · 5.67 KB
/
BasicSubscriber.cpp
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*
* Copyright 2014-2025 Real Logic Limited.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <cstdint>
#include <thread>
#include <csignal>
#include "Configuration.h"
#include "util/CommandOptionParser.h"
#include "Aeron.h"
#include "FragmentAssembler.h"
#include "concurrent/SleepingIdleStrategy.h"
using namespace aeron::util;
using namespace aeron;
std::atomic<bool> running(true);
void sigIntHandler(int)
{
running = false;
}
static const char optHelp = 'h';
static const char optPrefix = 'p';
static const char optChannel = 'c';
static const char optStreamId = 's';
static const std::chrono::duration<long, std::milli> IDLE_SLEEP_MS(1);
static const int FRAGMENTS_LIMIT = 10;
struct Settings
{
std::string dirPrefix;
std::string channel = samples::configuration::DEFAULT_CHANNEL;
std::int32_t streamId = samples::configuration::DEFAULT_STREAM_ID;
};
Settings parseCmdLine(CommandOptionParser &cp, int argc, char **argv)
{
cp.parse(argc, argv);
if (cp.getOption(optHelp).isPresent())
{
cp.displayOptionsHelp(std::cout);
exit(0);
}
Settings s;
s.dirPrefix = cp.getOption(optPrefix).getParam(0, s.dirPrefix);
s.channel = cp.getOption(optChannel).getParam(0, s.channel);
s.streamId = cp.getOption(optStreamId).getParamAsInt(0, 1, INT32_MAX, s.streamId);
return s;
}
fragment_handler_t printStringMessage()
{
return [&](const AtomicBuffer &buffer, util::index_t offset, util::index_t length, const Header &header)
{
std::cout
<< "Message to stream " << header.streamId() << " from session " << header.sessionId()
<< "(" << length << "@" << offset << ") <<"
<< std::string(reinterpret_cast<const char *>(buffer.buffer()) + offset, static_cast<std::size_t>(length))
<< ">>" << std::endl;
};
}
int main(int argc, char **argv)
{
CommandOptionParser cp;
cp.addOption(CommandOption(optHelp, 0, 0, " Displays help information."));
cp.addOption(CommandOption(optPrefix, 1, 1, "dir Prefix directory for aeron driver."));
cp.addOption(CommandOption(optChannel, 1, 1, "channel Channel."));
cp.addOption(CommandOption(optStreamId, 1, 1, "streamId Stream ID."));
try
{
Settings settings = parseCmdLine(cp, argc, argv);
std::cout << "Subscribing to channel " << settings.channel << " on Stream ID " << settings.streamId << std::endl;
aeron::Context context;
if (!settings.dirPrefix.empty())
{
context.aeronDir(settings.dirPrefix);
}
context.newSubscriptionHandler(
[](const std::string &channel, std::int32_t streamId, std::int64_t correlationId)
{
std::cout << "Subscription: " << channel << " " << correlationId << ":" << streamId << std::endl;
});
context.availableImageHandler(
[](Image &image)
{
std::cout << "Available image correlationId=" << image.correlationId() << " sessionId=" << image.sessionId();
std::cout << " at position=" << image.position() << " from " << image.sourceIdentity() << std::endl;
});
context.unavailableImageHandler(
[](Image &image)
{
std::cout << "Unavailable image on correlationId=" << image.correlationId() << " sessionId=" << image.sessionId();
std::cout << " at position=" << image.position() << " from " << image.sourceIdentity() << std::endl;
});
std::shared_ptr<Aeron> aeron = Aeron::connect(context);
signal(SIGINT, sigIntHandler);
// add the subscription to start the process
std::int64_t id = aeron->addSubscription(settings.channel, settings.streamId);
std::shared_ptr<Subscription> subscription = aeron->findSubscription(id);
// wait for the subscription to be valid
while (!subscription)
{
std::this_thread::yield();
subscription = aeron->findSubscription(id);
}
const std::int64_t channelStatus = subscription->channelStatus();
std::cout
<< "Subscription channel status (id=" << subscription->channelStatusId() << ") "
<< (channelStatus == ChannelEndpointStatus::CHANNEL_ENDPOINT_ACTIVE ? "ACTIVE" : std::to_string(channelStatus))
<< std::endl;
FragmentAssembler fragmentAssembler(printStringMessage());
fragment_handler_t handler = fragmentAssembler.handler();
SleepingIdleStrategy idleStrategy(IDLE_SLEEP_MS);
while (running)
{
const int fragmentsRead = subscription->poll(handler, FRAGMENTS_LIMIT);
idleStrategy.idle(fragmentsRead);
}
}
catch (const CommandOptionException &e)
{
std::cerr << "ERROR: " << e.what() << std::endl << std::endl;
cp.displayOptionsHelp(std::cerr);
return -1;
}
catch (const SourcedException &e)
{
std::cerr << "FAILED: " << e.what() << " : " << e.where() << std::endl;
return -1;
}
catch (const std::exception &e)
{
std::cerr << "FAILED: " << e.what() << " : " << std::endl;
return -1;
}
return 0;
}