File: ConsoleEcma.java

package info (click to toggle)
spring 104.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 47,512 kB
  • sloc: cpp: 391,093; ansic: 79,943; python: 12,356; java: 12,201; awk: 5,889; sh: 1,826; xml: 655; makefile: 486; perl: 405; php: 211; objc: 194; sed: 2
file content (203 lines) | stat: -rw-r--r-- 7,415 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
// Copyright Hugh Perkins 2009
// hughperkins@gmail.com http://manageddreams.com
//
// This program is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the
// Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
//  more details.
//
// You should have received a copy of the GNU General Public License along
// with this program in the file licence.txt; if not, write to the
// Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-
// 1307 USA
// You can find the licence also on the web at:
// http://www.opensource.org/licenses/gpl-license.php
//
// ======================================================================================
//

package hughai.ui;

import java.util.*;
import java.util.List;
import java.util.jar.JarOutputStream;
import java.util.zip.ZipEntry;

import javax.naming.Context;
import javax.swing.*;
import javax.script.*;
import javax.xml.transform.stream.StreamResult;

import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.net.URL;
import java.net.URLClassLoader;

import hughai.*;
import hughai.loader.utils.Loader;
import hughai.utils.Formatting;
import hughai.utils.LogFile;

// provides a console tab to the gui that lets us execute code
// on the fly!
// is that wicked or wot! :-D
public class ConsoleEcma {
   final String consoletemplatefilename = "EcmaConsoleTemplate.txt";
   
//   final String classpath="$aidir/SkirmishAI.jar:$aidir/UnderlyingAI.jar:$aidir/../../Interfaces/Java/0.1/AIInterface.jar"; 

//   JFrame frame;
   JPanel textpanel;
   GridLayout gridLayout;
   JTextArea textarea;
   JButton gobutton;

   JTextArea outputTextarea;
   
   PlayerObjects playerObjects;
   
   public ConsoleEcma( PlayerObjects playerObjects ) {
      this.playerObjects = playerObjects;
      
      init();
   }
   
   void init () {
      try {
//      frame = new JFrame("Console");
//      frame.setSize( 400, 400 );
         
         JPanel outerpanel = new JPanel(new BorderLayout());

      gridLayout = new GridLayout( 2, 1 );
      textpanel = new JPanel( gridLayout );
//      frame.add( panel );
      
      JPanel buttonpanel = new JPanel(new GridLayout(1,2));
      
      outerpanel.add( "Center", textpanel );
      outerpanel.add( "South", buttonpanel );

      textarea = new JTextArea();
      JScrollPane scrollPane = new JScrollPane( textarea );

      outputTextarea = new JTextArea();
      JScrollPane outputscrollpane = new JScrollPane( outputTextarea );

      gobutton = new JButton( "Go" );

      String templatepath = playerObjects.getCSAI().getAIDirectoryPath() + consoletemplatefilename;
      String initialFile = readFile( templatepath );
      if( initialFile != null ) {
         textarea.setText( initialFile );
      } else {
         textarea.setText("<Missing file " + templatepath + ">" );
      }

      gobutton.addActionListener( new GoButton() );

      textpanel.add( scrollPane );
      textpanel.add( outputscrollpane );
      buttonpanel.add( gobutton );

      playerObjects.getMainUI().addPanelToTabbedPanel( "ECMA Console", outerpanel );
//      frame.validate();
//      frame.setVisible( true );
      } catch( Exception e ) {
         playerObjects.getLogFile().WriteLine( Formatting.exceptionToStackTrace( e ) );
         throw new RuntimeException( e );
      }
   }

   // should be moved to some generic utility class...
   // returns the contents of file filename
   // or null if not found
   String readFile( String filename ) {
      try {
         FileReader fileReader = new FileReader( filename );
         BufferedReader bufferedReader = new BufferedReader( fileReader );
         StringBuilder stringBuilder = new StringBuilder();
         String line = bufferedReader.readLine();
         while( line != null ) {
            stringBuilder.append( line );
            stringBuilder.append( "\n" );
            line = bufferedReader.readLine();
         }
         bufferedReader.close();
         fileReader.close();
         return stringBuilder.toString();
      } catch( Exception e ) {
         playerObjects.getLogFile().WriteLine( Formatting.exceptionToStackTrace( e ) );
         return null;
      }
   }

   void debug( Object message ) {
      playerObjects.getLogFile().WriteLine( "" + message );
   }

   class GoButton implements ActionListener {
      @Override
      public void actionPerformed( ActionEvent event ) {
         try {
            
            ClassLoader baseClassLoader = ConsoleEcma.class.getClassLoader();
            if( baseClassLoader == null ) {
               System.out.println("using system classloader as base");
               baseClassLoader = ClassLoader.getSystemClassLoader();
            } else {
               System.out.println("using our classloader as base");         
            }
            Class<?> cls = baseClassLoader.loadClass("javax.script.ScriptEngineManager");
            if (!ScriptEngineManager.class.isAssignableFrom(cls)) {
               throw new RuntimeException("Invalid class");
            }
            Object newInstance = cls.newInstance(); 
            ScriptEngineManager scriptEngineManager = (ScriptEngineManager)newInstance;
            for( String key : scriptEngineManager.getBindings().keySet() ) {
               debug( key );
            }
            
//            ScriptEngineManager scriptEngineManager = new ScriptEngineManager();
            List<ScriptEngineFactory> factories = scriptEngineManager.getEngineFactories();
            ScriptEngineFactory ecmaScriptEngineFactory = null;
            for( ScriptEngineFactory scriptEngineFactory : factories ) {
//               System.out.println( scriptEngineFactory.getLanguageName() );
               if( scriptEngineFactory.getLanguageName().equals("ECMAScript") 
                     && scriptEngineFactory.getLanguageVersion().equals( "1.6" ) ) {
                  ecmaScriptEngineFactory = scriptEngineFactory;
               }
            }
            ScriptEngine scriptEngine = ecmaScriptEngineFactory.getScriptEngine();
            //scriptEngine.getContext().
            //javax.script.
            debug( ConsoleEcma.class.getClassLoader() );
            debug( ScriptEngineManager.class.getClassLoader() );
            debug( ScriptEngineFactory.class.getClassLoader() );
            debug( ScriptEngine.class.getClassLoader() );
            
            scriptEngine.eval( textarea.getText() );
            Invocable invocable = (Invocable)scriptEngine;
            String result = (String)invocable.invokeFunction( "go", playerObjects, new Activator() );
            outputTextarea.setText( result );
                       
         } catch( Exception e ) {
            outputTextarea.setText( exceptionToStackTrace( e ) );
         }
      }      
   }
   
   // should go in generic tools class...
   String exceptionToStackTrace( Exception e ) {
      StringWriter stringWriter = new StringWriter();
      PrintWriter printWriter = new PrintWriter(stringWriter);
      e.printStackTrace( printWriter );
      return stringWriter.toString();
   }
}