RESOLVED FIXED 173519
Use WTF::Function instead of std::function in WTF/
https://bugs.webkit.org/show_bug.cgi?id=173519
Summary Use WTF::Function instead of std::function in WTF/
Chris Dumez
Reported 2017-06-17 19:19:24 PDT
Use WTF::Function instead of std::function in WTF/ to avoid copying.
Attachments
Patch (17.68 KB, patch)
2017-06-17 21:34 PDT, Chris Dumez
no flags
Chris Dumez
Comment 1 2017-06-17 21:34:48 PDT
Build Bot
Comment 2 2017-06-17 21:35:51 PDT
Attachment 313219 [details] did not pass style-queue: ERROR: Source/WTF/wtf/MemoryPressureHandler.h:175: Extra space before ( in function call [whitespace/parens] [4] ERROR: Source/WTF/wtf/MemoryPressureHandler.h:182: Extra space before ( in function call [whitespace/parens] [4] ERROR: Source/WTF/wtf/RefCounter.h:62: Extra space before ( in function call [whitespace/parens] [4] ERROR: Source/WTF/wtf/linux/MemoryPressureHandlerLinux.cpp:102: Extra space before ( in function call [whitespace/parens] [4] Total errors found: 4 in 11 files If any of these errors are false positives, please file a bug against check-webkit-style.
Sam Weinig
Comment 3 2017-06-18 11:36:41 PDT
Comment on attachment 313219 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=313219&action=review > Source/WTF/wtf/text/WTFString.h:370 > + using SplitFunctor = WTF::Function<void(const StringView&)>; > + WTF_EXPORT_STRING_API void split(UChar separator, bool allowEmptyEntries, const SplitFunctor&) const; This kind of basic algorithm seems like it should a template function and take the functor as a template parameter.
Chris Dumez
Comment 4 2017-06-18 11:37:25 PDT
(In reply to Sam Weinig from comment #3) > Comment on attachment 313219 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=313219&action=review > > > Source/WTF/wtf/text/WTFString.h:370 > > + using SplitFunctor = WTF::Function<void(const StringView&)>; > > + WTF_EXPORT_STRING_API void split(UChar separator, bool allowEmptyEntries, const SplitFunctor&) const; > > This kind of basic algorithm seems like it should a template function and > take the functor as a template parameter. Agreed. Should I do it in this patch or a follow-up?
Chris Dumez
Comment 5 2017-06-18 12:19:52 PDT
Comment on attachment 313219 [details] Patch Will do in a follow-up.
WebKit Commit Bot
Comment 6 2017-06-18 12:49:16 PDT
Comment on attachment 313219 [details] Patch Clearing flags on attachment: 313219 Committed r218464: <http://trac.webkit.org/changeset/218464>
WebKit Commit Bot
Comment 7 2017-06-18 12:49:17 PDT
All reviewed patches have been landed. Closing bug.
Sam Weinig
Comment 8 2017-06-18 13:20:10 PDT
(In reply to Chris Dumez from comment #4) > (In reply to Sam Weinig from comment #3) > > Comment on attachment 313219 [details] > > Patch > > > > View in context: > > https://bugs.webkit.org/attachment.cgi?id=313219&action=review > > > > > Source/WTF/wtf/text/WTFString.h:370 > > > + using SplitFunctor = WTF::Function<void(const StringView&)>; > > > + WTF_EXPORT_STRING_API void split(UChar separator, bool allowEmptyEntries, const SplitFunctor&) const; > > > > This kind of basic algorithm seems like it should a template function and > > take the functor as a template parameter. > > Agreed. Should I do it in this patch or a follow-up? Follow-up probably.
Chris Dumez
Comment 9 2017-06-18 13:27:16 PDT
Comment on attachment 313219 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=313219&action=review >>>> Source/WTF/wtf/text/WTFString.h:370 >>>> + WTF_EXPORT_STRING_API void split(UChar separator, bool allowEmptyEntries, const SplitFunctor&) const; >>> >>> This kind of basic algorithm seems like it should a template function and take the functor as a template parameter. >> >> Agreed. Should I do it in this patch or a follow-up? > > Follow-up probably. Note that in this case though, it would force us to move the implementation in the header (it is currently in the cpp).
Note You need to log in before you can comment on or make changes to this bug.