All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feilong.lib.xstream.io.binary.BinaryStreamWriter Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
/*
 * Copyright (C) 2006 Joe Walnes.
 * Copyright (C) 2006, 2007 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 04. June 2006 by Joe Walnes
 */
package com.feilong.lib.xstream.io.binary;

import java.io.DataOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.HashMap;
import java.util.Map;

import com.feilong.lib.xstream.io.ExtendedHierarchicalStreamWriter;
import com.feilong.lib.xstream.io.HierarchicalStreamWriter;
import com.feilong.lib.xstream.io.StreamException;

/**
 * @since 1.2
 */
public class BinaryStreamWriter implements ExtendedHierarchicalStreamWriter{

    private final IdRegistry       idRegistry     = new IdRegistry();

    private final DataOutputStream out;

    private final Token.Formatter  tokenFormatter = new Token.Formatter();

    public BinaryStreamWriter(OutputStream outputStream){
        out = new DataOutputStream(outputStream);
    }

    @Override
    public void startNode(String name){
        write(new Token.StartNode(idRegistry.getId(name)));
    }

    @Override
    public void startNode(String name,Class clazz){
        startNode(name);
    }

    @Override
    public void addAttribute(String name,String value){
        write(new Token.Attribute(idRegistry.getId(name), value));
    }

    @Override
    public void setValue(String text){
        write(new Token.Value(text));
    }

    @Override
    public void endNode(){
        write(new Token.EndNode());
    }

    @Override
    public void flush(){
        try{
            out.flush();
        }catch (IOException e){
            throw new StreamException(e);
        }
    }

    @Override
    public void close(){
        try{
            out.close();
        }catch (IOException e){
            throw new StreamException(e);
        }
    }

    @Override
    public HierarchicalStreamWriter underlyingWriter(){
        return this;
    }

    private void write(Token token){
        try{
            tokenFormatter.write(out, token);
        }catch (IOException e){
            throw new StreamException(e);
        }
    }

    private class IdRegistry{

        private long nextId = 0;

        private Map  ids    = new HashMap();

        public long getId(String value){
            Long id = (Long) ids.get(value);
            if (id == null){
                id = new Long(++nextId);
                ids.put(value, id);
                write(new Token.MapIdToValue(id.longValue(), value));
            }
            return id.longValue();
        }

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy