Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.diozero.util.BoardPinInfo Maven / Gradle / Ivy
package com.diozero.util;
/*
* #%L
* Organisation: mattjlewis
* Project: Device I/O Zero - Core
* Filename: BoardPinInfo.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 - 2017 mattjlewis
* %%
* 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.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.TreeMap;
import com.diozero.api.DeviceMode;
import com.diozero.api.PinInfo;
import com.diozero.api.PwmPinInfo;
public class BoardPinInfo {
private static final String GPIO_KEY_PREFIX = "GPIO";
private static final String DEFAULT_GPIO_NAME_PREFIX = GPIO_KEY_PREFIX;
private static final String ADC_KEY_PREFIX = "AIN";
private static final String DEFAULT_ADC_NAME_PREFIX = ADC_KEY_PREFIX;
private static final String DAC_KEY_PREFIX = "AOUT";
private static final String DEFAULT_DAC_NAME_PREFIX = DAC_KEY_PREFIX;
private Map gpios;
private Map pwmNumToGpioMapping;
private Map adcs;
private Map dacs;
private Map pinsByName;
private Map> headers;
public BoardPinInfo() {
gpios = new HashMap<>();
pwmNumToGpioMapping = new HashMap<>();
adcs = new HashMap<>();
dacs = new HashMap<>();
pinsByName = new HashMap<>();
headers = new TreeMap<>();
}
private Map getPinsForHeader(String header) {
Map pins_by_number = headers.get(header);
if (pins_by_number == null) {
pins_by_number = new TreeMap<>();
headers.put(header, pins_by_number);
}
return pins_by_number;
}
protected void addGeneralPinInfo(int pin, String name) {
addGeneralPinInfo(PinInfo.DEFAULT_HEADER, pin, name);
}
protected void addGeneralPinInfo(String header, int pin, String name) {
addGeneralPinInfo(new PinInfo("", header, PinInfo.NOT_DEFINED, pin, name, Collections.emptySet()));
}
protected void addGeneralPinInfo(PinInfo pinInfo) {
getPinsForHeader(pinInfo.getHeader()).put(Integer.valueOf(pinInfo.getPinNumber()), pinInfo);
}
protected PinInfo addGpioPinInfo(int gpioNum, int pin, Collection modes) {
return addGpioPinInfo(PinInfo.DEFAULT_HEADER, gpioNum, DEFAULT_GPIO_NAME_PREFIX + gpioNum, pin, modes);
}
protected PinInfo addGpioPinInfo(int gpioNum, String name, int pin, Collection modes) {
return addGpioPinInfo(PinInfo.DEFAULT_HEADER, gpioNum, name, pin, modes);
}
protected PinInfo addGpioPinInfo(String header, int gpioNum, int pin, Collection modes) {
return addGpioPinInfo(header, gpioNum, DEFAULT_GPIO_NAME_PREFIX + gpioNum, pin, modes);
}
protected PinInfo addGpioPinInfo(String header, int gpioNum, String name, int pin, Collection modes) {
PinInfo pin_info = new PinInfo(GPIO_KEY_PREFIX, header, gpioNum, pin, name, modes,
mapToSysFsGpioNumber(gpioNum));
addGpioPinInfo(pin_info);
return pin_info;
}
protected void addGpioPinInfo(PinInfo pinInfo) {
gpios.put(Integer.valueOf(pinInfo.getDeviceNumber()), pinInfo);
pinsByName.put(pinInfo.getName(), pinInfo);
if (pinInfo.getPinNumber() != PinInfo.NOT_DEFINED) {
getPinsForHeader(pinInfo.getHeader()).put(Integer.valueOf(pinInfo.getPinNumber()), pinInfo);
}
}
protected PinInfo addPwmPinInfo(int gpioNum, int pin, int pwmNum, Collection modes) {
return addPwmPinInfo(PinInfo.DEFAULT_HEADER, gpioNum, DEFAULT_GPIO_NAME_PREFIX + gpioNum, pin, pwmNum, modes);
}
protected PinInfo addPwmPinInfo(int gpioNum, String name, int pin, int pwmNum, Collection modes) {
return addPwmPinInfo(PinInfo.DEFAULT_HEADER, gpioNum, name, pin, pwmNum, modes);
}
protected PinInfo addPwmPinInfo(String header, int gpioNumber, String name, int pin, int pwmNum,
Collection modes) {
PinInfo pin_info = new PwmPinInfo(GPIO_KEY_PREFIX, header, gpioNumber, pin, pwmNum, name, modes,
mapToSysFsGpioNumber(gpioNumber));
addGpioPinInfo(pin_info);
pwmNumToGpioMapping.put(Integer.valueOf(pwmNum), Integer.valueOf(gpioNumber));
return pin_info;
}
protected PinInfo addAdcPinInfo(int adcNumber, int pin) {
return addAdcPinInfo(PinInfo.DEFAULT_HEADER, adcNumber, DEFAULT_ADC_NAME_PREFIX + adcNumber, pin);
}
protected PinInfo addAdcPinInfo(int adcNumber, String name, int pin) {
return addAdcPinInfo(PinInfo.DEFAULT_HEADER, adcNumber, name, pin);
}
protected PinInfo addAdcPinInfo(String header, int adcNumber, String name, int pin) {
PinInfo pin_info = new PinInfo(ADC_KEY_PREFIX, header, adcNumber, pin, name, PinInfo.ANALOG_INPUT);
addAdcPinInfo(pin_info);
return pin_info;
}
protected void addAdcPinInfo(PinInfo pinInfo) {
adcs.put(Integer.valueOf(pinInfo.getDeviceNumber()), pinInfo);
pinsByName.put(pinInfo.getName(), pinInfo);
if (pinInfo.getPinNumber() != PinInfo.NOT_DEFINED) {
getPinsForHeader(pinInfo.getHeader()).put(Integer.valueOf(pinInfo.getPinNumber()), pinInfo);
}
}
protected PinInfo addDacPinInfo(int dacNumber, int pin) {
return addDacPinInfo(PinInfo.DEFAULT_HEADER, dacNumber, DEFAULT_DAC_NAME_PREFIX + dacNumber, pin);
}
protected PinInfo addDacPinInfo(int dacNumber, String name, int pin) {
return addDacPinInfo(PinInfo.DEFAULT_HEADER, dacNumber, name, pin);
}
protected PinInfo addDacPinInfo(String header, int dacNumber, int pin) {
return addDacPinInfo(PinInfo.DEFAULT_HEADER, dacNumber, DEFAULT_DAC_NAME_PREFIX + dacNumber, pin);
}
protected PinInfo addDacPinInfo(String header, int dacNumber, String name, int pin) {
PinInfo pin_info = new PinInfo(DAC_KEY_PREFIX, header, dacNumber, pin, name, PinInfo.ANALOG_OUTPUT);
addDacPinInfo(pin_info);
return pin_info;
}
protected void addDacPinInfo(PinInfo pinInfo) {
dacs.put(Integer.valueOf(pinInfo.getDeviceNumber()), pinInfo);
pinsByName.put(pinInfo.getName(), pinInfo);
if (pinInfo.getPinNumber() != PinInfo.NOT_DEFINED) {
getPinsForHeader(pinInfo.getHeader()).put(Integer.valueOf(pinInfo.getPinNumber()), pinInfo);
}
}
public PinInfo getByGpioNumber(int gpio) {
return gpios.get(Integer.valueOf(gpio));
}
public PinInfo getByPwmNumber(int pwmNum) {
Integer gpio = pwmNumToGpioMapping.get(Integer.valueOf(pwmNum));
if (gpio == null) {
return null;
}
return gpios.get(gpio);
}
public PinInfo getByAdcNumber(int adcNumber) {
return adcs.get(Integer.valueOf(adcNumber));
}
public PinInfo getByDacNumber(int dacNumber) {
return dacs.get(Integer.valueOf(dacNumber));
}
public PinInfo getByName(String name) {
return pinsByName.get(name);
}
public Map> getHeaders() {
return headers;
}
public Collection> getHeaderValues() {
return headers.values();
}
public Collection getGpioPins() {
return gpios.values();
}
public Collection getAdcPins() {
return adcs.values();
}
public Collection getDacPins() {
return dacs.values();
}
@SuppressWarnings("static-method")
public int mapToSysFsGpioNumber(int gpio) {
return gpio;
}
}