Re-add profiling calls

This commit is contained in:
Keith Edmunds 2024-11-21 18:21:44 +00:00
parent f19fc2e8c0
commit fabf3e18bf
3 changed files with 16 additions and 3 deletions

View File

@ -8,6 +8,7 @@ import sys
# PyQt imports # PyQt imports
# Third party imports # Third party imports
import line_profiler
from sqlalchemy import ( from sqlalchemy import (
bindparam, bindparam,
delete, delete,
@ -563,8 +564,9 @@ class PlaylistRows(dbtables.PlaylistRowsTable):
) )
@staticmethod @staticmethod
@line_profiler.profile
def update_plr_row_numbers( def update_plr_row_numbers(
session: Session, playlist_id: int, sqla_map: List[dict[str, int]] session: Session, playlist_id: int, sqla_map: List[dict[str, int]], dummy_for_profiling=None
) -> None: ) -> None:
""" """
Take a {plrid: row_number} dictionary and update the row numbers accordingly Take a {plrid: row_number} dictionary and update the row numbers accordingly

View File

@ -44,6 +44,7 @@ from PyQt6.QtWidgets import (
) )
# Third party imports # Third party imports
import line_profiler
import pipeclient import pipeclient
from pygame import mixer from pygame import mixer
from sqlalchemy.exc import IntegrityError from sqlalchemy.exc import IntegrityError
@ -1068,7 +1069,14 @@ class Window(QMainWindow, Ui_MainWindow):
else: else:
webbrowser.get("browser").open_new_tab(url) webbrowser.get("browser").open_new_tab(url)
<<<<<<< HEAD
def paste_rows(self) -> None: def paste_rows(self) -> None:
||||||| parent of 6879950 (Re-add profiling calls)
def paste_rows(self, dummy_for_profiling=None) -> None:
=======
@line_profiler.profile
def paste_rows(self, dummy_for_profiling=None) -> None:
>>>>>>> 6879950 (Re-add profiling calls)
""" """
Paste earlier cut rows. Paste earlier cut rows.
""" """

View File

@ -26,6 +26,7 @@ from PyQt6.QtGui import (
) )
# Third party imports # Third party imports
import line_profiler
import obswebsocket # type: ignore import obswebsocket # type: ignore
# import snoop # type: ignore # import snoop # type: ignore
@ -736,7 +737,8 @@ class PlaylistModel(QAbstractTableModel):
self.update_track_times() self.update_track_times()
self.invalidate_rows(row_numbers) self.invalidate_rows(row_numbers)
def move_rows(self, from_rows: list[int], to_row_number: int) -> None: @line_profiler.profile
def move_rows(self, from_rows: list[int], to_row_number: int, dummy_for_profiling=None) -> None:
""" """
Move the playlist rows given to to_row and below. Move the playlist rows given to to_row and below.
""" """
@ -975,7 +977,8 @@ class PlaylistModel(QAbstractTableModel):
# Update display # Update display
self.invalidate_row(track_sequence.previous.row_number) self.invalidate_row(track_sequence.previous.row_number)
def refresh_data(self, session: db.session) -> None: @line_profiler.profile
def refresh_data(self, session: db.session, dummy_for_profiling=None) -> None:
"""Populate self.playlist_rows with playlist data""" """Populate self.playlist_rows with playlist data"""
# We used to clear self.playlist_rows each time but that's # We used to clear self.playlist_rows each time but that's