Package br.net.woodstock.rockframework.core.string.impl

Source Code of br.net.woodstock.rockframework.core.string.impl.CharsetTransformer

/*
* This file is part of rockframework.
*
* rockframework is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* rockframework 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>;.
*/
package br.net.woodstock.rockframework.core.string.impl;

import java.io.Serializable;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.charset.CharacterCodingException;
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import java.nio.charset.CharsetEncoder;
import java.nio.charset.CodingErrorAction;

import br.net.woodstock.rockframework.core.RockFrameworkException;
import br.net.woodstock.rockframework.core.RockFrameworkVersion;
import br.net.woodstock.rockframework.core.string.StringTransformer;
import br.net.woodstock.rockframework.core.util.Assert;

public class CharsetTransformer implements StringTransformer, Serializable {

  private static final long  serialVersionUID  = RockFrameworkVersion.VERSION;

  private Charset        from;

  private Charset        to;

  private CharsetDecoder    decoder;

  private CharsetEncoder    encoder;

  public CharsetTransformer(final Charset from) {
    this(from, Charset.defaultCharset());
  }

  public CharsetTransformer(final Charset from, final Charset to) {
    super();
    Assert.notNull(from, "from");
    Assert.notNull(to, "to");
    this.from = from;
    this.to = to;
    this.decoder = this.from.newDecoder();
    this.encoder = this.to.newEncoder();

    this.decoder.onMalformedInput(CodingErrorAction.IGNORE);
    this.decoder.onUnmappableCharacter(CodingErrorAction.IGNORE);

    this.encoder.onMalformedInput(CodingErrorAction.IGNORE);
    this.encoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
  }

  @Override
  public String transform(final String str) {
    try {
      ByteBuffer byteBuffer = this.encoder.encode(CharBuffer.wrap(str));
      CharBuffer charBuffer = this.decoder.decode(byteBuffer);

      String s = charBuffer.toString();

      return s;
    } catch (CharacterCodingException e) {
      throw new RockFrameworkException(e);
    }
  }
}
TOP

Related Classes of br.net.woodstock.rockframework.core.string.impl.CharsetTransformer

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.