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

xapi.dev.ui.html.HtmlSnippetInjector Maven / Gradle / Ivy

Go to download

Everything needed to run a comprehensive dev environment. Just type X_ and pick a service from autocomplete; new dev modules will be added as they are built. The only dev service not included in the uber jar is xapi-dev-maven, as it includes all runtime dependencies of maven, adding ~4 seconds to build time, and 6 megabytes to the final output jar size (without xapi-dev-maven, it's ~1MB).

The newest version!
package xapi.dev.ui.html;

import com.google.gwt.core.ext.TreeLogger;
import com.google.gwt.core.ext.TreeLogger.Type;
import com.google.gwt.core.ext.UnableToCompleteException;
import com.google.gwt.core.ext.typeinfo.NotFoundException;
import com.google.gwt.core.ext.typeinfo.TypeOracle;
import com.google.gwt.dev.jjs.MagicMethodGenerator;
import com.google.gwt.dev.jjs.SourceInfo;
import com.google.gwt.dev.jjs.UnifyAstView;
import com.google.gwt.dev.jjs.ast.Context;
import com.google.gwt.dev.jjs.ast.JClassLiteral;
import com.google.gwt.dev.jjs.ast.JClassType;
import com.google.gwt.dev.jjs.ast.JConstructor;
import com.google.gwt.dev.jjs.ast.JDeclaredType;
import com.google.gwt.dev.jjs.ast.JExpression;
import com.google.gwt.dev.jjs.ast.JMethod;
import com.google.gwt.dev.jjs.ast.JMethodCall;
import com.google.gwt.dev.jjs.ast.JNewInstance;
import com.google.gwt.reflect.rebind.ReflectionUtilAst;

import java.util.List;

import xapi.ui.html.api.HtmlSnippet;

/**
 * A magic method injector for the methods X_Html.toHtml and X_Html.toSnippet:
 * 
 * public static  String toHtml(Class type, T model, HtmlBuffer context)
 * public static  HtmlSnippet toSnippet(Class type, HtmlBuffer context)
 * 
* This magic method will create a generated class that is much more efficient at runtime than * what the default code does (via reflection). At present, sending non-class literals to this * method is not supported. It can be supported by using reflection in Gwt, but it requires a lot * of reflection which comes with a lot of overhead, and will not be supported unless there is a * very compelling use case offered. * * @author "James X. Nelson ([email protected])" * */ public class HtmlSnippetInjector implements MagicMethodGenerator { @Override public JExpression injectMagic(final TreeLogger logger, final JMethodCall methodCall, final JMethod enclosingMethod, final Context context, final UnifyAstView ast) throws UnableToCompleteException { final List args = methodCall.getArgs(); final JClassLiteral typeLiteral = ReflectionUtilAst.extractClassLiteral(logger, args.get(0), ast, true); final boolean isToHtml = "toHtml".equals(methodCall.getTarget().getName()); final int instanceIndex = args.size() - 2; logger.log(Type.DEBUG, "Injecting "+methodCall.getTarget().getName()+" for "+typeLiteral.getRefType().getName()); final TypeOracle oracle = ast.getTypeOracle(); ast.translate(typeLiteral.getRefType()); com.google.gwt.core.ext.typeinfo.JClassType templateType; try { templateType = oracle.getType(typeLiteral.getRefType().getName().replace('$', '.')); } catch (final NotFoundException e) { logger.log(Type.ERROR, "Unable to load "+typeLiteral.getRefType()+" from the type oracle"); throw new UnableToCompleteException(); } com.google.gwt.core.ext.typeinfo.JClassType modelType; try { if (args.size() == (isToHtml ? 3 : 2)) { modelType = templateType; } else { final JClassLiteral modelLiteral = ReflectionUtilAst.extractClassLiteral(logger, args.get(1), ast, true); ast.translate(modelLiteral.getRefType()); modelType = oracle.getType(modelLiteral.getRefType().getName().replace('$', '.')); } } catch (final NotFoundException e) { logger.log(Type.ERROR, "Unable to load "+typeLiteral.getRefType()+" from the type oracle"); throw new UnableToCompleteException(); } HtmlGeneratorResult provider; provider = HtmlSnippetGenerator.generateSnippetProvider(logger, ast, templateType, modelType); // Force load the type ast.getTypeOracle().findType(provider.getFinalName()); // Grab the type from the jjs ast final JClassType uiType = (JClassType) ast.searchForTypeBySource(provider.getFinalName()); final SourceInfo info = methodCall.getSourceInfo().makeChild(); JExpression inst = null; for (final JMethod method : uiType.getMethods()) { if (method instanceof JConstructor) { final JNewInstance newInst = new JNewInstance(info, (JConstructor) method, args.get(args.size()-1).makeStatement().getExpr()); inst = newInst; break; } } if (isToHtml) { final JDeclaredType snippet = ast.searchForTypeBySource(HtmlSnippet.class.getName()); for (final JMethod method : snippet.getMethods()) { if (method.getName().equals("convert")) { return new JMethodCall(info, inst, method, args.get(instanceIndex)); } } } if (inst == null) { logger.log(Type.ERROR, "Unable to find method newUi in generated UI provider "+provider); throw new UnableToCompleteException(); } return inst; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy