[gimp/gimp-2-10] tools: add performance-log-close-tags.py, use in performance-log-viewer
- From: Ell <ell src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gimp-2-10] tools: add performance-log-close-tags.py, use in performance-log-viewer
- Date: Wed, 29 Jul 2020 22:09:23 +0000 (UTC)
commit b58ccec8338f43cf741829970ed6445d78031609
Author: Ell <ell_se yahoo com>
Date: Thu Jul 30 00:50:38 2020 +0300
tools: add performance-log-close-tags.py, use in performance-log-viewer
Add a new performance-log-close-tags.py tool, which closes unclosed
tags in incomplete performance logs, allowing the rest of the
perofmance-log tools to process them. This is necessary for
unfinished progressive logs.
Use the new tool as part of the pipeline in performance-log-viewer.
(cherry picked from commit e5fe1ef152204da284e25a3e90c6ea23711e7ede)
tools/Makefile.am | 1 +
tools/performance-log-close-tags.py | 49 +++++++++++++++++++++++++++++++++++++
tools/performance-log-viewer | 9 ++++---
3 files changed, 55 insertions(+), 4 deletions(-)
---
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 6b115eb4d1..2d10a01b99 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -109,6 +109,7 @@ EXTRA_DIST = \
gimppath2svg.py \
svg-contrast.c \
mnemonic-clashes \
+ performance-log-close-tags.py \
performance-log-coalesce.py \
performance-log-deduce.py \
performance-log-expand.py \
diff --git a/tools/performance-log-close-tags.py b/tools/performance-log-close-tags.py
new file mode 100755
index 0000000000..4bbf80c96e
--- /dev/null
+++ b/tools/performance-log-close-tags.py
@@ -0,0 +1,49 @@
+#!/usr/bin/env python3
+
+"""
+performance-log-close-tags.py -- Closes open tags in GIMP performance logs
+Copyright (C) 2020 Ell
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+
+Usage: performance-log-close-tags.py < infile > outfile
+"""
+
+from xml.etree import ElementTree
+import sys
+
+class OpenTagsTracker:
+ open_tags = []
+
+ def start (self, tag, attrib):
+ self.open_tags.append (tag)
+
+ def end (self, tag):
+ self.open_tags.pop ()
+
+# Read performance log from STDIN
+text = sys.stdin.buffer.read ()
+
+# Write performance log to STDOUT
+sys.stdout.buffer.write (text)
+
+# Track open tags
+tracker = OpenTagsTracker ()
+
+ElementTree.XMLParser (target = tracker).feed (text)
+
+# Close remaining open tags
+for tag in reversed (tracker.open_tags):
+ print ("</%s>" % tag)
diff --git a/tools/performance-log-viewer b/tools/performance-log-viewer
index ee60298f43..f3aa5612ae 100755
--- a/tools/performance-log-viewer
+++ b/tools/performance-log-viewer
@@ -30,8 +30,9 @@ file="$1"
< "$file" || exit 1
-< "$file" \
-"$tools_dir/performance-log-expand.py" | \
-"$tools_dir/performance-log-coalesce.py" | \
-"$tools_dir/performance-log-deduce.py" | \
+< "$file" \
+"$tools_dir/performance-log-close-tags.py" | \
+"$tools_dir/performance-log-expand.py" | \
+"$tools_dir/performance-log-coalesce.py" | \
+"$tools_dir/performance-log-deduce.py" | \
"$tools_dir/performance-log-viewer.py"
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]