RESOLVED DUPLICATE of bug 191237 184670
Make all the items of the SVG tear-off properties list be RefCounted objects
https://bugs.webkit.org/show_bug.cgi?id=184670
Summary Make all the items of the SVG tear-off properties list be RefCounted objects
Said Abou-Hallawa
Reported 2018-04-16 15:21:47 PDT
This work is a step towards https://bugs.webkit.org/show_bug.cgi?id=168586. 1. A new class, named SVGValue, will be added. This class is RefCounted. It is also a variant of the all the types of the list elements. 2. A new template class, named SVGValueList will be added. This class is derived from Vector<RefPtr<SVGValue>>. It provides easy access to the underlaying data members. It handles the copy assignment such that the underlaying data members are copied not referenced. 3. All the list properties classes will be derived form SVGValueList. For example SVGNumberListValues will be derived from SVGValueList<float>. 4. When an item is added to the values of a tear-off object, a new RefPtr<SVGValue> is created to hold the new data. 5. When an item of the values of a tear-off object is referenced by a wrapper, the reference of the underlaying data member is obtained form the RefPtr<SVGValue>. The patch of this bug will add the overhead of saving all the data of the list properties as RefCounted objects. It will not make the code more secure. All the raw references and raw pointers from the values to the wrappers will remain the same. But it will make changing all SVG attributes to be RefCounted a lot easier.
Attachments
Patch (85.74 KB, patch)
2018-04-16 15:31 PDT, Said Abou-Hallawa
no flags
Patch (83.31 KB, patch)
2018-04-16 15:53 PDT, Said Abou-Hallawa
no flags
Patch (83.06 KB, patch)
2018-04-16 18:16 PDT, Said Abou-Hallawa
no flags
Said Abou-Hallawa
Comment 1 2018-04-16 15:31:03 PDT
Said Abou-Hallawa
Comment 2 2018-04-16 15:53:58 PDT
Said Abou-Hallawa
Comment 3 2018-04-16 18:16:20 PDT
Said Abou-Hallawa
Comment 4 2019-05-06 15:28:26 PDT
This is already done in https://bugs.webkit.org/show_bug.cgi?id=191237. *** This bug has been marked as a duplicate of bug 191237 ***
Alex Christensen
Comment 5 2021-11-01 12:05:26 PDT
Comment on attachment 338066 [details] Patch This has been requesting review for more than one year. If this is still needed, please rebase and re-request review.
Note You need to log in before you can comment on or make changes to this bug.