Fixed "database_events."
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer / XML / SQLFairy.pm
index 73fa851..97877e2 100644 (file)
@@ -1,8 +1,6 @@
 package SQL::Translator::Producer::XML::SQLFairy;
 
 # -------------------------------------------------------------------
-# $Id: SQLFairy.pm,v 1.17 2004-08-19 14:09:00 grommit Exp $
-# -------------------------------------------------------------------
 # Copyright (C) 2003 Ken Y. Clark <kclark@cpan.org>,
 #                    darren chamberlain <darren@cpan.org>,
 #                    Chris Mungall <cjm@fruitfly.org>,
@@ -38,31 +36,32 @@ SQL::Translator::Producer::XML::SQLFairy - SQLFairy's default XML format
       to             => 'XML-SQLFairy',
       filename       => 'schema.sql',
       show_warnings  => 1,
-      add_drop_table => 1,
   );
 
   print $t->translate;
 
 =head1 DESCRIPTION
 
-Creates XML output of a schema, in SQLFairy format XML.
+Creates XML output of a schema, in the flavor of XML used natively by the
+SQLFairy project (L<SQL::Translator>). This format is detailed here.
 
-The XML lives in the http://sqlfairy.sourceforge.net/sqlfairy.xml namespace.
+The XML lives in the C<http://sqlfairy.sourceforge.net/sqlfairy.xml> namespace.
 With a root element of <schema>.
 
-Objects in the schema are mapped to tags of the same name as the objects class.
+Objects in the schema are mapped to tags of the same name as the objects class
+(all lowercase).
 
 The attributes of the objects (e.g. $field->name) are mapped to attributes of
 the tag, except for sql, comments and action, which get mapped to child data
 elements.
 
 List valued attributes (such as the list of fields in an index)
-get mapped to a comma seperated list of values in the attribute.
+get mapped to comma seperated lists of values in the attribute.
 
 Child objects, such as a tables fields, get mapped to child tags wrapped in a
 set of container tags using the plural of their contained classes name.
 
-L<SQL::Translator::Schema::Field>'s extra attribute (a hash of arbitary data) is
+An objects's extra attribute (a hash of arbitary data) is
 mapped to a tag called extra, with the hash of data as attributes, sorted into
 alphabetical order.
 
@@ -71,33 +70,34 @@ e.g.
     <schema name="" database=""
       xmlns="http://sqlfairy.sourceforge.net/sqlfairy.xml">
 
-      <table name="Story" order="1">
-
-        <fields>
-          <field name="id" data_type="BIGINT" size="20"
-            is_nullable="0" is_auto_increment="1" is_primary_key="1"
-            is_foreign_key="0" order="3">
-            <extra ZEROFILL="1" />
-            <comments></comments>
-          </field>
-          <field name="created" data_type="datetime" size="0"
-            is_nullable="1" is_auto_increment="0" is_primary_key="0"
-            is_foreign_key="0" order="1">
-            <extra />
-            <comments></comments>
-          </field>
-          ...
-        </fields>
-
-        <indices>
-          <index name="foobar" type="NORMAL" fields="foo,bar" options="" />
-        </indices>
-
-      </table>
-
-      <view name="email_list" fields="email" order="1">
-        <sql>SELECT email FROM Basic WHERE email IS NOT NULL</sql>
-      </view>
+      <tables>
+        <table name="Story" order="1">
+          <fields>
+            <field name="id" data_type="BIGINT" size="20"
+              is_nullable="0" is_auto_increment="1" is_primary_key="1"
+              is_foreign_key="0" order="3">
+              <extra ZEROFILL="1" />
+              <comments></comments>
+            </field>
+            <field name="created" data_type="datetime" size="0"
+              is_nullable="1" is_auto_increment="0" is_primary_key="0"
+              is_foreign_key="0" order="1">
+              <extra />
+              <comments></comments>
+            </field>
+            ...
+          </fields>
+          <indices>
+            <index name="foobar" type="NORMAL" fields="foo,bar" options="" />
+          </indices>
+        </table>
+      </tables>
+
+      <views>
+        <view name="email_list" fields="email" order="1">
+          <sql>SELECT email FROM Basic WHERE email IS NOT NULL</sql>
+        </view>
+      </views>
 
     </schema>
 
@@ -155,15 +155,15 @@ the result is a great many possible XML formats, not so good for DTD writing,
 XPathing etc! So we have moved to a fixed version described above.
 
 This version of the producer will now only produce the new style XML.
