csv_gather.py 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. #!/usr/bin/env python
  2. # Copyright (c) 2010-2011 Nokia Corporation and/or its subsidiary(-ies).
  3. # All rights reserved.
  4. # This component and the accompanying materials are made available
  5. # under the terms of "Eclipse Public License v1.0"
  6. # which accompanies this distribution, and is available
  7. # at the URL "http://www.eclipse.org/legal/epl-v10.html".
  8. #
  9. # Initial Contributors:
  10. # Nokia Corporation - initial contribution.
  11. #
  12. # Contributors:
  13. #
  14. # Description:
  15. """
  16. Gather up all the raptor XML logs in a given directory and convert them
  17. into a single sorted .csv file.
  18. Works on Linux; and on Windows with Cygwin.
  19. """
  20. import optparse
  21. import os
  22. import shutil
  23. import subprocess
  24. import sys
  25. parser = optparse.OptionParser()
  26. parser.add_option("--directory", default=".", help =
  27. "The directory to search for raptor log files. The default is '%default'."
  28. )
  29. parser.add_option("--output", default="raptor_all.csv", help =
  30. "The output .csv file name for all the collected log data. "
  31. "This is the 'one big file' that probably needs further processing. "
  32. "The default is '%default'."
  33. )
  34. parser.add_option("--params", default="ok", help =
  35. "The parameters to pass to the CSV filter. This is a comma-separated "
  36. "list of the event types to exclude from the .csv output. The common "
  37. "types are: ok, error, critical, warning, remark, missing. The default "
  38. "is '%default'."
  39. )
  40. parser.add_option("--totals", default="raptor_totals.csv", help =
  41. "The output .csv file name for the result of running csv_totals on the "
  42. "main --output file. This gives a shorter summary of the build in terms "
  43. "of events per component, so gives you a clue as to how to process the "
  44. "'one big file' to get the details you need. The default is '%default'."
  45. )
  46. # parse the command-line arguments
  47. (options, leftover_args) = parser.parse_args()
  48. # there should not be any leftover_args
  49. for leftover in leftover_args:
  50. sys.stderr.write("warning: unexpected argument '{0}'\n".format(leftover))
  51. def is_raptor_log(path):
  52. try:
  53. with open(path, "r") as f:
  54. line1 = f.readline()
  55. line2 = f.readline()
  56. return line1.startswith("<?xml") and line2.startswith("<buildlog")
  57. except:
  58. return False
  59. def join_dir(filename):
  60. return os.path.join(options.directory, filename)
  61. # search the given directory for a list of raptor log files
  62. logs = list(filter(is_raptor_log, list(map(join_dir, os.listdir(options.directory)))))
  63. print("found", len(logs), "raptor log files")
  64. if len(logs) < 1:
  65. sys.exit(0)
  66. # run the CSV filter on each log file
  67. cmd_template = "sbs_filter --filters=csv[{0}] -f {1} < {2}"
  68. tmp_template = "/tmp/csv_gather_{0}.csv"
  69. csvs = []
  70. for i,f in enumerate(logs):
  71. tmpfile = tmp_template.format(i)
  72. command = cmd_template.format(options.params, tmpfile, f)
  73. print(command)
  74. returncode = subprocess.call(command, shell=True)
  75. if returncode != 0:
  76. sys.stderr.write("FAILED: {0}\n".format(command))
  77. sys.exit(1)
  78. csvs.append(tmpfile)
  79. # cat all the temporary CSV files together and output the sorted result
  80. catsort = "cat {0} | sort | uniq > {1}".format(" ".join(csvs), options.output)
  81. print(catsort)
  82. returncode = subprocess.call(catsort, shell=True)
  83. if returncode != 0:
  84. sys.stderr.write("FAILED: {0}\n".format(catsort))
  85. sys.exit(1)
  86. # run csv_totals on the "big" file to create an easier starting point
  87. csvtotals = "csv_totals.py < {0} | sort > {1}".format(options.output, options.totals)
  88. print(csvtotals)
  89. returncode = subprocess.call(csvtotals, shell=True)
  90. if returncode != 0:
  91. sys.stderr.write("FAILED: {0}\n".format(csvtotals))
  92. sys.exit(1)