summaryrefslogtreecommitdiff
path: root/lib/coderay/encoders
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2011-04-20 19:49:53 +0000
committermurphy <murphy@rubychan.de>2011-04-20 19:49:53 +0000
commitaa17b9942d6ca3d01e3f74513e0903a195c23b22 (patch)
treeeeee0ac8f13199d726f9eeb8f4ad7194773f0d36 /lib/coderay/encoders
parent763948b33279a418b17f09f110e8cab0035a0734 (diff)
downloadcoderay-aa17b9942d6ca3d01e3f74513e0903a195c23b22.tar.gz
Encoder refactoring to fix LOC and Statistic encoders
Diffstat (limited to 'lib/coderay/encoders')
-rw-r--r--lib/coderay/encoders/lines_of_code.rb15
-rw-r--r--lib/coderay/encoders/statistic.rb49
2 files changed, 31 insertions, 33 deletions
diff --git a/lib/coderay/encoders/lines_of_code.rb b/lib/coderay/encoders/lines_of_code.rb
index 4215d23..c49cade 100644
--- a/lib/coderay/encoders/lines_of_code.rb
+++ b/lib/coderay/encoders/lines_of_code.rb
@@ -14,7 +14,7 @@ module Encoders
#
# A Scanner class should define the token kinds that are not code in the
# KINDS_NOT_LOC constant, which defaults to [:comment, :doctype].
- class LinesOfCode < Encoder
+ class LinesOfCode < TokenKindFilter
register_for :lines_of_code
@@ -23,22 +23,19 @@ module Encoders
protected
def setup options
- @out = 0
- end
-
- def compile tokens, options
- if scanner = tokens.scanner
+ if scanner
kinds_not_loc = scanner.class::KINDS_NOT_LOC
else
warn "Tokens have no associated scanner, counting all nonempty lines." if $VERBOSE
kinds_not_loc = CodeRay::Scanners::Scanner::KINDS_NOT_LOC
end
- code = tokens.token_kind_filter :exclude => kinds_not_loc
- @out = code.to_s.scan(NON_EMPTY_LINE).size
+
+ options[:exclude] = kinds_not_loc
+ super options
end
def finish options
- @out
+ @out.to_s.scan(NON_EMPTY_LINE).size
end
end
diff --git a/lib/coderay/encoders/statistic.rb b/lib/coderay/encoders/statistic.rb
index c6ffd7a..4a6a845 100644
--- a/lib/coderay/encoders/statistic.rb
+++ b/lib/coderay/encoders/statistic.rb
@@ -1,29 +1,29 @@
module CodeRay
module Encoders
-
+
# Makes a statistic for the given tokens.
#
# Alias: +stats+
class Statistic < Encoder
-
+
register_for :stats, :statistic
-
+
attr_reader :type_stats, :real_token_count # :nodoc:
-
+
TypeStats = Struct.new :count, :size # :nodoc:
-
+
protected
-
+
def setup options
@type_stats = Hash.new { |h, k| h[k] = TypeStats.new 0, 0 }
@real_token_count = 0
end
-
+
def generate tokens, options
@tokens = tokens
super
end
-
+
STATS = <<-STATS # :nodoc:
Code Statistics
@@ -36,12 +36,12 @@ Token Types (%d):
type count ratio size (average)
-------------------------------------------------------------
%s
- STATS
-# space 12007 33.81 % 1.7
+ STATS
+
TOKEN_TYPES_ROW = <<-TKR # :nodoc:
%-20s %8d %6.2f %% %5.1f
- TKR
-
+ TKR
+
def finish options
all = @type_stats['TOTAL']
all_count, all_size = all.count, all.size
@@ -57,7 +57,7 @@ Token Types (%d):
types_stats
]
end
-
+
public
def text_token text, kind
@@ -67,30 +67,31 @@ Token Types (%d):
@type_stats['TOTAL'].size += text.size
@type_stats['TOTAL'].count += 1
end
-
+
# TODO Hierarchy handling
def begin_group kind
- block_token 'begin_group'
+ block_token ':begin_group', kind
end
-
+
def end_group kind
- block_token 'end_group'
+ block_token ':end_group', kind
end
-
+
def begin_line kind
- block_token 'begin_line'
+ block_token ':begin_line', kind
end
-
+
def end_line kind
- block_token 'end_line'
+ block_token ':end_line', kind
end
- def block_token action
+ def block_token action, kind
@type_stats['TOTAL'].count += 1
@type_stats[action].count += 1
+ @type_stats[kind].count += 1
end
-
+
end
-
+
end
end