Skip to content

Commit

Permalink
lib/uri/generic.rb: enable frozen_string_literal
Browse files Browse the repository at this point in the history
* lib/uri/generic.rb: enable frozen_string_literal
  (split_userinfo): remove explicit .freeze for string literals
  (check_path): ditto
  (query): ditto
  (fragment): ditto
  (to_s): ditto
  [ruby-core:71910] [Bug #11759]

Patch-by: Colin Kelley <colindkelley@gmail.com>

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52981 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
normal committed Dec 8, 2015
1 parent 0df938d commit f2b9563
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 15 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
@@ -1,3 +1,13 @@
Wed Dec 9 06:26:23 2015 Colin Kelley <colindkelley@gmail.com>

* lib/uri/generic.rb: enable frozen_string_literal
(split_userinfo): remove explicit .freeze for string literals
(check_path): ditto
(query): ditto
(fragment): ditto
(to_s): ditto
[ruby-core:71910] [Bug #11759]

Wed Dec 9 06:25:47 2015 Eric Wong <e@80x24.org>

* test/uri/test_generic.rb (to_s): new test
Expand Down
32 changes: 17 additions & 15 deletions lib/uri/generic.rb
@@ -1,3 +1,5 @@
# frozen_string_literal: true

# = uri/generic.rb
#
# Author:: Akira Yamada <akira@ruby-lang.org>
Expand Down Expand Up @@ -543,7 +545,7 @@ def set_password(v)
# if properly formatted as 'user:password'
def split_userinfo(ui)
return nil, nil unless ui
user, password = ui.split(':'.freeze, 2)
user, password = ui.split(':', 2)

return user, password
end
Expand Down Expand Up @@ -762,13 +764,13 @@ def check_path(v)

# If scheme is ftp, path may be relative.
# See RFC 1738 section 3.2.2, and RFC 2396.
if @scheme && @scheme != "ftp".freeze
if v && v != ''.freeze && parser.regexp[:ABS_PATH] !~ v
if @scheme && @scheme != "ftp"
if v && v != '' && parser.regexp[:ABS_PATH] !~ v
raise InvalidComponentError,
"bad component(expected absolute path component): #{v}"
end
else
if v && v != ''.freeze && parser.regexp[:ABS_PATH] !~ v &&
if v && v != '' && parser.regexp[:ABS_PATH] !~ v &&
parser.regexp[:REL_PATH] !~ v
raise InvalidComponentError,
"bad component(expected relative path component): #{v}"
Expand Down Expand Up @@ -844,9 +846,9 @@ def query=(v)
x = v.to_str
v = x.dup if x.equal? v
v.encode!(Encoding::UTF_8) rescue nil
v.delete!("\t\r\n".freeze)
v.delete!("\t\r\n")
v.force_encoding(Encoding::ASCII_8BIT)
v.gsub!(/(?!%\h\h|[!$-&(-;=?-_a-~])./n.freeze){'%%%02X'.freeze % $&.ord}
v.gsub!(/(?!%\h\h|[!$-&(-;=?-_a-~])./n.freeze){'%%%02X' % $&.ord}
v.force_encoding(Encoding::US_ASCII)
@query = v
end
Expand Down Expand Up @@ -934,9 +936,9 @@ def fragment=(v)
x = v.to_str
v = x.dup if x.equal? v
v.encode!(Encoding::UTF_8) rescue nil
v.delete!("\t\r\n".freeze)
v.delete!("\t\r\n")
v.force_encoding(Encoding::ASCII_8BIT)
v.gsub!(/(?!%\h\h|[!-~])./n){'%%%02X'.freeze % $&.ord}
v.gsub!(/(?!%\h\h|[!-~])./n){'%%%02X' % $&.ord}
v.force_encoding(Encoding::US_ASCII)
@fragment = v
end
Expand Down Expand Up @@ -1339,37 +1341,37 @@ def normalize!
# Constructs String from URI
#
def to_s
str = ''
str = String.new
if @scheme
str << @scheme
str << ':'.freeze
str << ':'
end

if @opaque
str << @opaque
else
if @host
str << '//'.freeze
str << '//'
end
if self.userinfo
str << self.userinfo
str << '@'.freeze
str << '@'
end
if @host
str << @host
end
if @port && @port != self.default_port
str << ':'.freeze
str << ':'
str << @port.to_s
end
str << @path
if @query
str << '?'.freeze
str << '?'
str << @query
end
end
if @fragment
str << '#'.freeze
str << '#'
str << @fragment
end
str
Expand Down

0 comments on commit f2b9563

Please sign in to comment.