PHP 8.2.31
Preview: encoding.rb Size: 2.83 KB
//proc/thread-self/root/opt/alt/ruby22/lib64/ruby/2.2.0/rdoc/encoding.rb

# coding: US-ASCII

##
# This class is a wrapper around File IO and Encoding that helps RDoc load
# files and convert them to the correct encoding.

module RDoc::Encoding

  ##
  # Reads the contents of +filename+ and handles any encoding directives in
  # the file.
  #
  # The content will be converted to the +encoding+.  If the file cannot be
  # converted a warning will be printed and nil will be returned.
  #
  # If +force_transcode+ is true the document will be transcoded and any
  # unknown character in the target encoding will be replaced with '?'

  def self.read_file filename, encoding, force_transcode = false
    content = open filename, "rb" do |f| f.read end
    content.gsub!("\r\n", "\n") if RUBY_PLATFORM =~ /mswin|mingw/

    utf8 = content.sub!(/\A\xef\xbb\xbf/, '')

    RDoc::Encoding.set_encoding content

    if Object.const_defined? :Encoding then
      begin
        encoding ||= Encoding.default_external
        orig_encoding = content.encoding

        if not orig_encoding.ascii_compatible? then
          content.encode! encoding
        elsif utf8 then
          content.force_encoding Encoding::UTF_8
          content.encode! encoding
        else
          # assume the content is in our output encoding
          content.force_encoding encoding
        end

        unless content.valid_encoding? then
          # revert and try to transcode
          content.force_encoding orig_encoding
          content.encode! encoding
        end

        unless content.valid_encoding? then
          warn "unable to convert #{filename} to #{encoding}, skipping"
          content = nil
        end
      rescue Encoding::InvalidByteSequenceError,
             Encoding::UndefinedConversionError => e
        if force_transcode then
          content.force_encoding orig_encoding
          content.encode!(encoding,
                          :invalid => :replace, :undef => :replace,
                          :replace => '?')
          return content
        else
          warn "unable to convert #{e.message} for #{filename}, skipping"
          return nil
        end
      end
    end

    content
  rescue ArgumentError => e
    raise unless e.message =~ /unknown encoding name - (.*)/
    warn "unknown encoding name \"#{$1}\" for #{filename}, skipping"
    nil
  rescue Errno::EISDIR, Errno::ENOENT
    nil
  end

  ##
  # Sets the encoding of +string+ based on the magic comment

  def self.set_encoding string
    string =~ /\A(?:#!.*\n)?(.*\n)/

    first_line = $1

    name = case first_line
           when /^<\?xml[^?]*encoding=(["'])(.*?)\1/ then $2
           when /\b(?:en)?coding[=:]\s*([^\s;]+)/i   then $1
           else                                           return
           end

    string.sub! first_line, ''

    return unless Object.const_defined? :Encoding

    enc = Encoding.find name
    string.force_encoding enc if enc
  end

end

Directory Contents

Dirs: 9 × Files: 46

Name Size Perms Modified Actions
context DIR
- drwxr-xr-x 2024-03-03 22:43:18
Edit Download
generator DIR
- drwxr-xr-x 2024-03-03 22:43:18
Edit Download
i18n DIR
- drwxr-xr-x 2024-03-03 22:43:18
Edit Download
markdown DIR
- drwxr-xr-x 2024-03-03 22:43:18
Edit Download
markup DIR
- drwxr-xr-x 2024-03-03 22:43:18
Edit Download
parser DIR
- drwxr-xr-x 2024-03-03 22:43:18
Edit Download
rd DIR
- drwxr-xr-x 2024-03-03 22:43:18
Edit Download
ri DIR
- drwxr-xr-x 2024-03-03 22:43:18
Edit Download
stats DIR
- drwxr-xr-x 2024-03-03 22:43:18
Edit Download
2.09 KB lrw-r--r-- 2012-11-27 04:28:14
Edit Download
142 B lrw-r--r-- 2012-11-27 04:28:14
Edit Download
7.04 KB lrw-r--r-- 2014-09-05 01:41:25
Edit Download
3.73 KB lrw-r--r-- 2013-01-23 01:02:24
Edit Download
19.73 KB lrw-r--r-- 2013-09-18 23:33:36
Edit Download
9.38 KB lrw-r--r-- 2013-09-18 23:33:36
Edit Download
121 B lrw-r--r-- 2012-11-27 04:28:14
Edit Download
5.29 KB lrw-r--r-- 2013-09-18 23:33:36
Edit Download
3.55 KB lrw-r--r-- 2013-12-03 03:18:52
Edit Download
28.76 KB lrw-r--r-- 2014-09-05 01:41:25
Edit Download
5.82 KB lrw-r--r-- 2013-09-18 23:33:36
Edit Download
2.83 KB lrw-r--r-- 2014-09-05 01:41:25
Edit Download
794 B lrw-r--r-- 2011-05-15 11:55:52
Edit Download
370 B lrw-r--r-- 2012-11-27 04:28:14
Edit Download
140 B lrw-r--r-- 2013-09-18 23:33:36
Edit Download
1.77 KB lrw-r--r-- 2014-09-05 01:41:25
Edit Download
114 B lrw-r--r-- 2012-11-27 04:28:14
Edit Download
151 B lrw-r--r-- 2014-09-05 01:41:46
Edit Download
142 B lrw-r--r-- 2013-09-18 23:33:36
Edit Download
2.59 KB lrw-r--r-- 2014-12-07 03:40:58
Edit Download
373.75 KB lrw-r--r-- 2014-12-07 01:22:51
Edit Download
28.24 KB lrw-r--r-- 2014-09-05 01:41:25
Edit Download
99 B lrw-r--r-- 2012-11-27 04:28:14
Edit Download
9.01 KB lrw-r--r-- 2014-09-11 01:03:22
Edit Download
2.72 KB lrw-r--r-- 2013-09-18 23:33:36
Edit Download
2.10 KB lrw-r--r-- 2013-09-18 23:33:36
Edit Download
1.40 KB lrw-r--r-- 2013-09-18 23:33:36
Edit Download
30.89 KB lrw-r--r-- 2014-09-05 01:41:25
Edit Download
8.06 KB lrw-r--r-- 2014-09-05 01:41:25
Edit Download
3.54 KB lrw-r--r-- 2012-11-27 04:28:14
Edit Download
13.52 KB lrw-r--r-- 2014-09-05 01:41:25
Edit Download
935 B lrw-r--r-- 2012-11-27 04:28:14
Edit Download
315 B lrw-r--r-- 2012-11-27 04:28:14
Edit Download
5.26 KB lrw-r--r-- 2014-09-05 01:41:25
Edit Download
27.71 KB lrw-r--r-- 2014-09-11 01:03:22
Edit Download
11.32 KB lrw-r--r-- 2014-09-05 01:41:25
Edit Download
11.84 KB lrw-r--r-- 2013-09-18 23:33:36
Edit Download
378 B lrw-r--r-- 2014-12-07 01:22:37
Edit Download
10.45 KB lrw-r--r-- 2014-12-07 01:22:37
Edit Download
22.37 KB lrw-r--r-- 2013-11-19 00:51:06
Edit Download
7.66 KB lrw-r--r-- 2014-09-05 01:41:25
Edit Download
4.16 KB lrw-r--r-- 2014-12-07 01:22:37
Edit Download
7.81 KB lrw-r--r-- 2015-01-19 02:45:40
Edit Download
2.47 KB lrw-r--r-- 2014-09-11 01:03:22
Edit Download
6.26 KB lrw-r--r-- 2013-09-18 23:33:36
Edit Download
5.41 KB lrw-r--r-- 2013-09-18 23:33:36
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).