私はJavaで自動ストリームマルチプレクサを作成していますが、これはさまざまな量のFileDescriptorを読み取る必要があります。ファイル記述子 (または FileDescriptor を持つソケットなど) を読み取るには、正確な解決策が必要です。いくつかの記述子があり、イベントがない場合は、すべてを反復しないでください。そして、これがLinuxのsomメソッドです:select、poll。この方法を使用しようとしましたが、成功しませんでした。ネイティブコードは次のとおりです。
JNIEXPORT jint JNICALL Java_hu_ddsi_java_Native_JUnix_select(JNIEnv * env,jobject obj,jobjectArray fds,long timeout_s,long timeout_us)
{
int len = env->GetArrayLength(fds);
jclass cls = env->FindClass("java/io/FileDescriptor");
jfieldID fid = env->GetFieldID(cls, "fd", "I");
fd_set watch;
int buf = 0;
int max = 0;
for(int i=0;i < len;i++)
{
FD_SET( buf=(int) env->GetIntField(env->GetObjectArrayElement(fds, i),fid),&watch);
if(buf>max)
max = buf;
}
struct timeval *timeout = (timeval*) malloc(sizeof(struct timeval));
timeout->tv_sec = timeout_s;
timeout->tv_usec = timeout_us;
return select(max+1, &watch, NULL,NULL,timeout);
}
JNIEXPORT jint JNICALL Java_hu_ddsi_java_Native_JUnix_poll(JNIEnv * env,jobject obj,jlongArray pollfds,int timeout_ms)
{
unsigned int nfds = env->GetArrayLength(pollfds);
void* pointerfor = malloc(nfds*(sizeof(void*)));
for(int i=0;i < nfds;i++)
env->GetLongArrayRegion(pollfds,i,1,(jlong*) pointerfor+(sizeof(void*)*i));
return poll( ((struct pollfd*)pointerfor), nfds,timeout_ms);
}
JNIEXPORT jlong JNICALL Java_hu_ddsi_java_Native_JUnix_pollfd(JNIEnv * env,jobject obj,jobject fd,jshort events,jshort revents)
{
jclass cls = env->FindClass("java/io/FileDescriptor");
jfieldID fid = env->GetFieldID(cls, "fd", "I");
struct pollfd *pfd = (pollfd*) malloc(sizeof( pollfd));
pfd->fd = env->GetIntField(fd,fid);
pfd->events = events;
pfd->revents = 0x0;
return (jlong) pfd;
}
JNIEXPORT jint JNICALL Java_hu_ddsi_java_Native_JUnix_pollfdfd(JNIEnv * env,jobject obj,jlong pfd_struct)
{
return ((struct pollfd*)pfd_struct)->fd;
}
JNIEXPORT jshort JNICALL Java_hu_ddsi_java_Native_JUnix_pollfdevents(JNIEnv * env,jobject obj,jlong pfd_struct)
{
return ((struct pollfd*)pfd_struct)->events;
}
JNIEXPORT jshort JNICALL Java_hu_ddsi_java_Native_JUnix_pollfdrevents(JNIEnv * env,jobject obj,jlong pfd_struct)
{
return ((struct pollfd*)pfd_struct)->revents;
}
そしてJavaのテストコード:
public static void main(String args[]) throws Throwable
final FileInputStream is = new FileInputStream("/var/log/apache2/access.log");
long st = JUnix.pollfd(is.getFD(),(short)( JUnix.POLLIN|JUnix.POLLPRI ));
int len = 0;
while(true)
{
System.out.println("ava:"+(len = is.available()));
for(int i=0;i < len;i++)
System.out.print((char) is.read());
// JUnix.select(new FileDescriptor[]{is.getFD()},5,0);
System.out.println("pollretval: "+JUnix.poll(new long[]{st},-1));
System.out.println("revent: "+JUnix.pollfdrevents(st));
System.out.println("pollfd: "+JUnix.pollfdfd(st));
}
}
そして、閲覧すると、端末に新しい行が表示されるはずですが、それは永久にブロックされます...タイムアウトを変更すると、端末で現在の行が表示されます。
時々、コードがおかしくなり、無限に出力されます:
ava:0
pollretval: 1
revent: 0
pollfd: 10
この結果は興味深いものです。fileDescriptor は同じで、変更された fd 番号で返されたネイティブ ポールですが、pollfd stuct の revent フィールドは... イベントが発生した場合は変更する必要があります。私がテストしたところ、ポインターは適切な場所にあり (結果が示すように)、単純な C コードは同じ結果を実行します (FD の C のメソッドのように InputStream.available が見つからないため、ストリームで利用可能なバイト数がわかりません、しかし永遠に待つ)
私は何を間違っていますか?