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
):
17 self
._max
_warnings
= max_warnings
19 def Write(self
, message
):
20 """Print a warning if fewer than max_warnings have already been printed."""
21 if self
._warnings
< self
._max
_warnings
:
22 logging
.warning(message
)
25 def WriteEnd(self
, message
):
26 """Once all warnings have been printed, use this to print the number of
28 if self
._warnings
> self
._max
_warnings
:
29 logging
.warning('%d more warnings for: %s' % (
30 self
._warnings
- self
._max
_warnings
, message
))
33 def DetectArchitecture(default
='arm'):
34 """Detects the architecture by looking for target_arch in GYP_DEFINES.
35 If not not found, returns default.
37 gyp_defines
= os
.environ
.get('GYP_DEFINES', '')
38 match
= re
.match('target_arch=(\S+)', gyp_defines
)
39 if match
and len(match
.groups()) == 1:
45 def InvertMapping(x_to_ys
):
46 """Given a map x -> [y1, y2...] returns inverse mapping y->[x1, x2...]."""
48 for x
, ys
in x_to_ys
.items():
50 y_to_xs
.setdefault(y
, []).append(x
)
54 def GetObjDir(libchrome
):
55 """Get the path to the obj directory corresponding to the given libchrome.
57 Assumes libchrome is in for example .../Release/lib/libchrome.so and object
58 files are in .../Release/obj.
60 # TODO(azarchs): Pass obj path in explicitly where needed rather than relying
61 # on the above assumption.
62 return os
.path
.abspath(os
.path
.join(
63 os
.path
.dirname(libchrome
), '../obj'))