summaryrefslogtreecommitdiffstats
path: root/git_trace2_event_log.py
diff options
context:
space:
mode:
Diffstat (limited to 'git_trace2_event_log.py')
-rw-r--r--git_trace2_event_log.py44
1 files changed, 29 insertions, 15 deletions
diff --git a/git_trace2_event_log.py b/git_trace2_event_log.py
index 4a8e0347..dfbded15 100644
--- a/git_trace2_event_log.py
+++ b/git_trace2_event_log.py
@@ -132,6 +132,30 @@ class EventLog(object):
132 exit_event['code'] = result 132 exit_event['code'] = result
133 self._log.append(exit_event) 133 self._log.append(exit_event)
134 134
135 def _GetEventTargetPath(self):
136 """Get the 'trace2.eventtarget' path from git configuration.
137
138 Returns:
139 path: git config's 'trace2.eventtarget' path if it exists, or None
140 """
141 path = None
142 cmd = ['config', '--get', 'trace2.eventtarget']
143 # TODO(https://crbug.com/gerrit/13706): Use GitConfig when it supports
144 # system git config variables.
145 p = GitCommand(None, cmd, capture_stdout=True, capture_stderr=True,
146 bare=True)
147 retval = p.Wait()
148 if retval == 0:
149 # Strip trailing carriage-return in path.
150 path = p.stdout.rstrip('\n')
151 elif retval != 1:
152 # `git config --get` is documented to produce an exit status of `1` if
153 # the requested variable is not present in the configuration. Report any
154 # other return value as an error.
155 print("repo: error: 'git config --get' call failed with return code: %r, stderr: %r" % (
156 retval, p.stderr), file=sys.stderr)
157 return path
158
135 def Write(self, path=None): 159 def Write(self, path=None):
136 """Writes the log out to a file. 160 """Writes the log out to a file.
137 161
@@ -150,21 +174,11 @@ class EventLog(object):
150 log_path = None 174 log_path = None
151 # If no logging path is specified, get the path from 'trace2.eventtarget'. 175 # If no logging path is specified, get the path from 'trace2.eventtarget'.
152 if path is None: 176 if path is None:
153 cmd = ['config', '--get', 'trace2.eventtarget'] 177 path = self._GetEventTargetPath()
154 # TODO(https://crbug.com/gerrit/13706): Use GitConfig when it supports 178
155 # system git config variables. 179 # If no logging path is specified, exit.
156 p = GitCommand(None, cmd, capture_stdout=True, capture_stderr=True, 180 if path is None:
157 bare=True) 181 return None
158 retval = p.Wait()
159 if retval == 0:
160 # Strip trailing carriage-return in path.
161 path = p.stdout.rstrip('\n')
162 elif retval != 1:
163 # `git config --get` is documented to produce an exit status of `1` if
164 # the requested variable is not present in the configuration. Report any
165 # other return value as an error.
166 print("repo: error: 'git config --get' call failed with return code: %r, stderr: %r" % (
167 retval, p.stderr), file=sys.stderr)
168 182
169 if isinstance(path, str): 183 if isinstance(path, str):
170 # Get absolute path. 184 # Get absolute path.