Remove copyright headers from individual scripts
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer / TT / Base.pm
CommitLineData
f5f03b78 1package SQL::Translator::Producer::TT::Base;
2
11a8c77a 3=pod
f5f03b78 4
5=head1 NAME
6
11a8c77a 7SQL::Translator::Producer::TT::Base - TT (Template Toolkit) based Producer base
8class.
f5f03b78 9
10=cut
11
f5f03b78 12use strict;
13
da06ac74 14use vars qw[ $VERSION @EXPORT_OK ];
11ad2df9 15$VERSION = '1.59';
f5f03b78 16
17use Template;
18use Data::Dumper;
bfd86e76 19use IO::Handle;
f5f03b78 20use Exporter;
21use base qw(Exporter);
22@EXPORT_OK = qw(produce);
23
24use SQL::Translator::Utils 'debug';
25
26# Hack to convert the produce call into an object. ALL sub-classes need todo
27# this so that the correct class gets created.
28sub produce {
29 return __PACKAGE__->new( translator => shift )->run;
30};
31
32sub new {
33 my $proto = shift;
34 my $class = ref $proto || $proto;
35 my %args = @_;
36
37 my $me = bless {}, $class;
38 $me->{translator} = delete $args{translator} || die "Need a translator.";
39
40 return $me;
41}
42
43sub translator { shift->{translator}; }
44sub schema { shift->{translator}->schema(@_); }
45
7f3fc883 46# Util args access method.
f5f03b78 47# No args - Return hashref (the actual hash in Translator) or hash of args.
48# 1 arg - Return that named args value.
49# Args - List of names. Return values of the given arg names in list context
50# or return as hashref in scalar context. Any names given that don't
7f3fc883 51# exist in the args are returned as undef.
f5f03b78 52sub args {
53 my $me = shift;
54
55 # No args
56 unless (@_) {
7f3fc883 57 return wantarray
f5f03b78 58 ? %{ $me->{translator}->producer_args }
59 : $me->{translator}->producer_args
60 ;
61 }
62
63 # 1 arg. Return the value whatever the context.
64 return $me->{translator}->producer_args->{$_[0]} if @_ == 1;
65
66 # More args so return values list or hash ref
67 my %args = %{ $me->{translator}->producer_args };
68 return wantarray ? @args{@_} : { map { ($_=>$args{$_}) } @_ };
69}
70
71# Run the produce and return the result.
72sub run {
73 my $me = shift;
74 my $scma = $me->schema;
75 my %args = %{$me->args};
76 my $tmpl = $me->tt_schema or die "No template!";
77
78 debug "Processing template $tmpl\n";
79 my $out;
7f3fc883 80 my $tt = Template->new(
f5f03b78 81 #DEBUG => $me->translator->debug,
7f3fc883 82 ABSOLUTE => 1, # Set so we can use from the command line sensibly
83 RELATIVE => 1, # Maybe the cmd line code should set it! Security!
84 $me->tt_config, # Hook for sub-classes to add config
85 %args, # Allow any TT opts to be passed in the producer_args
f5f03b78 86 ) || die "Failed to initialize Template object: ".Template->error;
87
7f3fc883 88 $tt->process( $tmpl, {
89 $me->tt_default_vars,
90 $me->tt_vars, # Sub-class hook for adding vars
91 }, \$out )
f5f03b78 92 or die "Error processing template '$tmpl': ".$tt->error;
93
94 return $out;
95}
96
11a8c77a 97
98# Sub class hooks
99#-----------------------------------------------------------------------------
100
101sub tt_config { () };
102
bfd86e76 103sub tt_schema {
104 my $me = shift;
105 my $class = ref $me;
106
107 my $file = $me->args("ttfile");
108 return $file if $file;
109
110 no strict 'refs';
111 my $ref = *{"$class\:\:DATA"}{IO};
112 if ( $ref->opened ) {
113 local $/ = undef; # Slurp mode
114 return \<$ref>;
115 }
116
117 undef;
118};
f5f03b78 119
f5f03b78 120sub tt_default_vars {
121 my $me = shift;
122 return (
123 translator => $me->translator,
bfd86e76 124 schema => $me->pre_process_schema($me->translator->schema),
f5f03b78 125 );
126}
127
bfd86e76 128sub pre_process_schema { $_[1] }
129
7f3fc883 130sub tt_vars { () };
131
f5f03b78 1321;
133
134# -------------------------------------------------------------------
135
136=pod
137
11a8c77a 138=head1 SYNOPSIS
139
466c88de 140 # Create a producer using a template in the __DATA__ section.
11a8c77a 141 package SQL::Translator::Producer::Foo;
142
143 use base qw/SQL::Translator::Producer::TT::Base/;
144
f33f9d70 145 # Convert produce call into a method call on our new class
11a8c77a 146 sub produce { return __PACKAGE__->new( translator => shift )->run; };
147
11a8c77a 148 # Configure the Template object.
149 sub tt_config { ( INTERPOLATE => 1 ); }
150
151 # Extra vars to add to the template
152 sub tt_vars { ( foo => "bar" ); }
153
bfd86e76 154 # Put template in DATA section (or use file with ttfile producer arg)
155 __DATA__
156 Schema
f33f9d70 157
bfd86e76 158 Database: [% schema.database %]
159 Foo: $foo
160 ...
161
11a8c77a 162=head1 DESCRIPTION
163
11a8c77a 164A base class producer designed to be sub-classed to create new TT based
165producers cheaply - by simply giving the template to use and sprinkling in some
166extra template variables and config.
167
466c88de 168You can find an introduction to this module in L<SQL::Translator::Manual>.
169
11a8c77a 170The 1st thing the module does is convert the produce sub routine call we get
f33f9d70 171from SQL::Translator into a method call on an object, which we can then
172sub-class. This is done with the following code which needs to appear in B<all>
173sub classes.
11a8c77a 174
175 # Convert produce call into an object method call
176 sub produce { return __PACKAGE__->new( translator => shift )->run; };
177
178See L<PRODUCER OBJECT> below for details.
179
f33f9d70 180The upshot of this is we can make new template producers by sub classing this
181base class, adding the above snippet and a template.
182The module also provides a number of hooks into the templating process,
183see L<SUB CLASS HOOKS> for details.
11a8c77a 184
185See the L<SYNOPSIS> above for an example of creating a simple producer using
186a single template stored in the producers DATA section.
187
188=head1 SUB CLASS HOOKS
189
f33f9d70 190Sub-classes can override these methods to control the templating by giving
11a8c77a 191the template source, adding variables and giving config to the Tempate object.
192
193=head2 tt_config
194
195 sub tt_config { ( INTERPOLATE => 1 ); }
196
f33f9d70 197Return hash of Template config to add to that given to the L<Template> C<new>
198method.
11a8c77a 199
200=head2 tt_schema
201
202 sub tt_schema { "foo.tt"; }
203 sub tt_schema { local $/ = undef; \<DATA>; }
204
f33f9d70 205The template to use, return a file name or a scalar ref of TT
206source, or an L<IO::Handle>. See L<Template> for details, as the return from
207this is passed on to it's C<produce> method.
11a8c77a 208
209The default implimentation uses the producer arg C<ttfile> as a filename to read
f33f9d70 210the template from. If the arg isn't there it will look for a C<__DATA__> section
bfd86e76 211in the class, reading it as template source if found. Returns undef if both
212these fail, causing the produce call to fail with a 'no template!' error.
11a8c77a 213
214=head2 tt_vars
215
216 sub tt_vars { ( foo => "bar" ); }
217
f33f9d70 218Return hash of template vars to use in the template. Nothing added here
11a8c77a 219by default, but see L<tt_default_vars> for the variables you get for free.
220
221=head2 tt_default_vars
222
223Return a hash-ref of the default vars given to the template.
224You wouldn't normally over-ride this, just inherit the default implimentation,
225to get the C<translator> & C<schema> variables, then over-ride L<tt_vars> to add
226your own.
227
228The current default variables are:
229
230=over 4
231
232=item schema
233
234The schema to template.
235
236=item translator
237
238The L<SQL::Translator> object.
239
240=back
241
bfd86e76 242=head2 pre_process_schema
243
244WARNING: This method is Experimental so may change!
245
f33f9d70 246Called with the L<SQL::Translator::Schema> object and should return one (it
247doesn't have to be the same one) that will become the C<schema> varibale used
248in the template.
bfd86e76 249
250Gets called from tt_default_vars.
251
11a8c77a 252=head1 PRODUCER OBJECT
253
254The rest of the methods in the class set up a sub-classable producer object.
255You normally just inherit them.
256
257=head2 new
258
259 my $tt_producer = TT::Base->new( translator => $translator );
260
261Construct a new TT Producer object. Takes a single, named arg of the
262L<SQL::Translator> object running the translation. Dies if this is not given.
263
264=head2 translator
265
266Return the L<SQL::Translator> object.
267
268=head2 schema
269
270Return the L<SQL::Translator::Schema> we are translating. This is equivilent
271to C<< $tt_producer->translator->schema >>.
272
f33f9d70 273=head2 run
274
275Called to actually produce the output, calling the sub class hooks. Returns the
276produced text.
277
11a8c77a 278=head2 args
279
280Util wrapper method around C<< TT::Base->translator->producer_args >> for
281(mostley) readonly access to the producer args. How it works depends on the
282number of arguments you give it and the context.
283
284 No args - Return hashref (the actual hash in Translator) or hash of args.
285 1 arg - Return value of the arg with the passed name.
f33f9d70 286 2+ args - List of names. In list context returns values of the given arg
287 names, returns as a hashref in scalar context. Any names given
288 that don't exist in the args are returned as undef.
11a8c77a 289
f33f9d70 290This is still a bit messy but is a handy way to access the producer args when
291you use your own to drive the templating.
11a8c77a 292
f33f9d70 293=head1 SEE ALSO
f5f03b78 294
f33f9d70 295L<perl>,
296L<SQL::Translator>,
297L<Template>.
f5f03b78 298
299=head1 TODO
300
11a8c77a 301- Add support for a sqlf template repository, set as an INCLUDE_PATH,
302so that sub-classes can easily include file based templates using relative
303paths.
f5f03b78 304
f33f9d70 305- Pass in template vars from the producer args and command line.
306
f5f03b78 307- Merge in TT::Table.
308
11a8c77a 309- Hooks to pre-process the schema and post-process the output.
310
f33f9d70 311=head1 AUTHOR
f5f03b78 312
f33f9d70 313Mark Addison E<lt>grommit@users.sourceforge.netE<gt>.
f5f03b78 314
315=cut