/plugins/Templates/tags/Templates-4.1.2/velocity/directives/BeanShell.java

# · Java · 92 lines · 50 code · 11 blank · 31 comment · 5 complexity · d7867cccc2aa427113f3d057902ef797 MD5 · raw file

  1. /*
  2. * BeanShell.java
  3. * Copyright (c) 2002 Calvin Yu
  4. * Copyright (c) 2008 Steve Jakob
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 2
  9. * of the License, or any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. */
  20. package velocity.directives;
  21. import org.gjt.sp.jedit.bsh.UtilEvalError;
  22. import org.gjt.sp.jedit.bsh.NameSpace;
  23. import java.io.IOException;
  24. import java.io.Writer;
  25. import org.apache.velocity.context.InternalContextAdapter;
  26. import org.apache.velocity.exception.MethodInvocationException;
  27. import org.apache.velocity.runtime.directive.Directive;
  28. import org.apache.velocity.runtime.parser.node.Node;
  29. import org.gjt.sp.jedit.View;
  30. import org.gjt.sp.util.Log;
  31. import velocity.VelocityConstants;
  32. /**
  33. * A directive to execute a beanshell script.
  34. */
  35. public class BeanShell extends SimpleDirective
  36. implements VelocityConstants
  37. {
  38. /**
  39. * Return name of this directive.
  40. */
  41. public String getName()
  42. {
  43. return "beanshell";
  44. }
  45. /**
  46. * Return type of this directive.
  47. */
  48. public int getType()
  49. {
  50. return BLOCK;
  51. }
  52. /**
  53. * Execute the bean shell script.
  54. */
  55. public boolean render(InternalContextAdapter context,
  56. Writer writer, Node node)
  57. throws MethodInvocationException, IOException
  58. {
  59. if (node.jjtGetChild(0) == null) {
  60. rsvc.error("#beanshell() error : null script");
  61. return false;
  62. }
  63. boolean writeResult = getOptionalBoolean(node, 0, context, true);
  64. View view = (View) context.get(VIEW);
  65. NameSpace contextNS = new NameSpace(org.gjt.sp.jedit.BeanShell.getNameSpace(),
  66. "velocity_context");
  67. try {
  68. contextNS.setVariable("context", context.getInternalUserContext());
  69. Object result = org.gjt.sp.jedit.BeanShell.eval(view, contextNS,
  70. getBlockNode(node).literal());
  71. if (writeResult && result != null) {
  72. writer.write(result.toString());
  73. }
  74. return true;
  75. } catch (UtilEvalError e) {
  76. Log.log(Log.ERROR, this, "Error evaluating template script");
  77. Log.log(Log.ERROR, this, e);
  78. return false;
  79. }
  80. }
  81. }