io.dvlopt.linux.epoll.EpollEvents Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of linux-epoll Show documentation
Show all versions of linux-epoll Show documentation
Use Linux's epoll from java
/*
* 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.epoll ;
import com.sun.jna.Memory ;
import io.dvlopt.linux.epoll.EpollEvent ;
import io.dvlopt.linux.epoll.internal.NativeEpollEvent ;
/**
* Class representing several epoll events continuously allocated in memory.
*
* @see EpollEvent
*/
public class EpollEvents {
EpollEvent[] events ;
Memory memory ;
/**
* Allocates several events in memory.
*
* @param size How many events should be allocated.
*/
public EpollEvents( int size ) {
this.memory = new Memory( size * NativeEpollEvent.SIZE ) ;
this.events = new EpollEvent[ size ] ;
this.memory.clear() ;
for ( int i = 0 ;
i < size ;
i += 1 ) {
events[ i ] = new EpollEvent( this.memory.share( i
* NativeEpollEvent.SIZE ) ) ;
}
}
/**
* Gets the epoll event located at `index
`.
*
* @param index The position of the event.
*
* @return The requested EpollEvent.
*/
public EpollEvent getEpollEvent( int index ) {
return events[ index ] ;
}
}