view Lib/IMPL/Resources/Format.pm @ 134:44977efed303

Significant performance optimizations Fixed recursion problems due converting objects to JSON Added cache support for the templates Added discovery feature for the web methods
author wizard
date Mon, 21 Jun 2010 02:39:53 +0400
parents 196bf443b5e1
children e6447ad85cb4
line wrap: on
line source

package IMPL::Resources::Format;
use strict;
use warnings;

require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(&FormatMessage);

sub FormatMessage {
    my ($string,$args,$resolver) = @_;
    
    $resolver ||= \&_defaultResolver;
    
    $string =~ s/%(\w+(?:\.\w+)*)%/_getvalue($args,$1,"\[$1\]",$resolver)/ge;
    
    return $string;
}

sub _getvalue {
    my ($obj,$path,$default,$resolver) = @_;
    
    foreach my $chunk (split /\./,$path) {
    	return $default unless $obj;
        if (ref $obj eq 'HASH') {
            $obj = $obj->{$chunk};
        } else {
            $obj = $resolver->($obj,$chunk);
        }
    }
    return $obj;
}

sub _defaultResolver {
	my ($obj,$prop) = @_;
	
	return ( eval { $obj->can($prop) } ? $obj->$prop() : undef );
}

1;