| Filename | /usr/lib/x86_64-linux-gnu/perl5/5.20/Template/Config.pm |
| Statements | Executed 80 statements in 431µs |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 29 | 8 | 1 | 13.4ms | 43.6ms | Template::Config::load |
| 4 | 1 | 1 | 84µs | 10.5ms | Template::Config::stash |
| 29 | 1 | 1 | 78µs | 78µs | Template::Config::CORE:subst (opcode) |
| 4 | 1 | 1 | 65µs | 310µs | Template::Config::provider |
| 4 | 1 | 1 | 63µs | 20.4ms | Template::Config::service |
| 4 | 1 | 1 | 61µs | 23.9ms | Template::Config::parser |
| 4 | 1 | 1 | 59µs | 20.1ms | Template::Config::context |
| 4 | 1 | 1 | 59µs | 1.64ms | Template::Config::plugins |
| 4 | 1 | 1 | 54µs | 3.57ms | Template::Config::filters |
| 1 | 1 | 1 | 23µs | 1.57ms | Template::Config::iterator |
| 1 | 1 | 1 | 16µs | 24µs | Template::Config::BEGIN@21 |
| 1 | 1 | 1 | 10µs | 52µs | Template::Config::BEGIN@23 |
| 1 | 1 | 1 | 10µs | 113µs | Template::Config::BEGIN@24 |
| 1 | 1 | 1 | 8µs | 15µs | Template::Config::BEGIN@22 |
| 0 | 0 | 0 | 0s | 0s | Template::Config::constants |
| 0 | 0 | 0 | 0s | 0s | Template::Config::instdir |
| 0 | 0 | 0 | 0s | 0s | Template::Config::preload |
| 0 | 0 | 0 | 0s | 0s | Template::TieString::PRINT |
| 0 | 0 | 0 | 0s | 0s | Template::TieString::TIEHANDLE |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | #============================================================= -*-perl-*- | ||||
| 2 | # | ||||
| 3 | # Template::Config | ||||
| 4 | # | ||||
| 5 | # DESCRIPTION | ||||
| 6 | # Template Toolkit configuration module. | ||||
| 7 | # | ||||
| 8 | # AUTHOR | ||||
| 9 | # Andy Wardley <abw@wardley.org> | ||||
| 10 | # | ||||
| 11 | # COPYRIGHT | ||||
| 12 | # Copyright (C) 1996-2007 Andy Wardley. All Rights Reserved. | ||||
| 13 | # | ||||
| 14 | # This module is free software; you can redistribute it and/or | ||||
| 15 | # modify it under the same terms as Perl itself. | ||||
| 16 | # | ||||
| 17 | #======================================================================== | ||||
| 18 | |||||
| 19 | package Template::Config; | ||||
| 20 | |||||
| 21 | 2 | 33µs | # spent 24µs (16+9) within Template::Config::BEGIN@21 which was called:
# once (16µs+9µs) by Template::BEGIN@27 at line 21 # spent 24µs making 1 call to Template::Config::BEGIN@21
# spent 9µs making 1 call to strict::import | ||
| 22 | 2 | 23µs | # spent 15µs (8+7) within Template::Config::BEGIN@22 which was called:
# once (8µs+7µs) by Template::BEGIN@27 at line 22 # spent 15µs making 1 call to Template::Config::BEGIN@22
# spent 7µs making 1 call to warnings::import | ||
| 23 | 2 | 93µs | # spent 52µs (10+42) within Template::Config::BEGIN@23 which was called:
# once (10µs+42µs) by Template::BEGIN@27 at line 23 # spent 52µs making 1 call to Template::Config::BEGIN@23
# spent 42µs making 1 call to base::import | ||
| 24 | 1 | 103µs | # spent 113µs (10+103) within Template::Config::BEGIN@24 which was called:
# once (10µs+103µs) by Template::BEGIN@27 at line 27 # spent 103µs making 1 call to vars::import | ||
| 25 | $PARSER $PROVIDER $PLUGINS $FILTERS $ITERATOR | ||||
| 26 | $LATEX_PATH $PDFLATEX_PATH $DVIPS_PATH | ||||
| 27 | 1 | 113µs | $STASH $SERVICE $CONTEXT $CONSTANTS @PRELOAD ); # spent 113µs making 1 call to Template::Config::BEGIN@24 | ||
| 28 | |||||
| 29 | $VERSION = 2.75; | ||||
| 30 | $DEBUG = 0 unless defined $DEBUG; | ||||
| 31 | $ERROR = ''; | ||||
| 32 | $CONTEXT = 'Template::Context'; | ||||
| 33 | $FILTERS = 'Template::Filters'; | ||||
| 34 | $ITERATOR = 'Template::Iterator'; | ||||
| 35 | $PARSER = 'Template::Parser'; | ||||
| 36 | $PLUGINS = 'Template::Plugins'; | ||||
| 37 | $PROVIDER = 'Template::Provider'; | ||||
| 38 | $SERVICE = 'Template::Service'; | ||||
| 39 | $STASH = 'Template::Stash::XS'; | ||||
| 40 | $CONSTANTS = 'Template::Namespace::Constants'; | ||||
| 41 | |||||
| 42 | @PRELOAD = ( $CONTEXT, $FILTERS, $ITERATOR, $PARSER, | ||||
| 43 | $PLUGINS, $PROVIDER, $SERVICE, $STASH ); | ||||
| 44 | |||||
| 45 | # the following is set at installation time by the Makefile.PL | ||||
| 46 | $INSTDIR = ''; | ||||
| 47 | |||||
| 48 | |||||
| 49 | #======================================================================== | ||||
| 50 | # --- CLASS METHODS --- | ||||
| 51 | #======================================================================== | ||||
| 52 | |||||
| 53 | #------------------------------------------------------------------------ | ||||
| 54 | # preload($module, $module, ...) | ||||
| 55 | # | ||||
| 56 | # Preloads all the standard TT modules that are likely to be used, along | ||||
| 57 | # with any other passed as arguments. | ||||
| 58 | #------------------------------------------------------------------------ | ||||
| 59 | |||||
| 60 | sub preload { | ||||
| 61 | my $class = shift; | ||||
| 62 | |||||
| 63 | foreach my $module (@PRELOAD, @_) { | ||||
| 64 | $class->load($module) || return; | ||||
| 65 | }; | ||||
| 66 | return 1; | ||||
| 67 | } | ||||
| 68 | |||||
| 69 | |||||
| 70 | #------------------------------------------------------------------------ | ||||
| 71 | # load($module) | ||||
| 72 | # | ||||
| 73 | # Load a module via require(). Any occurences of '::' in the module name | ||||
| 74 | # are be converted to '/' and '.pm' is appended. Returns 1 on success | ||||
| 75 | # or undef on error. Use $class->error() to examine the error string. | ||||
| 76 | #------------------------------------------------------------------------ | ||||
| 77 | |||||
| 78 | # spent 43.6ms (13.4+30.2) within Template::Config::load which was called 29 times, avg 1.50ms/call:
# 4 times (3.92ms+19.4ms) by Template::Config::parser at line 102, avg 5.82ms/call
# 4 times (519µs+9.68ms) by Template::Config::stash at line 194, avg 2.55ms/call
# 4 times (3.42ms+294µs) by Template::Config::context at line 212, avg 929µs/call
# 4 times (2.98ms+463µs) by Template::Config::filters at line 158, avg 861µs/call
# 4 times (1.22ms+137µs) by Template::Config::plugins at line 139, avg 340µs/call
# 4 times (43µs+19µs) by Template::Config::service at line 230, avg 15µs/call
# 4 times (21µs+9µs) by Template::Config::provider at line 120, avg 8µs/call
# once (1.26ms+282µs) by Template::Config::iterator at line 176 | ||||
| 79 | 8 | 4µs | my ($class, $module) = @_; | ||
| 80 | 8 | 42µs | 29 | 78µs | $module =~ s[::][/]g; # spent 78µs making 29 calls to Template::Config::CORE:subst, avg 3µs/call |
| 81 | 8 | 2µs | $module .= '.pm'; | ||
| 82 | 16 | 235µs | eval { require $module; }; | ||
| 83 | 8 | 38µs | return $@ ? $class->error("failed to load $module: $@") : 1; | ||
| 84 | } | ||||
| 85 | |||||
| 86 | |||||
| 87 | #------------------------------------------------------------------------ | ||||
| 88 | # parser(\%params) | ||||
| 89 | # | ||||
| 90 | # Instantiate a new parser object of the class whose name is denoted by | ||||
| 91 | # the package variable $PARSER (default: Template::Parser). Returns | ||||
| 92 | # a reference to a newly instantiated parser object or undef on error. | ||||
| 93 | # The class error() method can be called without arguments to examine | ||||
| 94 | # the error message generated by this failure. | ||||
| 95 | #------------------------------------------------------------------------ | ||||
| 96 | |||||
| 97 | # spent 23.9ms (61µs+23.8) within Template::Config::parser which was called 4 times, avg 5.96ms/call:
# 4 times (61µs+23.8ms) by Template::Provider::_compile at line 838 of Template/Provider.pm, avg 5.96ms/call | ||||
| 98 | 1 | 1µs | my $class = shift; | ||
| 99 | 1 | 2µs | my $params = defined($_[0]) && ref($_[0]) eq 'HASH' | ||
| 100 | ? shift : { @_ }; | ||||
| 101 | |||||
| 102 | 1 | 2µs | 4 | 23.3ms | return undef unless $class->load($PARSER); # spent 23.3ms making 4 calls to Template::Config::load, avg 5.82ms/call |
| 103 | 1 | 11µs | 4 | 523µs | return $PARSER->new($params) # spent 523µs making 4 calls to Template::Parser::new, avg 131µs/call |
| 104 | || $class->error("failed to create parser: ", $PARSER->error); | ||||
| 105 | } | ||||
| 106 | |||||
| 107 | |||||
| 108 | #------------------------------------------------------------------------ | ||||
| 109 | # provider(\%params) | ||||
| 110 | # | ||||
| 111 | # Instantiate a new template provider object (default: Template::Provider). | ||||
| 112 | # Returns an object reference or undef on error, as above. | ||||
| 113 | #------------------------------------------------------------------------ | ||||
| 114 | |||||
| 115 | # spent 310µs (65+246) within Template::Config::provider which was called 4 times, avg 78µs/call:
# 4 times (65µs+246µs) by Template::Context::_init at line 851 of Template/Context.pm, avg 78µs/call | ||||
| 116 | 1 | 1µs | my $class = shift; | ||
| 117 | 1 | 2µs | my $params = defined($_[0]) && ref($_[0]) eq 'HASH' | ||
| 118 | ? shift : { @_ }; | ||||
| 119 | |||||
| 120 | 1 | 1µs | 4 | 30µs | return undef unless $class->load($PROVIDER); # spent 30µs making 4 calls to Template::Config::load, avg 8µs/call |
| 121 | 1 | 10µs | 4 | 0s | return $PROVIDER->new($params) # spent 216µs making 4 calls to Template::Base::new, avg 54µs/call, recursion: max depth 3, sum of overlapping time 216µs |
| 122 | || $class->error("failed to create template provider: ", | ||||
| 123 | $PROVIDER->error); | ||||
| 124 | } | ||||
| 125 | |||||
| 126 | |||||
| 127 | #------------------------------------------------------------------------ | ||||
| 128 | # plugins(\%params) | ||||
| 129 | # | ||||
| 130 | # Instantiate a new plugins provider object (default: Template::Plugins). | ||||
| 131 | # Returns an object reference or undef on error, as above. | ||||
| 132 | #------------------------------------------------------------------------ | ||||
| 133 | |||||
| 134 | # spent 1.64ms (59µs+1.58) within Template::Config::plugins which was called 4 times, avg 410µs/call:
# 4 times (59µs+1.58ms) by Template::Context::_init at line 851 of Template/Context.pm, avg 410µs/call | ||||
| 135 | 1 | 500ns | my $class = shift; | ||
| 136 | 1 | 2µs | my $params = defined($_[0]) && ref($_[0]) eq 'HASH' | ||
| 137 | ? shift : { @_ }; | ||||
| 138 | |||||
| 139 | 1 | 1µs | 4 | 1.36ms | return undef unless $class->load($PLUGINS); # spent 1.36ms making 4 calls to Template::Config::load, avg 340µs/call |
| 140 | 1 | 8µs | 4 | 0s | return $PLUGINS->new($params) # spent 219µs making 4 calls to Template::Base::new, avg 55µs/call, recursion: max depth 3, sum of overlapping time 219µs |
| 141 | || $class->error("failed to create plugin provider: ", | ||||
| 142 | $PLUGINS->error); | ||||
| 143 | } | ||||
| 144 | |||||
| 145 | |||||
| 146 | #------------------------------------------------------------------------ | ||||
| 147 | # filters(\%params) | ||||
| 148 | # | ||||
| 149 | # Instantiate a new filters provider object (default: Template::Filters). | ||||
| 150 | # Returns an object reference or undef on error, as above. | ||||
| 151 | #------------------------------------------------------------------------ | ||||
| 152 | |||||
| 153 | # spent 3.57ms (54µs+3.52) within Template::Config::filters which was called 4 times, avg 893µs/call:
# 4 times (54µs+3.52ms) by Template::Context::_init at line 851 of Template/Context.pm, avg 893µs/call | ||||
| 154 | 1 | 500ns | my $class = shift; | ||
| 155 | 1 | 1µs | my $params = defined($_[0]) && ref($_[0]) eq 'HASH' | ||
| 156 | ? shift : { @_ }; | ||||
| 157 | |||||
| 158 | 1 | 1µs | 4 | 3.44ms | return undef unless $class->load($FILTERS); # spent 3.44ms making 4 calls to Template::Config::load, avg 861µs/call |
| 159 | 1 | 5µs | 4 | 0s | return $FILTERS->new($params) # spent 76µs making 4 calls to Template::Base::new, avg 19µs/call, recursion: max depth 3, sum of overlapping time 76µs |
| 160 | || $class->error("failed to create filter provider: ", | ||||
| 161 | $FILTERS->error); | ||||
| 162 | } | ||||
| 163 | |||||
| 164 | |||||
| 165 | #------------------------------------------------------------------------ | ||||
| 166 | # iterator(\@list) | ||||
| 167 | # | ||||
| 168 | # Instantiate a new Template::Iterator object (default: Template::Iterator). | ||||
| 169 | # Returns an object reference or undef on error, as above. | ||||
| 170 | #------------------------------------------------------------------------ | ||||
| 171 | |||||
| 172 | # spent 1.57ms (23µs+1.55) within Template::Config::iterator which was called:
# once (23µs+1.55ms) by Template::Document::__ANON__[/home/vagrant/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt:203] at line 193 of koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt | ||||
| 173 | 1 | 700ns | my $class = shift; | ||
| 174 | 1 | 200ns | my $list = shift; | ||
| 175 | |||||
| 176 | 1 | 2µs | 1 | 1.54ms | return undef unless $class->load($ITERATOR); # spent 1.54ms making 1 call to Template::Config::load |
| 177 | 1 | 13µs | 1 | 12µs | return $ITERATOR->new($list, @_) # spent 12µs making 1 call to Template::Iterator::new |
| 178 | || $class->error("failed to create iterator: ", $ITERATOR->error); | ||||
| 179 | } | ||||
| 180 | |||||
| 181 | |||||
| 182 | #------------------------------------------------------------------------ | ||||
| 183 | # stash(\%vars) | ||||
| 184 | # | ||||
| 185 | # Instantiate a new template variable stash object (default: | ||||
| 186 | # Template::Stash). Returns object or undef, as above. | ||||
| 187 | #------------------------------------------------------------------------ | ||||
| 188 | |||||
| 189 | # spent 10.5ms (84µs+10.4) within Template::Config::stash which was called 4 times, avg 2.62ms/call:
# 4 times (84µs+10.4ms) by Template::Context::_init at line 877 of Template/Context.pm, avg 2.62ms/call | ||||
| 190 | 1 | 1µs | my $class = shift; | ||
| 191 | 1 | 800ns | my $params = defined($_[0]) && ref($_[0]) eq 'HASH' | ||
| 192 | ? shift : { @_ }; | ||||
| 193 | |||||
| 194 | 1 | 1µs | 4 | 10.2ms | return undef unless $class->load($STASH); # spent 10.2ms making 4 calls to Template::Config::load, avg 2.55ms/call |
| 195 | 1 | 13µs | 4 | 195µs | return $STASH->new($params) # spent 195µs making 4 calls to Template::Stash::new, avg 49µs/call |
| 196 | || $class->error("failed to create stash: ", $STASH->error); | ||||
| 197 | } | ||||
| 198 | |||||
| 199 | |||||
| 200 | #------------------------------------------------------------------------ | ||||
| 201 | # context(\%params) | ||||
| 202 | # | ||||
| 203 | # Instantiate a new template context object (default: Template::Context). | ||||
| 204 | # Returns object or undef, as above. | ||||
| 205 | #------------------------------------------------------------------------ | ||||
| 206 | |||||
| 207 | # spent 20.1ms (59µs+20.1) within Template::Config::context which was called 4 times, avg 5.03ms/call:
# 4 times (59µs+20.1ms) by Template::Service::_init at line 177 of Template/Service.pm, avg 5.03ms/call | ||||
| 208 | 1 | 1µs | my $class = shift; | ||
| 209 | 1 | 1µs | my $params = defined($_[0]) && ref($_[0]) eq 'HASH' | ||
| 210 | ? shift : { @_ }; | ||||
| 211 | |||||
| 212 | 1 | 1µs | 4 | 3.72ms | return undef unless $class->load($CONTEXT); # spent 3.72ms making 4 calls to Template::Config::load, avg 929µs/call |
| 213 | 1 | 9µs | 4 | 0s | return $CONTEXT->new($params) # spent 16.3ms making 4 calls to Template::Base::new, avg 4.09ms/call, recursion: max depth 2, sum of overlapping time 16.3ms |
| 214 | || $class->error("failed to create context: ", $CONTEXT->error); | ||||
| 215 | } | ||||
| 216 | |||||
| 217 | |||||
| 218 | #------------------------------------------------------------------------ | ||||
| 219 | # service(\%params) | ||||
| 220 | # | ||||
| 221 | # Instantiate a new template context object (default: Template::Service). | ||||
| 222 | # Returns object or undef, as above. | ||||
| 223 | #------------------------------------------------------------------------ | ||||
| 224 | |||||
| 225 | # spent 20.4ms (63µs+20.4) within Template::Config::service which was called 4 times, avg 5.11ms/call:
# 4 times (63µs+20.4ms) by Template::_init at line 142 of Template.pm, avg 5.11ms/call | ||||
| 226 | 1 | 1µs | my $class = shift; | ||
| 227 | 1 | 1µs | my $params = defined($_[0]) && ref($_[0]) eq 'HASH' | ||
| 228 | ? shift : { @_ }; | ||||
| 229 | |||||
| 230 | 1 | 4µs | 4 | 62µs | return undef unless $class->load($SERVICE); # spent 62µs making 4 calls to Template::Config::load, avg 15µs/call |
| 231 | 1 | 8µs | 4 | 0s | return $SERVICE->new($params) # spent 20.3ms making 4 calls to Template::Base::new, avg 5.07ms/call, recursion: max depth 1, sum of overlapping time 20.3ms |
| 232 | || $class->error("failed to create context: ", $SERVICE->error); | ||||
| 233 | } | ||||
| 234 | |||||
| 235 | |||||
| 236 | #------------------------------------------------------------------------ | ||||
| 237 | # constants(\%params) | ||||
| 238 | # | ||||
| 239 | # Instantiate a new namespace handler for compile time constant folding | ||||
| 240 | # (default: Template::Namespace::Constants). | ||||
| 241 | # Returns object or undef, as above. | ||||
| 242 | #------------------------------------------------------------------------ | ||||
| 243 | |||||
| 244 | sub constants { | ||||
| 245 | my $class = shift; | ||||
| 246 | my $params = defined($_[0]) && ref($_[0]) eq 'HASH' | ||||
| 247 | ? shift : { @_ }; | ||||
| 248 | |||||
| 249 | return undef unless $class->load($CONSTANTS); | ||||
| 250 | return $CONSTANTS->new($params) | ||||
| 251 | || $class->error("failed to create constants namespace: ", | ||||
| 252 | $CONSTANTS->error); | ||||
| 253 | } | ||||
| 254 | |||||
| 255 | |||||
| 256 | #------------------------------------------------------------------------ | ||||
| 257 | # instdir($dir) | ||||
| 258 | # | ||||
| 259 | # Returns the root installation directory appended with any local | ||||
| 260 | # component directory passed as an argument. | ||||
| 261 | #------------------------------------------------------------------------ | ||||
| 262 | |||||
| 263 | sub instdir { | ||||
| 264 | my ($class, $dir) = @_; | ||||
| 265 | my $inst = $INSTDIR | ||||
| 266 | || return $class->error("no installation directory"); | ||||
| 267 | $inst =~ s[/$][]g; | ||||
| 268 | $inst .= "/$dir" if $dir; | ||||
| 269 | return $inst; | ||||
| 270 | } | ||||
| 271 | |||||
| 272 | |||||
| 273 | #======================================================================== | ||||
| 274 | # This should probably be moved somewhere else in the long term, but for | ||||
| 275 | # now it ensures that Template::TieString is available even if the | ||||
| 276 | # Template::Directive module hasn't been loaded, as is the case when | ||||
| 277 | # using compiled templates and Template::Parser hasn't yet been loaded | ||||
| 278 | # on demand. | ||||
| 279 | #======================================================================== | ||||
| 280 | |||||
| 281 | #------------------------------------------------------------------------ | ||||
| 282 | # simple package for tying $output variable to STDOUT, used by perl() | ||||
| 283 | #------------------------------------------------------------------------ | ||||
| 284 | |||||
| 285 | package Template::TieString; | ||||
| 286 | |||||
| 287 | sub TIEHANDLE { | ||||
| 288 | my ($class, $textref) = @_; | ||||
| 289 | bless $textref, $class; | ||||
| 290 | } | ||||
| 291 | sub PRINT { | ||||
| 292 | my $self = shift; | ||||
| 293 | $$self .= join('', @_); | ||||
| 294 | } | ||||
| 295 | |||||
| - - | |||||
| 298 | 1; | ||||
| 299 | |||||
| 300 | __END__ | ||||
# spent 78µs within Template::Config::CORE:subst which was called 29 times, avg 3µs/call:
# 29 times (78µs+0s) by Template::Config::load at line 80, avg 3µs/call |