File: VMethods.pod

package info (click to toggle)
libtemplate-perl 2.19-1.1lenny1.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 5,012 kB
  • ctags: 606
  • sloc: perl: 14,372; makefile: 60; sh: 5
file content (683 lines) | stat: -rw-r--r-- 18,994 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
#============================================================= -*-perl-*-
#
# Template::Manual::VMethods
#
# DESCRIPTION

#
# AUTHOR
#   Andy Wardley  <abw@wardley.org>
#
# COPYRIGHT
#   Copyright (C) 1996-2007 Andy Wardley.  All Rights Reserved.
#
#   This module is free software; you can redistribute it and/or
#   modify it under the same terms as Perl itself.
#
# REVISION
#   
#
#========================================================================


#------------------------------------------------------------------------
# IMPORTANT NOTE
#   This documentation is generated automatically from source
#   templates.  Any changes you make here may be lost.
# 
#   The 'docsrc' documentation source bundle is available for download
#   from http://www.template-toolkit.org/docs.html and contains all
#   the source templates, XML files, scripts, etc., from which the
#   documentation for the Template Toolkit is built.
#------------------------------------------------------------------------

=head1 NAME

Template::Manual::VMethods - Virtual Methods

=head1 DESCRIPTION



=head2 Scalar Virtual Methods

=over 4 

=item defined

Returns true if the value is defined.

    [% user = get_user(uid) IF uid.defined %]

=item length

Returns the length of the string representation of the item:

    [% IF password.length < 8 %]
       Password too short, dumbass!
    [% END %]

=item repeat(n)

Repeat the string a specified number of times.

    [% name = 'foo' %]
    [% name.repeat(3) %]		# foofoofoo

=item replace(search, replace)

Outputs the string with all instances of the first argument (specified
as a Perl regular expression) with the second.

    [% name = 'foo, bar & baz' %]
    [% name.replace('\W+', '_') %]    # foo_bar_baz

=item remove(pattern)

Outputs the string with all instances of the pattern (specified
as a Perl regular expression) removed.

    [% name = 'foo, bar & baz' %]
    [% name.remove('\W+') %]    # foobarbaz

=item match(pattern, global)

Performs a regular expression match on the string using the pattern
passed as an argument.  If the pattern matches the string then the
method returns a reference to a list of any strings captured within
parenthesis in the pattern.

    [% name = 'Larry Wall' %]
    [% matches = name.match('(\w+) (\w+)') %]
    [% matches.1 %], [% matches.0 %]		# Wall, Larry

If the pattern does not match then the method returns false, rather
than returning an empty list which Perl and the Template Toolkit both
consider to be a true value.  This allows you to write expression like
this.

    [% "We're not worthy!" IF name.match('Larry Wall') %]

    [% IF (matches = name.match('(\w+) (\w+)')) %]
       pattern matches: [% matches.join(', ') %]
    [% ELSE %]
       pattern does not match
    [% END %]

Any regex modifiers, like C</s>, should be added in the regex using
the C<(?s)> syntax.  For example, to modify the regex to disregard
whitespace (the C</x> switch), use:

    [% re = '(?x)
               (\w+)
               [ ]
               (\w+)
             ';
      matches = name.match(re);
    %]

To perform a global search to match the pattern as many times as it
appears in the source string, provide a true value for the 'global' 
argument following the pattern.

    [% text = 'bandanna';
       text.match('an+', 1).join(', )      # an, ann
    %]

=item search(pattern)

Performs a similar function to 'match' but simply returns true if the 
string matches the regular expression pattern passed as an argument.

    [% name = 'foo bar baz' %]
    [% name.search('bar') ? 'bar' : 'no bar' %]	    # bar

This virtual method is now deprecated in favour of 'match'.  Move along
now, there's nothing more to see here.

=item split(pattern)

Calls Perl's split() function to split a string into a list of
strings.

    [% FOREACH dir = mypath.split(':') %]
       [% dir %]
    [% END %]

=item chunk(size)

Splits the value into a list of chunks of a certain size.

    [% ccard_no = "1234567824683579";
       ccard_no.chunk(4).join
    %]

Output:

    1234 5678 2468 3579

If the size is specified as a negative number then the text will
be chunked from right-to-left.  This gives the correct grouping 
for numbers, for example.

    [% number = 1234567;
       number.chunk(-3).join(',')
    %]

Output:

    1,234,567

=item substr(offset, length, replacement)

Returns a substring starting at 'offset', for 'length' characters.

    [% str 'foo bar baz wiz waz woz') %]
    [% str.substr(4, 3) %]    # bar

