Module: XMLRPC::XMLParser::StreamParserMixin
- Included in:
- LibXMLStreamParser::LibXMLStreamListener, NQXMLStreamParser::XMLRPCParser, REXMLStreamParser::StreamListener, XMLScanStreamParser::XMLScanParser
- Defined in:
- lib/xmlrpc/parser.rb
Instance Attribute Summary collapse
-
#fault ⇒ Object
readonly
Returns the value of attribute fault.
-
#method_name ⇒ Object
readonly
Returns the value of attribute method_name.
-
#params ⇒ Object
readonly
Returns the value of attribute params.
Instance Method Summary collapse
- #character(data) ⇒ Object
- #endElement(name) ⇒ Object
- #initialize(*a) ⇒ Object
- #startElement(name, attrs = []) ⇒ Object
Instance Attribute Details
#fault ⇒ Object (readonly)
Returns the value of attribute fault.
511 512 513 |
# File 'lib/xmlrpc/parser.rb', line 511 def fault @fault end |
#method_name ⇒ Object (readonly)
Returns the value of attribute method_name.
510 511 512 |
# File 'lib/xmlrpc/parser.rb', line 510 def method_name @method_name end |
#params ⇒ Object (readonly)
Returns the value of attribute params.
509 510 511 |
# File 'lib/xmlrpc/parser.rb', line 509 def params @params end |
Instance Method Details
#character(data) ⇒ Object
596 597 598 599 600 601 602 |
# File 'lib/xmlrpc/parser.rb', line 596 def character(data) if @data @data << data else @data = data end end |
#endElement(name) ⇒ Object
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 |
# File 'lib/xmlrpc/parser.rb', line 551 def endElement(name) @data ||= "" case name when "string" @value = @data when "i4", "i8", "int" @value = Convert.int(@data) when "boolean" @value = Convert.boolean(@data) when "double" @value = Convert.double(@data) when "dateTime.iso8601" @value = Convert.dateTime(@data) when "base64" @value = Convert.base64(@data) when "value" @value = @data if @value.nil? @values << (@value == :nil ? nil : @value) when "array" @value = @values @values = @val_stack.pop when "struct" @value = Convert.struct(@struct) @name = @names.pop @struct = @structs.pop when "name" @name[0] = @data when "member" @struct[@name[0]] = @values.pop when "param" @params << @values[0] @values = [] when "fault" @fault = Convert.fault(@values[0]) when "methodName" @method_name = @data end @data = nil end |
#initialize(*a) ⇒ Object
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 |
# File 'lib/xmlrpc/parser.rb', line 513 def initialize(*a) super(*a) @params = [] @values = [] @val_stack = [] @names = [] @name = [] @structs = [] @struct = {} @method_name = nil @fault = nil @data = nil end |
#startElement(name, attrs = []) ⇒ Object
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 |
# File 'lib/xmlrpc/parser.rb', line 531 def startElement(name, attrs=[]) @data = nil case name when "value" @value = nil when "nil" raise "wrong/unknown XML-RPC type 'nil'" unless Config::ENABLE_NIL_PARSER @value = :nil when "array" @val_stack << @values @values = [] when "struct" @names << @name @name = [] @structs << @struct @struct = {} end end |