/plugins/Console/tags/release-4-1-1/console/ConsoleBeanShell.java

# · Java · 116 lines · 72 code · 11 blank · 33 comment · 2 complexity · e919be40ec14879b7fadddcc1cf82058 MD5 · raw file

  1. /*
  2. * ConsoleBeanShell.java - Executes commands in jEdit's BeanShell interpreter
  3. * :tabSize=8:indentSize=8:noTabs=false:
  4. * :folding=explicit:collapseFolds=1:
  5. *
  6. * Copyright (C) 2000, 2001 Slava Pestov
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version 2
  11. * of the License, or any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. */
  22. package console;
  23. //{{{ Imports
  24. import bsh.*;
  25. import java.io.PrintWriter;
  26. import java.io.StringWriter;
  27. import org.gjt.sp.jedit.BeanShell;
  28. import org.gjt.sp.jedit.jEdit;
  29. import org.gjt.sp.jedit.View;
  30. import org.gjt.sp.util.Log;
  31. //}}}
  32. public class ConsoleBeanShell extends Shell
  33. {
  34. //{{{ ConsoleBeanShell constructor
  35. public ConsoleBeanShell()
  36. {
  37. super("BeanShell");
  38. } //}}}
  39. //{{{ printInfoMessage() method
  40. public void printInfoMessage(Output output)
  41. {
  42. output.print(null,jEdit.getProperty("console.beanshell.info"));
  43. } //}}}
  44. //{{{ printPrompt() method
  45. /**
  46. * Prints a prompt to the specified console.
  47. * @param output The output
  48. */
  49. public void printPrompt(Console console, Output output)
  50. {
  51. output.writeAttrs(
  52. ConsolePane.colorAttributes(console.getInfoColor()),
  53. jEdit.getProperty("console.beanshell.prompt"));
  54. output.writeAttrs(null," ");
  55. } //}}}
  56. //{{{ execute() method
  57. public void execute(Console console, String input, Output output,
  58. Output error, String command)
  59. {
  60. View view = console.getView();
  61. NameSpace ns = org.gjt.sp.jedit.BeanShell.getNameSpace();
  62. try
  63. {
  64. ns.setVariable("console",console);
  65. ns.setVariable("output",output);
  66. Object retVal = BeanShell._eval(view,
  67. ns,command);
  68. if(retVal != null)
  69. {
  70. ns.setVariable("retVal",retVal);
  71. BeanShell._eval(view,ns,
  72. "print(retVal);");
  73. ns.setVariable("retVal",null);
  74. }
  75. }
  76. catch(Exception e)
  77. {
  78. StringWriter s = new StringWriter();
  79. e.printStackTrace(new PrintWriter(s));
  80. error.print(console.getErrorColor(),s.toString());
  81. }
  82. finally
  83. {
  84. try
  85. {
  86. ns.setVariable("console",null);
  87. ns.setVariable("output",null);
  88. }
  89. catch(UtilEvalError e)
  90. {
  91. }
  92. }
  93. output.commandDone();
  94. error.commandDone();
  95. } //}}}
  96. //{{{ stop() method
  97. public void stop(Console console)
  98. {
  99. } //}}}
  100. //{{{ waitFor() method
  101. public boolean waitFor(Console console)
  102. {
  103. return true;
  104. } //}}}
  105. }