franta-hg@76
|
1 |
/**
|
franta-hg@76
|
2 |
* XML Web generátor – program na generování webových stránek
|
franta-hg@76
|
3 |
* Copyright © 2012 František Kučera (frantovo.cz)
|
franta-hg@76
|
4 |
*
|
franta-hg@76
|
5 |
* This program is free software: you can redistribute it and/or modify
|
franta-hg@76
|
6 |
* it under the terms of the GNU General Public License as published by
|
franta-hg@76
|
7 |
* the Free Software Foundation, either version 3 of the License, or
|
franta-hg@76
|
8 |
* (at your option) any later version.
|
franta-hg@76
|
9 |
*
|
franta-hg@76
|
10 |
* This program is distributed in the hope that it will be useful,
|
franta-hg@76
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
franta-hg@76
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
franta-hg@76
|
13 |
* GNU General Public License for more details.
|
franta-hg@76
|
14 |
*
|
franta-hg@76
|
15 |
* You should have received a copy of the GNU General Public License
|
franta-hg@76
|
16 |
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
franta-hg@76
|
17 |
*/
|
franta-hg@76
|
18 |
package cz.frantovo.xmlWebGenerator.makra;
|
franta-hg@76
|
19 |
|
franta-hg@76
|
20 |
import java.io.IOException;
|
franta-hg@76
|
21 |
import java.io.PrintStream;
|
franta-hg@76
|
22 |
import static cz.frantovo.xmlWebGenerator.NástrojeCLI.*;
|
franta-hg@76
|
23 |
|
franta-hg@76
|
24 |
/**
|
franta-hg@76
|
25 |
* Zvýrazňování syntaxe
|
franta-hg@76
|
26 |
*
|
franta-hg@76
|
27 |
* @author František Kučera (frantovo.cz)
|
franta-hg@76
|
28 |
*/
|
franta-hg@76
|
29 |
public class Pre {
|
franta-hg@76
|
30 |
|
franta-hg@76
|
31 |
private static final String PŘÍKAZ_PYGMENTIZE = "pygmentize";
|
franta-hg@76
|
32 |
|
franta-hg@76
|
33 |
/**
|
franta-hg@76
|
34 |
* Zvýrazňuje syntaxi zdrojového kódu. Používá k tomu externí program/knihovnu pygmentize.
|
franta-hg@76
|
35 |
* @param zdroják zdrojový kód, který předáme příkazu pygmentize na standardním vstupu
|
franta-hg@76
|
36 |
* @param jazyk předáme příkazu pygmentize jako parametr -l <lexer>
|
franta-hg@76
|
37 |
* @return zvýrazněný text nebo null, pokud došlo k chybě.
|
franta-hg@76
|
38 |
* TODO:
|
franta-hg@76
|
39 |
* - vracet místo textu instanci com.icl.saxon.om.NodeInfo http://saxon.sourceforge.net/saxon6.5.3/extensibility.html
|
franta-hg@76
|
40 |
* - nebo kontrolovat validitu vygenerovaného kódu (v současnosti se spoléháme na bezchybnost pygmentize)
|
franta-hg@76
|
41 |
*/
|
franta-hg@76
|
42 |
public static String zvýrazniSyntaxi(String zdroják, String jazyk) throws IOException, InterruptedException {
|
franta-hg@76
|
43 |
if (jazyk == null || jazyk.length() == 0) {
|
franta-hg@76
|
44 |
System.err.println("Není vyplněn atribut „jazyk“ → není jasné, jak se má zvýrazňovat.");
|
franta-hg@76
|
45 |
return null;
|
franta-hg@76
|
46 |
} else if (isPříkazDostupný(PŘÍKAZ_PYGMENTIZE)) {
|
franta-hg@76
|
47 |
Runtime r = Runtime.getRuntime();
|
franta-hg@76
|
48 |
Process p = r.exec(new String[]{PŘÍKAZ_PYGMENTIZE, "-f", "html", "-l", jazyk});
|
franta-hg@76
|
49 |
|
franta-hg@76
|
50 |
PrintStream vstupProcesu = new PrintStream(p.getOutputStream());
|
franta-hg@76
|
51 |
vstupProcesu.print(zdroják);
|
franta-hg@76
|
52 |
vstupProcesu.close();
|
franta-hg@76
|
53 |
|
franta-hg@76
|
54 |
String výsledek = načtiProud(p.getInputStream());
|
franta-hg@76
|
55 |
String chyby = načtiProud(p.getErrorStream());
|
franta-hg@76
|
56 |
|
franta-hg@76
|
57 |
p.waitFor();
|
franta-hg@76
|
58 |
|
franta-hg@76
|
59 |
if (chyby.length() == 0) {
|
franta-hg@76
|
60 |
// Pozor: pygmentize má i při chybě návratový kód 0 → je potřeba kontrolovat chybový výstup.
|
franta-hg@76
|
61 |
return výsledek;
|
franta-hg@76
|
62 |
} else {
|
franta-hg@76
|
63 |
System.err.print("Při zvýrazňování syntaxe došlo k chybě: " + chyby);
|
franta-hg@76
|
64 |
return null;
|
franta-hg@76
|
65 |
}
|
franta-hg@76
|
66 |
} else {
|
franta-hg@76
|
67 |
System.err.println("Příkaz " + PŘÍKAZ_PYGMENTIZE + " není na vašem systému dostupný → zvýrazňování syntaxe nebude fungovat.");
|
franta-hg@76
|
68 |
System.err.println("Můžete ho nainstalovat pomocí:");
|
franta-hg@76
|
69 |
System.err.println("\t$ aptitude install python-pygments # (Debian/Ubuntu)");
|
franta-hg@76
|
70 |
System.err.println("\t$ yum install python-pygments # (Fedora/RedHat)");
|
franta-hg@76
|
71 |
return null;
|
franta-hg@76
|
72 |
}
|
franta-hg@76
|
73 |
}
|
franta-hg@76
|
74 |
|
franta-hg@76
|
75 |
/**
|
franta-hg@76
|
76 |
* Vygeneruje CSS styl pro zvýrazňování syntaxe.
|
franta-hg@76
|
77 |
* @return obsah CSS souboru nebo null, pokud generování nebylo možné
|
franta-hg@76
|
78 |
*/
|
franta-hg@76
|
79 |
public static String generujCssSyntaxe() throws IOException, InterruptedException {
|
franta-hg@76
|
80 |
if (isPříkazDostupný(PŘÍKAZ_PYGMENTIZE)) {
|
franta-hg@76
|
81 |
Runtime r = Runtime.getRuntime();
|
franta-hg@76
|
82 |
Process p = r.exec(new String[]{PŘÍKAZ_PYGMENTIZE, "-S", "default", "-f", "html"});
|
franta-hg@76
|
83 |
return načtiProud(p.getInputStream());
|
franta-hg@76
|
84 |
} else {
|
franta-hg@76
|
85 |
return null;
|
franta-hg@76
|
86 |
}
|
franta-hg@76
|
87 |
}
|
franta-hg@76
|
88 |
}
|
franta-hg@87
|
89 |
|