📄 dr.xsl
字号:
<?xml version="1.0" encoding="iso-8859-1" ?><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"><xsl:output method="text" omit-xml-declaration="yes" indent="no" encoding="iso-8859-1" /><!-- --><!-- entry point --><!-- --><xsl:template match="/dr">/* This file is generated by applying the dr.xsl stylesheet to the dr.xml * description file. DO NOT EDIT !!! */#include "config.h"#include <stdio.h>#if defined(HAVE_INTTYPES_H)#include <inttypes.h>#elif defined(HAVE_STDINT_H)#include <stdint.h>#endif/* the libdvbpsi distribution defines DVBPSI_DIST */#ifdef DVBPSI_DIST#include "../src/dvbpsi.h"#include "../src/descriptor.h"#include "../src/descriptors/dr.h"#else#include <dvbpsi/dvbpsi.h>#include <dvbpsi/descriptor.h>#include <dvbpsi/dr.h>#endif#include "test_dr.h" <xsl:apply-templates mode="code" />/* main function */int main(){ int i_err = 0; <xsl:apply-templates mode="main" /> if(i_err) fprintf(stderr, "At least one test has FAILED !!!\n"); else fprintf(stdout, "All tests succeeded.\n"); return i_err;}</xsl:template><xsl:template match="text()" priority="-1"/><!-- --><!-- code templates --><!-- --><xsl:template match="descriptor" mode="code">/* <xsl:value-of select="@name" /> */int main_<xsl:value-of select="@sname" />_<xsl:value-of select="@msuffix" />(){ BOZO_VARS(<xsl:value-of select="@sname" />); BOZO_START(<xsl:value-of select="@name" />); <xsl:apply-templates mode="check" /> BOZO_END(<xsl:value-of select="@name" />); return i_err;}</xsl:template><xsl:template match="text()" mode="code" priority="-1"/><!-- --><!-- init templates --><!-- --><xsl:template match="integer" mode="init"> BOZO_init_integer(<xsl:value-of select="@name" />, <xsl:value-of select="@default" />);</xsl:template><xsl:template match="boolean" mode="init"> BOZO_init_boolean(<xsl:value-of select="@name" />, <xsl:value-of select="@default" />);</xsl:template><xsl:template match="insert" mode="init"> <xsl:value-of select="begin" /></xsl:template><xsl:template match="text()" mode="init" priority="-1"/><!-- --><!-- check templates --><!-- --><xsl:template match="integer" mode="check"> /* check <xsl:value-of select="@name" /> */<xsl:apply-templates select=".." mode="init" /> BOZO_begin_integer(<xsl:value-of select="@name" />, <xsl:value-of select="@bitcount" />) BOZO_DOJOB(<xsl:value-of select="../@fname" />); BOZO_check_integer(<xsl:value-of select="@name" />, <xsl:value-of select="@bitcount" />) BOZO_CLEAN(); BOZO_end_integer(<xsl:value-of select="@name" />, <xsl:value-of select="@bitcount" />)</xsl:template><xsl:template match="boolean" mode="check"> /* check <xsl:value-of select="@name" /> */<xsl:apply-templates select=".." mode="init" /> BOZO_begin_boolean(<xsl:value-of select="@name" />) BOZO_DOJOB(<xsl:value-of select="../@fname" />); BOZO_check_boolean(<xsl:value-of select="@name" />) BOZO_CLEAN(); BOZO_end_boolean(<xsl:value-of select="@name" />)</xsl:template><xsl:template match="insert" mode="check"> <xsl:value-of select="check" /></xsl:template><xsl:template match="text()" mode="check" priority="-1"/><!-- --><!-- main templates --><!-- --><xsl:template match="descriptor" mode="main"> i_err |= main_<xsl:value-of select="@sname" />_<xsl:value-of select="@msuffix" />();</xsl:template><xsl:template match="text()" mode="main" priority="-1"/></xsl:stylesheet>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -