
io.dvlopt.linux.gpio.GpioHandleRequest Maven / Gradle / Ivy
Show all versions of linux-gpio Show documentation
/*
* Copyright 2018 Adam Helinski
*
* Licensed 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 io.dvlopt.linux.gpio ;
import com.sun.jna.Memory ;
import io.dvlopt.linux.gpio.GpioFlags ;
import io.dvlopt.linux.gpio.GpioLine ;
import io.dvlopt.linux.gpio.GpioUtils ;
import io.dvlopt.linux.gpio.internal.NativeGpioHandleRequest ;
/**
* Class representing a request for obtaining a GPIO handle for controlling the needed lines.
*
* Several lines can be requested at once and the resulting handle allows the user to control them all
* at once. In practise, there is no garantee that any kind of IO will be atomic, actually happening at
* the exact same time for all the lines. This depends on the underlying driver and is opaque to this
* library and user space in general.
*
* @see GpioBuffer
* @see GpioFlags
* @see GpioHandle
*/
public class GpioHandleRequest {
// Pointer to the native structure.
//
final Memory memory ;
/**
* Basic constructor, by default lines will be requested as they are.
*/
public GpioHandleRequest() {
this.memory = new Memory( NativeGpioHandleRequest.SIZE ) ;
this.memory.clear() ;
}
// Sets flags using an int.
//
private GpioHandleRequest setRawFlags( int flags ) {
this.memory.setInt( NativeGpioHandleRequest.OFFSET_FLAGS ,
flags ) ;
return this ;
}
/**
* Sets flags specifying how the lines will be handled.
*
* @param flags
* Prepared flags.
*
* @return This instance.
*/
public GpioHandleRequest setFlags( GpioFlags flags ) {
return this.setRawFlags( flags.forRequest() ) ;
}
/**
* The lines will be requested as they are.
*
* @return This instance.
*/
public GpioHandleRequest unsetFlags() {
return this.setRawFlags( 0 ) ;
}
/**
* Retrieves the flags specifying how the lines will be handled.
*
* @return The flags.
*/
public GpioFlags getFlags() {
return new GpioFlags().fromRequest( this.memory.getInt( NativeGpioHandleRequest.OFFSET_FLAGS ) ) ;
}
/**
* Retrieves the consumer of this request.
*
* @return A string representing the consumer or null.
*/
public String getConsumer() {
return GpioUtils.getString( this.memory ,
NativeGpioHandleRequest.OFFSET_CONSUMER ) ;
}
/**
* Sets the consumer of the requested lines.
*
* @param consumer
* String representing the consumer, length must be smaller than 32.
*
* @return This instance.
*
* @throws IllegalArgumentException
* When the length of the consumer is higher or equal than 32.
*/
public GpioHandleRequest setConsumer( String consumer ) {
GpioUtils.setConsumer( this.memory ,
NativeGpioHandleRequest.OFFSET_CONSUMER ,
consumer ) ;
return this ;
}
// Retrieves the linux file descriptor after the request has been accepted.
//
int getFD() {
return this.memory.getInt( NativeGpioHandleRequest.OFFSET_FD ) ;
}
/**
* Adds a GPIO line to the request.
*
* A handle can drive at most 64 lines at once.
*
* @param lineNumber
* Which line.
*
* @return A GPIO line useful for handling a buffer.
*
* @see GpioBuffer
*/
public GpioLine addLine( int lineNumber ) {
int index = this.memory.getInt( NativeGpioHandleRequest.OFFSET_LINES ) ;
this.memory.setInt( NativeGpioHandleRequest.OFFSET_LINE_OFFSETS + 4 * index ,
lineNumber ) ;
this.memory.setInt( NativeGpioHandleRequest.OFFSET_LINES ,
index + 1 ) ;
return new GpioLine( lineNumber ,
index ) ;
}
/**
* Adds a GPIO line to the request with a default value.
*
* A handle can drive at most 64 lines.
*
* Providing a default value works only for outputs and will be ignored for inputs.
*
* @param lineNumber
* Which line.
*
* @param value
* Default value.
*
* @return A GPIO line useful for handling a buffer.
*
* @see GpioBuffer
*/
public GpioLine addLine( int lineNumber ,
boolean value ) {
GpioLine gpioLine = this.addLine( lineNumber ) ;
this.memory.setByte( NativeGpioHandleRequest.OFFSET_DEFAULT_VALUES + gpioLine.index ,
(byte)( value ? 1
: 0 ) ) ;
return gpioLine ;
}
}