OLD | NEW |
---|---|
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 from recipe_engine import recipe_api | 5 from recipe_engine import recipe_api |
6 | 6 |
7 class GomaApi(recipe_api.RecipeApi): | 7 class GomaApi(recipe_api.RecipeApi): |
8 """GomaApi contains helper functions for using goma.""" | 8 """GomaApi contains helper functions for using goma.""" |
9 | 9 |
10 def __init__(self, **kwargs): | 10 def __init__(self, **kwargs): |
11 super(GomaApi, self).__init__(**kwargs) | 11 super(GomaApi, self).__init__(**kwargs) |
12 self._goma_dir = None | 12 self._goma_dir = None |
13 self._goma_started = False | 13 self._goma_started = False |
14 | 14 |
15 self._goma_ctl_env = {} | 15 self._goma_ctl_env = {} |
16 self._cloudtail_pid = None | |
16 | 17 |
17 @property | 18 @property |
18 def service_account_json_path(self): | 19 def service_account_json_path(self): |
19 if self.m.platform.is_win: | 20 if self.m.platform.is_win: |
20 return 'C:\\creds\\service_accounts\\service-account-goma-client.json' | 21 return 'C:\\creds\\service_accounts\\service-account-goma-client.json' |
21 return '/creds/service_accounts/service-account-goma-client.json' | 22 return '/creds/service_accounts/service-account-goma-client.json' |
22 | 23 |
24 @property | |
25 def cloudtail_path(self): | |
26 if self.m.platform.is_win: | |
27 return 'C:\\infra-tools\\cloudtail' | |
28 return '/opt/infra-tools/cloudtail' | |
29 | |
23 def ensure_goma(self, canary=False): | 30 def ensure_goma(self, canary=False): |
24 with self.m.step.nest('ensure_goma'): | 31 with self.m.step.nest('ensure_goma'): |
25 with self.m.step.context({'infra_step': True}): | 32 with self.m.step.context({'infra_step': True}): |
26 try: | 33 try: |
27 self.m.cipd.set_service_account_credentials( | 34 self.m.cipd.set_service_account_credentials( |
28 self.service_account_json_path) | 35 self.service_account_json_path) |
29 | 36 |
30 self.m.cipd.install_client() | 37 self.m.cipd.install_client() |
31 goma_package = ('infra_internal/goma/client/%s' % | 38 goma_package = ('infra_internal/goma/client/%s' % |
32 self.m.cipd.platform_suffix()) | 39 self.m.cipd.platform_suffix()) |
33 # For Windows there's only 64-bit goma client. | 40 # For Windows there's only 64-bit goma client. |
34 if self.m.platform.is_win: | 41 if self.m.platform.is_win: |
35 goma_package = goma_package.replace('386', 'amd64') | 42 goma_package = goma_package.replace('386', 'amd64') |
36 ref='release' | 43 ref='release' |
37 if canary: | 44 if canary: |
38 ref='candidate' | 45 ref='candidate' |
39 self._goma_dir = self.m.path['cache'].join('cipd', 'goma') | 46 self._goma_dir = self.m.path['cache'].join('cipd', 'goma') |
40 self.m.cipd.ensure(self._goma_dir, {goma_package: ref}) | 47 self.m.cipd.ensure(self._goma_dir, {goma_package: ref}) |
48 | |
49 # TODO(tikuta) download cloudtail from cipd here | |
50 | |
51 | |
41 return self._goma_dir | 52 return self._goma_dir |
42 except self.m.step.StepFailure: | 53 except self.m.step.StepFailure: |
43 # TODO(phajdan.jr): make failures fatal after experiment. | 54 # TODO(phajdan.jr): make failures fatal after experiment. |
44 return None | 55 return None |
45 | 56 |
46 @property | 57 @property |
47 def goma_ctl(self): | 58 def goma_ctl(self): |
48 return self.m.path.join(self._goma_dir, 'goma_ctl.py') | 59 return self.m.path.join(self._goma_dir, 'goma_ctl.py') |
49 | 60 |
50 @property | 61 @property |
51 def build_data_dir(self): | 62 def build_data_dir(self): |
52 return self.m.properties.get('build_data_dir') | 63 return self.m.properties.get('build_data_dir') |
53 | 64 |
65 def _start_cloudtail(self): | |
66 """Start cloudtail to upload compiler_proxy.INFO | |
67 | |
68 Raises: | |
69 InfraFailure if it fails to start cloudtail | |
70 """ | |
71 | |
72 assert self._cloudtail_pid is None | |
73 | |
74 step_result = self.m.python( | |
75 name='start cloudtail', | |
76 script=self.resource('cloudtail_utils.py'), | |
77 args=['--start-cloudtail', | |
78 '--cloudtail-path', self.cloudtail_path], | |
79 env=self._goma_ctl_env, | |
80 stdout=self.m.raw_io.output(), | |
81 infra_step=True) | |
82 | |
83 self._cloudtail_pid = step_result.stdout | |
84 | |
85 def _stop_cloudtail(self): | |
86 """Stop cloudtail started by _start_cloudtail | |
87 | |
88 Raises: | |
89 InfraFailure if it fails to stop cloudtail | |
90 """ | |
91 | |
92 assert self._cloudtail_pid is not None | |
93 | |
94 self.m.python( | |
95 name='stop cloudtail', | |
96 script=self.resource('cloudtail_utils.py'), | |
97 args=['--killed-pid', self._cloudtail_pid], | |
98 infra_step=True) | |
99 | |
100 self._cloudtail_pid = None | |
101 | |
54 def start(self, env=None, **kwargs): | 102 def start(self, env=None, **kwargs): |
55 """Start goma compiler_proxy. | 103 """Start goma compiler_proxy. |
56 | 104 |
57 A user MUST execute ensure_goma beforehand. | 105 A user MUST execute ensure_goma beforehand. |
58 It is user's responsibility to handle failure of starting compiler_proxy. | 106 It is user's responsibility to handle failure of starting compiler_proxy. |
59 """ | 107 """ |
60 assert self._goma_dir | 108 assert self._goma_dir |
61 assert not self._goma_started | 109 assert not self._goma_started |
62 | 110 |
63 if self.build_data_dir: | 111 if self.build_data_dir: |
64 self._goma_ctl_env['GOMA_DUMP_STATS_FILE'] = ( | 112 self._goma_ctl_env['GOMA_DUMP_STATS_FILE'] = ( |
65 self.m.path.join(self.build_data_dir, 'goma_stats_proto')) | 113 self.m.path.join(self.build_data_dir, 'goma_stats_proto')) |
66 self._goma_ctl_env['GOMACTL_CRASH_REPORT_ID_FILE'] = ( | 114 self._goma_ctl_env['GOMACTL_CRASH_REPORT_ID_FILE'] = ( |
67 self.m.path.join(self.build_data_dir, 'crash_report_id_file')) | 115 self.m.path.join(self.build_data_dir, 'crash_report_id_file')) |
68 | 116 |
69 self._goma_ctl_env['GOMA_SERVICE_ACCOUNT_JSON_FILE'] = ( | 117 self._goma_ctl_env['GOMA_SERVICE_ACCOUNT_JSON_FILE'] = ( |
70 self.service_account_json_path) | 118 self.service_account_json_path) |
71 | 119 |
72 goma_ctl_start_env = self._goma_ctl_env.copy() | 120 goma_ctl_start_env = self._goma_ctl_env.copy() |
73 | 121 |
74 if env is not None: | 122 if env is not None: |
75 goma_ctl_start_env.update(env) | 123 goma_ctl_start_env.update(env) |
76 | 124 |
77 try: | 125 try: |
78 self.m.python( | 126 self.m.python( |
79 name='start_goma', | 127 name='start_goma', |
80 script=self.goma_ctl, | 128 script=self.goma_ctl, |
81 args=['restart'], env=goma_ctl_start_env, infra_step=True, **kwargs) | 129 args=['restart'], env=goma_ctl_start_env, infra_step=True, **kwargs) |
82 self._goma_started = True | 130 self._goma_started = True |
131 | |
132 self._start_cloudtail() | |
133 | |
83 except self.m.step.InfraFailure as e: # pragma: no cover | 134 except self.m.step.InfraFailure as e: # pragma: no cover |
84 upload_logs_name = 'upload_goma_start_failed_logs' | 135 upload_logs_name = 'upload_goma_start_failed_logs' |
85 | 136 |
86 try: | 137 try: |
87 self.m.python( | 138 self.m.python( |
88 name='stop_goma (start failure)', | 139 name='stop_goma (start failure)', |
89 script=self.goma_ctl, | 140 script=self.goma_ctl, |
90 args=['stop'], env=self._goma_ctl_env, **kwargs) | 141 args=['stop'], env=self._goma_ctl_env, **kwargs) |
91 except self.m.step.StepFailure: | 142 except self.m.step.StepFailure: |
92 upload_logs_name = 'upload_goma_start_and_stop_failed_logs' | 143 upload_logs_name = 'upload_goma_start_and_stop_failed_logs' |
93 | 144 |
94 self.upload_logs(name=upload_logs_name) | 145 self.upload_logs(name=upload_logs_name) |
95 raise e | 146 raise e |
96 | 147 |
97 def stop(self, ninja_log_outdir=None, ninja_log_compiler=None, | 148 def stop(self, ninja_log_outdir=None, ninja_log_compiler=None, |
98 ninja_log_command=None, ninja_log_exit_status=None, **kwargs): | 149 ninja_log_command=None, ninja_log_exit_status=None, **kwargs): |
99 """Stop goma compiler_proxy. | 150 """Stop goma compiler_proxy. |
100 | 151 |
101 A user MUST execute start beforehand. | 152 A user MUST execute start beforehand. |
102 It is user's responsibility to handle failure of stopping compiler_proxy. | 153 It is user's responsibility to handle failure of stopping compiler_proxy. |
ukai
2016/08/17 01:13:15
stop_goma, and upload_logs never raises exception?
tikuta
2016/08/17 02:29:56
Done.
| |
103 """ | 154 """ |
104 assert self._goma_dir | 155 assert self._goma_dir |
105 assert self._goma_started | 156 assert self._goma_started |
106 self.m.python( | 157 self.m.python( |
107 name='stop_goma', | 158 name='stop_goma', |
108 script=self.goma_ctl, | 159 script=self.goma_ctl, |
109 args=['stop'], env=self._goma_ctl_env, **kwargs) | 160 args=['stop'], env=self._goma_ctl_env, **kwargs) |
110 | 161 |
111 self.upload_logs(ninja_log_outdir, ninja_log_compiler, ninja_log_command, | 162 self.upload_logs(ninja_log_outdir, ninja_log_compiler, ninja_log_command, |
112 ninja_log_exit_status) | 163 ninja_log_exit_status) |
164 self._stop_cloudtail() | |
113 | 165 |
114 self._goma_started = False | 166 self._goma_started = False |
115 self._goma_ctl_env = {} | 167 self._goma_ctl_env = {} |
116 | 168 |
117 def upload_logs(self, ninja_log_outdir=None, ninja_log_compiler=None, | 169 def upload_logs(self, ninja_log_outdir=None, ninja_log_compiler=None, |
118 ninja_log_command=None, ninja_log_exit_status=None, | 170 ninja_log_command=None, ninja_log_exit_status=None, |
119 name=None): | 171 name=None): |
120 args = [ | 172 args = [ |
121 '--upload-compiler-proxy-info' | 173 '--upload-compiler-proxy-info' |
122 ] | 174 ] |
(...skipping 17 matching lines...) Expand all Loading... | |
140 self._goma_ctl_env['GOMACTL_CRASH_REPORT_ID_FILE'], | 192 self._goma_ctl_env['GOMACTL_CRASH_REPORT_ID_FILE'], |
141 '--build-data-dir', self.build_data_dir, | 193 '--build-data-dir', self.build_data_dir, |
142 ]) | 194 ]) |
143 | 195 |
144 self.m.python( | 196 self.m.python( |
145 name=name or 'upload_log', | 197 name=name or 'upload_log', |
146 script=self.package_repo_resource( | 198 script=self.package_repo_resource( |
147 'scripts', 'slave', 'upload_goma_logs.py'), | 199 'scripts', 'slave', 'upload_goma_logs.py'), |
148 args=args | 200 args=args |
149 ) | 201 ) |
OLD | NEW |