Fix PK info if available.
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / xSV.pm
CommitLineData
046f18e5 1package SQL::Translator::Parser::xSV;
2
49e1eb70 3# -------------------------------------------------------------------
5eb4a350 4# $Id: xSV.pm,v 1.11 2003-10-09 16:38:51 kycl4rk Exp $
49e1eb70 5# -------------------------------------------------------------------
abfa405a 6# Copyright (C) 2003 Ken Y. Clark <kclark@cpan.org>,
825ed07b 7# darren chamberlain <darren@cpan.org>
046f18e5 8#
9# This program is free software; you can redistribute it and/or
10# modify it under the terms of the GNU General Public License as
11# published by the Free Software Foundation; version 2.
12#
13# This program is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16# General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21# 02111-1307 USA
22# -------------------------------------------------------------------
23
825ed07b 24=head1 NAME
25
26SQL::Translator::Parser::xSV - parser for arbitrarily delimited text files
27
28=head1 SYNOPSIS
29
30 use SQL::Translator;
31 use SQL::Translator::Parser::xSV;
32
33 my $translator = SQL::Translator->new(
34 parser => 'xSV',
35 parser_args => { field_separator => "\t" },
36 );
37
38=head1 DESCRIPTION
39
40Parses arbitrarily delimited text files. See the
41Text::RecordParser manpage for arguments on how to parse the file
42(e.g., C<field_separator>, C<record_separator>). Other arguments
43include:
44
5eb4a350 45=head1 OPTIONS
46
825ed07b 47=over
48
49=item * scan_fields
50
51Indicates that the columns should be scanned to determine data types
9d90f9cd 52and field sizes. True by default.
825ed07b 53
54=item * trim_fields
55
56A shortcut to sending filters to Text::RecordParser, will create
57callbacks that trim leading and trailing spaces from fields and headers.
9d90f9cd 58True by default.
825ed07b 59
60=back
61
62Field names will automatically be normalized by
63C<SQL::Translator::Utils::normalize>.
64
65=cut
66
67# -------------------------------------------------------------------
68
046f18e5 69use strict;
70use vars qw($VERSION @EXPORT);
5eb4a350 71$VERSION = sprintf "%d.%02d", q$Revision: 1.11 $ =~ /(\d+)\.(\d+)/;
046f18e5 72
73use Exporter;
74use Text::ParseWords qw(quotewords);
825ed07b 75use Text::RecordParser;
76use SQL::Translator::Utils qw(debug normalize_name);
046f18e5 77
78use base qw(Exporter);
79@EXPORT = qw(parse);
80
825ed07b 81#
046f18e5 82# Passed a SQL::Translator instance and a string containing the data
825ed07b 83#
046f18e5 84sub parse {
70944bc5 85 my ( $tr, $data ) = @_;
825ed07b 86 my $args = $tr->parser_args;
87 my $parser = Text::RecordParser->new(
88 field_separator => $args->{'field_separator'} || ',',
89 record_separator => $args->{'record_separator'} || "\n",
90 data => $data,
91 header_filter => \&normalize_name,
92 );
93
5eb4a350 94 $parser->field_filter( sub { $_ = shift || ''; s/^\s+|\s+$//g; $_ } )
9d90f9cd 95 unless defined $args->{'trim_fields'} && $args->{'trim_fields'} == 0;
825ed07b 96
70944bc5 97 my $schema = $tr->schema;
9d90f9cd 98 my $table = $schema->add_table( name => 'table1' );
99
825ed07b 100 #
101 # Get the field names from the first row.
102 #
103 $parser->bind_header;
104 my @field_names = $parser->field_list;
046f18e5 105
825ed07b 106 for ( my $i = 0; $i < @field_names; $i++ ) {
9d90f9cd 107 my $field = $table->add_field(
108 name => $field_names[$i],
109 data_type => 'char',
110 default_value => '',
111 size => 255,
112 is_nullable => 1,
113 is_auto_increment => undef,
114 ) or die $table->error;
115
116 if ( $i == 0 ) {
117 $table->primary_key( $field->name );
118 $field->is_primary_key(1);
046f18e5 119 }
120 }
121
825ed07b 122 #
123 # If directed, look at every field's values to guess size and type.
124 #
9d90f9cd 125 unless (
126 defined $args->{'scan_fields'} &&
127 $args->{'scan_fields'} == 0
128 ) {
825ed07b 129 my %field_info = map { $_, {} } @field_names;
130 while ( my $rec = $parser->fetchrow_hashref ) {
131 for my $field ( @field_names ) {
132 my $data = defined $rec->{ $field } ? $rec->{ $field } : '';
2008ecf3 133 my $size = [ length $data ];
825ed07b 134 my $type;
135
136 if ( $data =~ /^-?\d+$/ ) {
137 $type = 'integer';
138 }
2008ecf3 139 elsif (
140 $data =~ /^-?[,\d]+\.[\d+]?$/
141 ||
142 $data =~ /^-?[,\d]+?\.\d+$/
143 ||
144 $data =~ /^-?\.\d+$/
145 ) {
825ed07b 146 $type = 'float';
2008ecf3 147 my ( $w, $d ) = map { s/,//g; $_ } split( /\./, $data );
148 $size = [ length $w, length $d ];
825ed07b 149 }
150 else {
151 $type = 'char';
152 }
153
2008ecf3 154 for my $i ( 0, 1 ) {
155 next unless defined $size->[ $i ];
156 my $fsize = $field_info{ $field }{'size'}[ $i ] || 0;
157 if ( $size->[ $i ] > $fsize ) {
158 $field_info{ $field }{'size'}[ $i ] = $size->[ $i ];
159 }
825ed07b 160 }
161
162 $field_info{ $field }{ $type }++;
163 }
164 }
165
166 for my $field ( keys %field_info ) {
9d90f9cd 167 my $size = $field_info{ $field }{'size'};
168 my $data_type =
169 $field_info{ $field }{'char'} ? 'char' :
170 $field_info{ $field }{'float'} ? 'float' : 'integer';
171
9d90f9cd 172 my $field = $table->get_field( $field );
173 $field->size( $size );
174 $field->data_type( $data_type );
825ed07b 175 }
176 }
177
f62bd16c 178 return 1;
046f18e5 179}
180
046f18e5 1811;
825ed07b 182
183# -------------------------------------------------------------------
184=pod
185
186=head1 AUTHOR
187
188Darren Chamberlain E<lt>darren@cpan.orgE<gt>,
189Ken Y. Clark E<lt>kclark@cpan.orgE<gt>.
190
191=head1 SEE ALSO
192
5eb4a350 193Text::RecordParser, SQL::Translator.
825ed07b 194
195=cut