Package com.thoughtworks.xstream.tools.benchmark.xmlfriendly.products

Source Code of com.thoughtworks.xstream.tools.benchmark.xmlfriendly.products.IterativeReplacer$XmlFriendlyReplacer

/*
* Copyright (C) 2007, 2008, 2009 XStream Committers.
* All rights reserved.
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
* Created on 13. September 2007 by Joerg Schaible
*/
package com.thoughtworks.xstream.tools.benchmark.xmlfriendly.products;

import com.thoughtworks.xstream.XStream;
import com.thoughtworks.xstream.io.xml.XppDriver;
import com.thoughtworks.xstream.tools.benchmark.Product;

import java.io.InputStream;
import java.io.OutputStream;

/**
* Iterates through the string and replaces characters.
*
* @author Jörg Schaible
*/
public class IterativeReplacer implements Product {

    private final XStream xstream;
    private final int bufferIncrement;

    public IterativeReplacer(int bufferIncrement) {
        this.bufferIncrement = bufferIncrement;
        this.xstream = new XStream(new XppDriver(new XmlFriendlyReplacer(bufferIncrement)));
    }

    public void serialize(Object object, OutputStream output) throws Exception {
        xstream.toXML(object, output);
    }

    public Object deserialize(InputStream input) throws Exception {
        return xstream.fromXML(input);
    }

    public String toString() {
        return "Iterative Replacer" + (bufferIncrement == 0 ? "" : (" (" + bufferIncrement + ")"));
    }
   
    public static class XmlFriendlyReplacer extends AbstractXmlFriendlyReplacer {

        public XmlFriendlyReplacer(int bufferIncrement) {
            super("_-", "__", bufferIncrement);
        }

        public XmlFriendlyReplacer(String dollarReplacement, String underscoreReplacement, int bufferIncrement) {
            super(dollarReplacement, underscoreReplacement, bufferIncrement);
        }
       
        public String escapeName(String name) {
            return super.escapeIterativelyReplacing(name);
        }
       
        public String unescapeName(String name) {
            return super.unescapeIterativelyReplacing(name);
        }
    }
}
TOP

Related Classes of com.thoughtworks.xstream.tools.benchmark.xmlfriendly.products.IterativeReplacer$XmlFriendlyReplacer

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.