com.diozero.api.AbstractDigitalInputDevice Maven / Gradle / Ivy
package com.diozero.api;
/*
* #%L
* Organisation: diozero
* Project: Device I/O Zero - Core
* Filename: AbstractDigitalInputDevice.java
*
* This file is part of the diozero project. More information about this project
* can be found at http://www.diozero.com/
* %%
* Copyright (C) 2016 - 2021 diozero
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
* #L%
*/
import java.util.function.LongConsumer;
/**
* Abstract base class for low-level GPIO digital input devices.
*/
public abstract class AbstractDigitalInputDevice extends GpioInputDevice
implements DigitalInputDeviceInterface {
protected boolean activeHigh;
private LongConsumer activatedConsumer;
private LongConsumer deactivatedConsumer;
private boolean listenerEnabled;
public AbstractDigitalInputDevice(int gpio, boolean activeHigh) {
super(gpio);
this.activeHigh = activeHigh;
}
/**
* Get active high configuration.
*
* @return Returns false if configured as pull-up, true for all other pull up /
* down options.
*/
public boolean isActiveHigh() {
return activeHigh;
}
@Override
protected void enableDeviceListener() {
if (!listenerEnabled) {
setListener();
listenerEnabled = true;
}
}
@Override
protected void disableDeviceListener() {
if (activatedConsumer == null && deactivatedConsumer == null) {
if (listenerEnabled) {
removeListener();
listenerEnabled = false;
}
}
}
@Override
public void accept(DigitalInputEvent event) {
event.setActiveHigh(activeHigh);
if (activatedConsumer != null && event.isActive()) {
activatedConsumer.accept(event.getNanoTime());
}
if (deactivatedConsumer != null && !event.isActive()) {
deactivatedConsumer.accept(event.getNanoTime());
}
super.accept(event);
}
/**
* Action to perform when the device state is active.
*
* @param consumer Callback object to be invoked when activated (long parameter is nanoseconds time).
*/
public void whenActivated(LongConsumer consumer) {
activatedConsumer = consumer;
if (activatedConsumer == null && deactivatedConsumer == null) {
disableDeviceListener();
} else {
enableDeviceListener();
}
}
/**
* Action to perform when the device state is inactive.
*
* @param consumer Callback object to be invoked when activated (long parameter is nanoseconds time)
*/
public void whenDeactivated(LongConsumer consumer) {
deactivatedConsumer = consumer;
if (activatedConsumer == null && deactivatedConsumer == null) {
disableDeviceListener();
} else {
enableDeviceListener();
}
}
protected abstract void setListener();
protected abstract void removeListener();
}