Class: IfConditionAction

Inherits:
Action show all
Defined in:
lib/ruby-macrodroid/actions.rb

Overview

Conditions/Loops

Instance Attribute Summary

Attributes inherited from Action

#constraints

Attributes inherited from MacroObject

#options, #siguid, #type

Instance Method Summary collapse

Methods inherited from Action

#invoke

Methods included from ObjectX

#action_to_object, #object_create, #varify

Methods inherited from MacroObject

#to_h

Constructor Details

#initialize(obj = nil) ⇒ IfConditionAction

Returns a new instance of IfConditionAction.



391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
# File 'lib/ruby-macrodroid/actions.rb', line 391

def initialize(obj=nil)

  options = {
    a: true,
    constraint_list: []
  }  
  puts 'obj: ' + obj.inspect #if $debug
  
  if obj.is_a? Hash then
    
    h = obj
    macro = h[:macro]
    h2 = options.merge(filter(options,h).merge(macro: macro))
    super(h2)      
    
  elsif obj.is_a? Array
    
    e, macro = obj
    super()
    puts 'e.xml: ' + e.xml
    puts 'e.text: ' + e.text.to_s.strip
    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
    conditions = clause.split(/\s+\b(?:AND|OR)\b\s+/i)
    puts 'conditions: ' + conditions.inspect
    
    cp = ConstraintsNlp.new      
    
    @constraints = conditions.map do |c|
      puts 'c: ' + c.inspect 
      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
      #macro.add obj2
      
    end

    {}
  else
    # get the constraints

  end
  

  

  
  @label = 'If '

end

Instance Method Details

#to_s(colour: false, indent: 0) ⇒ Object



458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
# File 'lib/ruby-macrodroid/actions.rb', line 458

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