blob: 970836e353128dcf5fb3a944f58d43db9a2afd4c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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
*
* http://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.
*/
package org.apache.flink.statefun.flink.core.protorouter;
import com.google.protobuf.Descriptors;
import com.google.protobuf.DynamicMessage;
import com.google.protobuf.Message;
import java.util.Objects;
import org.apache.flink.statefun.flink.common.protopath.ProtobufPath;
import org.apache.flink.statefun.sdk.Address;
import org.apache.flink.statefun.sdk.io.Router;
/**
* Routes {@code Protocol Buffers} {@link DynamicMessage}s based on an address template string.
*
* <p>Route messages downstream to an address determined by an address template of the form
* target-function-namespace/target-function-type/target-function-id. Each address template
* component can reference a section of the input {@link DynamicMessage} by using {@link
* ProtobufPath} expressions.
*
* <p>For example consider the following {@code Protocol Buffers} message type
*
* <pre>{@code
* message MyInput {
* string name = 1;
* }
* }</pre>
*
* And an instance of the message {@code { "name" : "bob" }}, and the following template string:
* "org.apache.flink/python-function/{{$.name}}".
*
* <p>This message would be routed to the address: {@code Address(FunctionType(org.apache.flink,
* python-function), bob)}.
*/
public final class ProtobufRouter implements Router<Message> {
public static ProtobufRouter forAddressTemplate(
Descriptors.Descriptor descriptor, String addressTemplate) {
AddressResolver evaluator = AddressResolver.fromAddressTemplate(descriptor, addressTemplate);
return new ProtobufRouter(evaluator);
}
private final AddressResolver addressResolver;
private ProtobufRouter(AddressResolver addressResolver) {
this.addressResolver = Objects.requireNonNull(addressResolver);
}
@Override
public void route(Message message, Downstream<Message> downstream) {
Address targetAddress = addressResolver.evaluate(message);
downstream.forward(targetAddress, message);
}
}