127 lines
3.4 KiB
Python
127 lines
3.4 KiB
Python
|
|
import gtk
|
|
import logger
|
|
|
|
class Workflow:
|
|
"""Defines a workflow that contains a set of analysis stages.
|
|
|
|
A Workflow is a set of analysis stages for a certain type of analysis.
|
|
Each stage contains some possible operations to do accomplish that
|
|
task.
|
|
"""
|
|
|
|
name = "Workflow"
|
|
description = "Workflow Description"
|
|
|
|
def __init__(self, app):
|
|
self.stages = []
|
|
self.stages_by_id = {}
|
|
self.app = app
|
|
|
|
def add_stage(self, stage):
|
|
self.stages.append(stage)
|
|
self.stages_by_id[stage.id] = stage
|
|
|
|
def print_tree(self):
|
|
print self.name
|
|
for stage in self.stages:
|
|
print ' %s' % stage.name
|
|
for fun in stage.functions:
|
|
print ' %s' % fun.name
|
|
|
|
def add_project(self,project):
|
|
if project == None:
|
|
logger.log('notice','Proejct is empty')
|
|
logger.log('notice','Project added in : %s' %self.name)
|
|
self.project = project
|
|
|
|
class EmptyWorkflow(Workflow):
|
|
name = 'Empty Workflow'
|
|
|
|
def __init__(self, app):
|
|
Workflow.__init__(self, None)
|
|
|
|
class Stage:
|
|
"""A stage is a part of the data analysis process.
|
|
|
|
Each stage contains a set of functions that can be used to
|
|
accomplish the task. A typical early stage is 'preprocessing', which
|
|
can be done in several ways, each represented by a function.
|
|
"""
|
|
|
|
def __init__(self, id, name):
|
|
self.id = id
|
|
self.name = name
|
|
self.functions = []
|
|
self.functions_by_id = {}
|
|
|
|
def add_function(self, fun):
|
|
self.functions.append(fun)
|
|
self.functions_by_id[fun.id] = fun
|
|
|
|
class Function:
|
|
"""A Function object encapsulates a function on a data set.
|
|
|
|
Each Function instance encapsulates some function that can be applied
|
|
to one or more types of data.
|
|
"""
|
|
|
|
def __init__(self, id, name):
|
|
self.id = id
|
|
self.name = name
|
|
|
|
def valid_input(input):
|
|
return True
|
|
|
|
def run(self, data):
|
|
pass
|
|
|
|
class WorkflowView (gtk.VBox):
|
|
|
|
def __init__(self, wf):
|
|
gtk.VBox.__init__(self)
|
|
self.workflow = wf
|
|
self.setup_workflow(wf)
|
|
|
|
def setup_workflow(self, wf):
|
|
# Add stage in the process
|
|
for stage in wf.stages:
|
|
exp = gtk.Expander(stage.name)
|
|
btn_box = gtk.VBox()
|
|
btn_box.show()
|
|
exp.add(btn_box)
|
|
|
|
# Add functions in each stage
|
|
for fun in stage.functions:
|
|
btn = gtk.Button(fun.name)
|
|
btn.connect('clicked', self.button_click_handler)
|
|
btn.function = fun
|
|
|
|
btn_box.add(btn)
|
|
btn.show()
|
|
|
|
exp.show()
|
|
self.pack_start(exp, expand=False, fill=False)
|
|
|
|
def remove_workflow(self):
|
|
for c in self.get_children():
|
|
c.hide()
|
|
self.remove(c)
|
|
|
|
def set_workflow(self, workflow):
|
|
self.workflow = workflow
|
|
self.remove_workflow()
|
|
self.setup_workflow(workflow)
|
|
|
|
def run_function(self, function):
|
|
logger.log('debug', 'Starting function: %s' % function.name)
|
|
project = self.workflow.app.project
|
|
new_data = function.run(project.current_data)
|
|
if new_data != None:
|
|
project.add_data(None, new_data)
|
|
logger.log('debug', 'Function ended: %s' % function.name)
|
|
|
|
def button_click_handler(self, button):
|
|
self.run_function(function = button.function)
|
|
|