ASSIGNED45359
Rename poorly-named POD* classes
https://bugs.webkit.org/show_bug.cgi?id=45359
Summary Rename poorly-named POD* classes
Kenneth Russell
Reported 2010-09-07 19:35:25 PDT
The PODArena, PODRedBlackTree and PODIntervalTree classes recently added for https://bugs.webkit.org/show_bug.cgi?id=44729 are poorly named; they do not strictly allocate and operate upon only Plain Old Data. It has been pointed out that the naming convention does not add any value; the classes should be renamed.
Attachments
Chris Marrin
Comment 1 2010-09-08 07:37:07 PDT
I want to put in my vote for either getting rid of the prefix entirely. If it's unsavory to have a simple Arena class (because of the Arena.h file elsewhere) then perhaps it can be called RBTreeArena or something like that. Just some thoughts.
Darin Fisher (:fishd, Google)
Comment 2 2010-09-08 09:41:43 PDT
Another suggestion: PODArena -> ObjectArena (since it only knows how to allocate objects of a fixed type) PODRedBlackTree -> RedBlackTree PODIntervalTree -> IntervalTree One question is what to do with PODInterval. We could rename that Interval, but then it seems like we might be taking over a name that is quite generic sounding for this specific use. Interval cannot be an inner class of IntervalTree since it is a template argument to IntervalTree. Thoughts?
Chris Marrin
Comment 3 2010-09-08 10:30:57 PDT
(In reply to comment #2) > Another suggestion: > > PODArena -> ObjectArena (since it only knows how to allocate objects of a fixed type) > PODRedBlackTree -> RedBlackTree > PODIntervalTree -> IntervalTree > > One question is what to do with PODInterval. We could rename that Interval, but then it seems like we might be taking over a name that is quite generic sounding for this specific use. Interval cannot be an inner class of IntervalTree since it is a template argument to IntervalTree. Thoughts? Currently these classes have a specific use. They are used for an accelerated 2D tesselator, right? Perhaps we could identify them as such, e.g., TessArena, TessRBTree, TessIntervalTree. Or is that too specific for their ultimate purpose? BTW, I think renaming RedBlackTree to RBTree is reasonable. It seems to be a common shorthand.
Darin Fisher (:fishd, Google)
Comment 4 2010-09-08 11:17:55 PDT
That suggestion sounds pretty good to me, but I defer to Ken in case I'm overlooking some intended use cases. Giving them a "namespace" like that means that we would also not need to prematurely add code to call destructors since we would very clearly be making these data structures domain specific (minimizing the risk of misuse).
Note You need to log in before you can comment on or make changes to this bug.