232 std::vector<ForwardRoute>
const& forwards,
236 mOutputRoutes.clear();
237 mOutputChannelInfos.clear();
238 mOutputChannelStates.clear();
240 mInputRoutes.clear();
241 mInputChannels.clear();
242 mInputChannelNames.clear();
244 mForwardRoutes.clear();
245 mForwardChannelInfos.clear();
246 mForwardChannelStates.clear();
249 mOutputRoutes.reserve(outputs.size());
251 std::unordered_map<std::string, ChannelIndex> channelNameToChannel;
252 for (
auto& route : outputs) {
255 auto channelPos = channelNameToChannel.find(route.channel);
258 if (channelPos == channelNameToChannel.end()) {
261 auto channel = device.GetChannels().find(route.channel);
262 if (channel == device.GetChannels().end()) {
263 LOGP(fatal,
"Expected channel {} not configured.", route.channel);
266 .
name = route.channel,
267 .channelType = dplChannel,
268 .channel = channel->second.at(0),
269 .policy = route.policy,
270 .index = channelIndex,
272 mOutputChannelInfos.push_back(info);
273 mOutputChannelStates.push_back({0});
274 channelNameToChannel[route.channel] = channelIndex;
275 LOGP(detail,
"Binding channel {} to channel index {}", route.channel, channelIndex.
value);
277 LOGP(detail,
"Using index {} for channel {}", channelPos->second.value, route.channel);
278 channelIndex = channelPos->second;
280 LOGP(detail,
"Binding route {}@{}%{} to index {} and channelIndex {}",
DataSpecUtils::describe(route.matcher), route.timeslice, route.maxTimeslices, ri, channelIndex.
value);
281 mOutputRoutes.emplace_back(
RouteState{channelIndex,
false});
285 for (
auto& route : mOutputRoutes) {
286 assert(route.channel.value != -1);
287 assert(route.channel.value < mOutputChannelInfos.size());
290 LOGP(detail,
"Total channels found {}, total routes {}", mOutputChannelInfos.size(), mOutputRoutes.size());
291 assert(mOutputRoutes.size() == outputs.size());
297 mInputRoutes.reserve(inputs.size());
299 std::unordered_map<std::string, ChannelIndex> channelNameToChannel;
300 for (
auto& route : inputs) {
303 auto channelPos = channelNameToChannel.find(route.sourceChannel);
306 if (channelPos == channelNameToChannel.end()) {
308 auto channel = device.GetChannels().find(route.sourceChannel);
309 if (channel == device.GetChannels().end()) {
310 LOGP(fatal,
"Expected channel {} not configured.", route.sourceChannel);
312 mInputChannels.push_back(&channel->second.at(0));
313 mInputChannelNames.push_back(route.sourceChannel);
314 channelNameToChannel[route.sourceChannel] = channelIndex;
315 LOGP(detail,
"Binding channel {} to channel index {}", route.sourceChannel, channelIndex.
value);
317 LOGP(detail,
"Using index {} for channel {}", channelPos->second.value, route.sourceChannel);
318 channelIndex = channelPos->second;
320 LOGP(detail,
"Binding route {}@{}%{} to index {} and channelIndex {}",
DataSpecUtils::describe(route.matcher), route.timeslice, maxLanes, ri, channelIndex.
value);
321 mInputRoutes.emplace_back(
RouteState{channelIndex,
false});
324 assert(std::all_of(mInputRoutes.begin(), mInputRoutes.end(), [s = mInputChannels.size()](
RouteState const& route) { return route.channel.value != -1 && route.channel.value < s; }));
325 LOGP(detail,
"Total input channels found {}, total routes {}", mInputChannels.size(), mInputRoutes.size());
326 assert(mInputRoutes.size() == inputs.size());
330 mForwards = forwards;
331 mForwardRoutes.reserve(forwards.size());
332 LOGP(detail,
"Forwards.size(): {}", forwards.size());
334 std::unordered_map<std::string, ChannelIndex> channelNameToChannel;
336 for (
auto& route : forwards) {
339 auto channelPos = channelNameToChannel.find(route.channel);
342 if (channelPos == channelNameToChannel.end()) {
344 auto channel = device.GetChannels().find(route.channel);
345 if (channel == device.GetChannels().end()) {
346 LOGP(fatal,
"Expected channel {} not configured.", route.channel);
349 mForwardChannelInfos.push_back(
ForwardChannelInfo{.
name = route.channel, .channelType = dplChannel, .channel = channel->second.at(0), .policy = route.policy, .index = channelIndex});
351 channelNameToChannel[route.channel] = channelIndex;
352 LOGP(detail,
"Binding forward channel {} to channel index {}", route.channel, channelIndex.
value);
354 LOGP(detail,
"Using index {} for forward channel {}", channelPos->second.value, route.channel);
355 channelIndex = channelPos->second;
357 LOGP(detail,
"Binding forward route {}@{}%{} to index {} and channelIndex {}",
DataSpecUtils::describe(route.matcher), route.timeslice, route.maxTimeslices, ri, channelIndex.
value);
358 mForwardRoutes.emplace_back(
RouteState{channelIndex,
false});
361 LOGP(detail,
"Total forward channels found {}, total routes {}", mForwardChannelInfos.size(), mForwardRoutes.size());
362 assert(mForwardRoutes.size() == forwards.size());
363 for (
size_t fi = 0; fi < mForwards.size(); fi++) {
364 auto& route = mForwards[fi];
365 auto&
state = mForwardRoutes[fi];
366 assert(
state.channel.value != -1);
367 assert(
state.channel.value < mForwardChannelInfos.size());
368 LOGP(detail,
"Forward route {}@{}%{} to index {} and channelIndex {}",
DataSpecUtils::describe(route.matcher), route.timeslice, route.maxTimeslices, fi,
state.channel.value);
371 mStateChangeCallback = [&device]() ->
bool {
return device.NewStatePending(); };