If 'length' is not specified then it returns everything from the
'offset' to the end of the string.

    [% str.substr(12) %]      # wiz waz woz

If both 'length' and 'replacement' are specified, then the method
replaces everything from 'offset' for 'length' characters with
$replacement.  The substring removed from the string is then returned.

    [% str.substr(0, 11, 'FOO') %]   # foo bar baz
    [% str %]                        # FOO wiz waz woz

=item list

Return the value as a single element list.  This can be useful if you
have a variable which may contain a single item or a list and you want
to treat them equally.  The 'list' method can be called against a list
reference and will simply return the original reference, effectively
a no-op.

    [% thing.list.size %]  # thing can be a scalar or a list

=item hash 

Return the value as a hash reference containing a single entry with
the key 'value' indicating the original scalar value.  As with the 
'list' virtual method, this is generally used to help massage data
into different formats.

=item size

Always returns 1 for scalar values.  This method is provided for 
consistency with the hash and list size methods.

=back


=head2 Hash Virtual Methods

=over 4

=item keys

Returns a list of keys in the hash.  They are not returned in any 
particular order, but the order is the same as for the corresponding
values method.

    [% FOREACH key IN hash.keys %]
       * [% key %]
    [% END %]

If you want the keys in sorted order, use the list 'sort' method.

    [% FOREACH key IN hash.keys.sort %]
       * [% key %]
    [% END %]

Having got the keys in sorted order, you can then use variable
interpolation to fetch the value.  This is shown in the following 
example by the use of '$key' to fetch the item from 'hash' whose
key is stored in the 'key' variable.

    [% FOREACH key IN hash.keys.sort %]
       * [% key %] = [% hash.$key %]
    [% END %]

Alternately, you can use the 'pairs' method to get a list of 
key/value pairs in sorted order.

=item values

Returns a list of the values in the hash.  As with the 'keys' method, 
they are not returned in any particular order, although it is the same
order that the keys are returned in.

    [% hash.values.join(', ') %]

=item items

Returns a list of both the keys and the values expanded into a single list.

    [% hash = {
          a = 10
          b = 20
       };

       hash.items.join(', ')    # a, 10, b, 20
    %]

=item each

This method currently returns the same thing as the 'items' method.

However, please note that this method will change in the next major
version of the Template Toolkit (v3) to return the same thing as the
'pairs' method.  This will be done in an effort to make these virtual
method more consistent with each other and how Perl works.

In anticipation of this, we recommend that you stop using 'hash.each'
and instead use 'hash.items'.

=item pairs 

This method returns a list of key/value pairs.  They are returned in
sorted order according to the keys.

    [% FOREACH pair IN product.pairs %]
       * [% pair.key %] is [% pair.value %]
    [% END %]

=item list

Returns the contents of the hash in list form.  An argument can be
passed to indicate the desired items required in the list: 'keys' to
return a list of the keys (same as hash.keys), 'values' to return a
list of the values (same as hash.values), 'each' to return as list
of key and values (same as hash.each), or 'pairs' to return a list
of key/value pairs (same as hash.pairs).

    [% keys   = hash.list('keys') %]
    [% values = hash.list('values') %]
    [% items  = hash.list('each') %]
    [% pairs  = hash.list('pairs') %]

When called without an argument it currently returns the same thing as
the 'pairs' method.  However, please note that this method will change
in the next major version of the Template Toolkit (v3) to return a
reference to a list containing the single hash reference (as per the
scalar list method).

In anticipation of this, we recommend that you stop using 'hash.list'
and instead use 'hash.pairs'.

=item sort, nsort

Return a list of the keys, sorted alphabetically (sort) or numerically
(nsort) according to the corresponding values in the hash.

    [% FOREACH n = phones.sort %]
       [% phones.$n %] is [% n %],
    [% END %]

=item import

The import method can be called on a hash array to import the contents
of another hash array.

    [% hash1 = {
	   foo => 'Foo',
           bar => 'Bar',
       }
       hash2 = {
           wiz => 'Wiz',
           woz => 'Woz',
       }
    %]

    [% hash1.import(hash2) %]
    [% hash1.wiz %]			# Wiz

You can also call the import() method by itself to import a hash array
into the current namespace hash.

    [% user = { id => 'lwall', name => 'Larry Wall' } %]
    [% import(user) %]
    [% id %]: [% name %]		# lwall: Larry Wall

