| File | C4/Languages.pm | Statements Executed | 10583 | Total Time | 0.0525660000000001 seconds |
| Calls | Inclusive Time | Subroutine | |
|---|---|---|---|
| 1 | 0.08613 | C4::Languages:: | getTranslatedLanguages |
| 1 | 0.07211 | C4::Languages:: | _build_languages_arrayref |
| 95 | 0.04163 | C4::Languages:: | language_get_description |
| 383 | 0.02710 | C4::Languages:: | regex_lang_subtags |
| 1 | 0.01317 | C4::Languages:: | getAllLanguages |
| 1 | 0.00028 | C4::Languages:: | _get_language_dirs |
| 0 | 0 | C4::Languages:: | BEGIN |
| 0 | 0 | C4::Languages:: | _get_themes |
| 0 | 0 | C4::Languages:: | accept_language |
| 0 | 0 | C4::Languages:: | getFrameworkLanguages |
| 0 | 0 | C4::Languages:: | get_bidi |
| Line | Stmts. | Exclusive Time | Avg. | Code |
|---|---|---|---|---|
| 1 | package C4::Languages; | |||
| 2 | ||||
| 3 | # Copyright 2006 (C) LibLime | |||
| 4 | # Joshua Ferraro <jmf@liblime.com> | |||
| 5 | # | |||
| 6 | # This file is part of Koha. | |||
| 7 | # | |||
| 8 | # Koha is free software; you can redistribute it and/or modify it under the | |||
| 9 | # terms of the GNU General Public License as published by the Free Software | |||
| 10 | # Foundation; either version 2 of the License, or (at your option) any later | |||
| 11 | # version. | |||
| 12 | # | |||
| 13 | # Koha is distributed in the hope that it will be useful, but WITHOUT ANY | |||
| 14 | # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR | |||
| 15 | # A PARTICULAR PURPOSE. See the GNU General Public License for more details. | |||
| 16 | # | |||
| 17 | # You should have received a copy of the GNU General Public License along with | |||
| 18 | # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, | |||
| 19 | # Suite 330, Boston, MA 02111-1307 USA | |||
| 20 | ||||
| 21 | ||||
| 22 | use strict; | |||
| 23 | #use warnings; #FIXME: turn off warnings before release | |||
| 24 | use Carp; | |||
| 25 | use C4::Context; | |||
| 26 | use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $DEBUG); | |||
| 27 | ||||
| 28 | BEGIN { | |||
| 29 | $VERSION = 3.00; | |||
| 30 | require Exporter; | |||
| 31 | @ISA = qw(Exporter); | |||
| 32 | @EXPORT = qw( | |||
| 33 | &getFrameworkLanguages | |||
| 34 | &getTranslatedLanguages | |||
| 35 | &getAllLanguages | |||
| 36 | ); | |||
| 37 | @EXPORT_OK = qw(getFrameworkLanguages getTranslatedLanguages getAllLanguages get_bidi regex_lang_subtags language_get_description accept_language); | |||
| 38 | $DEBUG = 0; | |||
| 39 | } | |||
| 40 | ||||
| 41 | =head1 NAME | |||
| 42 | ||||
| 43 | C4::Languages - Perl Module containing language list functions for Koha | |||
| 44 | ||||
| 45 | =head1 SYNOPSIS | |||
| 46 | ||||
| 47 | use C4::Languages; | |||
| 48 | ||||
| 49 | =head1 DESCRIPTION | |||
| 50 | ||||
| 51 | =head1 FUNCTIONS | |||
| 52 | ||||
| 53 | =head2 getFrameworkLanguages | |||
| 54 | ||||
| 55 | Returns a reference to an array of hashes: | |||
| 56 | ||||
| 57 | my $languages = getFrameworkLanguages(); | |||
| 58 | for my $language(@$languages) { | |||
| 59 | print "$language->{language_code}\n"; # language code in iso 639-2 | |||
| 60 | print "$language->{language_name}\n"; # language name in native script | |||
| 61 | print "$language->{language_locale_name}\n"; # language name in current locale | |||
| 62 | } | |||
| 63 | ||||
| 64 | =cut | |||
| 65 | ||||
| 66 | sub getFrameworkLanguages { | |||
| 67 | # get a hash with all language codes, names, and locale names | |||
| 68 | my $all_languages = getAllLanguages(); | |||
| 69 | my @languages; | |||
| 70 | ||||
| 71 | # find the available directory names | |||
| 72 | my $dir=C4::Context->config('intranetdir')."/installer/data/"; | |||
| 73 | opendir (MYDIR,$dir); | |||
| 74 | my @listdir= grep { !/^\.|CVS/ && -d "$dir/$_"} readdir(MYDIR); | |||
| 75 | closedir MYDIR; | |||
| 76 | ||||
| 77 | # pull out all data for the dir names that exist | |||
| 78 | for my $dirname (@listdir) { | |||
| 79 | for my $language_set (@$all_languages) { | |||
| 80 | ||||
| 81 | if ($dirname eq $language_set->{language_code}) { | |||
| 82 | push @languages, { | |||
| 83 | 'language_code'=>$dirname, | |||
| 84 | 'language_description'=>$language_set->{language_description}, | |||
| 85 | 'native_descrition'=>$language_set->{language_native_description} } | |||
| 86 | } | |||
| 87 | } | |||
| 88 | } | |||
| 89 | return \@languages; | |||
| 90 | } | |||
| 91 | ||||
| 92 | =head2 getTranslatedLanguages | |||
| 93 | ||||
| 94 | Returns a reference to an array of hashes: | |||
| 95 | ||||
| 96 | my $languages = getTranslatedLanguages(); | |||
| 97 | print "Available translated languages:\n"; | |||
| 98 | for my $language(@$trlanguages) { | |||
| 99 | print "$language->{language_code}\n"; # language code in iso 639-2 | |||
| 100 | print "$language->{language_name}\n"; # language name in native script | |||
| 101 | print "$language->{language_locale_name}\n"; # language name in current locale | |||
| 102 | } | |||
| 103 | ||||
| 104 | =cut | |||
| 105 | ||||
| 106 | # spent 0.08613s within C4::Languages::getTranslatedLanguages which was called:
# 1 times (0.08613s) by C4::Output::gettemplate at line 117 of C4/Output.pm sub getTranslatedLanguages { | |||
| 107 | 1 | 3e-06 | 3e-06 | my ($interface, $theme, $current_language, $which) = @_; |
| 108 | 1 | 0 | 0 | my $htdocs; |
| 109 | 1 | 0.00001 | 0.00001 | my $all_languages = getAllLanguages(); # spent 0.01317s making 1 calls to C4::Languages::getAllLanguages |
| 110 | 1 | 0 | 0 | my @languages; |
| 111 | 1 | 1e-06 | 1e-06 | my $lang; |
| 112 | 1 | 0 | 0 | my @enabled_languages; |
| 113 | ||||
| 114 | 1 | 2e-06 | 2e-06 | if ($interface && $interface eq 'opac' ) { |
| 115 | 1 | 0.00003 | 0.00003 | @enabled_languages = split ",", C4::Context->preference('opaclanguages'); # spent 0.00036s making 1 calls to C4::Context::preference |
| 116 | 1 | 9e-06 | 9e-06 | $htdocs = C4::Context->config('opachtdocs'); # spent 0.00002s making 1 calls to C4::Context::config |
| 117 | 1 | 0.00002 | 0.00002 | if ( $theme and -d "$htdocs/$theme" ) { |
| 118 | 1 | 0.00009 | 0.00009 | (@languages) = _get_language_dirs($htdocs,$theme); # spent 0.00028s making 1 calls to C4::Languages::_get_language_dirs |
| 119 | 1 | 0.00004 | 0.00004 | return _build_languages_arrayref($all_languages,\@languages,$current_language,\@enabled_languages); # spent 0.07211s making 1 calls to C4::Languages::_build_languages_arrayref |
| 120 | } | |||
| 121 | else { | |||
| 122 | for my $theme ( _get_themes('opac') ) { | |||
| 123 | push @languages, _get_language_dirs($htdocs,$theme); | |||
| 124 | } | |||
| 125 | return _build_languages_arrayref($all_languages,\@languages,$current_language,\@enabled_languages); | |||
| 126 | } | |||
| 127 | } | |||
| 128 | elsif ($interface && $interface eq 'intranet' ) { | |||
| 129 | @enabled_languages = split ",", C4::Context->preference('language'); | |||
| 130 | $htdocs = C4::Context->config('intrahtdocs'); | |||
| 131 | if ( $theme and -d "$htdocs/$theme" ) { | |||
| 132 | @languages = _get_language_dirs($htdocs,$theme); | |||
| 133 | return _build_languages_arrayref($all_languages,\@languages,$current_language,\@enabled_languages); | |||
| 134 | } | |||
| 135 | else { | |||
| 136 | foreach my $theme ( _get_themes('intranet') ) { | |||
| 137 | push @languages, _get_language_dirs($htdocs,$theme); | |||
| 138 | } | |||
| 139 | return _build_languages_arrayref($all_languages,\@languages,$current_language,\@enabled_languages); | |||
| 140 | } | |||
| 141 | } | |||
| 142 | else { | |||
| 143 | @enabled_languages = split ",", C4::Context->preference('opaclanguages'); | |||
| 144 | my $htdocs = C4::Context->config('intrahtdocs'); | |||
| 145 | foreach my $theme ( _get_themes('intranet') ) { | |||
| 146 | push @languages, _get_language_dirs($htdocs,$theme); | |||
| 147 | } | |||
| 148 | $htdocs = C4::Context->config('opachtdocs'); | |||
| 149 | foreach my $theme ( _get_themes('opac') ) { | |||
| 150 | push @languages, _get_language_dirs($htdocs,$theme); | |||
| 151 | } | |||
| 152 | my %seen; | |||
| 153 | $seen{$_}++ for @languages; | |||
| 154 | @languages = keys %seen; | |||
| 155 | return _build_languages_arrayref($all_languages,\@languages,$current_language,\@enabled_languages); | |||
| 156 | } | |||
| 157 | } | |||
| 158 | ||||
| 159 | =head2 getAllLanguages | |||
| 160 | ||||
| 161 | Returns a reference to an array of hashes: | |||
| 162 | ||||
| 163 | my $alllanguages = getAllLanguages(); | |||
| 164 | print "Available translated languages:\n"; | |||
| 165 | for my $language(@$alllanguages) { | |||
| 166 | print "$language->{language_code}\n"; | |||
| 167 | print "$language->{language_name}\n"; | |||
| 168 | print "$language->{language_locale_name}\n"; | |||
| 169 | } | |||
| 170 | ||||
| 171 | =cut | |||
| 172 | ||||
| 173 | # spent 0.01317s within C4::Languages::getAllLanguages which was called:
# 1 times (0.01317s) by C4::Languages::getTranslatedLanguages at line 109 of C4/Languages.pm sub getAllLanguages { | |||
| 174 | 1 | 0 | 0 | my @languages_loop; |
| 175 | 1 | 6e-06 | 6e-06 | my $dbh=C4::Context->dbh; # spent 0.00016s making 1 calls to C4::Context::dbh |
| 176 | 1 | 1e-06 | 1e-06 | my $current_language = shift || 'en'; |
| 177 | 1 | 8e-06 | 8e-06 | my $sth = $dbh->prepare('SELECT * FROM language_subtag_registry WHERE type=\'language\''); # spent 0.00010s making 1 calls to DBI::db::prepare |
| 178 | 1 | 0.00006 | 0.00006 | $sth->execute(); # spent 0.00006s making 1 calls to DBI::st::execute |
| 179 | 1 | 0.00008 | 0.00008 | while (my $language_subtag_registry = $sth->fetchrow_hashref) { # spent 0.00008s making 1 calls to DBI::st::fetchrow_hashref
# spent 0.00003s making 1 calls to DBI::common::FETCH
# spent 0.00001s making 1 calls to DBI::st::fetch |
| 180 | ||||
| 181 | # pull out all the script descriptions for each language | |||
| 182 | 30 | 0.00021 | 7e-06 | my $sth2= $dbh->prepare("SELECT * FROM language_descriptions LEFT JOIN language_rfc4646_to_iso639 on language_rfc4646_to_iso639.rfc4646_subtag = language_descriptions.subtag WHERE type='language' AND subtag =? AND language_descriptions.lang = ?"); # spent 0.00171s making 30 calls to DBI::db::prepare, avg 0.00006s/call |
| 183 | 30 | 0.00185 | 0.00006 | $sth2->execute($language_subtag_registry->{subtag},$current_language); # spent 0.00179s making 30 calls to DBI::st::execute, avg 0.00006s/call |
| 184 | ||||
| 185 | 30 | 0.00022 | 7e-06 | my $sth3 = $dbh->prepare("SELECT description FROM language_descriptions WHERE type='language' AND subtag=? AND lang=?"); # spent 0.00169s making 30 calls to DBI::db::prepare, avg 0.00006s/call |
| 186 | ||||
| 187 | # add the correct description info | |||
| 188 | 30 | 0.00152 | 0.00005 | while (my $language_descriptions = $sth2->fetchrow_hashref) { # spent 0.00144s making 30 calls to DBI::st::fetchrow_hashref, avg 0.00005s/call
# spent 0.00080s making 30 calls to DBI::common::FETCH, avg 0.00003s/call
# spent 0.00026s making 30 calls to DBI::st::fetch, avg 9e-06s/call |
| 189 | 30 | 0.00173 | 0.00006 | $sth3->execute($language_subtag_registry->{subtag},$language_subtag_registry->{subtag}); # spent 0.00167s making 30 calls to DBI::st::execute, avg 0.00006s/call |
| 190 | 30 | 0.00002 | 5e-07 | my $native_description; |
| 191 | 30 | 0.00087 | 0.00003 | while (my $description = $sth3->fetchrow_hashref) { # spent 0.00078s making 30 calls to DBI::st::fetchrow_hashref, avg 0.00003s/call
# spent 0.00022s making 30 calls to DBI::common::FETCH, avg 7e-06s/call
# spent 0.00021s making 30 calls to DBI::st::fetch, avg 7e-06s/call |
| 192 | 30 | 0.00073 | 0.00002 | $native_description = $description->{description}; # spent 0.00064s making 30 calls to DBI::st::fetchrow_hashref, avg 0.00002s/call
# spent 0.00021s making 30 calls to DBI::st::fetch, avg 7e-06s/call
# spent 0.00018s making 30 calls to DBI::common::FETCH, avg 6e-06s/call |
| 193 | } | |||
| 194 | ||||
| 195 | # fill in the ISO6329 code | |||
| 196 | 30 | 0.00004 | 1e-06 | $language_subtag_registry->{iso639_2_code} = $language_descriptions->{iso639_2_code}; |
| 197 | # fill in the native description of the language, as well as the current language's translation of that if it exists | |||
| 198 | 30 | 0.00070 | 0.00002 | if ($native_description) { # spent 0.00060s making 30 calls to DBI::st::fetchrow_hashref, avg 0.00002s/call
# spent 0.00019s making 30 calls to DBI::st::fetch, avg 6e-06s/call
# spent 0.00017s making 30 calls to DBI::common::FETCH, avg 6e-06s/call |
| 199 | 30 | 0.00002 | 7e-07 | $language_subtag_registry->{language_description} = $native_description; |
| 200 | 30 | 0.00006 | 2e-06 | $language_subtag_registry->{language_description}.=" ($language_descriptions->{description})" if $language_descriptions->{description}; |
| 201 | } | |||
| 202 | else { | |||
| 203 | $language_subtag_registry->{language_description} = $language_descriptions->{description}; | |||
| 204 | } | |||
| 205 | } | |||
| 206 | 30 | 0.00124 | 0.00004 | push @languages_loop, $language_subtag_registry; # spent 0.00066s making 30 calls to DBI::st::fetchrow_hashref, avg 0.00002s/call
# spent 0.00019s making 30 calls to DBI::st::fetch, avg 6e-06s/call
# spent 0.00017s making 30 calls to DBI::common::FETCH, avg 6e-06s/call |
| 207 | } | |||
| 208 | 1 | 0.00001 | 0.00001 | return \@languages_loop; |
| 209 | } | |||
| 210 | ||||
| 211 | =head2 _get_themes | |||
| 212 | ||||
| 213 | Internal function, returns an array of all available themes. | |||
| 214 | ||||
| 215 | (@themes) = &_get_themes('opac'); | |||
| 216 | (@themes) = &_get_themes('intranet'); | |||
| 217 | ||||
| 218 | =cut | |||
| 219 | ||||
| 220 | sub _get_themes { | |||
| 221 | my $interface = shift; | |||
| 222 | my $htdocs; | |||
| 223 | my @themes; | |||
| 224 | if ( $interface eq 'intranet' ) { | |||
| 225 | $htdocs = C4::Context->config('intrahtdocs'); | |||
| 226 | } | |||
| 227 | else { | |||
| 228 | $htdocs = C4::Context->config('opachtdocs'); | |||
| 229 | } | |||
| 230 | opendir D, "$htdocs"; | |||
| 231 | my @dirlist = readdir D; | |||
| 232 | foreach my $directory (@dirlist) { | |||
| 233 | # if there's an en dir, it's a valid theme | |||
| 234 | -d "$htdocs/$directory/en" and push @themes, $directory; | |||
| 235 | } | |||
| 236 | return @themes; | |||
| 237 | } | |||
| 238 | ||||
| 239 | =head2 _get_language_dirs | |||
| 240 | ||||
| 241 | Internal function, returns an array of directory names, excluding non-language directories | |||
| 242 | ||||
| 243 | =cut | |||
| 244 | ||||
| 245 | # spent 0.00028s within C4::Languages::_get_language_dirs which was called:
# 1 times (0.00028s) by C4::Languages::getTranslatedLanguages at line 118 of C4/Languages.pm sub _get_language_dirs { | |||
| 246 | 1 | 2e-06 | 2e-06 | my ($htdocs,$theme) = @_; |
| 247 | 1 | 0 | 0 | my @lang_strings; |
| 248 | 1 | 0.00002 | 0.00002 | opendir D, "$htdocs/$theme"; |
| 249 | 1 | 0.00004 | 0.00004 | for my $lang_string ( readdir D ) { |
| 250 | 24 | 0.00001 | 5e-07 | next if $lang_string =~/^\./; |
| 251 | 22 | 6e-06 | 3e-07 | next if $lang_string eq 'all'; |
| 252 | 22 | 7e-06 | 3e-07 | next if $lang_string =~/png$/; |
| 253 | 22 | 9e-06 | 4e-07 | next if $lang_string =~/css$/; |
| 254 | 22 | 5e-06 | 2e-07 | next if $lang_string =~/CVS$/; |
| 255 | 22 | 0.00001 | 6e-07 | next if $lang_string =~/\.txt$/i; #Don't read the readme.txt ! |
| 256 | 22 | 0.00002 | 1e-06 | next if $lang_string =~/img|images|famfam/; |
| 257 | 19 | 0.00002 | 1e-06 | push @lang_strings, $lang_string; |
| 258 | } | |||
| 259 | 1 | 5e-06 | 5e-06 | return (@lang_strings); |
| 260 | } | |||
| 261 | ||||
| 262 | =head2 _build_languages_arrayref | |||
| 263 | ||||
| 264 | Internal function for building the ref to array of hashes | |||
| 265 | ||||
| 266 | FIXME: this could be rewritten and simplified using map | |||
| 267 | ||||
| 268 | =cut | |||
| 269 | ||||
| 270 | # spent 0.07211s within C4::Languages::_build_languages_arrayref which was called:
# 1 times (0.07211s) by C4::Languages::getTranslatedLanguages at line 119 of C4/Languages.pm sub _build_languages_arrayref { | |||
| 271 | 1 | 2e-06 | 2e-06 | my ($all_languages,$translated_languages,$current_language,$enabled_languages) = @_; |
| 272 | 1 | 4e-06 | 4e-06 | my @translated_languages = @$translated_languages; |
| 273 | 1 | 0 | 0 | my @languages_loop; # the final reference to an array of hashrefs |
| 274 | 1 | 3e-06 | 3e-06 | my @enabled_languages = @$enabled_languages; |
| 275 | # how many languages are enabled, if one, take note, some contexts won't need to display it | |||
| 276 | 1 | 1e-06 | 1e-06 | my $one_language_enabled = 1 unless @enabled_languages > 1; |
| 277 | 1 | 0 | 0 | my %seen_languages; # the language tags we've seen |
| 278 | 1 | 0 | 0 | my %found_languages; |
| 279 | 1 | 0 | 0 | my $language_groups; |
| 280 | 1 | 1e-06 | 1e-06 | my $track_language_groups; |
| 281 | 1 | 8e-06 | 8e-06 | my $current_language_regex = regex_lang_subtags($current_language); # spent 0.00010s making 1 calls to C4::Languages::regex_lang_subtags |
| 282 | # Loop through the translated languages | |||
| 283 | 1 | 2e-06 | 2e-06 | for my $translated_language (@translated_languages) { |
| 284 | # separate the language string into its subtag types | |||
| 285 | 19 | 0.00010 | 5e-06 | my $language_subtags_hashref = regex_lang_subtags($translated_language); # spent 0.00144s making 19 calls to C4::Languages::regex_lang_subtags, avg 0.00008s/call |
| 286 | ||||
| 287 | # is this language string 'enabled'? | |||
| 288 | 19 | 0.00003 | 2e-06 | for my $enabled_language (@enabled_languages) { |
| 289 | #warn "Checking out if $translated_language eq $enabled_language"; | |||
| 290 | 361 | 0.00024 | 7e-07 | $language_subtags_hashref->{'enabled'} = 1 if $translated_language eq $enabled_language; |
| 291 | } | |||
| 292 | ||||
| 293 | # group this language, key by langtag | |||
| 294 | 19 | 1e-05 | 5e-07 | $language_subtags_hashref->{'sublanguage_current'} = 1 if $translated_language eq $current_language; |
| 295 | 19 | 0.00001 | 7e-07 | $language_subtags_hashref->{'rfc4646_subtag'} = $translated_language; |
| 296 | 19 | 0.00013 | 7e-06 | $language_subtags_hashref->{'native_description'} = language_get_description($language_subtags_hashref->{language},$language_subtags_hashref->{language},'language'); # spent 0.00701s making 19 calls to C4::Languages::language_get_description, avg 0.00037s/call |
| 297 | 19 | 0.00012 | 6e-06 | $language_subtags_hashref->{'script_description'} = language_get_description($language_subtags_hashref->{script},$language_subtags_hashref->{'language'},'script'); # spent 0.00873s making 19 calls to C4::Languages::language_get_description, avg 0.00046s/call |
| 298 | 19 | 0.00011 | 6e-06 | $language_subtags_hashref->{'region_description'} = language_get_description($language_subtags_hashref->{region},$language_subtags_hashref->{'language'},'region'); # spent 0.00866s making 19 calls to C4::Languages::language_get_description, avg 0.00046s/call |
| 299 | 19 | 0.00012 | 6e-06 | $language_subtags_hashref->{'variant_description'} = language_get_description($language_subtags_hashref->{variant},$language_subtags_hashref->{'language'},'variant'); # spent 0.00839s making 19 calls to C4::Languages::language_get_description, avg 0.00044s/call |
| 300 | 19 | 0.00003 | 2e-06 | $track_language_groups->{$language_subtags_hashref->{'language'}}++; |
| 301 | 19 | 0.00005 | 3e-06 | push ( @{ $language_groups->{$language_subtags_hashref->{language}} }, $language_subtags_hashref ); |
| 302 | } | |||
| 303 | # $key is a language subtag like 'en' | |||
| 304 | 1 | 4e-06 | 4e-06 | while( my ($key, $value) = each %$language_groups) { |
| 305 | ||||
| 306 | # is this language group enabled? are any of the languages within it enabled? | |||
| 307 | 19 | 1e-06 | 5e-08 | my $enabled; |
| 308 | 19 | 0.00003 | 1e-06 | for my $enabled_language (@enabled_languages) { |
| 309 | 361 | 0.00278 | 8e-06 | my $regex_enabled_language = regex_lang_subtags($enabled_language); # spent 0.02498s making 361 calls to C4::Languages::regex_lang_subtags, avg 0.00007s/call |
| 310 | 361 | 0.00089 | 2e-06 | $enabled = 1 if $key eq $regex_enabled_language->{language}; |
| 311 | } | |||
| 312 | 19 | 0.00030 | 0.00002 | push @languages_loop, { # spent 0.00883s making 19 calls to C4::Languages::language_get_description, avg 0.00046s/call |
| 313 | # this is only use if there is one | |||
| 314 | rfc4646_subtag => @$value[0]->{rfc4646_subtag}, | |||
| 315 | native_description => language_get_description($key,$key,'language'), | |||
| 316 | language => $key, | |||
| 317 | sublanguages_loop => $value, | |||
| 318 | plural => $track_language_groups->{$key} >1 ? 1 : 0, | |||
| 319 | current => $current_language_regex->{language} eq $key ? 1 : 0, | |||
| 320 | group_enabled => $enabled, | |||
| 321 | one_language_enabled => $one_language_enabled, | |||
| 322 | }; | |||
| 323 | } | |||
| 324 | 1 | 0.00002 | 0.00002 | return \@languages_loop; |
| 325 | } | |||
| 326 | ||||
| 327 | # spent 0.04163s within C4::Languages::language_get_description which was called 95 times, avg 0.00044s/call:
# 19 times (0.00701s) by C4::Languages::_build_languages_arrayref at line 296 of C4/Languages.pm, avg 0.00037s/call
# 19 times (0.00883s) by C4::Languages::_build_languages_arrayref at line 312 of C4/Languages.pm, avg 0.00046s/call
# 19 times (0.00866s) by C4::Languages::_build_languages_arrayref at line 298 of C4/Languages.pm, avg 0.00046s/call
# 19 times (0.00839s) by C4::Languages::_build_languages_arrayref at line 299 of C4/Languages.pm, avg 0.00044s/call
# 19 times (0.00873s) by C4::Languages::_build_languages_arrayref at line 297 of C4/Languages.pm, avg 0.00046s/call sub language_get_description { | |||
| 328 | 95 | 0.00009 | 1e-06 | my ($script,$lang,$type) = @_; |
| 329 | 95 | 0.00039 | 4e-06 | my $dbh = C4::Context->dbh; # spent 0.01434s making 95 calls to C4::Context::dbh, avg 0.00015s/call |
| 330 | 95 | 0.00003 | 3e-07 | my $desc; |
| 331 | 95 | 0.00064 | 7e-06 | my $sth = $dbh->prepare("SELECT description FROM language_descriptions WHERE subtag=? AND lang=? AND type=?"); # spent 0.00544s making 95 calls to DBI::db::prepare, avg 0.00006s/call |
| 332 | #warn "QUERY: SELECT description FROM language_descriptions WHERE subtag=$script AND lang=$lang AND type=$type"; | |||
| 333 | 95 | 0.00521 | 0.00005 | $sth->execute($script,$lang,$type); # spent 0.00505s making 95 calls to DBI::st::execute, avg 0.00005s/call |
| 334 | 95 | 0.00284 | 0.00003 | while (my $descriptions = $sth->fetchrow_hashref) { # spent 0.00256s making 95 calls to DBI::st::fetchrow_hashref, avg 0.00003s/call
# spent 0.00072s making 95 calls to DBI::common::FETCH, avg 8e-06s/call
# spent 0.00068s making 95 calls to DBI::st::fetch, avg 7e-06s/call |
| 335 | 29 | 0.00071 | 0.00002 | $desc = $descriptions->{'description'}; # spent 0.00061s making 29 calls to DBI::st::fetchrow_hashref, avg 0.00002s/call
# spent 0.00019s making 29 calls to DBI::st::fetch, avg 7e-06s/call
# spent 0.00017s making 29 calls to DBI::common::FETCH, avg 6e-06s/call |
| 336 | } | |||
| 337 | 95 | 0.00008 | 8e-07 | unless ($desc) { |
| 338 | 66 | 0.00112 | 0.00002 | $sth = $dbh->prepare("SELECT description FROM language_descriptions WHERE subtag=? AND lang=? AND type=?"); # spent 0.00364s making 66 calls to DBI::db::prepare, avg 0.00006s/call |
| 339 | 66 | 0.00373 | 0.00006 | $sth->execute($script,'en',$type); # spent 0.00362s making 66 calls to DBI::st::execute, avg 0.00005s/call |
| 340 | 66 | 0.00173 | 0.00003 | while (my $descriptions = $sth->fetchrow_hashref) { # spent 0.00158s making 66 calls to DBI::st::fetchrow_hashref, avg 0.00002s/call
# spent 0.00048s making 66 calls to DBI::common::FETCH, avg 7e-06s/call
# spent 0.00046s making 66 calls to DBI::st::fetch, avg 7e-06s/call |
| 341 | 4 | 0.00010 | 0.00002 | $desc = $descriptions->{'description'}; # spent 0.00009s making 4 calls to DBI::st::fetchrow_hashref, avg 0.00002s/call
# spent 0.00003s making 4 calls to DBI::st::fetch, avg 7e-06s/call
# spent 0.00003s making 4 calls to DBI::common::FETCH, avg 6e-06s/call |
| 342 | } | |||
| 343 | } | |||
| 344 | 95 | 0.00105 | 0.00001 | return $desc; |
| 345 | } | |||
| 346 | =head2 regex_lang_subtags | |||
| 347 | ||||
| 348 | This internal sub takes a string composed according to RFC 4646 as | |||
| 349 | an input and returns a reference to a hash containing keys and values | |||
| 350 | for ( language, script, region, variant, extension, privateuse ) | |||
| 351 | ||||
| 352 | =cut | |||
| 353 | ||||
| 354 | # spent 0.02710s within C4::Languages::regex_lang_subtags which was called 383 times, avg 0.00007s/call:
# 361 times (0.02498s) by C4::Languages::_build_languages_arrayref at line 309 of C4/Languages.pm, avg 0.00007s/call
# 19 times (0.00144s) by C4::Languages::_build_languages_arrayref at line 285 of C4/Languages.pm, avg 0.00008s/call
# 1 times (0.00035s) by C4::Output::themelanguage at line 138 of C4/Output.pm
# 1 times (0.00023s) by C4::Output::gettemplate at line 113 of C4/Output.pm
# 1 times (0.00010s) by C4::Languages::_build_languages_arrayref at line 281 of C4/Languages.pm sub regex_lang_subtags { | |||
| 355 | 383 | 0.00026 | 7e-07 | my $string = shift; |
| 356 | ||||
| 357 | # Regex for recognizing RFC 4646 well-formed tags | |||
| 358 | # http://www.rfc-editor.org/rfc/rfc4646.txt | |||
| 359 | ||||
| 360 | # regexes based on : http://unicode.org/cldr/data/tools/java/org/unicode/cldr/util/data/langtagRegex.txt | |||
| 361 | # The structure requires no forward references, so it reverses the order. | |||
| 362 | # The uppercase comments are fragments copied from RFC 4646 | |||
| 363 | # | |||
| 364 | # Note: the tool requires that any real "=" or "#" or ";" in the regex be escaped. | |||
| 365 | ||||
| 366 | 383 | 0.00065 | 2e-06 | my $alpha = qr/[a-zA-Z]/ ; # ALPHA |
| 367 | 383 | 0.00031 | 8e-07 | my $digit = qr/[0-9]/ ; # DIGIT |
| 368 | 383 | 0.00028 | 7e-07 | my $alphanum = qr/[a-zA-Z0-9]/ ; # ALPHA / DIGIT |
| 369 | 383 | 0.00027 | 7e-07 | my $x = qr/[xX]/ ; # private use singleton |
| 370 | 383 | 0.00025 | 7e-07 | my $singleton = qr/[a-w y-z A-W Y-Z]/ ; # other singleton |
| 371 | 383 | 0.00028 | 7e-07 | my $s = qr/[-]/ ; # separator -- lenient parsers will use [-_] |
| 372 | ||||
| 373 | # Now do the components. The structure is slightly different to allow for capturing the right components. | |||
| 374 | # The notation (?:....) is a non-capturing version of (...): so the "?:" can be deleted if someone doesn't care about capturing. | |||
| 375 | ||||
| 376 | 383 | 0.00080 | 2e-06 | my $extlang = qr{(?: $s $alpha{3} )}x ; # *3("-" 3ALPHA) |
| 377 | 383 | 0.00058 | 2e-06 | my $language = qr{(?: $alpha{2,3} | $alpha{4,8} )}x ; |
| 378 | #my $language = qr{(?: $alpha{2,3}$extlang{0,3} | $alpha{4,8} )}x ; # (2*3ALPHA [ extlang ]) / 4ALPHA / 5*8ALPHA | |||
| 379 | ||||
| 380 | 383 | 0.00043 | 1e-06 | my $script = qr{(?: $alpha{4} )}x ; # 4ALPHA |
| 381 | ||||
| 382 | 383 | 0.00056 | 1e-06 | my $region = qr{(?: $alpha{2} | $digit{3} )}x ; # 2ALPHA / 3DIGIT |
| 383 | ||||
| 384 | 383 | 0.00069 | 2e-06 | my $variantSub = qr{(?: $digit$alphanum{3} | $alphanum{5,8} )}x ; # *("-" variant), 5*8alphanum / (DIGIT 3alphanum) |
| 385 | 383 | 0.00090 | 2e-06 | my $variant = qr{(?: $variantSub (?: $s$variantSub )* )}x ; # *("-" variant), 5*8alphanum / (DIGIT 3alphanum) |
| 386 | ||||
| 387 | 383 | 0.00067 | 2e-06 | my $extensionSub = qr{(?: $singleton (?: $s$alphanum{2,8} )+ )}x ; # singleton 1*("-" (2*8alphanum)) |
| 388 | 383 | 0.00084 | 2e-06 | my $extension = qr{(?: $extensionSub (?: $s$extensionSub )* )}x ; # singleton 1*("-" (2*8alphanum)) |
| 389 | ||||
| 390 | 383 | 0.00066 | 2e-06 | my $privateuse = qr{(?: $x (?: $s$alphanum{1,8} )+ )}x ; # ("x"/"X") 1*("-" (1*8alphanum)) |
| 391 | ||||
| 392 | # Define certain grandfathered codes, since otherwise the regex is pretty useless. | |||
| 393 | # Since these are limited, this is safe even later changes to the registry -- | |||
| 394 | # the only oddity is that it might change the type of the tag, and thus | |||
| 395 | # the results from the capturing groups. | |||
| 396 | # http://www.iana.org/assignments/language-subtag-registry | |||
| 397 | # Note that these have to be compared case insensitively, requiring (?i) below. | |||
| 398 | ||||
| 399 | 383 | 0.00117 | 3e-06 | my $grandfathered = qr{(?: (?i) |
| 400 | en $s GB $s oed | |||
| 401 | | i $s (?: ami | bnn | default | enochian | hak | klingon | lux | mingo | navajo | pwn | tao | tay | tsu ) | |||
| 402 | | sgn $s (?: BE $s fr | BE $s nl | CH $s de) | |||
| 403 | )}x; | |||
| 404 | ||||
| 405 | # For well-formedness, we don't need the ones that would otherwise pass, so they are commented out here | |||
| 406 | ||||
| 407 | # | art $s lojban | |||
| 408 | # | cel $s gaulish | |||
| 409 | # | en $s (?: boont | GB $s oed | scouse ) | |||
| 410 | # | no $s (?: bok | nyn) | |||
| 411 | # | zh $s (?: cmn | cmn $s Hans | cmn $s Hant | gan | guoyu | hakka | min | min $s nan | wuu | xiang | yue) | |||
| 412 | ||||
| 413 | # Here is the final breakdown, with capturing groups for each of these components | |||
| 414 | # The language, variants, extensions, grandfathered, and private-use may have interior '-' | |||
| 415 | ||||
| 416 | #my $root = qr{(?: ($language) (?: $s ($script) )? 40% (?: $s ($region) )? 40% (?: $s ($variant) )? 10% (?: $s ($extension) )? 5% (?: $s ($privateuse) )? 5% ) 90% | ($grandfathered) 5% | ($privateuse) 5% }; | |||
| 417 | ||||
| 418 | 383 | 0.00455 | 0.00001 | $string =~ qr{^ (?:($language)) (?:$s($script))? (?:$s($region))? (?:$s($variant))? (?:$s($extension))? (?:$s($privateuse))? $}xi; # |($grandfathered) | ($privateuse) $}xi; |
| 419 | 383 | 0.00196 | 5e-06 | my %subtag = ( |
| 420 | 'rfc4646_subtag' => $string, | |||
| 421 | 'language' => $1, | |||
| 422 | 'script' => $2, | |||
| 423 | 'region' => $3, | |||
| 424 | 'variant' => $4, | |||
| 425 | 'extension' => $5, | |||
| 426 | 'privateuse' => $6, | |||
| 427 | ); | |||
| 428 | 383 | 0.00404 | 0.00001 | return \%subtag; |
| 429 | } | |||
| 430 | ||||
| 431 | # Script Direction Resources: | |||
| 432 | # http://www.w3.org/International/questions/qa-scripts | |||
| 433 | sub get_bidi { | |||
| 434 | my ($language_script)= @_; | |||
| 435 | my $dbh = C4::Context->dbh; | |||
| 436 | my $bidi; | |||
| 437 | my $sth = $dbh->prepare('SELECT bidi FROM language_script_bidi WHERE rfc4646_subtag=?'); | |||
| 438 | $sth->execute($language_script); | |||
| 439 | while (my $result = $sth->fetchrow_hashref) { | |||
| 440 | $bidi = $result->{'bidi'}; | |||
| 441 | } | |||
| 442 | return $bidi; | |||
| 443 | }; | |||
| 444 | ||||
| 445 | sub accept_language { | |||
| 446 | # referenced http://search.cpan.org/src/CGILMORE/I18N-AcceptLanguage-1.04/lib/I18N/AcceptLanguage.pm | |||
| 447 | # FIXME: since this is only used in Output.pm as of Jan 8 2008, maybe it should be IN Output.pm | |||
| 448 | my ($clientPreferences,$supportedLanguages) = @_; | |||
| 449 | my @languages = (); | |||
| 450 | if ($clientPreferences) { | |||
| 451 | # There should be no whitespace anways, but a cleanliness/sanity check | |||
| 452 | $clientPreferences =~ s/\s//g; | |||
| 453 | ||||
| 454 | # Prepare the list of client-acceptable languages | |||
| 455 | foreach my $tag (split(/,/, $clientPreferences)) { | |||
| 456 | my ($language, $quality) = split(/\;/, $tag); | |||
| 457 | $quality =~ s/^q=//i if $quality; | |||
| 458 | $quality = 1 unless $quality; | |||
| 459 | next if $quality <= 0; | |||
| 460 | # We want to force the wildcard to be last | |||
| 461 | $quality = 0 if ($language eq '*'); | |||
| 462 | # Pushing lowercase language here saves processing later | |||
| 463 | push(@languages, { quality => $quality, | |||
| 464 | language => $language, | |||
| 465 | lclanguage => lc($language) }); | |||
| 466 | } | |||
| 467 | } else { | |||
| 468 | carp "accept_language(x,y) called with no clientPreferences (x)."; | |||
| 469 | } | |||
| 470 | # Prepare the list of server-supported languages | |||
| 471 | my %supportedLanguages = (); | |||
| 472 | my %secondaryLanguages = (); | |||
| 473 | foreach my $language (@$supportedLanguages) { | |||
| 474 | # warn "Language supported: " . $language->{language_code}; | |||
| 475 | $supportedLanguages{lc($language->{language_code})} = $language->{language_code}; | |||
| 476 | if ($language->{language_code} =~ /^([^-]+)-?/) { | |||
| 477 | $secondaryLanguages{lc($1)} = $language->{language_code}; | |||
| 478 | } | |||
| 479 | } | |||
| 480 | ||||
| 481 | # Reverse sort the list, making best quality at the front of the array | |||
| 482 | @languages = sort { $b->{quality} <=> $a->{quality} } @languages; | |||
| 483 | my $secondaryMatch = ''; | |||
| 484 | foreach my $tag (@languages) { | |||
| 485 | if (exists($supportedLanguages{$tag->{lclanguage}})) { | |||
| 486 | # Client en-us eq server en-us | |||
| 487 | return $supportedLanguages{$tag->{language}} if exists($supportedLanguages{$tag->{language}}); | |||
| 488 | return $supportedLanguages{$tag->{lclanguage}}; | |||
| 489 | } elsif (exists($secondaryLanguages{$tag->{lclanguage}})) { | |||
| 490 | # Client en eq server en-us | |||
| 491 | return $secondaryLanguages{$tag->{language}} if exists($secondaryLanguages{$tag->{language}}); | |||
| 492 | return $supportedLanguages{$tag->{lclanguage}}; | |||
| 493 | } elsif ($tag->{lclanguage} =~ /^([^-]+)-/ && exists($secondaryLanguages{$1}) && $secondaryMatch eq '') { | |||
| 494 | # Client en-gb eq server en-us | |||
| 495 | $secondaryMatch = $secondaryLanguages{$1}; | |||
| 496 | } elsif ($tag->{lclanguage} =~ /^([^-]+)-/ && exists($secondaryLanguages{$1}) && $secondaryMatch eq '') { | |||
| 497 | # FIXME: We just checked the exact same conditional! | |||
| 498 | # Client en-us eq server en | |||
| 499 | $secondaryMatch = $supportedLanguages{$1}; | |||
| 500 | } elsif ($tag->{lclanguage} eq '*') { | |||
| 501 | # * matches every language not already specified. | |||
| 502 | # It doesn't care which we pick, so let's pick the default, | |||
| 503 | # if available, then the first in the array. | |||
| 504 | #return $acceptor->defaultLanguage() if $acceptor->defaultLanguage(); | |||
| 505 | return $supportedLanguages->[0]; | |||
| 506 | } | |||
| 507 | } | |||
| 508 | # No primary matches. Secondary? (ie, en-us requested and en supported) | |||
| 509 | return $secondaryMatch if $secondaryMatch; | |||
| 510 | return undef; # else, we got nothing. | |||
| 511 | } | |||
| 512 | 1; | |||
| 513 | ||||
| 514 | __END__ | |||
| 515 | ||||
| 516 | =head1 AUTHOR | |||
| 517 | ||||
| 518 | Joshua Ferraro | |||
| 519 | ||||
| 520 | =cut |