blob: 00838f5eb8765d2e6a9b42e4a4de83b45e85b06d [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.connectors.iotp.runtime;
import org.apache.edgent.function.Consumer;
import org.apache.edgent.function.Function;
import org.apache.edgent.function.UnaryOperator;
import com.google.gson.JsonObject;
/**
* Consumer that publishes device stream tuples as IoTf device events with a fixed
* event identifier and qos.
*
*/
public class IotpGWDeviceEventsFunction implements Consumer<JsonObject> {
private static final long serialVersionUID = 1L;
private final IotpGWConnector connector;
private final Function<JsonObject, String> fqDeviceId;
private final Function<JsonObject, String> eventId;
private UnaryOperator<JsonObject> payload;
private final Function<JsonObject, Integer> qos;
public IotpGWDeviceEventsFunction(IotpGWConnector connector, Function<JsonObject, String> fqDeviceId, Function<JsonObject, String> eventId,
UnaryOperator<JsonObject> payload,
Function<JsonObject, Integer> qos) {
this.connector = connector;
this.fqDeviceId = fqDeviceId;
this.payload = payload;
this.eventId = eventId;
this.qos = qos;
}
@Override
public void accept(JsonObject event) {
connector.publishDeviceEvent(fqDeviceId.apply(event), eventId.apply(event), payload.apply(event), qos.apply(event));
}
}