javax.websocket.Decoder.Text#javax.websocket.Decoder.TextStream源码实例Demo

下面列出了javax.websocket.Decoder.Text#javax.websocket.Decoder.TextStream 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。


@Override
protected Object decode(String message) throws DecodeException {
    // Handle primitives
    if (primitiveType != null) {
        return Util.coerceToType(primitiveType, message);
    }
    // Handle full decoders
    for (Decoder decoder : decoders) {
        if (decoder instanceof Text) {
            if (((Text<?>) decoder).willDecode(message)) {
                return ((Text<?>) decoder).decode(message);
            }
        } else {
            StringReader r = new StringReader(message);
            try {
                return ((TextStream<?>) decoder).decode(r);
            } catch (IOException ioe) {
                throw new DecodeException(message, sm.getString(
                        "pojoMessageHandlerWhole.decodeIoFail"), ioe);
            }
        }
    }
    return null;
}
 

@Override
protected Object decode(String message) throws DecodeException {
    // Handle primitives
    if (primitiveType != null) {
        return Util.coerceToType(primitiveType, message);
    }
    // Handle full decoders
    for (Decoder decoder : decoders) {
        if (decoder instanceof Text) {
            if (((Text<?>) decoder).willDecode(message)) {
                return ((Text<?>) decoder).decode(message);
            }
        } else {
            StringReader r = new StringReader(message);
            try {
                return ((TextStream<?>) decoder).decode(r);
            } catch (IOException ioe) {
                throw new DecodeException(message, sm.getString(
                        "pojoMessageHandlerWhole.decodeIoFail"), ioe);
            }
        }
    }
    return null;
}
 

@Override
protected Object decode(String message) throws DecodeException {
    // Handle primitives
    if (primitiveType != null) {
        return Util.coerceToType(primitiveType, message);
    }
    // Handle full decoders
    for (Decoder decoder : decoders) {
        if (decoder instanceof Text) {
            if (((Text<?>) decoder).willDecode(message)) {
                return ((Text<?>) decoder).decode(message);
            }
        } else {
            StringReader r = new StringReader(message);
            try {
                return ((TextStream<?>) decoder).decode(r);
            } catch (IOException ioe) {
                throw new DecodeException(message, sm.getString(
                        "pojoMessageHandlerWhole.decodeIoFail"), ioe);
            }
        }
    }
    return null;
}
 
源代码4 项目: Tomcat8-Source-Read   文件: Util.java

public DecoderMatch(Class<?> target, List<DecoderEntry> decoderEntries) {
    this.target = target;
    for (DecoderEntry decoderEntry : decoderEntries) {
        if (decoderEntry.getClazz().isAssignableFrom(target)) {
            if (Binary.class.isAssignableFrom(
                    decoderEntry.getDecoderClazz())) {
                binaryDecoders.add(decoderEntry.getDecoderClazz());
                // willDecode() method means this decoder may or may not
                // decode a message so need to carry on checking for
                // other matches
            } else if (BinaryStream.class.isAssignableFrom(
                    decoderEntry.getDecoderClazz())) {
                binaryDecoders.add(decoderEntry.getDecoderClazz());
                // Stream decoders have to process the message so no
                // more decoders can be matched
                break;
            } else if (Text.class.isAssignableFrom(
                    decoderEntry.getDecoderClazz())) {
                textDecoders.add(decoderEntry.getDecoderClazz());
                // willDecode() method means this decoder may or may not
                // decode a message so need to carry on checking for
                // other matches
            } else if (TextStream.class.isAssignableFrom(
                    decoderEntry.getDecoderClazz())) {
                textDecoders.add(decoderEntry.getDecoderClazz());
                // Stream decoders have to process the message so no
                // more decoders can be matched
                break;
            } else {
                throw new IllegalArgumentException(
                        sm.getString("util.unknownDecoderType"));
            }
        }
    }
}
 
源代码5 项目: Tomcat7.0.67   文件: Util.java

public DecoderMatch(Class<?> target, List<DecoderEntry> decoderEntries) {
    this.target = target;
    for (DecoderEntry decoderEntry : decoderEntries) {
        if (decoderEntry.getClazz().isAssignableFrom(target)) {
            if (Binary.class.isAssignableFrom(
                    decoderEntry.getDecoderClazz())) {
                binaryDecoders.add(decoderEntry.getDecoderClazz());
                // willDecode() method means this decoder may or may not
                // decode a message so need to carry on checking for
                // other matches
            } else if (BinaryStream.class.isAssignableFrom(
                    decoderEntry.getDecoderClazz())) {
                binaryDecoders.add(decoderEntry.getDecoderClazz());
                // Stream decoders have to process the message so no
                // more decoders can be matched
                break;
            } else if (Text.class.isAssignableFrom(
                    decoderEntry.getDecoderClazz())) {
                textDecoders.add(decoderEntry.getDecoderClazz());
                // willDecode() method means this decoder may or may not
                // decode a message so need to carry on checking for
                // other matches
            } else if (TextStream.class.isAssignableFrom(
                    decoderEntry.getDecoderClazz())) {
                textDecoders.add(decoderEntry.getDecoderClazz());
                // Stream decoders have to process the message so no
                // more decoders can be matched
                break;
            } else {
                throw new IllegalArgumentException(
                        sm.getString("util.unknownDecoderType"));
            }
        }
    }
}
 
源代码6 项目: tomcatsrc   文件: Util.java

public DecoderMatch(Class<?> target, List<DecoderEntry> decoderEntries) {
    this.target = target;
    for (DecoderEntry decoderEntry : decoderEntries) {
        if (decoderEntry.getClazz().isAssignableFrom(target)) {
            if (Binary.class.isAssignableFrom(
                    decoderEntry.getDecoderClazz())) {
                binaryDecoders.add(decoderEntry.getDecoderClazz());
                // willDecode() method means this decoder may or may not
                // decode a message so need to carry on checking for
                // other matches
            } else if (BinaryStream.class.isAssignableFrom(
                    decoderEntry.getDecoderClazz())) {
                binaryDecoders.add(decoderEntry.getDecoderClazz());
                // Stream decoders have to process the message so no
                // more decoders can be matched
                break;
            } else if (Text.class.isAssignableFrom(
                    decoderEntry.getDecoderClazz())) {
                textDecoders.add(decoderEntry.getDecoderClazz());
                // willDecode() method means this decoder may or may not
                // decode a message so need to carry on checking for
                // other matches
            } else if (TextStream.class.isAssignableFrom(
                    decoderEntry.getDecoderClazz())) {
                textDecoders.add(decoderEntry.getDecoderClazz());
                // Stream decoders have to process the message so no
                // more decoders can be matched
                break;
            } else {
                throw new IllegalArgumentException(
                        sm.getString("util.unknownDecoderType"));
            }
        }
    }
}