=item defined, exists

Returns a true or false value if an item in the hash denoted by the key
passed as an argument is defined or exists, respectively.

    [% hash.defined('somekey') ? 'yes' : 'no' %]
    [% hash.exists('somekey') ? 'yes' : 'no' %]

When called without any argument, hash.defined returns true if the hash
itself is defined (e.g. the same effect as scalar.defined).

=item delete 

Delete one or more items from the hash.

    [% hash.delete('foo', 'bar') %]

=item size

Returns the number of key/value pairs in the hash.

=item item

Returns an item from the hash using a key passed as an argument.

    [% hash.item('foo') %]  # same as hash.foo

=back

=head2 List Virtual Methods

=over 4

=item first, last

Returns the first/last item in the list.  The item is not removed from the 
list.

    [% results.first %] to [% results.last %]

If either is given a numeric argument C<n>, they return the first or
last C<n> elements:

    The first 5 results are [% results.first(5).join(", ") %].

=item size, max

Returns the size of a list (number of elements) and the maximum 
index number (size - 1), respectively.

    [% results.size %] search results matched your query

=item defined

Returns a true or false value if the item in the list denoted by the
argument is defined.

    [% list.defined(3) ? 'yes' : 'no' %]

When called without any argument, list.defined returns true if the list
itself is defined (e.g. the same effect as scalar.defined).

=item reverse

Returns the items of the list in reverse order.

    [% FOREACH s = scores.reverse %]
       ...
    [% END %]

=item join

Joins the items in the list into a single string, using Perl's join 
function.

    [% items.join(', ') %]

=item grep

Returns a list of the items in the list that match a regular expression
pattern.

    [% FOREACH directory.files.grep('\.txt$') %]
       ...
    [% END %]

=item sort, nsort

Returns the items in alpha (sort) or numerical (nsort) order.

    [% library = books.sort %]

An argument can be provided to specify a search key.  Where an item in 
the list is a hash reference, the search key will be used to retrieve a 
value from the hash which will then be used as the comparison value.
Where an item is an object which implements a method of that name, the
method will be called to return a comparison value.

    [% library = books.sort('author') %]

In the example, the 'books' list can contains hash references with 
an 'author' key or objects with an 'author' method.

=item unshift(item), push(item)

The push() method adds an item or items to the end of list.

    [% mylist.push(foo) %]
    [% mylist.push(foo, bar) %]
    
The unshift() method adds an item or items to the start of a list.

    [% mylist.unshift(foo) %]
    [% mylist.push(foo, bar)    %]

=item shift, pop

Removes the first/last item from the list and returns it.

    [% first = mylist.shift %]
    [% last  = mylist.pop   %]

=item unique

Returns a list of the unique elements in a list, in the same order
as in the list itself.

    [% mylist = [ 1, 2, 3, 2, 3, 4, 1, 4, 3, 4, 5 ] %]
    [% numbers = mylist.unique %]

While this can be explicitly sorted, it is not required that the list
be sorted before the unique elements are pulled out (unlike the Unix
command line utility).

    [% numbers = mylist.unique.sort %]

=item import

