Package org.drools.factmodel

Source Code of org.drools.factmodel.Jenerator

package org.drools.factmodel;


import java.beans.IntrospectionException;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.util.jar.JarEntry;
import java.util.jar.JarInputStream;
import java.util.jar.JarOutputStream;

import com.thoughtworks.xstream.XStream;
import com.thoughtworks.xstream.io.xml.DomDriver;

/**
* This will generate a jar from a meta model.
* @author Michael Neale
*
*/
public class Jenerator {



  public byte[] createJar(Fact[] facts, String packageName) throws SecurityException, IllegalArgumentException, IOException, IntrospectionException, ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException, NoSuchFieldException {
    ByteArrayOutputStream result = new ByteArrayOutputStream();
    JarOutputStream jout = new JarOutputStream(result);

    JarEntry metaModel = new JarEntry("factmodel.xml");
    jout.putNextEntry(metaModel);
    jout.write(toXML(facts));
    jout.closeEntry();

    String packagePath = packageName.replace('.', '/');

    for (int i = 0; i < facts.length; i++) {
      ClassBuilder cb = new ClassBuilder();
            ClassDefinition classDef = new ClassDefinition( packageName, null, new String[]{"java.io.Serializable"} );
            for (int j = 0; j < facts[i].fields.size(); j++) {
        Field fd = (Field) facts[i].fields.get(j);
        classDef.addField(new FieldDefinition(fd.name, fd.type));
      }
            JarEntry je = new JarEntry(packagePath + "/" + facts[i].name + ".class");
            jout.putNextEntry(je);
            jout.write(cb.buildClass(classDef));
            jout.closeEntry();
    }
    jout.flush();
    jout.close();

    return result.toByteArray();
  }

  private byte[] toXML(Fact[] facts) {
    XStream x = new XStream(new DomDriver());
    return x.toXML(facts).getBytes();

  }

  public Fact[] loadMetaModel(JarInputStream jis) throws Exception {
        JarEntry entry = null;
        while ( (entry = jis.getNextJarEntry()) != null ) {
          if (entry.getName().equals("factmodel.xml")) {
            return fromXML(jis);
            }
        }

        throw new IllegalArgumentException("This is not a valid drools model jar - no factmodel.xml found.");
  }

  private Fact[] fromXML(JarInputStream jis) {
    XStream x = new XStream(new DomDriver());
    return (Fact[]) x.fromXML(jis);

  }


}
TOP

Related Classes of org.drools.factmodel.Jenerator

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.