diff options
Diffstat (limited to 'bitbake-dev/lib/bb/msg.py')
-rw-r--r-- | bitbake-dev/lib/bb/msg.py | 125 |
1 files changed, 125 insertions, 0 deletions
diff --git a/bitbake-dev/lib/bb/msg.py b/bitbake-dev/lib/bb/msg.py new file mode 100644 index 0000000000..7aa0a27d25 --- /dev/null +++ b/bitbake-dev/lib/bb/msg.py | |||
@@ -0,0 +1,125 @@ | |||
1 | # ex:ts=4:sw=4:sts=4:et | ||
2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- | ||
3 | """ | ||
4 | BitBake 'msg' implementation | ||
5 | |||
6 | Message handling infrastructure for bitbake | ||
7 | |||
8 | """ | ||
9 | |||
10 | # Copyright (C) 2006 Richard Purdie | ||
11 | # | ||
12 | # This program is free software; you can redistribute it and/or modify | ||
13 | # it under the terms of the GNU General Public License version 2 as | ||
14 | # published by the Free Software Foundation. | ||
15 | # | ||
16 | # This program is distributed in the hope that it will be useful, | ||
17 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
18 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
19 | # GNU General Public License for more details. | ||
20 | # | ||
21 | # You should have received a copy of the GNU General Public License along | ||
22 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
23 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
24 | |||
25 | import sys, os, re, bb | ||
26 | from bb import utils, event | ||
27 | |||
28 | debug_level = {} | ||
29 | |||
30 | verbose = False | ||
31 | |||
32 | domain = bb.utils.Enum( | ||
33 | 'Build', | ||
34 | 'Cache', | ||
35 | 'Collection', | ||
36 | 'Data', | ||
37 | 'Depends', | ||
38 | 'Fetcher', | ||
39 | 'Parsing', | ||
40 | 'PersistData', | ||
41 | 'Provider', | ||
42 | 'RunQueue', | ||
43 | 'TaskData', | ||
44 | 'Util') | ||
45 | |||
46 | |||
47 | class MsgBase(bb.event.Event): | ||
48 | """Base class for messages""" | ||
49 | |||
50 | def __init__(self, msg, d ): | ||
51 | self._message = msg | ||
52 | event.Event.__init__(self, d) | ||
53 | |||
54 | class MsgDebug(MsgBase): | ||
55 | """Debug Message""" | ||
56 | |||
57 | class MsgNote(MsgBase): | ||
58 | """Note Message""" | ||
59 | |||
60 | class MsgWarn(MsgBase): | ||
61 | """Warning Message""" | ||
62 | |||
63 | class MsgError(MsgBase): | ||
64 | """Error Message""" | ||
65 | |||
66 | class MsgFatal(MsgBase): | ||
67 | """Fatal Message""" | ||
68 | |||
69 | class MsgPlain(MsgBase): | ||
70 | """General output""" | ||
71 | |||
72 | # | ||
73 | # Message control functions | ||
74 | # | ||
75 | |||
76 | def set_debug_level(level): | ||
77 | bb.msg.debug_level = {} | ||
78 | for domain in bb.msg.domain: | ||
79 | bb.msg.debug_level[domain] = level | ||
80 | bb.msg.debug_level['default'] = level | ||
81 | |||
82 | def set_verbose(level): | ||
83 | bb.msg.verbose = level | ||
84 | |||
85 | def set_debug_domains(domains): | ||
86 | for domain in domains: | ||
87 | found = False | ||
88 | for ddomain in bb.msg.domain: | ||
89 | if domain == str(ddomain): | ||
90 | bb.msg.debug_level[ddomain] = bb.msg.debug_level[ddomain] + 1 | ||
91 | found = True | ||
92 | if not found: | ||
93 | bb.msg.warn(None, "Logging domain %s is not valid, ignoring" % domain) | ||
94 | |||
95 | # | ||
96 | # Message handling functions | ||
97 | # | ||
98 | |||
99 | def debug(level, domain, msg, fn = None): | ||
100 | if not domain: | ||
101 | domain = 'default' | ||
102 | if debug_level[domain] >= level: | ||
103 | bb.event.fire(MsgDebug(msg, None)) | ||
104 | |||
105 | def note(level, domain, msg, fn = None): | ||
106 | if not domain: | ||
107 | domain = 'default' | ||
108 | if level == 1 or verbose or debug_level[domain] >= 1: | ||
109 | bb.event.fire(MsgNote(msg, None)) | ||
110 | |||
111 | def warn(domain, msg, fn = None): | ||
112 | bb.event.fire(MsgWarn(msg, None)) | ||
113 | |||
114 | def error(domain, msg, fn = None): | ||
115 | bb.event.fire(MsgError(msg, None)) | ||
116 | print 'ERROR: ' + msg | ||
117 | |||
118 | def fatal(domain, msg, fn = None): | ||
119 | bb.event.fire(MsgFatal(msg, None)) | ||
120 | print 'FATAL: ' + msg | ||
121 | sys.exit(1) | ||
122 | |||
123 | def plain(msg, fn = None): | ||
124 | bb.event.fire(MsgPlain(msg, None)) | ||
125 | |||