source: src/mlx/logger.py@ 156:fc2987b14e61

Last change on this file since 156:fc2987b14e61 was 134:9ce031d5d4a9, checked in by István Váradi <ivaradi@…>, 12 years ago

Most of the remaining messages are implemented

File size: 4.5 KB
RevLine 
[8]1# Module for the logging.
2
3#--------------------------------------------------------------------------------------
4
[133]5from fs import sendMessage
[8]6import const
[97]7import util
[8]8
9import sys
10import time
11
12#--------------------------------------------------------------------------------------
13
14class Logger(object):
15 """The class with the interface to log the various events."""
[11]16 # FIXME: shall we use const.stage2string() instead?
[8]17 _stages = { const.STAGE_BOARDING : "Boarding",
18 const.STAGE_PUSHANDTAXI : "Pushback and Taxi",
19 const.STAGE_TAKEOFF : "Takeoff",
20 const.STAGE_RTO : "RTO",
21 const.STAGE_CLIMB : "Climb",
22 const.STAGE_CRUISE : "Cruise",
23 const.STAGE_DESCENT : "Descent",
24 const.STAGE_LANDING : "Landing",
25 const.STAGE_TAXIAFTERLAND : "Taxi",
26 const.STAGE_PARKING : "Parking",
27 const.STAGE_GOAROUND : "Go-Around",
28 const.STAGE_END : "End" }
[30]29
30 NO_GO_SCORE = 10000
[11]31
[96]32 def __init__(self, output):
[8]33 """Construct the logger."""
[96]34 self._lines = []
[11]35 self._faults = {}
[97]36 self._faultLineIndexes = []
[8]37 self._output = output
38
[97]39 @property
40 def lines(self):
41 """Get the lines of the log."""
42 return self._lines
43
44 @property
45 def faultLineIndexes(self):
46 """Get the array of the indexes of the log line that contains a
47 fault."""
48 return self._faultLineIndexes
[24]49
50 def reset(self):
51 """Reset the logger.
52
53 The faults logged so far will be cleared."""
[96]54 self._lines = []
[24]55 self._faults.clear()
[97]56 self._faultLineIndexes = []
[8]57
58 def message(self, timestamp, msg):
59 """Put a simple textual message into the log with the given timestamp."""
[97]60 timeStr = util.getTimestampString(timestamp)
[96]61 return self._logLine(msg, timeStr)
[8]62
[17]63 def untimedMessage(self, msg):
64 """Put an untimed message into the log."""
[96]65 return self._logLine(msg)
[17]66
[9]67 def debug(self, msg):
[8]68 """Log a debug message."""
[9]69 print "[DEBUG]", msg
[8]70
71 def stage(self, timestamp, stage):
72 """Report a change in the flight stage."""
73 s = Logger._stages[stage] if stage in Logger._stages else "<Unknown>"
74 self.message(timestamp, "--- %s ---" % (s,))
[24]75 if stage==const.STAGE_END:
[31]76 self.untimedMessage("Rating: %.0f" % (self.getRating(),))
[134]77 else:
78 sendMessage(const.MESSAGETYPE_INFORMATION, "Flight stage: " + s, 3)
[8]79
[11]80 def fault(self, faultID, timestamp, what, score):
81 """Report a fault.
[8]82
[11]83 faultID as a unique ID for the given kind of fault. If another fault of
84 this ID has been reported earlier, it will be reported again only if
85 the score is greater than last time. This ID can be, e.g. the checker
86 the report comes from."""
87 if faultID in self._faults:
88 if score<=self._faults[faultID]:
89 return
90 self._faults[faultID] = score
[30]91 if score==Logger.NO_GO_SCORE:
[133]92 text = "%s (NO GO)" % (what)
[11]93 else:
[133]94 text = "%s (%.1f)" % (what, score)
95 lineIndex = self.message(timestamp, "%s (NO GO)" % (what))
[97]96 self._faultLineIndexes.append(lineIndex)
[133]97 (messageType, duration) = (const.MESSAGETYPE_NOGO, 10) \
98 if score==Logger.NO_GO_SCORE \
99 else (const.MESSAGETYPE_FAULT, 5)
100 sendMessage(messageType, text, duration)
[11]101
[30]102 def noGo(self, faultID, timestamp, what):
[8]103 """Report a No-Go fault."""
[30]104 self.fault(faultID, timestamp, what, Logger.NO_GO_SCORE)
[8]105
[31]106 def getRating(self):
107 """Get the rating of the flight so far."""
[30]108 totalScore = 100
109 for (id, score) in self._faults.iteritems():
110 if score==Logger.NO_GO_SCORE:
111 return -score
112 else:
113 totalScore -= score
114 return totalScore
[96]115
116 def updateLine(self, index, line):
117 """Update the line at the given index with the given string."""
118 (timeStr, _line) = self._lines[index]
119 self._lines[index] = (timeStr, line)
120 self._output.updateFlightLogLine(index, timeStr, line)
121
122 def _logLine(self, line, timeStr = None):
123 """Log the given line."""
124 index = len(self._lines)
125 self._lines.append((timeStr, line))
126 self._output.addFlightLogLine(timeStr, line)
127 return index
[30]128
[8]129#--------------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.