Closed
Bug 530236
Opened 15 years ago
Closed 2 years ago
nsNavHistoryFolderResultNode sorting should be done entirely in SQL
Categories
(Toolkit :: Places, defect, P3)
Toolkit
Places
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: adw, Unassigned)
References
Details
(Whiteboard: [Snappy:P3][fxperf:p3])
Attachments
(1 file, 1 obsolete file)
(deleted),
patch
|
Details | Diff | Splinter Review |
Spinning out of bug 499985. nsNavHistoryFolderResultNode is the easiest place to get started.
Reporter | ||
Comment 1•15 years ago
|
||
WIP, which now looks very measly considering the vast quantities of mental energy around it. :( Need to quash FillStats's necessity, which can be triggered by a Refresh while the node is expanded. Need to do yet more joins on the annotation tables to sort by annotation. It might be better to tailor the SQL to different sorts if it's more performant, but ugh.
Reporter | ||
Comment 2•15 years ago
|
||
Getting close, all tests pass including a new one I added because we aren't testing sorting by item annotation at all. The only thing is:
As I've mentioned before, folders get their access counts and times set by iterating over their children (FillStats). In this bug's case it's only an issue when folders are Refresh()ed (because otherwise folders are not expanded, and FillStats is basically a no-op.) I can do a sum and max in the SQL to replace FillStats I'm pretty sure, since FillStats effectively doesn't recurse into children in this case.
But I realized that the issue of a folder's being Refresh()ed while both expanded and showing its access count or time *never occurs in Firefox*. Also, note that access counts and times are always zero or blank for folders in the library.
Things that are causing me grief while working on this:
* nsNavHistory.cpp makes assumptions about SQL created in nsNavBookmarks.cpp.
* nsNavBookmarks.cpp makes assumptions about constants defined in nsNavHistory.cpp.
* Some of the SQL that builds Places queries is in nsNavBookmarks, some in nsNavHistory.
* Columns are addressed by index instead of name. Makes it difficult to address columns when they exist conditionally. I don't want to have to make new, static storage statements for each combination of columns that I need. Sorting in the SQL (by specific columns determined at run-time) exacerbates the problem. In general it makes the code more brittle.
* I wish that SQL statements and all the k* constants that address their columns were more tightly bound, e.g., maybe together in a class.
Attachment #413759 -
Attachment is obsolete: true
Reporter | ||
Comment 3•15 years ago
|
||
Maybe I'm missing something, but it's weird how FillStats is used. It recurses into children, but a container doesn't have children until it's opened. The result, coupled with the fact that folder details aren't exposed to the user while the folder is open, is that access counts and times for folders are always zero in the UI. But even if a folder's details were shown while it's open, the access count and time wouldn't take into account children that themselves are folders, since their access counts and times are zero, since they start out closed and childless.
If you want a some property of a container to aggregate properties of its descendants, then you either have to keep a running total along with the container in the DB, or you have to traverse the entire subtree rooted at the container. Otherwise you end up with misleading numbers that are more useless than no numbers at all.
Updated•13 years ago
|
Whiteboard: [Snappy]
Updated•13 years ago
|
Whiteboard: [Snappy] → [Snappy:P3]
Reporter | ||
Updated•11 years ago
|
Assignee: adw → nobody
Status: ASSIGNED → NEW
Updated•8 years ago
|
Priority: -- → P3
Updated•7 years ago
|
Whiteboard: [Snappy:P3] → [Snappy:P3][fxperf]
Comment 4•7 years ago
|
||
Hey mak, is this bug still relevant what with the new bookmarks APIs we've been transitioning to?
Flags: needinfo?(mak77)
Comment 5•7 years ago
|
||
The querying API and code didn't change, we are changing the backend API. The querying is still all synchronous and clunky.
Ideally all of this area needs a rewrite, probably in js.
Flags: needinfo?(mak77)
Updated•7 years ago
|
Whiteboard: [Snappy:P3][fxperf] → [Snappy:P3][fxperf:p3]
Updated•2 years ago
|
Severity: normal → S3
Comment 6•2 years ago
|
||
I'm marking the bug as wontfix, not because it's not something we want to do, but because we are unlikely to make this kind of change to the existing querying code. We should refactor, or even rewrite, the querying API and consider performance of batch results from the beginning, doing as much as possible in SQL.
Status: NEW → RESOLVED
Closed: 2 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•