[8] | 1 | # Module for the logging.
|
---|
| 2 |
|
---|
| 3 | #--------------------------------------------------------------------------------------
|
---|
| 4 |
|
---|
| 5 | import const
|
---|
| 6 |
|
---|
| 7 | import sys
|
---|
| 8 | import time
|
---|
| 9 |
|
---|
| 10 | #--------------------------------------------------------------------------------------
|
---|
| 11 |
|
---|
| 12 | class Logger(object):
|
---|
| 13 | """The class with the interface to log the various events."""
|
---|
[11] | 14 | # FIXME: shall we use const.stage2string() instead?
|
---|
[8] | 15 | _stages = { const.STAGE_BOARDING : "Boarding",
|
---|
| 16 | const.STAGE_PUSHANDTAXI : "Pushback and Taxi",
|
---|
| 17 | const.STAGE_TAKEOFF : "Takeoff",
|
---|
| 18 | const.STAGE_RTO : "RTO",
|
---|
| 19 | const.STAGE_CLIMB : "Climb",
|
---|
| 20 | const.STAGE_CRUISE : "Cruise",
|
---|
| 21 | const.STAGE_DESCENT : "Descent",
|
---|
| 22 | const.STAGE_LANDING : "Landing",
|
---|
| 23 | const.STAGE_TAXIAFTERLAND : "Taxi",
|
---|
| 24 | const.STAGE_PARKING : "Parking",
|
---|
| 25 | const.STAGE_GOAROUND : "Go-Around",
|
---|
| 26 | const.STAGE_END : "End" }
|
---|
| 27 |
|
---|
[11] | 28 | _noGoScore = 10000
|
---|
| 29 |
|
---|
[8] | 30 | def __init__(self, output = sys.stdout):
|
---|
| 31 | """Construct the logger."""
|
---|
[11] | 32 | self._faults = {}
|
---|
[8] | 33 | self._output = output
|
---|
| 34 |
|
---|
| 35 | @staticmethod
|
---|
| 36 | def _getTimeStr(timestamp):
|
---|
| 37 | """Get the string representation of the given timestamp."""
|
---|
| 38 | return time.strftime("%H:%M:%S", time.gmtime(timestamp))
|
---|
[24] | 39 |
|
---|
| 40 | def reset(self):
|
---|
| 41 | """Reset the logger.
|
---|
| 42 |
|
---|
| 43 | The faults logged so far will be cleared."""
|
---|
| 44 | self._faults.clear()
|
---|
[8] | 45 |
|
---|
| 46 | def message(self, timestamp, msg):
|
---|
| 47 | """Put a simple textual message into the log with the given timestamp."""
|
---|
| 48 | timeStr = Logger._getTimeStr(timestamp)
|
---|
| 49 | print >> self._output, timeStr + ":", msg
|
---|
| 50 | print timeStr + ":", msg
|
---|
| 51 |
|
---|
[17] | 52 | def untimedMessage(self, msg):
|
---|
| 53 | """Put an untimed message into the log."""
|
---|
| 54 | print >> self._output, msg
|
---|
| 55 | print msg
|
---|
| 56 |
|
---|
[9] | 57 | def debug(self, msg):
|
---|
[8] | 58 | """Log a debug message."""
|
---|
[17] | 59 | print >> self._output, "[DEBUG]", msg
|
---|
[9] | 60 | print "[DEBUG]", msg
|
---|
[8] | 61 |
|
---|
| 62 | def stage(self, timestamp, stage):
|
---|
| 63 | """Report a change in the flight stage."""
|
---|
| 64 | s = Logger._stages[stage] if stage in Logger._stages else "<Unknown>"
|
---|
| 65 | self.message(timestamp, "--- %s ---" % (s,))
|
---|
[24] | 66 | if stage==const.STAGE_END:
|
---|
| 67 | totalScore = 100
|
---|
| 68 | for (id, score) in self._faults.iteritems():
|
---|
| 69 | totalScore -= score
|
---|
| 70 | self.untimedMessage("Score: %.0f" % (totalScore,))
|
---|
[8] | 71 |
|
---|
[11] | 72 | def fault(self, faultID, timestamp, what, score):
|
---|
| 73 | """Report a fault.
|
---|
[8] | 74 |
|
---|
[11] | 75 | faultID as a unique ID for the given kind of fault. If another fault of
|
---|
| 76 | this ID has been reported earlier, it will be reported again only if
|
---|
| 77 | the score is greater than last time. This ID can be, e.g. the checker
|
---|
| 78 | the report comes from."""
|
---|
| 79 | if faultID in self._faults:
|
---|
| 80 | if score<=self._faults[faultID]:
|
---|
| 81 | return
|
---|
| 82 | self._faults[faultID] = score
|
---|
| 83 | if score==Logger._noGoScore:
|
---|
| 84 | self.message(timestamp, "%s (NO GO)" % (what))
|
---|
| 85 | else:
|
---|
[21] | 86 | self.message(timestamp, "%s (%.1f)" % (what, score))
|
---|
[11] | 87 |
|
---|
| 88 | def noGo(self, faultID, timestamp, what, shortReason):
|
---|
[8] | 89 | """Report a No-Go fault."""
|
---|
[11] | 90 | self.fault(faultID, timestamp, what, Logger._noGoScore)
|
---|
[8] | 91 |
|
---|
| 92 | #--------------------------------------------------------------------------------------
|
---|