PHP 8.2.31
Preview: encoding.rb Size: 2.74 KB
//proc/thread-self/root/opt/alt/ruby20/lib64/ruby/2.0.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 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: 8 × Files: 44

Name Size Perms Modified Actions
context DIR
- drwxr-xr-x 2024-03-03 22:43:41
Edit Download
generator DIR
- drwxr-xr-x 2024-03-03 22:43:41
Edit Download
markdown DIR
- drwxr-xr-x 2024-03-03 22:43:41
Edit Download
markup DIR
- drwxr-xr-x 2024-03-03 22:43:41
Edit Download
parser DIR
- drwxr-xr-x 2024-03-03 22:43:41
Edit Download
rd DIR
- drwxr-xr-x 2024-03-03 22:43:41
Edit Download
ri DIR
- drwxr-xr-x 2024-03-03 22:43:41
Edit Download
stats DIR
- drwxr-xr-x 2024-03-03 22:43:41
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
5.90 KB lrw-r--r-- 2013-01-23 01:02:24
Edit Download
3.73 KB lrw-r--r-- 2013-01-23 01:02:24
Edit Download
19.15 KB lrw-r--r-- 2013-01-23 01:02:24
Edit Download
7.71 KB lrw-r--r-- 2013-01-23 01:02:24
Edit Download
121 B lrw-r--r-- 2012-11-27 04:28:14
Edit Download
5.39 KB lrw-r--r-- 2012-11-27 08:54:03
Edit Download
3.34 KB lrw-r--r-- 2012-11-27 08:54:03
Edit Download
28.26 KB lrw-r--r-- 2012-12-06 06:20:50
Edit Download
5.81 KB lrw-r--r-- 2013-01-04 06:16:13
Edit Download
2.74 KB lrw-r--r-- 2012-12-18 08:24:57
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
2.53 KB lrw-r--r-- 2012-11-27 04:28:14
Edit Download
1.72 KB lrw-r--r-- 2012-11-27 04:28:14
Edit Download
114 B lrw-r--r-- 2012-11-27 04:28:14
Edit Download
2.61 KB lrw-r--r-- 2012-11-27 04:28:14
Edit Download
2.58 KB lrw-r--r-- 2011-06-29 21:17:31
Edit Download
380.09 KB lrw-r--r-- 2012-12-01 03:58:39
Edit Download
28.31 KB lrw-r--r-- 2012-11-27 04:28:14
Edit Download
99 B lrw-r--r-- 2012-11-27 04:28:14
Edit Download
8.57 KB lrw-r--r-- 2012-11-27 04:28:14
Edit Download
2.06 KB lrw-r--r-- 2012-11-27 04:28:14
Edit Download
1.36 KB lrw-r--r-- 2012-11-27 04:28:14
Edit Download
28.49 KB lrw-r--r-- 2012-12-11 07:44:56
Edit Download
7.83 KB lrw-r--r-- 2013-01-04 06:16:13
Edit Download
3.54 KB lrw-r--r-- 2012-11-27 04:28:14
Edit Download
13.25 KB lrw-r--r-- 2012-12-13 07:58:47
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
4.91 KB lrw-r--r-- 2012-12-14 05:16:56
Edit Download
27.23 KB lrw-r--r-- 2012-12-18 07:31:36
Edit Download
11.21 KB lrw-r--r-- 2012-12-18 07:31:36
Edit Download
10.83 KB lrw-r--r-- 2013-02-05 08:24:20
Edit Download
330 B lrw-r--r-- 2012-11-27 04:28:14
Edit Download
9.78 KB lrw-r--r-- 2012-11-27 04:28:14
Edit Download
22.32 KB lrw-r--r-- 2013-01-25 00:15:08
Edit Download
7.66 KB lrw-r--r-- 2012-11-27 04:28:14
Edit Download
3.46 KB lrw-r--r-- 2012-11-29 23:34:29
Edit Download
7.59 KB lrw-r--r-- 2015-01-30 07:13:13
Edit Download
2.46 KB lrw-r--r-- 2012-11-27 04:28:14
Edit Download
5.70 KB lrw-r--r-- 2013-01-04 06:16:13
Edit Download
5.40 KB lrw-r--r-- 2013-01-23 01:02:24
Edit Download

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