blob: 0907dd86d2f90973bab714116a7d606b40e245d4 [file] [log] [blame]
kelvin-onlab54400a92015-02-26 18:05:51 -08001#!/usr/bin/env python
kelvin-onlab54400a92015-02-26 18:05:51 -08002
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00003'''
4Copyright 2015 Open Networking Foundation (ONF)
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -07005
6Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>,
7the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>,
8or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg>
9
10 TestON is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 2 of the License, or
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +000013 (at your option) any later version.
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -070014
15 TestON is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with TestON. If not, see <http://www.gnu.org/licenses/>.
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +000022'''
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -070023import threading
Jon Hall65844a32015-03-09 19:09:37 -070024
25class Thread( threading.Thread ):
26 def __init__( self, target=None, threadID=None, name="", args=(),
27 kwargs={} ):
28 super( Thread, self ).__init__()
kelvin-onlab54400a92015-02-26 18:05:51 -080029 self.threadID = threadID
30 self.name = name
31 self.target = target
32 self.args = args
33 self.kwargs = kwargs
34 self.result = None
35
36 def run( self ):
37 try:
38 if self.target is not None:
Jon Hall65844a32015-03-09 19:09:37 -070039 self.result = self.target( *self.args, **self.kwargs )
kelvin-onlab54400a92015-02-26 18:05:51 -080040 except Exception as e:
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070041 print "ThreadID:" + str( self.threadID ) + ", Name:" + \
42 self.name + "- something went wrong with " + \
43 str( self.target.im_class ) + "." + \
Jon Hall79bec222015-04-30 16:23:30 -070044 str( self.target.im_func ) + " method: "
kelvin-onlab54400a92015-02-26 18:05:51 -080045 print e