From 352da947a02ff7658deb7729efa8b2cf7ce7a5cc Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Tue, 1 Apr 2025 04:41:32 -0600 Subject: measurestack: Intern QNames and BaseNames --- build-aux/measurestack/analyze.py | 37 ++++++++++++++++++++++++++++++------- 1 file changed, 30 insertions(+), 7 deletions(-) (limited to 'build-aux/measurestack/analyze.py') diff --git a/build-aux/measurestack/analyze.py b/build-aux/measurestack/analyze.py index 0fb20ef..a5ac6e5 100644 --- a/build-aux/measurestack/analyze.py +++ b/build-aux/measurestack/analyze.py @@ -4,6 +4,7 @@ # SPDX-License-Identifier: AGPL-3.0-or-later import re +import sys import typing from . import vcg @@ -22,12 +23,23 @@ __all__ = [ class BaseName: - _content: str + # class ########################################################## + + _interned: dict[str, "BaseName"] = {} - def __init__(self, content: str) -> None: + def __new__(cls, content: str) -> "BaseName": if ":" in content: raise ValueError(f"invalid non-qualified name: {content!r}") - self._content = content + content = sys.intern(content) + if content not in cls._interned: + self = super().__new__(cls) + self._content = content + cls._interned[content] = self + return cls._interned[content] + + # instance ####################################################### + + _content: str def __str__(self) -> str: return self._content @@ -55,13 +67,24 @@ class BaseName: class QName: + # class ########################################################## + + _interned: dict[str, "QName"] = {} + + def __new__(cls, content: str) -> "QName": + content = sys.intern(content) + if content not in cls._interned: + self = super().__new__(cls) + self._content = content + self._base = None + cls._interned[content] = self + return cls._interned[content] + + # instance ####################################################### + _content: str _base: BaseName | None - def __init__(self, content: str) -> None: - self._content = content - self._base = None - def __str__(self) -> str: return self._content -- cgit v1.2.3-2-g168b