-To convert your old format files simply pass them through the translator;
+To convert your old format files simply pass them through the translator :)
 
- sqlt -f XML-SQLFairy -t XML-SQLFairy schema-old.xml > schema-new.xml
+ $ sqlt -f XML-SQLFairy -t XML-SQLFairy schema-old.xml > schema-new.xml
 
 =cut
 
 use strict;
 use vars qw[ $VERSION @EXPORT_OK ];
-$VERSION = sprintf "%d.%02d", q$Revision: 1.17 $ =~ /(\d+)\.(\d+)/;
+$VERSION = '1.59';
 
 use Exporter;
 use base qw(Exporter);
@@ -212,7 +212,7 @@ sub produce {
     $xml->xmlDecl('UTF-8');
     $xml->comment(header_comment('', ''));
     xml_obj($xml, $schema,
-        tag => "schema", methods => [qw/name database/], end_tag => 0 );
+        tag => "schema", methods => [qw/name database extra/], end_tag => 0 );
 
     #
     # Table
@@ -222,7 +222,7 @@ sub produce {
         debug "Table:",$table->name;
         xml_obj($xml, $table,
              tag => "table",
-             methods => [qw/name order/],
+             methods => [qw/name order extra/],
              end_tag => 0
          );
 
@@ -243,7 +243,7 @@ sub produce {
         xml_obj_children( $xml, $table,
             tag   => 'index',
             collection_tag => "indices",
-            methods => [qw/name type fields options/],
+            methods => [qw/name type fields options extra/],
         );
 
         #
@@ -254,6 +254,18 @@ sub produce {
             methods => [qw/
                 name type fields reference_table reference_fields
                 on_delete on_update match_type expression options deferrable
+                extra
+            /],
+        );
+
+        #
+        # Comments
+        #
+        xml_obj_children( $xml, $table,
+            tag   => 'comment',
+            collection_tag => "comments",
+            methods => [qw/
+                comments
             /],
         );
 
@@ -266,7 +278,7 @@ sub produce {
     #
     xml_obj_children( $xml, $schema,
         tag   => 'view',
-        methods => [qw/name sql fields order/],
+        methods => [qw/name sql fields order extra/],
     );
 
     #
@@ -274,8 +286,8 @@ sub produce {
     #
     xml_obj_children( $xml, $schema,
         tag    => 'trigger',
-        methods => [qw/name database_event action on_table perform_action_when
-            fields order/],
+        methods => [qw/name database_events action on_table perform_action_when
+            fields order extra/],
     );
 
     #
@@ -283,7 +295,7 @@ sub produce {
     #
     xml_obj_children( $xml, $schema,
         tag   => 'procedure',
-        methods => [qw/name sql parameters owner comments order/],
+        methods => [qw/name sql parameters owner comments order extra/],
     );
 
     $xml->endTag([ $Namespace => 'schema' ]);
@@ -306,17 +318,28 @@ sub xml_obj_children {
     my ($name,$collection_name,$methods)
         = @args{qw/tag collection_tag methods/};
     $collection_name ||= "${name}s";
-    my $meth = "get_$collection_name";
+
+    my $meth;
+    if ( $collection_name eq 'comments' ) {
+      $meth = 'comments';
+    } else {
+      $meth = "get_$collection_name";
+    }
 
     my @kids = $parent->$meth;
     #@kids || return;
     $xml->startTag( [ $Namespace => $collection_name ] );
+
     for my $obj ( @kids ) {
-        xml_obj($xml, $obj,
-            tag     => "$name",
-            end_tag => 1,
-            methods => $methods,
-        );
+        if ( $collection_name eq 'comments' ){
+            $xml->dataElement( [ $Namespace => 'comment' ], $obj );
+        } else {
+            xml_obj($xml, $obj,
+                tag     => "$name",
+                end_tag => 1,
+                methods => $methods,
+            );
+        }
     }
     $xml->endTag( [ $Namespace => $collection_name ] );
 }
@@ -389,7 +412,7 @@ Mark Addison E<lt>mark.addison@itn.co.ukE<gt>.
 
 =head1 SEE ALSO
 
-perl(1), SQL::Translator, SQL::Translator::Parser::XML::SQLFairy,
-SQL::Translator::Schema, XML::Writer.
+L<perl(1)>, L<SQL::Translator>, L<SQL::Translator::Parser::XML::SQLFairy>,
+L<SQL::Translator::Schema>, L<XML::Writer>.
 
 =cut