Added a Module::Build::Compat 'passthrough' Makefile.PL
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser.pm
CommitLineData
16dc9970 1package SQL::Translator::Parser;
2
077ebf34 3# ----------------------------------------------------------------------
821a0fde 4# $Id$
077ebf34 5# ----------------------------------------------------------------------
977651a5 6# Copyright (C) 2002-4 SQLFairy Authors
16dc9970 7#
077ebf34 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# ----------------------------------------------------------------------
16dc9970 22
23use strict;
24use vars qw( $VERSION );
821a0fde 25$VERSION = sprintf "%d.%02d", q$Revision$ =~ /(\d+)\.(\d+)/;
16dc9970 26
077ebf34 27sub parse { "" }
16dc9970 28
291;
30
49e1eb70 31# ----------------------------------------------------------------------
16dc9970 32# Enough! or Too much.
33# William Blake
49e1eb70 34# ----------------------------------------------------------------------
35
36=pod
16dc9970 37
38=head1 NAME
39
b015e9ff 40SQL::Translator::Parser - describes how to write a parser
16dc9970 41
16dc9970 42=head1 DESCRIPTION
43
8295a8cc 44Parser modules that get invoked by SQL::Translator need to implement a
45single function: B<parse>. This function will be called by the
46SQL::Translator instance as $class::parse($tr, $data_as_string), where
47$tr is a SQL::Translator instance. Other than that, the classes are
48free to define any helper functions, or use any design pattern
49internally that make the most sense.
16dc9970 50
b015e9ff 51When the parser has determined what exists, it will communicate the
52structure to the producer through the SQL::Translator::Schema object.
53This object can be retrieved from the translator (the first argument
54pass to B<parse>) by calling the B<schema> method:
8295a8cc 55
b015e9ff 56 my $schema = $tr->schema;
57
58The Schema object has methods for adding tables, fields, indices, etc.
59For more information, consult the docs for SQL::Translator::Schema and
60its related modules. For examples of how this works, examine the
61source code for existing SQL::Translator::Parser::* modules.
8295a8cc 62
63=head1 AUTHORS
64
d529894e 65Ken Y. Clark, E<lt>kclark@cpan.org<gt>,
49e1eb70 66darren chamberlain E<lt>darren@cpan.orgE<gt>.
16dc9970 67
68=head1 SEE ALSO
69
56435d6f 70perl(1), SQL::Translator, SQL::Translator::Schema.
16dc9970 71
72=cut