WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
177017
[Win] WTF: Add alias for process id to use in place of direct uses of pid_t
https://bugs.webkit.org/show_bug.cgi?id=177017
Summary
[Win] WTF: Add alias for process id to use in place of direct uses of pid_t
Stephan Szabo
Reported
2017-09-15 11:23:58 PDT
pid_t is used directly in places, but isn't present for Windows. Make an alias in WTF for process identifiers for non-port-specific files.
Attachments
Test patch for ews on adding process identifier alias.
(18.44 KB, patch)
2017-09-15 11:32 PDT
,
Stephan Szabo
mark.lam
: review-
Details
Formatted Diff
Diff
Test patch for ews on adding process identifier alias.
(18.44 KB, patch)
2017-09-15 12:57 PDT
,
Stephan Szabo
no flags
Details
Formatted Diff
Diff
Test patch for ews on adding process identifier alias.
(18.16 KB, patch)
2017-09-15 13:06 PDT
,
Stephan Szabo
no flags
Details
Formatted Diff
Diff
Test patch for ews on adding process identifier alias.
(18.15 KB, patch)
2017-09-15 13:17 PDT
,
Stephan Szabo
no flags
Details
Formatted Diff
Diff
Test patch for ews on adding process identifier alias, api private headers using pid_t with override
(17.41 KB, patch)
2017-09-15 14:28 PDT
,
Stephan Szabo
no flags
Details
Formatted Diff
Diff
Test patch for ews on adding process identifier alias, api private headers using pid_t with override
(17.46 KB, patch)
2017-09-15 14:40 PDT
,
Stephan Szabo
ap
: review-
Details
Formatted Diff
Diff
Test patch for ews on adding process identifier alias
(16.99 KB, patch)
2017-09-18 10:16 PDT
,
Stephan Szabo
no flags
Details
Formatted Diff
Diff
Adding process identifier aliases to avoid direct use of pid_t
(21.81 KB, patch)
2017-09-19 13:18 PDT
,
Stephan Szabo
no flags
Details
Formatted Diff
Diff
Show Obsolete
(7)
View All
Add attachment
proposed patch, testcase, etc.
Stephan Szabo
Comment 1
2017-09-15 11:32:22 PDT
Created
attachment 320935
[details]
Test patch for ews on adding process identifier alias.
Mark Lam
Comment 2
2017-09-15 11:36:13 PDT
Comment on
attachment 320935
[details]
Test patch for ews on adding process identifier alias. View in context:
https://bugs.webkit.org/attachment.cgi?id=320935&action=review
> Source/WTF/wtf/ProcessID.h:40 > +using ProcessIdentifier = int;
Let's just call this ProcessID like the file.
Mark Lam
Comment 3
2017-09-15 11:38:17 PDT
Comment on
attachment 320935
[details]
Test patch for ews on adding process identifier alias. View in context:
https://bugs.webkit.org/attachment.cgi?id=320935&action=review
>> Source/WTF/wtf/ProcessID.h:40 >> +using ProcessIdentifier = int; > > Let's just call this ProcessID like the file.
Also, the common practice is to add using WTF::ProcessID at the bottom of this file so that we can just say ProcessID everywhere else instead of WTF::ProcessID.
Mark Lam
Comment 4
2017-09-15 11:38:57 PDT
Comment on
attachment 320935
[details]
Test patch for ews on adding process identifier alias. View in context:
https://bugs.webkit.org/attachment.cgi?id=320935&action=review
> Source/JavaScriptCore/inspector/remote/RemoteInspector.h:112 > - pid_t parentProcessIdentifier() const { return m_parentProcessIdentifier; } > + WTF::ProcessIdentifierparentProcessIdentifier() const { return m_parentProcessIdentifier; }
typo here (missing " "). Please fix.
Stephan Szabo
Comment 5
2017-09-15 12:57:12 PDT
Created
attachment 320950
[details]
Test patch for ews on adding process identifier alias.
Stephan Szabo
Comment 6
2017-09-15 13:06:30 PDT
Created
attachment 320953
[details]
Test patch for ews on adding process identifier alias. Changed name, added using, added space
Mark Lam
Comment 7
2017-09-15 13:11:26 PDT
Comment on
attachment 320953
[details]
Test patch for ews on adding process identifier alias. View in context:
https://bugs.webkit.org/attachment.cgi?id=320953&action=review
> Source/JavaScriptCore/API/JSRemoteInspector.cpp:54 > +void JSRemoteInspectorSetParentProcessInformation(WTF::ProcessID pid, const uint8_t* auditData, size_t auditLength)
You don't need the WTF:: qualifier here anymore.
Stephan Szabo
Comment 8
2017-09-15 13:17:12 PDT
Created
attachment 320956
[details]
Test patch for ews on adding process identifier alias. Thanks, I'm not sure how my find and replace missed that. Now removed WTF:: on JSRemoteInspectorSetParentProcessInformation
Tim Horton
Comment 9
2017-09-15 13:33:40 PDT
Comment on
attachment 320956
[details]
Test patch for ews on adding process identifier alias. View in context:
https://bugs.webkit.org/attachment.cgi?id=320956&action=review
> Source/WebKit/UIProcess/API/C/WKContextPrivate.h:31 > +#include <wtf/ProcessID.h>
We can't use wtf/ from exported (public or private) API headers (the ones like APIProcessPoolConfiguration.h are OK -- those are internal implementations of the API; you can check if the header is public/private in Xcode if you need to confirm in each case) as far as I know, so I don't think you can do this. Can we leave it as pid_t just in the API/SPI?
Stephan Szabo
Comment 10
2017-09-15 13:43:19 PDT
I don't think leaving it as pid_t works unless that file wouldn't be used on Windows building with WebKit (as we're now trying to do as opposed to WebKitLegacy) because pid_t wouldn't be valid there. We could do something similar to what is in ProcessID, but then we'd have to worry about them staying in sync.
Tim Horton
Comment 11
2017-09-15 13:49:40 PDT
(In reply to Stephan Szabo from
comment #10
)
> I don't think leaving it as pid_t works unless that file wouldn't be used on > Windows building with WebKit (as we're now trying to do as opposed to > WebKitLegacy) because pid_t wouldn't be valid there. > > We could do something similar to what is in ProcessID, but then we'd have to > worry about them staying in sync.
You're planning on using the C API?
Stephan Szabo
Comment 12
2017-09-15 14:13:32 PDT
We have been trying to add port files and make things there work for Windows including that API. It shouldn't be hard to make separate definitions or to roll back the two private bits there and discuss how to approach the API headers.
Stephan Szabo
Comment 13
2017-09-15 14:28:01 PDT
Created
attachment 320965
[details]
Test patch for ews on adding process identifier alias, api private headers using pid_t with override To see how this fares, update the two API/C/*Private.h files back to pid_t with an OS(WINDOWS) setup of pid_t typedef.
Stephan Szabo
Comment 14
2017-09-15 14:34:45 PDT
Should have expected OS() to be unhappy. Redoing
Stephan Szabo
Comment 15
2017-09-15 14:40:59 PDT
Created
attachment 320966
[details]
Test patch for ews on adding process identifier alias, api private headers using pid_t with override Now with non-OS check on private headers using pid_t version
Stephan Szabo
Comment 16
2017-09-15 16:11:01 PDT
Comment on
attachment 320966
[details]
Test patch for ews on adding process identifier alias, api private headers using pid_t with override I'm not sure if the changes on the two private headers should be there or maybe in WKBase or if we should use a name other than pid_t.
Alexey Proskuryakov
Comment 17
2017-09-17 09:43:02 PDT
Comment on
attachment 320966
[details]
Test patch for ews on adding process identifier alias, api private headers using pid_t with override View in context:
https://bugs.webkit.org/attachment.cgi?id=320966&action=review
> Source/JavaScriptCore/API/JSRemoteInspector.h:31 > +#include <wtf/ProcessID.h>
As Tim explained, API headers cannot use wtf.
Stephan Szabo
Comment 18
2017-09-18 10:16:10 PDT
Created
attachment 321104
[details]
Test patch for ews on adding process identifier alias Missed that the JavaScriptCore one was an API header as well. Again not sure if putting definitions in each header is correct or if there's a more general place to put platform specific type information for the API headers, nor whether it'd be better to still use a type that isn't directly pid_t in them to prevent non-portable types from leaking.
Build Bot
Comment 19
2017-09-18 10:17:40 PDT
Attachment 321104
[details]
did not pass style-queue: ERROR: Source/JavaScriptCore/API/JSRemoteInspector.h:33: pid_t is incorrectly named. Don't use underscores in your identifier names. [readability/naming/underscores] [4] Total errors found: 1 in 22 files If any of these errors are false positives, please file a bug against check-webkit-style.
Stephan Szabo
Comment 20
2017-09-19 13:18:08 PDT
Created
attachment 321236
[details]
Adding process identifier aliases to avoid direct use of pid_t
WebKit Commit Bot
Comment 21
2017-09-20 19:55:10 PDT
Comment on
attachment 321236
[details]
Adding process identifier aliases to avoid direct use of pid_t Clearing flags on attachment: 321236 Committed
r222309
: <
http://trac.webkit.org/changeset/222309
>
WebKit Commit Bot
Comment 22
2017-09-20 19:55:12 PDT
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 23
2017-09-27 12:25:37 PDT
<
rdar://problem/34693257
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug