summaryrefslogtreecommitdiff
path: root/sample/stream.rb
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2006-10-17 10:10:35 +0000
committermurphy <murphy@rubychan.de>2006-10-17 10:10:35 +0000
commit5e0d6d97bf4676ab1c1ca9b06590dd774d263b0d (patch)
treedb433d0109b087ffaa3f25fece64ea62c7481e8e /sample/stream.rb
parent975a2fd6ea64529d993bc1412899fad386ff02ea (diff)
downloadcoderay-5e0d6d97bf4676ab1c1ca9b06590dd774d263b0d.tar.gz
Renamed demo files (trim demo_ prefix).
Diffstat (limited to 'sample/stream.rb')
-rw-r--r--sample/stream.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/sample/stream.rb b/sample/stream.rb
new file mode 100644
index 0000000..7ed8a22
--- /dev/null
+++ b/sample/stream.rb
@@ -0,0 +1,25 @@
+require 'coderay'
+
+code = File.read($0) * 500
+puts "Size of code: %d KB" % [code.size / 1024]
+
+puts "Use your system's memory tracker to see how much RAM this takes."
+print 'Press some key to continue...'; gets
+
+require 'benchmark'
+e = CodeRay.encoder(:div)
+for do_stream in [true, false]
+ puts "Scanning and encoding in %s mode, please wait..." %
+ [do_stream ? 'streaming' : 'normal']
+ output = ''
+ time = Benchmark.realtime do
+ if do_stream
+ output = e.encode_stream(code, :ruby)
+ else
+ output = e.encode_tokens(t = CodeRay.scan(code, :ruby))
+ end
+ end
+ puts 'Finished after %4.2f seconds.' % time
+ puts "Size of output: %d KB" % [output.size / 1024]
+ print 'Press some key to continue...'; gets
+end