AbstractDataBufferDecoder.java 3.9 KB
Newer Older
R
Rossen Stoyanchev 已提交
1
/*
2
 * Copyright 2002-2019 the original author or authors.
R
Rossen Stoyanchev 已提交
3 4 5 6 7
 *
 * 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
 *
S
Spring Operator 已提交
8
 *      https://www.apache.org/licenses/LICENSE-2.0
R
Rossen Stoyanchev 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 * 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.springframework.core.codec;

import java.util.Map;

import org.reactivestreams.Publisher;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;

import org.springframework.core.ResolvableType;
import org.springframework.core.io.buffer.DataBuffer;
27
import org.springframework.core.io.buffer.DataBufferUtils;
R
Rossen Stoyanchev 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
import org.springframework.lang.Nullable;
import org.springframework.util.MimeType;

/**
 * Abstract base class for {@code Decoder} implementations that can decode
 * a {@code DataBuffer} directly to the target element type.
 *
 * <p>Sub-classes must implement {@link #decodeDataBuffer} to provide a way to
 * transform a {@code DataBuffer} to the target data type. The default
 * {@link #decode} implementation transforms each individual data buffer while
 * {@link #decodeToMono} applies "reduce" and transforms the aggregated buffer.
 *
 * <p>Sub-classes can override {@link #decode} in order to split the input stream
 * along different boundaries (e.g. on new line characters for {@code String})
 * or always reduce to a single data buffer (e.g. {@code Resource}).
 *
 * @author Rossen Stoyanchev
 * @since 5.0
P
Phillip Webb 已提交
46
 * @param <T> the element type
R
Rossen Stoyanchev 已提交
47
 */
48
@SuppressWarnings("deprecation")
R
Rossen Stoyanchev 已提交
49 50
public abstract class AbstractDataBufferDecoder<T> extends AbstractDecoder<T> {

51 52
	private int maxInMemorySize = 256 * 1024;

R
Rossen Stoyanchev 已提交
53 54 55 56 57 58

	protected AbstractDataBufferDecoder(MimeType... supportedMimeTypes) {
		super(supportedMimeTypes);
	}


59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
	/**
	 * Configure a limit on the number of bytes that can be buffered whenever
	 * the input stream needs to be aggregated. This can be a result of
	 * decoding to a single {@code DataBuffer},
	 * {@link java.nio.ByteBuffer ByteBuffer}, {@code byte[]},
	 * {@link org.springframework.core.io.Resource Resource}, {@code String}, etc.
	 * It can also occur when splitting the input stream, e.g. delimited text,
	 * in which case the limit applies to data buffered between delimiters.
	 * <p>By default this is set to 256K.
	 * @param byteCount the max number of bytes to buffer, or -1 for unlimited
	 * @since 5.1.11
	 */
	public void setMaxInMemorySize(int byteCount) {
		this.maxInMemorySize = byteCount;
	}

	/**
	 * Return the {@link #setMaxInMemorySize configured} byte count limit.
	 * @since 5.1.11
	 */
	public int getMaxInMemorySize() {
		return this.maxInMemorySize;
	}


R
Rossen Stoyanchev 已提交
84
	@Override
85
	public Flux<T> decode(Publisher<DataBuffer> input, ResolvableType elementType,
R
Rossen Stoyanchev 已提交
86 87
			@Nullable MimeType mimeType, @Nullable Map<String, Object> hints) {

88
		return Flux.from(input).map(buffer -> decodeDataBuffer(buffer, elementType, mimeType, hints));
R
Rossen Stoyanchev 已提交
89 90 91
	}

	@Override
92
	public Mono<T> decodeToMono(Publisher<DataBuffer> input, ResolvableType elementType,
R
Rossen Stoyanchev 已提交
93 94
			@Nullable MimeType mimeType, @Nullable Map<String, Object> hints) {

95
		return DataBufferUtils.join(input, this.maxInMemorySize)
R
Rossen Stoyanchev 已提交
96 97 98 99 100
				.map(buffer -> decodeDataBuffer(buffer, elementType, mimeType, hints));
	}

	/**
	 * How to decode a {@code DataBuffer} to the target element type.
101 102
	 * @deprecated as of 5.2, please implement
	 * {@link #decode(DataBuffer, ResolvableType, MimeType, Map)} instead
R
Rossen Stoyanchev 已提交
103
	 */
104
	@Deprecated
J
Juergen Hoeller 已提交
105
	@Nullable
106 107 108 109 110
	protected T decodeDataBuffer(DataBuffer buffer, ResolvableType elementType,
			@Nullable MimeType mimeType, @Nullable Map<String, Object> hints) {

		return decode(buffer, elementType, mimeType, hints);
	}
R
Rossen Stoyanchev 已提交
111 112

}