Class: IfConditionAction
- Inherits:
-
Action
- Object
- MacroObject
- Action
- IfConditionAction
- Defined in:
- lib/ruby-macrodroid/actions.rb
Overview
Conditions/Loops
Instance Attribute Summary
Attributes inherited from Action
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(obj = nil) ⇒ IfConditionAction
constructor
A new instance of IfConditionAction.
- #to_s(colour: false, indent: 0) ⇒ Object
Methods inherited from Action
Methods included from ObjectX
#action_to_object, #object_create, #varify
Methods inherited from MacroObject
Constructor Details
#initialize(obj = nil) ⇒ IfConditionAction
Returns a new instance of IfConditionAction.
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 |
# File 'lib/ruby-macrodroid/actions.rb', line 474 def initialize(obj=nil) = { a: true, constraint_list: [] } puts 'obj: ' + obj.inspect if $debug if obj.is_a? Hash then h = obj macro = h[:macro] h2 = .merge(filter(,h).merge(macro: macro)) super(h2) elsif obj.is_a? Array e, macro = obj super() puts 'e.xml: ' + e.xml if $debug puts 'e.text: ' + e.text.to_s.strip if $debug raw_txt = e.text.to_s.strip[/^if [^$]+/i] || e.text('item/description') puts 'raw_txt: ' + raw_txt.inspect if $debug clause = raw_txt[/^If (.*)/i,1] puts 'clause: ' + clause.inspect if $debug conditions = clause.split(/\s+\b(?:AND|OR)\b\s+/i) puts 'conditions: ' + conditions.inspect if $debug cp = ConstraintsNlp.new @constraints = conditions.map do |c| puts 'c: ' + c.inspect if $debug r = cp.find_constraint c puts 'found constraint ' + r.inspect if $debug r[0].new(r[1]) if r end puts '@constraints: ' + @constraints.inspect if $debug # find any nested actions item = e.element('item') if item then ap = ActionsNlp.new obj2 = action_to_object(ap, item, item, macro) puts 'obj2: ' + obj2.inspect if $debug #macro.add obj2 end h = { constraint_list: @constraints.map(&:to_h) } super(h) {} else # get the constraints end @label = 'If ' end |
Instance Method Details
#to_s(colour: false, indent: 0) ⇒ Object
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 |
# File 'lib/ruby-macrodroid/actions.rb', line 545 def to_s(colour: false, indent: 0) h = @h.clone #h.delete :macro @s = 'If ' operator = @h[:is_or_condition] ? 'OR' : 'AND' constraints = @constraints.map \ {|x| ' ' * indent + x.to_summary(colour: colour)}.join(" %s " % operator) out = [] out << "; %s" % @h[:comment] if @h[:comment] s = @s.lines.map {|x| (' ' * indent) + x}.join out << s + constraints out.join("\n") end |