Sha256: 2277041f1b89cbd739a572da00de7c0cd43e2bdd05f12bd1d4984d40703cdafb

Contents?: true

Size: 1.37 KB

Versions: 7

Compression:

Stored size: 1.37 KB

Contents

# Copyright (c) 2007-2020 Minero Aoki, Kenshi Muto
#               2002-2007 Minero Aoki
#
# This program is free software.
# You can distribute or modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of the GNU LGPL, see the file "COPYING".
#
module ReVIEW
  module Book
    class Volume
      def self.count_file(path)
        b = c = l = 0
        File.foreach(path) do |line|
          next if /\A\#@/.match?(line)

          text = line.gsub(/\s+/, '')
          b += text.bytesize
          c += text.size
          l += 1
        end
        new(b, c, l)
      end

      def self.sum(vols)
        vols.inject(new) { |sum, i| sum + i } # rubocop:disable Performance/Sum
      end

      def self.dummy
        new(-1, -1, -1)
      end

      def initialize(bytes = 0, chars = 0, lines = 0)
        @bytes = bytes
        @chars = chars
        @lines = lines
      end

      attr_reader :bytes
      attr_reader :chars
      attr_accessor :lines

      def kbytes
        (@bytes.to_f / 1024).ceil
      end

      def page
        # XXX:unrelibable
        kbytes.to_f.ceil
      end

      def to_s
        "#{kbytes}KB #{@chars}C #{@lines}L #{page}P"
      end

      def +(other)
        Volume.new(@bytes + other.bytes,
                   @chars + other.chars,
                   @lines + other.lines)
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
review-5.10.0 lib/review/book/volume.rb
review-5.9.0 lib/review/book/volume.rb
review-5.8.0 lib/review/book/volume.rb
review-5.7.0 lib/review/book/volume.rb
review-5.6.0 lib/review/book/volume.rb
review-5.5.0 lib/review/book/volume.rb
review-5.4.0 lib/review/book/volume.rb