1 | # Module for the logging.
|
---|
2 |
|
---|
3 | #--------------------------------------------------------------------------------------
|
---|
4 |
|
---|
5 | from fs import sendMessage
|
---|
6 | import const
|
---|
7 | import util
|
---|
8 |
|
---|
9 | import sys
|
---|
10 | import time
|
---|
11 |
|
---|
12 | #--------------------------------------------------------------------------------------
|
---|
13 |
|
---|
14 | class Logger(object):
|
---|
15 | """The class with the interface to log the various events."""
|
---|
16 | # FIXME: shall we use const.stage2string() instead?
|
---|
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" }
|
---|
29 |
|
---|
30 | NO_GO_SCORE = 10000
|
---|
31 |
|
---|
32 | def __init__(self, output):
|
---|
33 | """Construct the logger."""
|
---|
34 | self._lines = []
|
---|
35 | self._faults = {}
|
---|
36 | self._faultLineIndexes = []
|
---|
37 | self._output = output
|
---|
38 |
|
---|
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
|
---|
49 |
|
---|
50 | def reset(self):
|
---|
51 | """Reset the logger.
|
---|
52 |
|
---|
53 | The faults logged so far will be cleared."""
|
---|
54 | self._lines = []
|
---|
55 | self._faults.clear()
|
---|
56 | self._faultLineIndexes = []
|
---|
57 |
|
---|
58 | def message(self, timestamp, msg):
|
---|
59 | """Put a simple textual message into the log with the given timestamp."""
|
---|
60 | timeStr = util.getTimestampString(timestamp)
|
---|
61 | return self._logLine(msg, timeStr)
|
---|
62 |
|
---|
63 | def untimedMessage(self, msg):
|
---|
64 | """Put an untimed message into the log."""
|
---|
65 | return self._logLine(msg)
|
---|
66 |
|
---|
67 | def debug(self, msg):
|
---|
68 | """Log a debug message."""
|
---|
69 | print "[DEBUG]", msg
|
---|
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,))
|
---|
75 | if stage==const.STAGE_END:
|
---|
76 | self.untimedMessage("Rating: %.0f" % (self.getRating(),))
|
---|
77 | else:
|
---|
78 | sendMessage(const.MESSAGETYPE_INFORMATION, "Flight stage: " + s, 3)
|
---|
79 |
|
---|
80 | def fault(self, faultID, timestamp, what, score):
|
---|
81 | """Report a fault.
|
---|
82 |
|
---|
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
|
---|
91 | if score==Logger.NO_GO_SCORE:
|
---|
92 | text = "%s (NO GO)" % (what)
|
---|
93 | else:
|
---|
94 | text = "%s (%.1f)" % (what, score)
|
---|
95 | lineIndex = self.message(timestamp, "%s (NO GO)" % (what))
|
---|
96 | self._faultLineIndexes.append(lineIndex)
|
---|
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)
|
---|
101 |
|
---|
102 | def noGo(self, faultID, timestamp, what):
|
---|
103 | """Report a No-Go fault."""
|
---|
104 | self.fault(faultID, timestamp, what, Logger.NO_GO_SCORE)
|
---|
105 |
|
---|
106 | def getRating(self):
|
---|
107 | """Get the rating of the flight so far."""
|
---|
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
|
---|
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
|
---|
128 |
|
---|
129 | #--------------------------------------------------------------------------------------
|
---|