blob: 4be6ce54c90e2db74991070d136d583ed7b270b3 [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.edgent.samples.connectors.mqtt;
import static org.apache.edgent.samples.connectors.mqtt.MqttClient.OPT_PUB_CNT;
import static org.apache.edgent.samples.connectors.mqtt.MqttClient.OPT_QOS;
import static org.apache.edgent.samples.connectors.mqtt.MqttClient.OPT_RETAIN;
import static org.apache.edgent.samples.connectors.mqtt.MqttClient.OPT_TOPIC;
import java.util.concurrent.TimeUnit;
import org.apache.edgent.connectors.mqtt.MqttConfig;
import org.apache.edgent.connectors.mqtt.MqttStreams;
import org.apache.edgent.samples.connectors.MsgSupplier;
import org.apache.edgent.samples.connectors.Options;
import org.apache.edgent.topology.TStream;
import org.apache.edgent.topology.Topology;
import org.apache.edgent.topology.TopologyProvider;
/**
* A MQTT publisher topology application.
*/
public class PublisherApp {
private final TopologyProvider tp;
private final Options options;
/**
* @param tp the TopologyProvider to use.
* @param options
*/
PublisherApp(TopologyProvider tp, Options options) {
this.tp = tp;
this.options = options;
}
/**
* Create a topology for the publisher application.
* @return the Topology
*/
public Topology buildAppTopology() {
Topology t = tp.newTopology("mqttClientPublisher");
// Create a sample stream of tuples to publish
TStream<String> msgs = t.poll(new MsgSupplier(options.get(OPT_PUB_CNT)),
1L, TimeUnit.SECONDS);
// Create the MQTT broker connector
MqttConfig config= Runner.newConfig(options);
MqttStreams mqtt = new MqttStreams(t, () -> config);
// Publish the stream to the topic. The String tuple is the message value.
mqtt.publish(msgs, options.get(OPT_TOPIC),
options.get(OPT_QOS), options.get(OPT_RETAIN));
return t;
}
}