📄 iosessioninputstream.java
字号:
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 org.apache.mina.handler.stream;import java.io.IOException;import java.io.InputStream;import org.apache.mina.core.buffer.IoBuffer;import org.apache.mina.core.service.IoHandler;import org.apache.mina.core.session.IoSession;/** * An {@link InputStream} that buffers data read from * {@link IoHandler#messageReceived(IoSession, Object)} events. * * @author The Apache MINA Project (dev@mina.apache.org) * @version $Rev: 671827 $, $Date: 2008-06-26 10:49:48 +0200 (Thu, 26 Jun 2008) $ */class IoSessionInputStream extends InputStream { private final Object mutex = new Object(); private final IoBuffer buf; private volatile boolean closed; private volatile boolean released; private IOException exception; public IoSessionInputStream() { buf = IoBuffer.allocate(16); buf.setAutoExpand(true); buf.limit(0); } @Override public int available() { if (released) { return 0; } else { synchronized (mutex) { return buf.remaining(); } } } @Override public void close() { if (closed) { return; } synchronized (mutex) { closed = true; releaseBuffer(); mutex.notifyAll(); } } @Override public int read() throws IOException { synchronized (mutex) { if (!waitForData()) { return -1; } return buf.get() & 0xff; } } @Override public int read(byte[] b, int off, int len) throws IOException { synchronized (mutex) { if (!waitForData()) { return -1; } int readBytes; if (len > buf.remaining()) { readBytes = buf.remaining(); } else { readBytes = len; } buf.get(b, off, readBytes); return readBytes; } } private boolean waitForData() throws IOException { if (released) { return false; } synchronized (mutex) { while (!released && buf.remaining() == 0 && exception == null) { try { mutex.wait(); } catch (InterruptedException e) { IOException ioe = new IOException( "Interrupted while waiting for more data"); ioe.initCause(e); throw ioe; } } } if (exception != null) { releaseBuffer(); throw exception; } if (closed && buf.remaining() == 0) { releaseBuffer(); return false; } return true; } private void releaseBuffer() { if (released) { return; } released = true; } public void write(IoBuffer src) { synchronized (mutex) { if (closed) { return; } if (buf.hasRemaining()) { this.buf.compact(); this.buf.put(src); this.buf.flip(); } else { this.buf.clear(); this.buf.put(src); this.buf.flip(); mutex.notifyAll(); } } } public void throwException(IOException e) { synchronized (mutex) { if (exception == null) { exception = e; mutex.notifyAll(); } } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -