mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
graph-build-time: fix code style
Fix these warnings: E201 whitespace after '[' E202 whitespace before ']' E302 expected 2 blank lines, found 1 E305 expected 2 blank lines after class or function definition, found 1 Ignore these warnings: E402 module level import not at top of file Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
236bede631
commit
cd04833926
@ -64,10 +64,10 @@ except ImportError:
|
|||||||
# Note: matplotlib.use() must be called *before* matplotlib.pyplot.
|
# Note: matplotlib.use() must be called *before* matplotlib.pyplot.
|
||||||
mpl.use('Agg')
|
mpl.use('Agg')
|
||||||
|
|
||||||
import matplotlib.pyplot as plt
|
import matplotlib.pyplot as plt # noqa: E402
|
||||||
import matplotlib.font_manager as fm
|
import matplotlib.font_manager as fm # noqa: E402
|
||||||
import csv
|
import csv # noqa: E402
|
||||||
import argparse
|
import argparse # noqa: E402
|
||||||
|
|
||||||
steps = ['extract', 'patch', 'configure', 'build',
|
steps = ['extract', 'patch', 'configure', 'build',
|
||||||
'install-target', 'install-staging', 'install-images',
|
'install-target', 'install-staging', 'install-images',
|
||||||
@ -79,6 +79,7 @@ default_colors = ['#e60004', '#009836', '#2e1d86', '#ffed00',
|
|||||||
alternate_colors = ['#00e0e0', '#3f7f7f', '#ff0000', '#00c000',
|
alternate_colors = ['#00e0e0', '#3f7f7f', '#ff0000', '#00c000',
|
||||||
'#0080ff', '#c000ff', '#00eeee', '#e0e000']
|
'#0080ff', '#c000ff', '#00eeee', '#e0e000']
|
||||||
|
|
||||||
|
|
||||||
class Package:
|
class Package:
|
||||||
def __init__(self, name):
|
def __init__(self, name):
|
||||||
self.name = name
|
self.name = name
|
||||||
@ -104,6 +105,7 @@ class Package:
|
|||||||
return self.steps_duration[step]
|
return self.steps_duration[step]
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
||||||
# Generate an histogram of the time spent in each step of each
|
# Generate an histogram of the time spent in each step of each
|
||||||
# package.
|
# package.
|
||||||
def pkg_histogram(data, output, order="build"):
|
def pkg_histogram(data, output, order="build"):
|
||||||
@ -172,6 +174,7 @@ def pkg_histogram(data, output, order="build"):
|
|||||||
# Save graph
|
# Save graph
|
||||||
plt.savefig(output)
|
plt.savefig(output)
|
||||||
|
|
||||||
|
|
||||||
# Generate a pie chart with the time spent building each package.
|
# Generate a pie chart with the time spent building each package.
|
||||||
def pkg_pie_time_per_package(data, output):
|
def pkg_pie_time_per_package(data, output):
|
||||||
# Compute total build duration
|
# Compute total build duration
|
||||||
@ -210,6 +213,7 @@ def pkg_pie_time_per_package(data, output):
|
|||||||
plt.title('Build time per package')
|
plt.title('Build time per package')
|
||||||
plt.savefig(output)
|
plt.savefig(output)
|
||||||
|
|
||||||
|
|
||||||
# Generate a pie chart with a portion for the overall time spent in
|
# Generate a pie chart with a portion for the overall time spent in
|
||||||
# each step for all packages.
|
# each step for all packages.
|
||||||
def pkg_pie_time_per_step(data, output):
|
def pkg_pie_time_per_step(data, output):
|
||||||
@ -236,6 +240,7 @@ def pkg_pie_time_per_step(data, output):
|
|||||||
plt.title('Build time per step')
|
plt.title('Build time per step')
|
||||||
plt.savefig(output)
|
plt.savefig(output)
|
||||||
|
|
||||||
|
|
||||||
# Parses the csv file passed on standard input and returns a list of
|
# Parses the csv file passed on standard input and returns a list of
|
||||||
# Package objects, filed with the duration of each step and the total
|
# Package objects, filed with the duration of each step and the total
|
||||||
# duration of the package.
|
# duration of the package.
|
||||||
@ -269,6 +274,7 @@ def read_data(input_file):
|
|||||||
|
|
||||||
return pkgs
|
return pkgs
|
||||||
|
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(description='Draw build time graphs')
|
parser = argparse.ArgumentParser(description='Draw build time graphs')
|
||||||
parser.add_argument("--type", '-t', metavar="GRAPH_TYPE",
|
parser.add_argument("--type", '-t', metavar="GRAPH_TYPE",
|
||||||
help="Type of graph (histogram, pie-packages, pie-steps)")
|
help="Type of graph (histogram, pie-packages, pie-steps)")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user