Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Unified Diff: gclient_utils.py

Issue 209393006: Add warning batching in gclient_utils (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gclient.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_utils.py
diff --git a/gclient_utils.py b/gclient_utils.py
index 7003fc88676b49e79aba8acbd5f68bdd2cdb7fd3..931054238b7ca74b6010bb20dc0ac8d4382d1c55 100644
--- a/gclient_utils.py
+++ b/gclient_utils.py
@@ -4,6 +4,7 @@
"""Generic utils."""
+import atexit
import codecs
import cStringIO
import logging
@@ -27,6 +28,9 @@ RETRY_MAX = 3
RETRY_INITIAL_SLEEP = 0.5
+_WARNINGS = []
+
+
class Error(Exception):
"""gclient exception class."""
def __init__(self, msg, *args, **kwargs):
@@ -36,6 +40,21 @@ class Error(Exception):
super(Error, self).__init__(msg, *args, **kwargs)
+def _DisplayWarningsAtExit():
+ """Display any stored warnings when the program exits."""
+ if _WARNINGS:
+ print >> sys.stderr, '\n\nWarnings:'
+ for warning in _WARNINGS:
+ print >> sys.stderr, warning
+
+atexit.register(_DisplayWarningsAtExit)
M-A Ruel 2014/03/24 16:25:30 I'd prefer something more formal, a try/finally in
+
+
+def WarnOnExit(msg):
+ """Display the given warning when the program exits."""
+ _WARNINGS.append(msg)
+
+
def SplitUrlRevision(url):
"""Splits url and returns a two-tuple: url, rev"""
if url.startswith('ssh:'):
« no previous file with comments | « gclient.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698