ecFlow's documentation is now on readthedocs!

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

The text examples allow indentation. In python indentation affects the logical meaning of the program.

However we can use python with statement to provide the indentation.

Here is the previous example using the with statement:

#!/usr/bin/env python2.7
import os
import ecflow  

print "Creating suite definition"  
with ecflow.Defs() as defs: 
    
    with defs.add_suite("test") as suite:
        
        suite.add_variable("ECF_INCLUDE", os.getenv("HOME") + "/course")
        suite.add_variable("ECF_HOME",    os.getenv("HOME") + "/course")
        
        with suite.add_family("f1") as f1:
            f1.add_variable("SLEEP", 20)
            f1.add_task("t1").add_meter("progress", 1, 100, 90)
            f1.add_task("t2").add_trigger("t1 eq complete").add_event("a").add_event("b")
            f1.add_task("t3").add_trigger("t2:a")  
            f1.add_task("t4").add_trigger("t2 eq complete").add_complete("t2:b")  
            f1.add_task("t5").add_trigger("t1:progress ge 30")  
            f1.add_task("t6").add_trigger("t1:progress ge 60")  
            f1.add_task("t7").add_trigger("t1:progress ge 90") 
    
        with suite.add_family("f2") as f2:        
            f2.add_variable("SLEEP", 20)
            f2.add_task("t1").add_time( "00:30 23:30 00:30" )
            f2.add_task("t2").add_day( "sunday" )
            f2.add_task("t3").add_date(1, 0, 0).add_time( 12, 0 )
            f2.add_task("t4").add_time( 0, 2, True )
            f2.add_task("t5").add_time( 0, 2 )
            
    print defs

    print "Checking job creation: .ecf -> .job0"   
    print defs.check_job_creation()

    print "Saving definition to file 'test.def'"
    defs.save_as_defs("test.def")
  • No labels