/*

BSD license

Copyright (c) 2005, Jean Lazarou
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, 
are permitted provided that the following conditions are met:

Redistributions of source code must retain the above copyright notice, this list 
of conditions and the following disclaimer. 
Redistributions in binary form must reproduce the above copyright notice, this 
list of conditions and the following disclaimer in the documentation and/or other
materials provided with the distribution. 
Neither the name of the @home Company! nor the names of its contributors may be 
used to endorse or promote products derived from this software without specific 
prior written permission. 

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
OF THE POSSIBILITY OF SUCH DAMAGE.

*/

/*
 * Created on 08-août-2005
 */
package net.sf.omap.xml;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.Reader;
import java.nio.charset.Charset;

import sun.io.Converters;

import net.sf.omap.MappingException;
import net.sf.omap.ObjectToXMLMappingExpert;

public class XMLMapper {

    String charset;
    ObjectToXMLMappingExpert expert;
    
    /**
     * Creates a Object to XML mapper that will use the default
     <code>String</code> character set.
     
     @param definition the file containing the mapping definition
     */
    public XMLMapper(File definition) {
        this((Charsetnull, loadDefinition(definition));
    }

    /**
     * Creates a Object to XML mapper that will use the default
     <code>String</code> character set.
     
     @param definitionName the resource name of the mapping definition
     */
    public XMLMapper(String definitionName) {
        this((Charsetnull, loadDefinition(definitionName));
    }
    
    /**
     * Creates a Object to XML mapper
     
     @param definition the file that contains mapping definition
     @param charset the character set to use
     */
    public XMLMapper(File definition, String charset) {
        this((CharsetCharset.availableCharsets().get(charset), loadDefinition(definition));
    }

    /**
     * Creates a Object to XML mapper
     
     @param definitionName the resource name of the mapping definition
     @param charset the character set to use
     */
    public XMLMapper(String definitionName, String charset) {
        this((CharsetCharset.availableCharsets().get(charset), loadDefinition(definitionName));
    }

    /**
     * Creates a Object to XML mapper
     
     @param definition the file containing the mapping definition
     @param charset the character set to use (a <code>Charset</code> object
     */
    public XMLMapper(File definition, Charset charset) {
        this(charset, loadDefinition(definition));
    }

    /**
     * Creates a Object to XML mapper
     
     @param definitionName the resource name of the mapping definition
     @param charset the character set to use (a <code>Charset</code> object
     */
    public XMLMapper(String definitionName, Charset charset) {
        this(charset, loadDefinition(definitionName));
    }

    /**
     * Maps the object to XML save to the given file
     
     @param o the object to map
     @param out the file where to write the mapped XML
     */
    public void map(Object o, File outthrows IOException {
        
        try {
            map(o, new FileOutputStream(out));
        catch (FileNotFoundException e) {
            throw new MappingException(e);
        }
        
    }
    
    /**
     * Maps the object to XML save to the given output stream
     
     @param o the object to map
     @param out the <code>OutputStream</code> where to write the mapped XML
     
     @throws IOException 
     */
    public void map(Object o, OutputStream outthrows IOException {
        
        String xml = (Stringexpert.map(o);
        
        String encoding = charset != null ? charset : Converters.getDefaultEncodingName();

        out.write("<?xml version=\"1.0\" encoding=\"".getBytes());
        out.write(encoding.getBytes());
        out.write("\"?>\n".getBytes());

        if (charset == null) {
            out.write(xml.getBytes());
        else {
            out.write(xml.getBytes(charset));
        }
        
    }
    
    private static String loadDefinition(File f) {
        
        try {

            return loadDefinition(new FileReader(f));
            
        catch (IOException e) {
            throw new MappingException(e);
        }
        
    }
    
    private static String loadDefinition(String res) {
        
        InputStream in = XMLMapper.class.getResourceAsStream(res);
        
        if (in == null) {
            throw new MappingException("Cannot find mapping definition as resource named '" + res + "'");
        }
        
        return loadDefinition(new InputStreamReader(in));
        
    }
    
    private static String loadDefinition(Reader in) {
        
        try {
            
            BufferedReader reader = new BufferedReader(in);

            StringBuffer definition = new StringBuffer();
            
            String line = reader.readLine();
            
            while(line != null) {
                
                definition.append(line);
                definition.append("\n");
                
                line = reader.readLine();
                
            }
            
            return definition.toString();
            
        catch (IOException e) {
            throw new MappingException(e);
        }
        
    }

    private XMLMapper(Charset charset, String definition) {
        
        expert = new ObjectToXMLMappingExpert();
        
        expert.register(definition);
        
        this.charset = charset == null null : charset.name();
        
    }

}