* [PATCH v1] dts: add testpmd port information caching
@ 2024-08-23 7:41 Juraj Linkeš
2024-09-02 13:45 ` Luca Vizzarro
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Juraj Linkeš @ 2024-08-23 7:41 UTC (permalink / raw)
To: thomas, Honnappa.Nagarahalli, jspewock, probb, paul.szczepanek,
Luca.Vizzarro, npratte, dmarx, alex.chapman
Cc: dev, Juraj Linkeš
When using port information multiple times in a testpmd shell instance
lifespan, it's desirable to not get the information each time, so
caching is added. In case the information changes, there's a way to
force the update with either TestPmdShell.show_port_info() or
TestPmdShell.show_port_info_all().
Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
---
dts/framework/remote_session/testpmd_shell.py | 30 +++++++++++++++++--
1 file changed, 28 insertions(+), 2 deletions(-)
diff --git a/dts/framework/remote_session/testpmd_shell.py b/dts/framework/remote_session/testpmd_shell.py
index 43e9f56517..0a5cb385c9 100644
--- a/dts/framework/remote_session/testpmd_shell.py
+++ b/dts/framework/remote_session/testpmd_shell.py
@@ -586,6 +586,7 @@ class TestPmdShell(DPDKShell):
"""
_app_params: TestPmdParams
+ _ports: list[TestPmdPort] | None
#: The path to the testpmd executable.
path: ClassVar[PurePath] = PurePath("app", "dpdk-testpmd")
@@ -618,6 +619,21 @@ def __init__(
TestPmdParams(**app_params),
name,
)
+ self._ports = None
+
+ @property
+ def ports(self) -> list[TestPmdPort]:
+ """The ports of the instance.
+
+ This caches the ports returned by :meth:`show_port_info_all`.
+ To force an update of port information, execute :meth:`show_port_info_all` or
+ :meth:`show_port_info`.
+
+ Returns: The list of known testpmd ports.
+ """
+ if self._ports is None:
+ return self.show_port_info_all()
+ return self._ports
def start(self, verify: bool = True) -> None:
"""Start packet forwarding with the current configuration.
@@ -747,7 +763,8 @@ def show_port_info_all(self) -> list[TestPmdPort]:
# executed on a pseudo-terminal created by paramiko on the remote node, lines end with CRLF.
# Therefore we also need to take the carriage return into account.
iter = re.finditer(r"\*{21}.*?[\r\n]{4}", output + "\r\n", re.S)
- return [TestPmdPort.parse(block.group(0)) for block in iter]
+ self._ports = [TestPmdPort.parse(block.group(0)) for block in iter]
+ return self._ports
def show_port_info(self, port_id: int) -> TestPmdPort:
"""Returns the given port information.
@@ -765,7 +782,16 @@ def show_port_info(self, port_id: int) -> TestPmdPort:
if output.startswith("Invalid port"):
raise InteractiveCommandExecutionError("invalid port given")
- return TestPmdPort.parse(output)
+ port = TestPmdPort.parse(output)
+ self._update_port(port)
+ return port
+
+ def _update_port(self, port: TestPmdPort) -> None:
+ if self._ports:
+ self._ports = [
+ existing_port if port.id != existing_port.id else port
+ for existing_port in self._ports
+ ]
def show_port_stats_all(self) -> list[TestPmdPortStats]:
"""Returns the statistics of all the ports.
--
2.34.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v1] dts: add testpmd port information caching
2024-08-23 7:41 [PATCH v1] dts: add testpmd port information caching Juraj Linkeš
@ 2024-09-02 13:45 ` Luca Vizzarro
2024-09-05 16:09 ` Jeremy Spewock
2024-09-09 15:51 ` Juraj Linkeš
2 siblings, 0 replies; 4+ messages in thread
From: Luca Vizzarro @ 2024-09-02 13:45 UTC (permalink / raw)
To: Juraj Linkeš,
thomas, Honnappa.Nagarahalli, jspewock, probb, paul.szczepanek,
npratte, dmarx, alex.chapman
Cc: dev
Good one.
Reviewed-by: Luca Vizzarro <luca.vizzarro@arm.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v1] dts: add testpmd port information caching
2024-08-23 7:41 [PATCH v1] dts: add testpmd port information caching Juraj Linkeš
2024-09-02 13:45 ` Luca Vizzarro
@ 2024-09-05 16:09 ` Jeremy Spewock
2024-09-09 15:51 ` Juraj Linkeš
2 siblings, 0 replies; 4+ messages in thread
From: Jeremy Spewock @ 2024-09-05 16:09 UTC (permalink / raw)
To: Juraj Linkeš
Cc: thomas, Honnappa.Nagarahalli, probb, paul.szczepanek,
Luca.Vizzarro, npratte, dmarx, alex.chapman, dev
Seems like a good change to me!
Reviewed-by: Jeremy Spewock <jspewock@iol.unh.edu>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v1] dts: add testpmd port information caching
2024-08-23 7:41 [PATCH v1] dts: add testpmd port information caching Juraj Linkeš
2024-09-02 13:45 ` Luca Vizzarro
2024-09-05 16:09 ` Jeremy Spewock
@ 2024-09-09 15:51 ` Juraj Linkeš
2 siblings, 0 replies; 4+ messages in thread
From: Juraj Linkeš @ 2024-09-09 15:51 UTC (permalink / raw)
To: thomas, Honnappa.Nagarahalli, jspewock, probb, paul.szczepanek,
Luca.Vizzarro, npratte, dmarx, alex.chapman
Cc: dev
Applied to next-dts, thanks.
On 23. 8. 2024 9:41, Juraj Linkeš wrote:
> When using port information multiple times in a testpmd shell instance
> lifespan, it's desirable to not get the information each time, so
> caching is added. In case the information changes, there's a way to
> force the update with either TestPmdShell.show_port_info() or
> TestPmdShell.show_port_info_all().
>
> Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
> ---
> dts/framework/remote_session/testpmd_shell.py | 30 +++++++++++++++++--
> 1 file changed, 28 insertions(+), 2 deletions(-)
>
> diff --git a/dts/framework/remote_session/testpmd_shell.py b/dts/framework/remote_session/testpmd_shell.py
> index 43e9f56517..0a5cb385c9 100644
> --- a/dts/framework/remote_session/testpmd_shell.py
> +++ b/dts/framework/remote_session/testpmd_shell.py
> @@ -586,6 +586,7 @@ class TestPmdShell(DPDKShell):
> """
>
> _app_params: TestPmdParams
> + _ports: list[TestPmdPort] | None
>
> #: The path to the testpmd executable.
> path: ClassVar[PurePath] = PurePath("app", "dpdk-testpmd")
> @@ -618,6 +619,21 @@ def __init__(
> TestPmdParams(**app_params),
> name,
> )
> + self._ports = None
> +
> + @property
> + def ports(self) -> list[TestPmdPort]:
> + """The ports of the instance.
> +
> + This caches the ports returned by :meth:`show_port_info_all`.
> + To force an update of port information, execute :meth:`show_port_info_all` or
> + :meth:`show_port_info`.
> +
> + Returns: The list of known testpmd ports.
> + """
> + if self._ports is None:
> + return self.show_port_info_all()
> + return self._ports
>
> def start(self, verify: bool = True) -> None:
> """Start packet forwarding with the current configuration.
> @@ -747,7 +763,8 @@ def show_port_info_all(self) -> list[TestPmdPort]:
> # executed on a pseudo-terminal created by paramiko on the remote node, lines end with CRLF.
> # Therefore we also need to take the carriage return into account.
> iter = re.finditer(r"\*{21}.*?[\r\n]{4}", output + "\r\n", re.S)
> - return [TestPmdPort.parse(block.group(0)) for block in iter]
> + self._ports = [TestPmdPort.parse(block.group(0)) for block in iter]
> + return self._ports
>
> def show_port_info(self, port_id: int) -> TestPmdPort:
> """Returns the given port information.
> @@ -765,7 +782,16 @@ def show_port_info(self, port_id: int) -> TestPmdPort:
> if output.startswith("Invalid port"):
> raise InteractiveCommandExecutionError("invalid port given")
>
> - return TestPmdPort.parse(output)
> + port = TestPmdPort.parse(output)
> + self._update_port(port)
> + return port
> +
> + def _update_port(self, port: TestPmdPort) -> None:
> + if self._ports:
> + self._ports = [
> + existing_port if port.id != existing_port.id else port
> + for existing_port in self._ports
> + ]
>
> def show_port_stats_all(self) -> list[TestPmdPortStats]:
> """Returns the statistics of all the ports.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-09-09 15:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-23 7:41 [PATCH v1] dts: add testpmd port information caching Juraj Linkeš
2024-09-02 13:45 ` Luca Vizzarro
2024-09-05 16:09 ` Jeremy Spewock
2024-09-09 15:51 ` Juraj Linkeš
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).