make sequencingFinished return something instead of none
[htsworkflow.git] / gaworkflow / runner.py
1 #!/usr/bin/env python
2 import logging
3 import os
4 import re
5 import sys
6 import time
7 import threading
8
9 from benderjab import rpc
10
11 from gaworkflow.pipeline.configure_run import *
12 from gaworkflow.pipeline.monitors import _percentCompleted
13
14 #s_fc = re.compile('FC[0-9]+')
15 s_fc = re.compile('_[0-9a-zA-Z]*$')
16
17
18 def _get_flowcell_from_rundir(run_dir):
19     """
20     Returns flowcell string based on run_dir.
21     Returns None and logs error if flowcell can't be found.
22     """
23     junk, dirname = os.path.split(run_dir)
24     mo = s_fc.search(dirname)
25     if not mo:
26         logging.error('RunDir 2 FlowCell error: %s' % (run_dir))
27         return None
28
29     return dirname[mo.start()+1:]
30     
31
32
33 class Runner(rpc.XmlRpcBot):
34     """
35     Manage running pipeline jobs.
36     """    
37     def __init__(self, section=None, configfile=None):
38         #if configfile is None:
39         #    self.configfile = "~/.gaworkflow"
40         super(Runner, self).__init__(section, configfile)
41         
42         self.cfg['notify_users'] = None
43         self.cfg['genome_dir'] = None
44         self.cfg['base_analysis_dir'] = None
45
46         self.cfg['notify_users'] = None
47         self.cfg['notify_postanalysis'] = None
48
49         self.conf_info_dict = {}
50         
51         self.register_function(self.sequencingFinished)
52         #self.eventTasks.append(self.update)
53
54     
55     def read_config(self, section=None, configfile=None):
56         super(Runner, self).read_config(section, configfile)
57
58         self.genome_dir = self._check_required_option('genome_dir')
59         self.base_analysis_dir = self._check_required_option('base_analysis_dir')
60
61         self.notify_users = self._parse_user_list(self.cfg['notify_users'])
62         #FIXME: process notify_postpipeline cfg
63         
64     
65     def _parser(self, msg, who):
66         """
67         Parse xmpp chat messages
68         """
69         help = u"I can send [start] a run, or report [status]"
70         if re.match(u"help", msg):
71             reply = help
72         elif re.match("status", msg):
73             words = msg.split()
74             if len(words) == 2:
75                 reply = self.getStatusReport(words[1])
76             else:
77                 reply = u"Status available for: %s" \
78                         % (', '.join([k for k in self.conf_info_dict.keys()]))
79         elif re.match(u"start", msg):
80             words = msg.split()
81             if len(words) == 2:
82                 self.sequencingFinished(words[1])
83                 reply = u"starting run for %s" % (words[1])
84             else:
85                 reply = u"need runfolder name"
86         else:
87             reply = u"I didn't understand '%s'" %(msg)
88
89         logging.debug("reply: " + str(reply))
90         return reply
91
92
93     def getStatusReport(self, fc_num):
94         """
95         Returns text status report for flow cell number 
96         """
97         if fc_num not in self.conf_info_dict:
98             return "No record of a %s run." % (fc_num)
99
100         status = self.conf_info_dict[fc_num].status
101
102         if status is None:
103             return "No status information for %s yet." \
104                    " Probably still in configure step. Try again later." % (fc_num)
105
106         fc,ft = status.statusFirecrest()
107         bc,bt = status.statusBustard()
108         gc,gt = status.statusGerald()
109
110         tc,tt = status.statusTotal()
111
112         fp = _percentCompleted(fc, ft)
113         bp = _percentCompleted(bc, bt)
114         gp = _percentCompleted(gc, gt)
115         tp = _percentCompleted(tc, tt)
116
117         output = []
118
119         output.append(u'Firecrest: %s%% (%s/%s)' % (fp, fc, ft))
120         output.append(u'  Bustard: %s%% (%s/%s)' % (bp, bc, bt))
121         output.append(u'   Gerald: %s%% (%s/%s)' % (gp, gc, gt))
122         output.append(u'-----------------------')
123         output.append(u'    Total: %s%% (%s/%s)' % (tp, tc, tt))
124
125         return '\n'.join(output)
126     
127             
128     def sequencingFinished(self, run_dir):
129         """
130         Sequenceing (and copying) is finished, time to start pipeline
131         """
132         logging.debug("received sequencing finished message")
133
134         # Setup config info object
135         ci = ConfigInfo()
136         ci.base_analysis_dir = self.base_analysis_dir
137         ci.analysis_dir = os.path.join(self.base_analysis_dir, run_dir)        
138
139         # get flowcell from run_dir name
140         flowcell = _get_flowcell_from_rundir(run_dir)
141
142         # Store ci object in dictionary
143         self.conf_info_dict[flowcell] = ci
144
145
146         # Launch the job in it's own thread and turn.
147         self.launchJob(run_dir, flowcell, ci)
148         return "started"
149         
150         
151     def pipelineFinished(self, run_dir):
152         # need to strip off self.watch_dir from rundir I suspect.
153         logging.info("pipeline finished in" + str(run_dir))
154         #pattern = self.watch_dir
155         #if pattern[-1] != os.path.sep:
156         #    pattern += os.path.sep
157         #stripped_run_dir = re.sub(pattern, "", run_dir)
158         #logging.debug("stripped to " + stripped_run_dir)
159
160         # Notify each user that the run has finished.
161         if self.notify_users is not None:
162             for u in self.notify_users:
163                 self.send(u, 'Pipeline run %s finished' % (run_dir))
164                 
165         #if self.notify_runner is not None:
166         #    for r in self.notify_runner:
167         #        self.rpc_send(r, (stripped_run_dir,), 'sequencingFinished')
168
169     def reportMsg(self, msg):
170
171         if self.notify_users is not None:
172             for u in self.notify_users:
173                 self.send(u, msg)
174
175
176     def _runner(self, run_dir, flowcell, conf_info):
177
178         # retrieve config step
179         cfg_filepath = os.path.join(conf_info.analysis_dir,
180                                     'config32auto.txt')
181         status_retrieve_cfg = retrieve_config(conf_info,
182                                           flowcell,
183                                           cfg_filepath,
184                                           self.genome_dir)
185         if status_retrieve_cfg:
186             logging.info("Runner: Retrieve config: success")
187             self.reportMsg("Retrieve config (%s): success" % (run_dir))
188         else:
189             logging.error("Runner: Retrieve config: failed")
190             self.reportMsg("Retrieve config (%s): FAILED" % (run_dir))
191
192         
193         # configure step
194         if status_retrieve_cfg:
195             status = configure(conf_info)
196             if status:
197                 logging.info("Runner: Configure: success")
198                 self.reportMsg("Configure (%s): success" % (run_dir))
199             else:
200                 logging.error("Runner: Configure: failed")
201                 self.reportMsg("Configure (%s): FAILED" % (run_dir))
202
203             #if successful, continue
204             if status:
205                 # Setup status cmdline status monitor
206                 #startCmdLineStatusMonitor(ci)
207                 
208                 # running step
209                 print 'Running pipeline now!'
210                 run_status = run_pipeline(conf_info)
211                 if run_status is True:
212                     logging.info('Runner: Pipeline: success')
213                     self.piplineFinished(run_dir)
214                 else:
215                     logging.info('Runner: Pipeline: failed')
216                     self.reportMsg("Pipeline run (%s): FAILED" % (run_dir))
217
218
219     def launchJob(self, run_dir, flowcell, conf_info):
220         """
221         Starts up a thread for running the pipeline
222         """
223         t = threading.Thread(target=self._runner,
224                         args=[run_dir, flowcell, conf_info])
225         t.setDaemon(True)
226         t.start()
227         
228
229         
230 def main(args=None):
231     bot = Runner()
232     return bot.main(args)
233     
234 if __name__ == "__main__":
235     sys.exit(main(sys.argv[1:]))
236