io.questdb.network.Epoll Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
QuestDB is High Performance Time Series Database
/*******************************************************************************
* ___ _ ____ ____
* / _ \ _ _ ___ ___| |_| _ \| __ )
* | | | | | | |/ _ \/ __| __| | | | _ \
* | |_| | |_| | __/\__ \ |_| |_| | |_) |
* \__\_\\__,_|\___||___/\__|____/|____/
*
* Copyright (c) 2014-2019 Appsicle
* Copyright (c) 2019-2020 QuestDB
*
* 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.questdb.network;
import io.questdb.log.Log;
import io.questdb.log.LogFactory;
import io.questdb.std.Files;
import io.questdb.std.Unsafe;
import java.io.Closeable;
public final class Epoll implements Closeable {
private static final Log LOG = LogFactory.getLog(Epoll.class);
private final long events;
private final long epollFd;
private final int capacity;
private final EpollFacade epf;
private boolean closed = false;
private long _rPtr;
public Epoll(EpollFacade epf, int capacity) {
this.epf = epf;
this.capacity = capacity;
this.events = _rPtr = Unsafe.calloc(EpollAccessor.SIZEOF_EVENT * (long) capacity);
// todo: this can be unsuccessful
this.epollFd = epf.epollCreate();
if (this.epollFd != -1) {
Files.bumpFileCount();
}
}
public Epoll(int capacity) {
this(EpollFacadeImpl.INSTANCE, capacity);
}
@Override
public void close() {
if (closed) {
return;
}
epf.getNetworkFacade().close(epollFd, LOG);
Unsafe.free(events, EpollAccessor.SIZEOF_EVENT * (long) capacity);
closed = true;
}
public int control(long fd, long id, int cmd, int event) {
Unsafe.getUnsafe().putInt(events + EpollAccessor.EVENTS_OFFSET, event | EpollAccessor.EPOLLET | EpollAccessor.EPOLLONESHOT);
Unsafe.getUnsafe().putLong(events + EpollAccessor.DATA_OFFSET, id);
return epf.epollCtl(epollFd, cmd, fd, events);
}
public long getData() {
return Unsafe.getUnsafe().getLong(_rPtr + EpollAccessor.DATA_OFFSET);
}
public int getEvent() {
return Unsafe.getUnsafe().getInt(_rPtr + EpollAccessor.EVENTS_OFFSET);
}
public void listen(long sfd) {
Unsafe.getUnsafe().putInt(events + EpollAccessor.EVENTS_OFFSET, EpollAccessor.EPOLLIN | EpollAccessor.EPOLLET);
Unsafe.getUnsafe().putLong(events + EpollAccessor.DATA_OFFSET, 0);
if (epf.epollCtl(epollFd, EpollAccessor.EPOLL_CTL_ADD, sfd, events) != 0) {
throw NetworkError.instance(epf.errno(), "epoll_ctl");
}
}
public int poll() {
return epf.epollWait(epollFd, events, capacity, 0);
}
public void setOffset(int offset) {
this._rPtr = this.events + (long) offset;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy