summaryrefslogtreecommitdiff
path: root/jni/ruby/lib/rss/rexmlparser.rb
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/lib/rss/rexmlparser.rb
Fresh start
Diffstat (limited to 'jni/ruby/lib/rss/rexmlparser.rb')
-rw-r--r--jni/ruby/lib/rss/rexmlparser.rb49
1 files changed, 49 insertions, 0 deletions
diff --git a/jni/ruby/lib/rss/rexmlparser.rb b/jni/ruby/lib/rss/rexmlparser.rb
new file mode 100644
index 0000000..a5a2a2e
--- /dev/null
+++ b/jni/ruby/lib/rss/rexmlparser.rb
@@ -0,0 +1,49 @@
+require "rexml/document"
+require "rexml/streamlistener"
+
+module RSS
+
+ class REXMLParser < BaseParser
+
+ class << self
+ def listener
+ REXMLListener
+ end
+ end
+
+ private
+ def _parse
+ begin
+ REXML::Document.parse_stream(@rss, @listener)
+ rescue RuntimeError => e
+ raise NotWellFormedError.new{e.message}
+ rescue REXML::ParseException => e
+ context = e.context
+ line = context[0] if context
+ raise NotWellFormedError.new(line){e.message}
+ end
+ end
+
+ end
+
+ class REXMLListener < BaseListener
+
+ include REXML::StreamListener
+ include ListenerMixin
+
+ class << self
+ def raise_for_undefined_entity?
+ false
+ end
+ end
+
+ def xmldecl(version, encoding, standalone)
+ super(version, encoding, standalone == "yes")
+ # Encoding is converted to UTF-8 when REXML parse XML.
+ @encoding = 'UTF-8'
+ end
+
+ alias_method(:cdata, :text)
+ end
+
+end