#!/usr/bin/env python
#
# which-error.py: Print semantic Subversion error code names mapped from
# their numeric error code values
#
# ====================================================================
# Copyright (c) 2005 CollabNet. All rights reserved.
#
# * This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at http://subversion.tigris.org/license-1.html.
# If newer versions of this license are posted there, you may use a
# newer version instead, at your option.
#
# * This software consists of voluntary contributions made by many
# individuals. For exact contribution history, see the revision
# history and logs, available at http://subversion.tigris.org/.
# ====================================================================
#
# $HeadURL: http://svn.collab.net/repos/svn/branches/1.4.x/tools/dev/which-error.py $
# $LastChangedDate: 2005-09-13 16:20:10 +0000 (Tue, 13 Sep 2005) $
# $LastChangedBy: cmpilato $
# $LastChangedRevision: 16122 $
#
import sys
import os.path
import re
from svn import core
def usage_and_exit():
progname = os.path.basename(sys.argv[0])
sys.stderr.write("""Usage: 1. %s ERRNUM [...]
2. %s parse
3. %s list
Print numeric and semantic error code information for Subversion error
codes. This can be done in variety of ways:
1. For each ERRNUM, list the error code information.
2. Parse standard input as if it was error stream from a debug-mode
Subversion command-line client, echoing that input to stdout,
followed by the error code information for codes found in use in
that error stream.
3. Simply list the error code information for all known such
mappings.
""" % (progname, progname, progname))
sys.exit(1)
def get_errors():
errs = {}
for key in vars(core):
if key.find('SVN_ERR_') == 0:
try:
val = int(vars(core)[key])
errs[val] = key
except:
pass
return errs
def print_error(code):
try:
print '%08d %s' % (code, __svn_error_codes[code])
except KeyError:
print '%08d *** UNKNOWN ERROR CODE ***' % (code)
if __name__ == "__main__":
global __svn_error_codes
__svn_error_codes = get_errors()
codes = []
if len(sys.argv) < 2:
usage_and_exit()
# Get a list of known codes
if sys.argv[1] == 'list':
if len(sys.argv) > 2:
usage_and_exit()
codes = __svn_error_codes.keys()
codes.sort()
# Get a list of code by parsing stdin for apr_err=CODE instances
elif sys.argv[1] == 'parse':
if len(sys.argv) > 2:
usage_and_exit()
while 1:
line = sys.stdin.readline()
if not line:
break
sys.stdout.write(line)
match = re.match(r'^.*apr_err=([0-9]+)[^0-9].*$', line)
if match:
codes.append(int(match.group(1)))
# Get the list of requested codes
else:
for code in sys.argv[1:]:
try:
codes.append(int(code))
except ValueError:
usage_and_exit()
# Print the harvest codes
for code in codes:
print_error(code)
syntax highlighted by Code2HTML, v. 0.9.1