Package net.asfun.jangod.tree

Source Code of net.asfun.jangod.tree.MacroNode

/**********************************************************************
Copyright (c) 2010 Asfun Net.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
**********************************************************************/
package net.asfun.jangod.tree;

import static net.asfun.jangod.util.logging.JangodLogger;
import net.asfun.jangod.base.Constants;
import net.asfun.jangod.interpret.InterpretException;
import net.asfun.jangod.interpret.JangodInterpreter;
import net.asfun.jangod.lib.Macro;
import net.asfun.jangod.lib.MacroLibrary;
import net.asfun.jangod.lib.Tag;
import net.asfun.jangod.lib.TagLibrary;
import net.asfun.jangod.parse.MacroToken;
import net.asfun.jangod.parse.ParseException;

public class MacroNode extends Node{

  private static final long serialVersionUID = 5037873030399458427L;
  private MacroToken master;
  String endName = null;

  public MacroNode(MacroToken token) throws ParseException{
    super();
    master = token;
    Macro macro = MacroLibrary.getMacro(master.getMacroName());
    if ( macro == null ) {
      throw new ParseException("Can't find macro >>> " + master.getMacroName());
    }
    endName = macro.getEndMacroName();
  }

  @Override
  public String render(JangodInterpreter interpreter) throws InterpretException {
    Tag tag = TagLibrary.getTag(master.getMacroName());
    if ( tag != null ) {
      JangodLogger.fine("Treat macro as tag with same name >>> " + master.getMacroName());
      interpreter.setLevel(level);
      return tag.interpreter(children(), master.getHelpers(), interpreter);
    } else {
      JangodLogger.warning("Skiping handless macro while rendering >>> " + master.getMacroName());
      return Constants.STR_BLANK;
    }
  }

  public void refactor(TreeRebuilder rebuilder) throws ParseException {
    Macro macro = MacroLibrary.getMacro(master.getMacroName());
    macro.refactor(this, master.getHelpers(), rebuilder);
  }

  @Override
  public String toString() {
    return master.toString();
  }
 
  @Override
  public String getName() {
    return master.getMacroName();
  }
 
  @Override
  public Node clone() {
    try {
      Node clone = new MacroNode(master);
      clone.children = this.children.clone(clone);
      return clone;
    } catch (ParseException e) {
      throw new InternalError();
    }
  }
}
TOP

Related Classes of net.asfun.jangod.tree.MacroNode

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.