blob: 341cc362913f269ddcb785d1eba5c854d82cc325 [file] [log] [blame]
epoger@google.comfd040112013-08-20 16:21:55 +00001#!/usr/bin/python
2
3# Copyright (c) 2013 The Chromium Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7"""
8Provides read access to buildbot's global_variables.json .
9"""
10
borenet@google.com6f0f5b42014-01-09 21:41:39 +000011
12from contextlib import closing
13
14import HTMLParser
epoger@google.comfd040112013-08-20 16:21:55 +000015import json
commit-bot@chromium.org9f8e2822014-01-14 19:18:45 +000016import re
epoger@google.comfd040112013-08-20 16:21:55 +000017import svn
borenet@google.com6f0f5b42014-01-09 21:41:39 +000018import sys
19import urllib2
20
epoger@google.comfd040112013-08-20 16:21:55 +000021
22_global_vars = None
23
borenet@google.com4b897fa2013-12-02 20:27:16 +000024
commit-bot@chromium.org95ead5b2014-04-29 17:11:19 +000025GLOBAL_VARS_JSON_URL = ('http://skia-tree-status.appspot.com/repo-serving/'
26 'buildbot/site_config/global_variables.json')
borenet@google.com4b897fa2013-12-02 20:27:16 +000027
28
29class GlobalVarsRetrievalError(Exception):
30 """Exception which is raised when the global_variables.json file cannot be
31 retrieved from the Skia buildbot repository."""
epoger@google.comfd040112013-08-20 16:21:55 +000032 pass
33
borenet@google.com4b897fa2013-12-02 20:27:16 +000034
35class JsonDecodeError(Exception):
36 """Exception which is raised when the global_variables.json file cannot be
37 interpreted as JSON. This may be due to the file itself being incorrectly
38 formatted or due to an incomplete or corrupted downloaded version of the file.
39 """
40 pass
41
42
43class NoSuchGlobalVariable(KeyError):
44 """Exception which is raised when a given variable is not found in the
45 global_variables.json file."""
46 pass
47
48
commit-bot@chromium.org95ead5b2014-04-29 17:11:19 +000049def retrieve_from_mirror(url):
50 """Retrieve the given file from the Skia Buildbot repo mirror.
borenet@google.com6f0f5b42014-01-09 21:41:39 +000051
52 Args:
53 url: string; the URL of the file to retrieve.
54 Returns:
commit-bot@chromium.org95ead5b2014-04-29 17:11:19 +000055 The contents of the file in the repository.
borenet@google.com6f0f5b42014-01-09 21:41:39 +000056 """
57 with closing(urllib2.urlopen(url)) as f:
commit-bot@chromium.org95ead5b2014-04-29 17:11:19 +000058 return f.read()
borenet@google.com6f0f5b42014-01-09 21:41:39 +000059
60
epoger@google.comfd040112013-08-20 16:21:55 +000061def Get(var_name):
borenet@google.com6f0f5b42014-01-09 21:41:39 +000062 """Return the value associated with this name in global_variables.json.
63
64 Args:
65 var_name: string; the variable to look up.
66 Returns:
67 The value of the variable.
68 Raises:
69 NoSuchGlobalVariable if there is no variable with that name.
70 """
epoger@google.comfd040112013-08-20 16:21:55 +000071 global _global_vars
72 if not _global_vars:
borenet@google.com4b897fa2013-12-02 20:27:16 +000073 try:
commit-bot@chromium.org95ead5b2014-04-29 17:11:19 +000074 global_vars_text = retrieve_from_mirror(GLOBAL_VARS_JSON_URL)
75 except Exception as e:
76 raise GlobalVarsRetrievalError('Failed to retrieve %s:\n%s' %
77 (GLOBAL_VARS_JSON_URL, str(e)))
borenet@google.com4b897fa2013-12-02 20:27:16 +000078 try:
79 _global_vars = json.loads(global_vars_text)
80 except ValueError as e:
81 raise JsonDecodeError(e.message + '\n' + global_vars_text)
epoger@google.comfd040112013-08-20 16:21:55 +000082 try:
83 return _global_vars[var_name]['value']
84 except KeyError:
85 raise NoSuchGlobalVariable(var_name)
borenet@google.com6f0f5b42014-01-09 21:41:39 +000086
87
88if __name__ == '__main__':
89 print Get(sys.argv[1])