0202a01cf1
* Added .classpath, .project and target to svn:ignore
102 lines
3.6 KiB
Java
102 lines
3.6 KiB
Java
/*
|
|
* JBoss, Home of Professional Open Source
|
|
*
|
|
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
|
|
* by the @author tags. See the COPYRIGHT.txt in the distribution for a
|
|
* full listing of individual contributors.
|
|
*
|
|
* This is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as
|
|
* published by the Free Software Foundation; either version 2.1 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* This software is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this software; if not, write to the Free
|
|
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
|
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
|
*/
|
|
package org.jboss.netty.buffer;
|
|
|
|
|
|
/**
|
|
* @author The Netty Project (netty-dev@lists.jboss.org)
|
|
* @author Trustin Lee (tlee@redhat.com)
|
|
*
|
|
* @version $Rev$, $Date$
|
|
*
|
|
* @apiviz.uses org.jboss.netty.buffer.ChannelBuffer
|
|
*/
|
|
public interface ChannelBufferIndexFinder {
|
|
|
|
boolean find(ChannelBuffer buffer, int guessedIndex);
|
|
|
|
static ChannelBufferIndexFinder NUL = new ChannelBufferIndexFinder() {
|
|
public boolean find(ChannelBuffer buffer, int guessedIndex) {
|
|
return buffer.getByte(guessedIndex) == 0;
|
|
}
|
|
};
|
|
|
|
static ChannelBufferIndexFinder NOT_NUL = new ChannelBufferIndexFinder() {
|
|
public boolean find(ChannelBuffer buffer, int guessedIndex) {
|
|
return buffer.getByte(guessedIndex) != 0;
|
|
}
|
|
};
|
|
|
|
static ChannelBufferIndexFinder CR = new ChannelBufferIndexFinder() {
|
|
public boolean find(ChannelBuffer buffer, int guessedIndex) {
|
|
return buffer.getByte(guessedIndex) == '\r';
|
|
}
|
|
};
|
|
|
|
static ChannelBufferIndexFinder NOT_CR = new ChannelBufferIndexFinder() {
|
|
public boolean find(ChannelBuffer buffer, int guessedIndex) {
|
|
return buffer.getByte(guessedIndex) != '\r';
|
|
}
|
|
};
|
|
|
|
static ChannelBufferIndexFinder LF = new ChannelBufferIndexFinder() {
|
|
public boolean find(ChannelBuffer buffer, int guessedIndex) {
|
|
return buffer.getByte(guessedIndex) == '\n';
|
|
}
|
|
};
|
|
|
|
static ChannelBufferIndexFinder NOT_LF = new ChannelBufferIndexFinder() {
|
|
public boolean find(ChannelBuffer buffer, int guessedIndex) {
|
|
return buffer.getByte(guessedIndex) != '\n';
|
|
}
|
|
};
|
|
|
|
static ChannelBufferIndexFinder CRLF = new ChannelBufferIndexFinder() {
|
|
public boolean find(ChannelBuffer buffer, int guessedIndex) {
|
|
byte b = buffer.getByte(guessedIndex);
|
|
return b == '\r' || b == '\n';
|
|
}
|
|
};
|
|
|
|
static ChannelBufferIndexFinder NOT_CRLF = new ChannelBufferIndexFinder() {
|
|
public boolean find(ChannelBuffer buffer, int guessedIndex) {
|
|
byte b = buffer.getByte(guessedIndex);
|
|
return b != '\r' && b != '\n';
|
|
}
|
|
};
|
|
|
|
static ChannelBufferIndexFinder LINEAR_WHITESPACE = new ChannelBufferIndexFinder() {
|
|
public boolean find(ChannelBuffer buffer, int guessedIndex) {
|
|
byte b = buffer.getByte(guessedIndex);
|
|
return b == ' ' || b == '\t';
|
|
}
|
|
};
|
|
|
|
static ChannelBufferIndexFinder NOT_LINEAR_WHITESPACE = new ChannelBufferIndexFinder() {
|
|
public boolean find(ChannelBuffer buffer, int guessedIndex) {
|
|
byte b = buffer.getByte(guessedIndex);
|
|
return b != ' ' && b != '\t';
|
|
}
|
|
};
|
|
}
|