• 追加された行はこの色です。
  • 削除された行はこの色です。
TITLE:Rhinoでgoogle-prettify.jsを実行する
#navi(../)
*Rhinoでgoogle-prettify.jsを実行する [#x16c66db]
#adsense2
>編集者:[[Terai Atsuhiro>aterai]]~
作成日:2011-01-25~
更新日:&lastmod;

#contents(none)

**概要 [#w0e0eebc]
Rhinoでgoogle-prettify.jsを実行し、ソースコードをハイライトされたHtml(google sites用)に変換します。

**サンプルコード [#s4b99359]
#code{{
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.net.*;
import javax.script.*;
import javax.swing.*;
import javax.swing.text.html.*;

public class GooglePrettifyRhinoTest {
  private final JTextArea src = new JTextArea();
  private final JTextArea dst = new JTextArea();
  private final JEditorPane editor = new JEditorPane();
  private final ScriptEngine engine = createEngine();
  public JComponent makeUI() {
    try (Reader reader = new BufferedReader(new InputStreamReader(
        new FileInputStream("GooglePrettifyRhinoTest.java"), "UTF-8"))) {
      src.read(reader, "");
    } catch (Exception ex) {
      ex.printStackTrace();
    }

//     ScriptEngineManager manager = new ScriptEngineManager();
//     java.util.List<ScriptEngineFactory> list = manager.getEngineFactories();
//     for (ScriptEngineFactory f:list) {
//       System.out.format("%s %s", f.getEngineName(), f.getEngineVersion());
//     }
//     InputStream is = getClass().getResourceAsStream("Test.java");
//     try {
//       Reader reader = new InputStreamReader(is);
//       src.read(reader, null);
//     } catch (Exception ex) {
//       ex.printStackTrace();
//     }

      StyleSheet styleSheet = new StyleSheet();
      styleSheet.addRule(".str {color:#008800}");
      styleSheet.addRule(".kwd {color:#000088}");
      styleSheet.addRule(".com {color:#880000}");
      styleSheet.addRule(".typ {color:#660066}");
      styleSheet.addRule(".lit {color:#006666}");
      styleSheet.addRule(".pun {color:#666600}");
      styleSheet.addRule(".pln {color:#000000}");
      styleSheet.addRule(".tag {color:#000088}");
      styleSheet.addRule(".atn {color:#660066}");
      styleSheet.addRule(".atv {color:#008800}");
      styleSheet.addRule(".dec {color:#660066}");
    StyleSheet styleSheet = new StyleSheet();
    styleSheet.addRule(".str {color:#008800}");
    styleSheet.addRule(".kwd {color:#000088}");
    styleSheet.addRule(".com {color:#880000}");
    styleSheet.addRule(".typ {color:#660066}");
    styleSheet.addRule(".lit {color:#006666}");
    styleSheet.addRule(".pun {color:#666600}");
    styleSheet.addRule(".pln {color:#000000}");
    styleSheet.addRule(".tag {color:#000088}");
    styleSheet.addRule(".atn {color:#660066}");
    styleSheet.addRule(".atv {color:#008800}");
    styleSheet.addRule(".dec {color:#660066}");

      HTMLEditorKit htmlEditorKit = new HTMLEditorKit();
      htmlEditorKit.setStyleSheet(styleSheet);
      editor.setEditorKit(htmlEditorKit);
    HTMLEditorKit htmlEditorKit = new HTMLEditorKit();
    htmlEditorKit.setStyleSheet(styleSheet);
    editor.setEditorKit(htmlEditorKit);

    JButton b = new JButton((new AbstractAction("Convert to google sites") {
      String pre = "<pre style=\"color:#0;background:#f0fff8;margin:8px;padding:8px\">";
      String pre = "<pre>";
      @Override public void actionPerformed(ActionEvent e) {
        String txt = src.getText();
        txt = txt.replace("&", "&amp;");
        txt = txt.replace("<", "&lt;");
        txt = txt.replace(">", "&gt;");
        String str = prettify(engine, txt);
        editor.setText(pre+str+"\n</pre>");
        str = str.replace("class=\"str\"", "style=\"color:#080\"");
        str = str.replace("class=\"kwd\"", "style=\"color:#008\"");
        str = str.replace("class=\"com\"", "style=\"color:#800\"");
        str = str.replace("class=\"typ\"", "style=\"color:#606\"");
        str = str.replace("class=\"lit\"", "style=\"color:#066\"");
        str = str.replace("class=\"pun\"", "style=\"color:#660\"");
        str = str.replace("class=\"pln\"", "style=\"color:#000\"");
        str = str.replace("class=\"tag\"", "style=\"color:#008\"");
        str = str.replace("class=\"atn\"", "style=\"color:#606\"");
        str = str.replace("class=\"atv\"", "style=\"color:#080\"");
        str = str.replace("class=\"dec\"", "style=\"color:#606\"");
        dst.setText(pre+str+"\n</pre>");
      }
    }));

    JTabbedPane tab = new JTabbedPane();
    tab.addTab("Google sites html", new JScrollPane(dst));
    tab.addTab("JEditorPane preview", new JScrollPane(editor));
    JSplitPane sp = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
    sp.setResizeWeight(.5);
    sp.setTopComponent(new JScrollPane(src));
    sp.setBottomComponent(tab);
    JPanel p = new JPanel(new BorderLayout());
    p.add(b, BorderLayout.SOUTH);
    p.add(sp);
    return p;
  }
  public static ScriptEngine createEngine() {
    ScriptEngineManager manager = new ScriptEngineManager();
    ScriptEngine engine         = manager.getEngineByName("JavaScript");
//     ScriptEngineFactory factory = engine.getFactory();
//     String name = factory.getEngineName();
//     String version = factory.getEngineVersion();
//     System.out.printf("\tScript Engine: %s (%s)\n", name, version);
    Reader reader = null;
    try {
//       reader = new InputStreamReader(
//         GooglePrettifyRhinoTest.class.getResourceAsStream("prettify.js"));
      URL url = new URL(
        //"http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.js");
        "http://terai.xrea.jp/skin/irid/prettify.js");
        //or "http://google-code-prettify.googlecode.com/svn-history/r120/trunk/src/prettify.js");
      reader = new BufferedReader(new InputStreamReader(url.openStream()));

    //String p = "http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.js";
    String p = "http://google-code-prettify.googlecode.com/svn-history/r120/trunk/src/prettify.js";
    //String p = "http://terai.xrea.jp/skin/irid/prettify.js";

    try (Reader reader = new BufferedReader(
        new InputStreamReader(new URL(p).openStream()))) {
      engine.eval("var window={};var navigator=null;");
      engine.eval(reader);
      return engine;
    } catch (Exception ex) {
      ex.printStackTrace();
    } finally {
      if (reader!=null) {
        try {
          reader.close();
        } catch (Exception exx) {
          exx.printStackTrace();
        }
      }
    }
    return null;
  }
  public static String prettify(ScriptEngine engine, String src) {
    try {
      Object w = engine.get("window");
      return (String) ((Invocable)engine).invokeMethod(
               w, "prettyPrintOne", src, "java"); //, Boolean.TRUE );
    } catch (Exception e) {
      e.printStackTrace();
      return "";
    }
  }
  public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
      @Override public void run() {
        createAndShowGUI();
      }
    });
  }
  public static void createAndShowGUI() {
    JFrame f = new JFrame();
    f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    f.getContentPane().add(new GooglePrettifyRhinoTest().makeUI());
    f.setSize(320, 240);
    f.setSize(640, 480);
    f.setLocationRelativeTo(null);
    f.setVisible(true);
  }
}
}}

