Zvýrazňování syntaxe #12 – začátek.
authorFrantišek Kučera <franta-hg@frantovo.cz>
Mon, 22 Aug 2011 00:23:38 +0200
changeset 27037a9f20bf3a
parent 26 32e192fb934a
child 28 3298cafa8686
Zvýrazňování syntaxe #12 – začátek.
vstup/produkty.xml
šablona/funkce/src/cz/frantovo/xmlWebGenerator/Funkce.java
šablona/stránka.xsl
     1.1 --- a/vstup/produkty.xml	Wed Jul 06 23:42:32 2011 +0200
     1.2 +++ b/vstup/produkty.xml	Mon Aug 22 00:23:38 2011 +0200
     1.3 @@ -20,6 +20,20 @@
     1.4  		<p>Vivamus nec dictum dolor. Aliquam et tellus dolor. Curabitur et est sapien. Sed nec neque massa. Integer luctus erat vel arcu molestie ac dapibus dolor pretium. Curabitur eget augue non ipsum pulvinar venenatis eget et lectus. Proin fringilla aliquet sapien, non luctus est lobortis vel. Nunc vehicula volutpat varius. Aliquam suscipit accumsan sollicitudin. Morbi ultricies, mauris id elementum pellentesque, nunc dolor viverra nisl, sit amet consequat velit libero at ligula. Nulla luctus rhoncus tortor nec sollicitudin. Vivamus posuere sodales ipsum, hendrerit cursus felis pharetra sit amet. Nunc interdum facilisis massa ac congue.</p>
     1.5  		<p>Aliquam erat volutpat. Quisque vitae libero est. Aliquam erat volutpat. Integer elementum, nisl nec lacinia facilisis, dolor tellus varius eros, sit amet facilisis sem sapien vitae nulla. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer rutrum sodales venenatis. Donec mollis aliquet enim, id venenatis urna faucibus sed. Suspendisse pharetra neque et nibh tincidunt suscipit. Morbi ut justo sit amet lectus faucibus tempor quis non libero. Aenean in dolor sem, in lacinia sem.</p>
     1.6  		
     1.7 +		<m:pre>#!/bin/bash
     1.8 +# tento kód nebude zvýrazněn
     1.9 +# &lt;blee/&gt;</m:pre>
    1.10 +
    1.11 +		<m:pre jazyk="java">public class Pokus {
    1.12 +		// komentář
    1.13 +		// &lt;blee/&gt;
    1.14 +}</m:pre>
    1.15 +
    1.16 +	<m:pre jazyk="grrrrrrr">public class Pokus {
    1.17 +		// komentář
    1.18 +		// &lt;blee/&gt;
    1.19 +}</m:pre>
    1.20 +		
    1.21  		<p>Vhodnost zvířete do domácnosti:</p>
    1.22  		<m:měřák hodnota="80"/>
    1.23      </text>
     2.1 --- a/šablona/funkce/src/cz/frantovo/xmlWebGenerator/Funkce.java	Wed Jul 06 23:42:32 2011 +0200
     2.2 +++ b/šablona/funkce/src/cz/frantovo/xmlWebGenerator/Funkce.java	Mon Aug 22 00:23:38 2011 +0200
     2.3 @@ -1,13 +1,81 @@
     2.4  package cz.frantovo.xmlWebGenerator;
     2.5  
     2.6 +import java.io.BufferedReader;
     2.7  import java.io.File;
     2.8 +import java.io.IOException;
     2.9 +import java.io.InputStream;
    2.10 +import java.io.InputStreamReader;
    2.11 +import java.io.PrintStream;
    2.12  import java.util.Date;
    2.13  import java.net.URI;
    2.14  import java.net.URISyntaxException;
    2.15  
    2.16  public class Funkce {
    2.17 +
    2.18  	public static Date posledníZměna(String soubor) throws URISyntaxException {
    2.19  		return new Date(new File(new URI(soubor)).lastModified());
    2.20  	}
    2.21 +
    2.22 +	/**
    2.23 +	 * Zvýrazňuje syntaxi zdrojového kódu. Používá k tomu externí program/knihovnu pygmentize.
    2.24 +	 * @param zdroják zdrojový kód, který předáme příkazu pygmentize na standardním vstupu
    2.25 +	 * @param jazyk předáme příkazu pygmentize jako parametr -l &lt;lexer&gt;
    2.26 +	 * @return TODO: použít (?) místo textu instanci com.icl.saxon.om.NodeInfo http://saxon.sourceforge.net/saxon6.5.3/extensibility.html
    2.27 +	 */
    2.28 +	public static String zvýrazniSyntaxi(String zdroják, String jazyk) throws IOException, InterruptedException {
    2.29 +		String příkaz = "pygmentizexxx";
    2.30 +
    2.31 +		if (isPrikazDostupny(příkaz)) {
    2.32 +			Runtime r = Runtime.getRuntime();
    2.33 +			Process p = r.exec(new String[]{příkaz, "-f", "html", "-l", jazyk});
    2.34 +
    2.35 +			PrintStream vstupProcesu = new PrintStream(p.getOutputStream());
    2.36 +			vstupProcesu.print(zdroják);
    2.37 +			vstupProcesu.close();
    2.38 +
    2.39 +			String výsledek = načtiProud(p.getInputStream());
    2.40 +			String chyby = načtiProud(p.getErrorStream());
    2.41 +
    2.42 +			p.waitFor();
    2.43 +
    2.44 +			if (chyby.length() == 0) {
    2.45 +				return výsledek;
    2.46 +			} else {
    2.47 +				System.err.println("Při zvýrazňování syntaxe došlo k chybě: " + chyby);
    2.48 +				return "______chyba_____";
    2.49 +			}
    2.50 +		} else {
    2.51 +			System.err.println("Příkaz " + příkaz + " není na vašem systému dostupný → zvýrazňování syntaxe nebude fungovat.");
    2.52 +			System.err.println("Můžete ho nainstalovat pomocí: aptitude install python-pygments");
    2.53 +			// TODO: příkaz pro Fedoru/RedHat
    2.54 +			// TODO: vracet escapovaný zdroják v <pre/>
    2.55 +			return "__xxx____chyba_____";
    2.56 +		}
    2.57 +	}
    2.58 +
    2.59 +	private static String načtiProud(InputStream proud) throws IOException {
    2.60 +		StringBuilder výsledek = new StringBuilder();
    2.61 +		BufferedReader buf = new BufferedReader(new InputStreamReader(proud));
    2.62 +		while (true) {
    2.63 +			String radek = buf.readLine();
    2.64 +			if (radek == null) {
    2.65 +				break;
    2.66 +			} else {
    2.67 +				výsledek.append(radek);
    2.68 +				výsledek.append("\n");
    2.69 +			}
    2.70 +		}
    2.71 +		return výsledek.toString();
    2.72 +	}
    2.73 +
    2.74 +	private static boolean isPrikazDostupny(String příkaz) {
    2.75 +		try {
    2.76 +			Runtime r = Runtime.getRuntime();
    2.77 +			Process p = r.exec(new String[]{"which", příkaz});
    2.78 +			p.waitFor();
    2.79 +			return p.exitValue() == 0;
    2.80 +		} catch (Exception e) {
    2.81 +			return false;
    2.82 +		}
    2.83 +	}
    2.84  }
    2.85 -
     3.1 --- a/šablona/stránka.xsl	Wed Jul 06 23:42:32 2011 +0200
     3.2 +++ b/šablona/stránka.xsl	Mon Aug 22 00:23:38 2011 +0200
     3.3 @@ -5,11 +5,12 @@
     3.4  	xmlns:s="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/strana"
     3.5  	xmlns:k="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/konfigurace"
     3.6  	xmlns:m="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/makro"
     3.7 +	xmlns:j="java:cz.frantovo.xmlWebGenerator.Funkce"
     3.8  	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     3.9  	xmlns:fn="http://www.w3.org/2005/xpath-functions"
    3.10  	xmlns:svg="http://www.w3.org/2000/svg"
    3.11  	xmlns:xs="http://www.w3.org/2001/XMLSchema"
    3.12 -	exclude-result-prefixes="fn h s k m xs">
    3.13 +	exclude-result-prefixes="fn h s k m j xs">
    3.14  	<xsl:output 
    3.15  		method="xml" 
    3.16  		indent="yes" 
    3.17 @@ -112,5 +113,17 @@
    3.18      		<xsl:apply-templates/>
    3.19      	</a>
    3.20      </xsl:template>
    3.21 +    
    3.22 +    <!--
    3.23 +    	Makro pro zvýraznění syntaxe:
    3.24 +    -->    
    3.25 +    <xsl:template match="m:pre[@jazyk]">
    3.26 +    	<xsl:value-of disable-output-escaping="yes" select="j:zvýrazniSyntaxi(text(), @jazyk)"/>
    3.27 +    </xsl:template>
    3.28 +    <xsl:template match="m:pre">
    3.29 +    	<!-- Pokud jazyk uveden není, nic nezvýrazňujeme. -->
    3.30 +    	<pre><xsl:apply-templates/></pre>    	
    3.31 +    </xsl:template>
    3.32 +    
    3.33  
    3.34  </xsl:stylesheet>