RESOLVED FIXED 76227
check-webkit-style: should encourage the use of Own* classes for Windows DC.
https://bugs.webkit.org/show_bug.cgi?id=76227
Summary check-webkit-style: should encourage the use of Own* classes for Windows DC.
David Levin
Reported 2012-01-12 16:57:34 PST
Inspired by how long it took me to take down: https://bugs.webkit.org/show_bug.cgi?id=76203
Attachments
Patch (5.99 KB, patch)
2012-01-12 17:03 PST, David Levin
no flags
Patch (6.47 KB, patch)
2012-01-12 17:48 PST, David Levin
no flags
Patch (7.81 KB, patch)
2012-01-12 23:28 PST, David Levin
no flags
Patch (7.80 KB, patch)
2012-01-12 23:41 PST, David Levin
no flags
Patch (7.86 KB, patch)
2012-01-13 10:51 PST, David Levin
no flags
David Levin
Comment 1 2012-01-12 17:03:16 PST
Dmitry Lomov
Comment 2 2012-01-12 17:12:23 PST
Comment on attachment 122340 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=122340&action=review Looks good, 2 minor nits. > Tools/Scripts/webkitpy/style/checkers/cpp.py:1679 > + 'Use OwnGetDC instead of GetDC to avoid potential memory leaks.') I think OwnGetDC should be called DCRef, similar to RefPtr > Tools/Scripts/webkitpy/style/checkers/cpp.py:1685 > + 'Use OwnPtr<HDC> when calling CreateDC to avoid potential memory leaks.') Maybe call out CreateCompatibleDC as well in the error message
David Levin
Comment 3 2012-01-12 17:48:34 PST
Dmitry Lomov
Comment 4 2012-01-12 17:54:38 PST
Comment on attachment 122351 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=122351&action=review > Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py:3357 > + 'Use the class HwndDC instead of calling GetDCEx to avoid potential ' Is there a constructor on HwndDC to match GetDCEx signature? Maybe better to have HwndDC::Get and HwndDC::GetEx instead of constructors?
David Levin
Comment 5 2012-01-12 23:28:44 PST
David Levin
Comment 6 2012-01-12 23:31:01 PST
(In reply to comment #4) > (From update of attachment 122351 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=122351&action=review > > > Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py:3357 > > + 'Use the class HwndDC instead of calling GetDCEx to avoid potential ' > > Is there a constructor on HwndDC to match GetDCEx signature? Done. > Maybe better to have HwndDC::Get and HwndDC::GetEx instead of constructors? I see what you mean but I think that makes it harder to put on the stack and we're in luck because the parameter order is the same for GetDC and GetDCEx so it fits the typical overload pattern. So I stayed with the constructors as discussed.
WebKit Review Bot
Comment 7 2012-01-12 23:34:21 PST
Attachment 122378 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/ChangeLog', u'Source..." exit_code: 1 Source/JavaScriptCore/wtf/win/HwndDCWin.h:40: Use the class HwndDC instead of calling GetDCEx to avoid potential memory leaks. [runtime/leaky_pattern] [5] Total errors found: 1 in 5 files If any of these errors are false positives, please file a bug against check-webkit-style.
David Levin
Comment 8 2012-01-12 23:41:46 PST
WebKit Review Bot
Comment 9 2012-01-12 23:44:04 PST
Attachment 122379 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/ChangeLog', u'Source..." exit_code: 1 Source/JavaScriptCore/wtf/win/HwndDCWin.h:40: Use the class HwndDC instead of calling GetDCEx to avoid potential memory leaks. [runtime/leaky_pattern] [5] Total errors found: 1 in 5 files If any of these errors are false positives, please file a bug against check-webkit-style.
David Levin
Comment 10 2012-01-12 23:45:30 PST
(In reply to comment #9) > Attachment 122379 [details] did not pass style-queue: > > Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/ChangeLog', u'Source..." exit_code: 1 > > Source/JavaScriptCore/wtf/win/HwndDCWin.h:40: Use the class HwndDC instead of calling GetDCEx to avoid potential memory leaks. [runtime/leaky_pattern] [5] > Total errors found: 1 in 5 files Actually this is expected. It is flagging HWndDC. I suppose I could make that one file exempt from this check but it doesn't seem worth it.
David Levin
Comment 11 2012-01-13 10:51:58 PST
WebKit Review Bot
Comment 12 2012-01-13 10:55:52 PST
Attachment 122456 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/ChangeLog', u'Source..." exit_code: 1 Source/JavaScriptCore/wtf/win/HWndDCWin.h:40: Use the class HWndDC instead of calling GetDCEx to avoid potential memory leaks. [runtime/leaky_pattern] [5] Total errors found: 1 in 5 files If any of these errors are false positives, please file a bug against check-webkit-style.
WebKit Review Bot
Comment 13 2012-01-13 14:58:16 PST
Comment on attachment 122456 [details] Patch Clearing flags on attachment: 122456 Committed r104995: <http://trac.webkit.org/changeset/104995>
WebKit Review Bot
Comment 14 2012-01-13 14:58:22 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.