**解説 [#n146353c]
上記のサンプルでは、new ScriptEngineManager().getEngineByName("JavaScript"); で取得したJavaScriptエンジン(Rhino)に、[http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.js prettify.js]を読み込んで、prettify.jsのprettyPrintOneメソッドを実行しています。
google sitesでは、cssファイルも使用できないので、replace("class=\"kwd\"", "style=\"color:#008\"");のように、クラスをスタイルの色に全部置換しています。

**参考リンク [#z6fe58b9]
-[http://code.google.com/p/google-code-prettify/ google-code-prettify - Project Hosting on Google Code]
-[http://www.mozilla.org/rhino/ Rhino - JavaScript for Java]
-[[JEditorPaneのHTMLEditorKitにCSSを適用>Swing/StyleSheet]]

**コメント [#q5757df6]
- 新しいprettify.js(prettify-1-Jun-2011.tar.bz2)では、prettyPrintOneの内部でDocument型のオブジェクトが使用されるようになっているのでRhinoだけ(Envjsとか使えば良さそうなんだけど…)では実行できない。このため上記のサンプルでは古いprettify.js(このサイトで使用中のprettify-21-Jul-2010.zip)((または http://google-code-prettify.googlecode.com/svn-history/r120/trunk/src/prettify.js))を参照するように変更。 -- [[aterai]] &new{2012-03-09 (金) 16:58:03};
- JEditorPane でのプレビューを追加。 -- [[aterai]] &new{2012-05-28 (月) 17:45:14};

#comment