Small change.
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / SqlfXML.pm
CommitLineData
c957e92d 1package SQL::Translator::Parser::SqlfXML;
2
3# -------------------------------------------------------------------
29b69de8 4# $Id: SqlfXML.pm,v 1.6 2003-08-20 22:50:30 kycl4rk Exp $
c957e92d 5# -------------------------------------------------------------------
6# Copyright (C) 2003 Mark Addison <mark.addison@itn.co.uk>,
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; version 2.
11#
12# This program is distributed in the hope that it will be useful, but
13# WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15# General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20# 02111-1307 USA
21# -------------------------------------------------------------------
22
23=head1 NAME
24
25SQL::Translator::Parser::SqlfXML - parser for the XML produced by
26SQL::Translator::Producer::SqlfXML.
27
28=head1 SYNOPSIS
29
30 use SQL::Translator;
31 use SQL::Translator::Parser::SqlfXML;
32
33 my $translator = SQL::Translator->new(
34 show_warnings => 1,
35 add_drop_table => 1,
36 );
37 print = $obj->translate(
38 from => "SqlfXML",
39 to =>"MySQL",
40 filename => "fooschema.xml",
41 );
42
43=head1 DESCRIPTION
44
45A SQL Translator parser to parse the XML files produced by its SqftXML producer.
46The XML must be in the namespace http://sqlfairy.sourceforge.net/sqlfairy.xml.
47
07a82527 48To see an example of the XML translate one of your schema :) e.g.
c957e92d 49
07a82527 50 $ sql_translator.pl --from=MySQL --to=SqftXML foo_schema.sql
c957e92d 51
07a82527 52==head2 attrib_values
53
54The parser will happily parse XML produced with the attrib_values arg set. If
55it sees a value set as an attribute and a tag, the tag value will override
56that of the attribute.
57
58e.g. For the xml below the table would get the name 'bar'.
59
60 <sqlf:table name="foo">
61 <sqlf:name>foo</name>
62 </sqlf:table>
63
64==head2 default_value
5ff70f1a 65
66Leave the tag out all together to use the default in Schema::Field. Use empty
07a82527 67tags or EMPTY_STRING for a zero lenth string. NULL for an explicit null
68(currently sets default_value to undef in the Schema::Field obj).
5ff70f1a 69
70 <sqlf:default_value></sqlf:default_value> <!-- Empty string -->
71 <sqlf:default_value>EMPTY_STRING</sqlf:default_value> <!-- Empty string -->
72 <sqlf:default_value>NULL</sqlf:default_value> <!-- NULL -->
07a82527 73
5952d39c 74 <sqlf:default_value/> <!-- Empty string BUT DON'T USE! See BUGS -->
07a82527 75
76==head2 ARGS
77
78Doesn't take any extra parser args at the moment.
79
c957e92d 80=cut
81
82use strict;
c957e92d 83
84use vars qw[ $DEBUG $VERSION @EXPORT_OK ];
29b69de8 85$VERSION = sprintf "%d.%02d", q$Revision: 1.6 $ =~ /(\d+)\.(\d+)/;
c957e92d 86$DEBUG = 0 unless defined $DEBUG;
87
88use Data::Dumper;
89use Exporter;
90use base qw(Exporter);
91@EXPORT_OK = qw(parse);
92
93use base qw/SQL::Translator::Parser/; # Doesnt do anything at the mo!
94use XML::XPath;
95use XML::XPath::XMLParser;
96
97sub debug {
98 warn @_,"\n" if $DEBUG;
99}
100
101sub parse {
102 my ( $translator, $data ) = @_;
103 my $schema = $translator->schema;
104 local $DEBUG = $translator->debug;
105 #local $TRACE = $translator->trace ? 1 : undef;
106 # Nothing with trace option yet!
107
108 my $xp = XML::XPath->new(xml => $data);
109 $xp->set_namespace("sqlf", "http://sqlfairy.sourceforge.net/sqlfairy.xml");
110
111 # Work our way through the tables
112 #
113 my @nodes = $xp->findnodes('/sqlf:schema/sqlf:table');
114 for my $tblnode (
115 sort { "".$xp->findvalue('sqlf:order',$a)
116 <=> "".$xp->findvalue('sqlf:order',$b) } @nodes
117 ) {
118 debug "Adding table:".$xp->findvalue('sqlf:name',$tblnode);
119 my $table = $schema->add_table(
120 get_tagfields($xp, $tblnode, "sqlf:" => qw/name order/)
121 ) or die $schema->error;
122
123 # Fields
124 #
125 my @nodes = $xp->findnodes('sqlf:fields/sqlf:field',$tblnode);
126 foreach (
07a82527 127 sort { ("".$xp->findvalue('sqlf:order',$a) || 0)
128 <=> ("".$xp->findvalue('sqlf:order',$b) || 0) } @nodes
c957e92d 129 ) {
130 my %fdata = get_tagfields($xp, $_, "sqlf:",
131 qw/name data_type size default_value is_nullable is_auto_increment
132 is_primary_key is_foreign_key comments/);
5ff70f1a 133 if (exists $fdata{default_value} and defined $fdata{default_value}){
134 if ( $fdata{default_value} =~ /^\s*NULL\s*$/ ) {
135 $fdata{default_value}= undef;
136 }
137 elsif ( $fdata{default_value} =~ /^\s*EMPTY_STRING\s*$/ ) {
138 $fdata{default_value} = "";
139 }
140 }
c957e92d 141 my $field = $table->add_field(%fdata) or die $schema->error;
142 $table->primary_key($field->name) if $fdata{'is_primary_key'};
143 # TODO We should be able to make the table obj spot this when we
144 # use add_field.
145 # TODO Deal with $field->extra
146 }
147
148 # Constraints
149 #
150 @nodes = $xp->findnodes('sqlf:constraints/sqlf:constraint',$tblnode);
151 foreach (@nodes) {
152 my %data = get_tagfields($xp, $_, "sqlf:",
153 qw/name type table fields reference_fields reference_table
154 match_type on_delete_do on_update_do/);
155 $table->add_constraint(%data) or die $schema->error;
156 }
157
158 # Indexes
159 #
160 @nodes = $xp->findnodes('sqlf:indices/sqlf:index',$tblnode);
161 foreach (@nodes) {
162 my %data = get_tagfields($xp, $_, "sqlf:",
163 qw/name type fields options/);
164 $table->add_index(%data) or die $schema->error;
165 }
166
167 } # tables loop
168
169 return 1;
170}
171
172# get_tagfields XPNODE, NAMESPACE => qw/TAGNAMES/;
173# get_tagfields $node, "sqlf:" => qw/name type fields reference/;
5ff70f1a 174#
175# Returns hash of data. If a tag isn't in the file it is not in this
176# hash.
177# TODO Add handling of and explicit NULL value.
c957e92d 178sub get_tagfields {
179 my ($xp, $node, @names) = @_;
180 my (%data, $ns);
181 foreach (@names) {
182 if ( m/:$/ ) { $ns = $_; next; } # Set def namespace
07a82527 183 my $thisns = (s/(^.*?:)// ? $1 : $ns);
184 foreach my $path ( "\@$thisns$_","$thisns$_") {
185 $data{$_} = $xp->findvalue($path,$node) if $xp->exists($path,$node);
186 debug "Got $_=".(defined $data{$_} ? $data{$_} : "UNDEF");
187 }
c957e92d 188 }
189 return wantarray ? %data : \%data;
190}
191
1921;
193
194__END__
195
196=pod
197
b3530353 198=head1 BUGS
199
5952d39c 200B<Empty Tags> e.g. <sqlf:default_value/> Will be parsed as "" and hence also
07a82527 201false. This is a bit counter intuative for some tags as seeing
202<sqlf:is_nullable /> you might think that it was set when it fact it wouldn't
b3530353 203be. So for now it is safest not to use them until their handling by the parser
5952d39c 204is defined.
b3530353 205
c957e92d 206=head1 TODO
207
208 * Support sqf:options.
209 * Test forign keys are parsed ok.
07a82527 210 * Sort out sane handling of empty tags <foo/> vs tags with no content
5952d39c 211 <foo></foo> vs it no tag being there.
5ff70f1a 212 * Control over defaulting of non-existant tags.
c957e92d 213
214=head1 AUTHOR
215
216Mark D. Addison E<lt>mark.addison@itn.co.ukE<gt>,
217
218=head1 SEE ALSO
219
220perl(1), SQL::Translator, SQL::Translator::Producer::SqlfXML,
221SQL::Translator::Schema.
222
223=cut