Package org.springframework.messaging.converter

Source Code of org.springframework.messaging.converter.StringMessageConverter

/*
* Copyright 2002-2013 the original author or authors.
*
* 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
*
*      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.springframework.messaging.converter;

import java.nio.charset.Charset;

import org.springframework.messaging.Message;
import org.springframework.messaging.MessageHeaders;
import org.springframework.util.MimeType;

/**
* A {@link MessageConverter} that supports MIME type "text/plain" with the
* payload converted to and from a String.
*
* @author Rossen Stoyanchev
* @since 4.0
*/
public class StringMessageConverter extends AbstractMessageConverter {

  private final Charset defaultCharset;


  public StringMessageConverter() {
    this(Charset.forName("UTF-8"));
  }

  public StringMessageConverter(Charset defaultCharset) {
    super(new MimeType("text", "plain", defaultCharset));
    this.defaultCharset = defaultCharset;
  }


  @Override
  protected boolean supports(Class<?> clazz) {
    return String.class.equals(clazz);
  }

  @Override
  public Object convertFromInternal(Message<?> message, Class<?> targetClass) {
    Charset charset = getContentTypeCharset(getMimeType(message.getHeaders()));
    Object payload = message.getPayload();
    return (payload instanceof String) ? payload : new String((byte[]) payload, charset);
  }

  @Override
  public Object convertToInternal(Object payload, MessageHeaders headers) {
    if (byte[].class.equals(getSerializedPayloadClass())) {
      Charset charset = getContentTypeCharset(getMimeType(headers));
      payload = ((String) payload).getBytes(charset);
    }
    return payload;
  }

  private Charset getContentTypeCharset(MimeType mimeType) {
    if (mimeType != null && mimeType.getCharSet() != null) {
      return mimeType.getCharSet();
    }
    else {
      return this.defaultCharset;
    }
  }

}
TOP

Related Classes of org.springframework.messaging.converter.StringMessageConverter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.