From 57352f86d43f6d3ee30f07d795087e68bf07f521 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 24 Apr 2007 16:58:24 +0000 Subject: Improved performance by relying less on exception raising #8159 [Blaine] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6571 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/lib/active_support/multibyte/chars.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'activesupport/lib/active_support/multibyte') diff --git a/activesupport/lib/active_support/multibyte/chars.rb b/activesupport/lib/active_support/multibyte/chars.rb index 374adc7849..901815092d 100644 --- a/activesupport/lib/active_support/multibyte/chars.rb +++ b/activesupport/lib/active_support/multibyte/chars.rb @@ -43,7 +43,7 @@ module ActiveSupport::Multibyte #:nodoc: # Create a new Chars instance. def initialize(str) - @string = (str.string rescue str) + @string = str.respond_to?(:string) ? str.string : str end # Returns -1, 0 or +1 depending on whether the Chars object is to be sorted before, equal or after the @@ -70,18 +70,18 @@ module ActiveSupport::Multibyte #:nodoc: def method_missing(m, *a, &b) begin # Simulate methods with a ! at the end because we can't touch the enclosed string from the handlers. - if m.to_s =~ /^(.*)\!$/ + if m.to_s =~ /^(.*)\!$/ && handler.respond_to?($1) result = handler.send($1, @string, *a, &b) if result == @string result = nil else @string.replace result end - else + elsif handler.respond_to?(m) result = handler.send(m, @string, *a, &b) + else + result = @string.send(m, *a, &b) end - rescue NoMethodError - result = @string.send(m, *a, &b) rescue Handlers::EncodingError @string.replace handler.tidy_bytes(@string) retry @@ -126,4 +126,4 @@ begin ActiveSupport::Multibyte::Chars.handler = ActiveSupport::Multibyte::Handlers::UTF8HandlerProc rescue LoadError ActiveSupport::Multibyte::Chars.handler = ActiveSupport::Multibyte::Handlers::UTF8Handler -end \ No newline at end of file +end -- cgit v1.2.3