2 # Copyright 2015 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
6 """Common utilites used by cygprofile scripts.
13 class WarningCollector(object):
14 """Collects warnings, but limits the number printed to a set value."""
15 def __init__(self
, max_warnings
, level
=logging
.WARNING
):
17 self
._max
_warnings
= max_warnings
20 def Write(self
, message
):
21 """Prints a warning if fewer than max_warnings have already been printed."""
22 if self
._warnings
< self
._max
_warnings
:
23 logging
.log(self
._level
, message
)
26 def WriteEnd(self
, message
):
27 """Once all warnings have been printed, use this to print the number of
29 if self
._warnings
> self
._max
_warnings
:
30 logging
.log(self
._level
, '%d more warnings for: %s' % (
31 self
._warnings
- self
._max
_warnings
, message
))
34 def DetectArchitecture(default
='arm'):
35 """Detects the architecture by looking for target_arch in GYP_DEFINES.
36 If not not found, returns default.
38 gyp_defines
= os
.environ
.get('GYP_DEFINES', '')
39 match
= re
.match('target_arch=(\S+)', gyp_defines
)
40 if match
and len(match
.groups()) == 1:
46 def InvertMapping(x_to_ys
):
47 """Given a map x -> [y1, y2...] returns inverse mapping y->[x1, x2...]."""
49 for x
, ys
in x_to_ys
.items():
51 y_to_xs
.setdefault(y
, []).append(x
)
55 def GetObjDir(libchrome
):
56 """Get the path to the obj directory corresponding to the given libchrome.
58 Assumes libchrome is in for example .../Release/lib/libchrome.so and object
59 files are in .../Release/obj.
61 # TODO(azarchs): Pass obj path in explicitly where needed rather than relying
62 # on the above assumption.
63 return os
.path
.abspath(os
.path
.join(
64 os
.path
.dirname(libchrome
), '../obj'))