blob: 35e7b0d0e7602600c3fbb8e91942baa4ec8a4203 [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.karaf.rcomp.mqtt;
import java.util.concurrent.atomic.AtomicBoolean;
import org.eclipse.paho.client.mqttv3.IMqttMessageListener;
import org.eclipse.paho.client.mqttv3.MqttClient;
import org.eclipse.paho.client.mqttv3.MqttException;
import org.eclipse.paho.client.mqttv3.MqttMessage;
import org.reactivestreams.Publisher;
import org.reactivestreams.Subscriber;
import org.reactivestreams.Subscription;
public class MqttSource<T> implements Publisher<T> {
private MqttClient client;
private String topic;
public MqttSource(MqttClient client, String topic, Class<? extends T> type) {
this.client = client;
this.topic = topic;
if (! type.equals(byte[].class)) {
throw new IllegalArgumentException("Curently only byte[] is supported");
}
}
@Override
public void subscribe(Subscriber<? super T> subscriber) {
subscriber.onSubscribe(new MqttSubscription(subscriber));
}
public class MqttSubscription implements IMqttMessageListener, Subscription {
private AtomicBoolean subScribed;
private Subscriber<? super T> subscriber;
public MqttSubscription(Subscriber<? super T> subscriber) {
this.subscriber = subscriber;
this.subScribed = new AtomicBoolean(false);
}
@Override
public void request(long n) {
try {
if (subScribed.compareAndSet(false, true)) {
client.subscribe(topic, this);
}
} catch (MqttException e) {
subscriber.onError(e);
}
}
@Override
public void cancel() {
try {
if (subScribed.compareAndSet(true, false)) {
client.unsubscribe(topic);
}
} catch (MqttException e) {
subscriber.onError(e);
}
}
@Override
public void messageArrived(String topic, MqttMessage message) throws Exception {
this.subscriber.onNext(converTo(message.getPayload()));
}
/**
* Simple conversion that just supports byte[]
* @param payload
* @return
*/
@SuppressWarnings("unchecked")
private T converTo(byte[] payload) {
return (T) payload;
}
}
}