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

org.zoodb.tools.internal.XmlWriter Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2009-2013 Tilmann Zaeschke. All rights reserved.
 * 
 * This file is part of ZooDB.
 * 
 * ZooDB 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.
 * 
 * ZooDB 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 ZooDB.  If not, see .
 * 
 * See the README and COPYING files for further information. 
 */
package org.zoodb.tools.internal;

import java.io.IOException;
import java.io.Writer;

public class XmlWriter {

	private final Writer out;
	
	
	public XmlWriter(Writer out) {
		this.out = out;
	}

	public void writeString(String s) {
		writeInt(s.length());
		for (int i = 0; i < s.length(); i++) {
			writeChar(s.charAt(i));
		}
		s.toCharArray();
	}

	public void writeBoolean(boolean b) {
		write(b ? "01" : "00");
	}

	public void writeByte(byte b) {
		writeHex(b, 1);
	}

	public void write(byte[] ba) {
		for (int i = 0; i < ba.length; i++) {
			writeByte(ba[i]);
		}
	}

	public void writeChar(char c) {
		writeHex(c, 2);
	}

	public void writeDouble(double d) {
		writeLong(Double.doubleToRawLongBits(d));
	}

	public void writeFloat(float f) {
		writeInt(Float.floatToRawIntBits(f));
	}

	public void writeInt(int i) {
		writeHex(i, 4);
	}

	public void writeLong(long l) {
		writeHex(l, 8);
	}

	public void writeShort(short s) {
		writeHex(s, 2);
	}

	public void startObject(long oid) {
		writeln("   ");
	}
	
	public void finishObject() {
		writeln("   ");
	}

	public void startField(int fieldPos) {
		write("    ");
	}

	private void writeHex(long in, int bytesToWrite) {
        char[] buf = new char[16];
        int charPos = 16;
        bytesToWrite <<= 1; //1 byte = 2 digits
        for (int j = 0; j < bytesToWrite; j++) {
            buf[--charPos] = digits[(int) (in & 0xfL)];
            in >>>= 4;
        }

		try {
			out.write(buf, charPos, (16 - charPos));
		} catch (IOException e) {
			throw new RuntimeException(e);
		}
	}
	
	private void write(String str) {
		try {
			out.write(str);
		} catch (IOException e) {
			throw new RuntimeException(e);
		}
	}

	private void writeln(String str) {
		write(str + '\n');
	}
	
	private final static char[] digits = {
        '0' , '1' , '2' , '3' , '4' , '5' ,
        '6' , '7' , '8' , '9' , 'a' , 'b' ,
        'c' , 'd' , 'e' , 'f'};

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy