|
@@ -0,0 +1,133 @@
|
|
|
|
+<?xml version='1.0'?>
|
|
|
|
+<!--
|
|
|
|
+ * XSL converter script for sqlite databases
|
|
|
|
+ *
|
|
|
|
+ * Copyright (C) 2001-2007 FhG Fokus
|
|
|
|
+ *
|
|
|
|
+ * This file is part of Kamailio, a free SIP server.
|
|
|
|
+ *
|
|
|
|
+ * Kamailio 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
|
|
|
|
+ *
|
|
|
|
+ * Kamailio 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; if not, write to the Free Software
|
|
|
|
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
+ *
|
|
|
|
+ */
|
|
|
|
+-->
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
+ version='1.0'
|
|
|
|
+ xmlns:xi="http://www.w3.org/2001/XInclude"
|
|
|
|
+>
|
|
|
|
+
|
|
|
|
+ <xsl:import href="sql.xsl"/>
|
|
|
|
+
|
|
|
|
+<!-- specify the table type -->
|
|
|
|
+ <xsl:template name="table.close">
|
|
|
|
+ <xsl:text>)</xsl:text>
|
|
|
|
+ <xsl:if test="type[@db=$db]">
|
|
|
|
+ <xsl:text> Type=</xsl:text>
|
|
|
|
+ <xsl:value-of select="normalize-space(type[@db=$db])"/>
|
|
|
|
+ </xsl:if>
|
|
|
|
+ <xsl:text>;

</xsl:text>
|
|
|
|
+ </xsl:template>
|
|
|
|
+
|
|
|
|
+ <xsl:template name="column.type">
|
|
|
|
+ <xsl:variable name="type">
|
|
|
|
+ <xsl:call-template name="get-type"/>
|
|
|
|
+ </xsl:variable>
|
|
|
|
+
|
|
|
|
+ <xsl:choose>
|
|
|
|
+ <xsl:when test="type[@db=$db]">
|
|
|
|
+ <xsl:value-of select="normalize-space(type[@db=$db])"/>
|
|
|
|
+ </xsl:when>
|
|
|
|
+ <xsl:when test="$type='char'">
|
|
|
|
+ <xsl:text>SMALLINT</xsl:text>
|
|
|
|
+ <xsl:call-template name="column.trailing"/>
|
|
|
|
+ </xsl:when>
|
|
|
|
+ <xsl:when test="$type='short'">
|
|
|
|
+ <xsl:text>SMALLINT</xsl:text>
|
|
|
|
+ <xsl:call-template name="column.trailing"/>
|
|
|
|
+ </xsl:when>
|
|
|
|
+ <xsl:when test="$type='int'">
|
|
|
|
+ <xsl:if test="not(autoincrement)">
|
|
|
|
+ <xsl:text>INTEGER</xsl:text>
|
|
|
|
+ </xsl:if>
|
|
|
|
+ <xsl:call-template name="column.trailing"/>
|
|
|
|
+ </xsl:when>
|
|
|
|
+ <xsl:when test="$type='long'">
|
|
|
|
+ <xsl:text>BIGINT</xsl:text>
|
|
|
|
+ <xsl:call-template name="column.trailing"/>
|
|
|
|
+ </xsl:when>
|
|
|
|
+ <xsl:when test="$type='datetime'">
|
|
|
|
+ <xsl:text>TIMESTAMP</xsl:text>
|
|
|
|
+ <xsl:call-template name="column.trailing"/>
|
|
|
|
+ </xsl:when>
|
|
|
|
+ <xsl:when test="$type='double'">
|
|
|
|
+ <xsl:text>DOUBLE PRECISION</xsl:text>
|
|
|
|
+ <xsl:call-template name="column.trailing"/>
|
|
|
|
+ </xsl:when>
|
|
|
|
+ <xsl:when test="$type='float'">
|
|
|
|
+ <xsl:text>REAL</xsl:text>
|
|
|
|
+ <xsl:call-template name="column.trailing"/>
|
|
|
|
+ </xsl:when>
|
|
|
|
+ <xsl:when test="$type='string'">
|
|
|
|
+ <xsl:text>VARCHAR</xsl:text>
|
|
|
|
+ <xsl:call-template name="column.size"/>
|
|
|
|
+ <xsl:call-template name="column.trailing"/>
|
|
|
|
+ </xsl:when>
|
|
|
|
+ <xsl:when test="$type='binary'">
|
|
|
|
+ <xsl:text>BYTEA</xsl:text>
|
|
|
|
+ <xsl:call-template name="column.size"/>
|
|
|
|
+ <xsl:call-template name="column.trailing"/>
|
|
|
|
+ </xsl:when>
|
|
|
|
+ <xsl:when test="$type='text'">
|
|
|
|
+ <xsl:text>TEXT</xsl:text>
|
|
|
|
+ <xsl:call-template name="column.size"/>
|
|
|
|
+ <xsl:call-template name="column.trailing"/>
|
|
|
|
+ </xsl:when>
|
|
|
|
+ <xsl:otherwise>
|
|
|
|
+ <xsl:call-template name="type-error"/>
|
|
|
|
+ </xsl:otherwise>
|
|
|
|
+ </xsl:choose>
|
|
|
|
+ </xsl:template>
|
|
|
|
+
|
|
|
|
+ <xsl:template name="column.trailing">
|
|
|
|
+ <xsl:variable name="column.type">
|
|
|
|
+ <xsl:call-template name="get-type"/>
|
|
|
|
+ </xsl:variable>
|
|
|
|
+ <xsl:if test="$column.type='datetime'">
|
|
|
|
+ <xsl:text> WITHOUT TIME ZONE</xsl:text>
|
|
|
|
+ </xsl:if>
|
|
|
|
+ <xsl:if test="autoincrement">
|
|
|
|
+ <xsl:text>INTEGER</xsl:text>
|
|
|
|
+ </xsl:if>
|
|
|
|
+ <!-- PRIMARY KEY column definition -->
|
|
|
|
+ <xsl:if test="primary">
|
|
|
|
+ <xsl:text> PRIMARY KEY</xsl:text>
|
|
|
|
+ </xsl:if>
|
|
|
|
+ </xsl:template>
|
|
|
|
+
|
|
|
|
+ <xsl:template name="get-index-name">
|
|
|
|
+ <xsl:variable name="index.name">
|
|
|
|
+ <xsl:call-template name="get-name"/>
|
|
|
|
+ </xsl:variable>
|
|
|
|
+ <xsl:variable name="table.name">
|
|
|
|
+ <xsl:call-template name="get-name">
|
|
|
|
+ <xsl:with-param name="select" select="parent::table"/>
|
|
|
|
+ </xsl:call-template>
|
|
|
|
+ </xsl:variable>
|
|
|
|
+ <!-- because postgres don't like identical index names, even on table level -->
|
|
|
|
+ <xsl:value-of select="concat($table.name, '_', $index.name)"/>
|
|
|
|
+ </xsl:template>
|
|
|
|
+
|
|
|
|
+</xsl:stylesheet>
|