Appends the contents of one or more other lists to the end of the
current list.

    [% one   = [ 1 2 3 ];
       two   = [ 4 5 6 ];
       three = [ 7 8 9 ];

       one.import(two, three);

       one.join(', );     # 1, 2, 3, 4, 5, 6, 7, 8, 9       
    %]

=item merge

Returns a list composed of zero or more other lists:

    [% list_one = [ 1 2 3 ];
       list_two = [ 4 5 6 ];
       list_three = [ 7 8 9 ];
       list_four = list_one.merge(list_two, list_three);
    %]

The original lists are not modified.

=item slice(from, to)

Returns a slice of items in the list between the bounds passed as
arguments.  If the second argument, 'to', isn't specified, then it
defaults to the last item in the list.  The original list is not 
modified.

    [% first_three = list.slice(0,2) %]

    [% last_three  = list.slice(-3, -1) %]

=item splice(offset, length, list)

Behaves just like Perl's splice() function allowing you to selectively
remove and/or replace elements in a list.  It removes 'length' items
from the list, starting at 'offset' and replaces them with the items
in 'list'.

   [% play_game = [ 'play', 'scrabble' ];
      ping_pong = [ 'ping', 'pong' ];
      redundant = play_game.splice(1, 1, ping_pong);

      redundant.join;     # scrabble
      play_game.join;     # play ping pong
   %]

The method returns a list of the items removed by the splice.
You can use the CALL directive to ignore the output if you're
not planning to do anything with it.

    [% CALL play_game.splice(1, 1, ping_pong) %]

As well as providing a reference to a list of replacement values,
you can pass in a list of items.

   [% CALL list.splice(-1, 0, 'foo', 'bar') %]

Be careful about passing just one item in as a replacement value.
If it is a reference to a list then the contents of the list will
be used.  If it's not a list, then it will be treated as a single 
value.  You can use square brackets around a single item if you 
need to be explicit:

  [% # push a single item, an_item
     CALL list.splice(-1, 0, an_item);

     # push the items from another_list
     CALL list.splice(-1, 0, another_list);

     # push a reference to another_list
     CALL list.splice(-1, 0, [ another_list ]);
  %]

=item hash 

Returns a reference to a hash array comprised of the elements in the
list.  The even-numbered elements (0, 2, 4, etc) become the keys and
the odd-numbered elements (1, 3, 5, etc) the values.

    [% list = ['pi', 3.14, 'e', 2.718] %]
    [% hash = list.hash %]
    [% hash.pi %]               # 3.14
    [% hash.e  %]               # 2.718

If a numerical argument is provided then the hash returned will have
keys generated for each item starting at the number specified.

    [% list = ['beer', 'peanuts'] %]
    [% hash = list.hash(1) %]
    [% hash.1  %]               # beer          
    [% hash.2  %]               # peanuts

=back

=head2 Automagic Promotion of Scalar to List for Virtual Methods

In addition to the scalar virtual methods listed in the previous
section, you can also call any list virtual method against a scalar.
The item will be automagically promoted to a single element list and
the appropriate list virtual method will be called.  

One particular benefit of this comes when calling subroutines or
object methods that return a list of items, rather than the 
preferred reference to a list of items.  In this case, the 
Template Toolkit automatically folds the items returned into
a list.

The upshot is that you can continue to use existing Perl modules or
code that returns lists of items, without having to refactor it
just to keep the Template Toolkit happy (by returning references
to list).  Class::DBI module is just one example of a particularly 
useful module which returns values this way.

If only a single item is returned from a subroutine then the 
Template Toolkit assumes it meant to return a single item (rather
than a list of 1 item) and leaves it well alone, returning the
single value as it is.  If you're executing a database query, 
for example, you might get 1 item returned, or perhaps many 
items which are then folded into a list.

The FOREACH directive will happily accept either a list or a single
item which it will treat as a list.  So it's safe to write directives
like this, where we assume that 'something' is bound to a subroutine
which might return 1 or more items:

    [% FOREACH item IN something %]
       ...
    [% END %]

The automagic promotion of scalars to single item lists means 
that you can also use list virtual methods safely, even if you
only get one item returned.  For example:

    [% something.first   %]
    [% something.join    %]
    [% something.reverse.join(', ') %]

Note that this is very much a last-ditch behaviour.  If the single
item return is an object with a 'first' method, for example, then that
will be called, as expected, in preference to the list virtual method.

=head2 Defining Custom Virtual Methods

You can define your own virtual methods for scalars, lists and hash
arrays.  The Template::Stash package variables $SCALAR_OPS, $LIST_OPS
and $HASH_OPS are references to hash arrays that define these virtual
methods.  HASH_OPS and LIST_OPS methods are subroutines that accept a
hash/list reference as the first item.  SCALAR_OPS are subroutines
that accept a scalar value as the first item.  Any other arguments
specified when the method is called will be passed to the subroutine.

    # load Template::Stash to make method tables visible
    use Template::Stash;

    # define list method to return new list of odd numbers only
    $Template::Stash::LIST_OPS->{ odd } = sub {
	my $list = shift;
	return [ grep { $_ % 2 } @$list ];
    };

template:

    [% primes = [ 2, 3, 5, 7, 9 ] %]
    [% primes.odd.join(', ') %]		# 3, 5, 7, 9

=head1 AUTHOR

Andy Wardley E<lt>abw@wardley.orgE<gt>

L<http://wardley.org/|http://wardley.org/>




=head1 VERSION

Template Toolkit version 2.19, released on 27 April 2007.

=head1 COPYRIGHT

  Copyright (C) 1996-2007 Andy Wardley.  All Rights Reserved.


This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.



=cut

# Local Variables:
# mode: perl
# perl-indent-level: 4
# indent-tabs-mode: nil
# End:
#
# vim: expandtab shiftwidth=4: