Module: DomainName::Punycode
- Defined in:
- lib/domain_name/punycode.rb
Defined Under Namespace
Classes: ArgumentError, BufferOverflowError
Constant Summary collapse
- BASE =
36
- TMIN =
1
- TMAX =
26
- SKEW =
38
- DAMP =
700
- INITIAL_BIAS =
72
- INITIAL_N =
0x80
- DELIMITER =
'-'.freeze
- MAXINT =
(1 << 32) - 1
- LOBASE =
BASE - TMIN
- CUTOFF =
LOBASE * TMAX / 2
- RE_NONBASIC =
/[^\x00-\x7f]/
- DECODE_DIGIT =
Returns the numeric value of a basic code point (for use in representing integers) in the range 0 to base-1, or nil if cp is does not represent a value.
{}.tap { |map| # ASCII A..Z map to 0..25 # ASCII a..z map to 0..25 (0..25).each { |i| map[65 + i] = map[97 + i] = i } # ASCII 0..9 map to 26..35 (26..35).each { |i| map[22 + i] = i } }
- ENCODE_DIGIT =
Returns the basic code point whose value (when used for representing integers) is d, which must be in the range 0 to BASE-1. The lowercase form is used unless flag is true, in which case the uppercase form is used. The behavior is undefined if flag is nonzero and digit d has no uppercase form.
proc { |d, flag| (d + 22 + (d < 26 ? 75 : 0) - (flag ? (1 << 5) : 0)).chr # 0..25 map to ASCII a..z or A..Z # 26..35 map to ASCII 0..9 }
- DOT =
'.'.freeze
- PREFIX =
'xn--'.freeze
Class Method Summary collapse
-
.decode(string) ⇒ Object
Decode a
string
encoded in Punycode. -
.decode_hostname(hostname) ⇒ Object
Decode a hostname using IDN/Punycode algorithms.
-
.encode(string) ⇒ Object
Encode a
string
in Punycode. -
.encode_hostname(hostname) ⇒ Object
Encode a hostname using IDN/Punycode algorithms.
Class Method Details
.decode(string) ⇒ Object
Decode a string
encoded in Punycode
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'lib/domain_name/punycode.rb', line 194 def decode(string) # Initialize the state n = INITIAL_N i = 0 bias = INITIAL_BIAS if j = string.rindex(DELIMITER) b = string[0...j] b.match(RE_NONBASIC) and raise ArgumentError, "Illegal character is found in basic part: #{string.inspect}" # Handle the basic code points output = b.unpack('U*') u = string[(j + 1)..-1] else output = [] u = string end # Main decoding loop: Start just after the last delimiter if any # basic code points were copied; start at the beginning # otherwise. input = u.unpack('C*') input_length = input.length h = 0 out = output.length while h < input_length # Decode a generalized variable-length integer into delta, # which gets added to i. The overflow checking is easier # if we increase i as we go, then subtract off its starting # value at the end to obtain delta. oldi = i w = 1 k = BASE loop { digit = DECODE_DIGIT[input[h]] or raise ArgumentError, "Illegal character is found in non-basic part: #{string.inspect}" h += 1 i += digit * w raise BufferOverflowError if i > MAXINT t = k <= bias ? TMIN : k - bias >= TMAX ? TMAX : k - bias break if digit < t w *= BASE - t raise BufferOverflowError if w > MAXINT k += BASE h < input_length or raise ArgumentError, "Malformed input given: #{string.inspect}" } # Adapt the bias delta = oldi == 0 ? i / DAMP : (i - oldi) >> 1 delta += delta / (out + 1) bias = 0 while delta > CUTOFF delta /= LOBASE bias += BASE end bias += (LOBASE + 1) * delta / (delta + SKEW) # i was supposed to wrap around from out+1 to 0, incrementing # n each time, so we'll fix that now: q, i = i.divmod(out + 1) n += q raise BufferOverflowError if n > MAXINT # Insert n at position i of the output: output[i, 0] = n out += 1 i += 1 end output.pack('U*') end |
.decode_hostname(hostname) ⇒ Object
Decode a hostname using IDN/Punycode algorithms
276 277 278 279 280 |
# File 'lib/domain_name/punycode.rb', line 276 def decode_hostname(hostname) hostname.gsub(/(\A|#{Regexp.quote(DOT)})#{Regexp.quote(PREFIX)}([^#{Regexp.quote(DOT)}]*)/o) { $1 << decode($2) } end |
.encode(string) ⇒ Object
Encode a string
in Punycode
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'lib/domain_name/punycode.rb', line 101 def encode(string) input = string.unpack('U*') output = '' # Initialize the state n = INITIAL_N delta = 0 bias = INITIAL_BIAS # Handle the basic code points input.each { |cp| output << cp.chr if cp < 0x80 } h = b = output.length # h is the number of code points that have been handled, b is the # number of basic code points, and out is the number of characters # that have been output. output << DELIMITER if b > 0 # Main encoding loop while h < input.length # All non-basic code points < n have been handled already. Find # the next larger one m = MAXINT input.each { |cp| m = cp if (n...m) === cp } # Increase delta enough to advance the decoder's <n,i> state to # <m,0>, but guard against overflow delta += (m - n) * (h + 1) raise BufferOverflowError if delta > MAXINT n = m input.each { |cp| # AMC-ACE-Z can use this simplified version instead if cp < n delta += 1 raise BufferOverflowError if delta > MAXINT elsif cp == n # Represent delta as a generalized variable-length integer q = delta k = BASE loop { t = k <= bias ? TMIN : k - bias >= TMAX ? TMAX : k - bias break if q < t q, r = (q - t).divmod(BASE - t) output << ENCODE_DIGIT[t + r, false] k += BASE } output << ENCODE_DIGIT[q, false] # Adapt the bias delta = h == b ? delta / DAMP : delta >> 1 delta += delta / (h + 1) bias = 0 while delta > CUTOFF delta /= LOBASE bias += BASE end bias += (LOBASE + 1) * delta / (delta + SKEW) delta = 0 h += 1 end } delta += 1 n += 1 end output end |
.encode_hostname(hostname) ⇒ Object
Encode a hostname using IDN/Punycode algorithms
181 182 183 184 185 186 187 188 189 190 191 |
# File 'lib/domain_name/punycode.rb', line 181 def encode_hostname(hostname) hostname.match(RE_NONBASIC) or return hostname hostname.split(DOT).map { |name| if name.match(RE_NONBASIC) PREFIX + encode(name) else name end }.join(DOT) end |