-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lib,fs: use process.emitWarning instead of internal print dep warning #8166
Conversation
Sorry, but -1 on that until #6413 gets merged. We should keep the warning there until it's broken, else we will need to re-implement the warning. Because other PRs (I counted four of them) are blocked by the exact same thing — and we don't want those to be broken without a warning. That warning is not a culpit, it's just the messenger, just removing it for the sake of removing would do no good, if other PRs will block on that again. After #6413 and other breaking PRs get merged, +1 on this change as a regular clean up, but not as an alternative to #6413. |
I understand that the same fundamental problem exists still but this would eliminate the immediate issue giving us more time to address the larger concern without jamming anything up on this one thing. It's an incremental step not a final solution. |
I don't understand, why it is removes from all modules, not just |
@jasnell Once again: evading the breaking change in #6413 would not give us anything, because there are several more PRs that break graceful-fs evildoing in exactly the same way. That's why the fix in graceful-fs@3 (isaacs/node-graceful-fs@07701dc) also wouldn't work generally. Moreover — #6413 doesn't even break graceful-fs anymore, as the hack was landed in graceful-fs (which I am not happy about, because it gives us nothing). The issue here is with other PRs which get blocked by keeping graceful-fs@3 compatibility, and that's what we need to fix. Removing the deprecation warning would make things even worse, I think. We still address the issue that blocks those PR as «#6413», but that's not even correct anymore — it's only a label for the issue atm as #6413 could be merged at any time with no effect on graceful-fs@3. |
@jasnell I would be completely fine with merging this as a regular clean up if the deprecation warning is kept and if we will have a separate PR that would turn the deprecation warning into a throw instead of #6413, so that we could block all those PRs against that instead of #6413. -1 is only for the removal of the warning without making it a throw. For the record, a list of PRs why we need the warning: #6749, #6573, #7162, #2025 (that last one is closed, but it got closed because of graceful-fs hack support, it actually does a good thing). Any of those would break graceful-fs@[23], and we don't want that to be a sudden breakage. The warning is required so that people stop using graceful-fs@[23] so we could merge those. |
@ChALkeR ... just so I understand... are you specifically talking about the graceful-fs warning? |
@jasnell I am talking about the |
@vkurchatkin ... if you look at the implementation of internal/util#printDeprecationMessage, you'll see that all it does is defer to process.emitWarning(). Accordingly, it doesn't make sense to keep using printDeprecationMessage since we can use emitWarning() directly. |
but why create eslint rule for that? let's just remove |
We can do that also. My plan was to reevaluate the methods in internal/util separately and remove stuff that's unnecessary in a separate PR, but you're right that this would allow us to go ahead and remove |
Nit: I would prefer a clearer name for the rule and rule file. |
499ae6f
to
810605a
Compare
@vkurchatkin @ChALkeR .. ok, refactored the PR.
|
@@ -15,6 +15,18 @@ const EventEmitter = require('events'); | |||
const FSReqWrap = binding.FSReqWrap; | |||
const FSEvent = process.binding('fs_event_wrap').FSEvent; | |||
|
|||
// Check for re-evaluation of the module. Doing so will cause the internal | |||
// module to fail to load. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you keep the TODO and reasoning? It might need a slight rephrase, e.g.:
// TODO(ChALkeR): remove this in master after 6.x
// This is required to give users a grace period before actually breaking
// modules that re-evaluate fs sources from context where internal
// modules are not allowed, e.g. older versions of graceful-fs module.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, will add that back
@jasnell Thanks! +1 to the current approach. This is not a complete review, I will review the actual code changes tomorrow =). |
@Trott ... I just removed the eslint rule but thank you for the feedback on it :-) |
@@ -15,8 +15,11 @@ const EventEmitter = require('events'); | |||
const FSReqWrap = binding.FSReqWrap; | |||
const FSEvent = process.binding('fs_event_wrap').FSEvent; | |||
|
|||
// TODO(ChALkeR,jasnell): remove the following try/catch in master after 7.x |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm still hoping we could remove the warning and land other PRs in time to v7.0 release, as the ecosystem packages actually could get fixed in time to v7.0 release.
Atm, this comment contradicts our milestones, specifically, milestone for #6573 — if that lands in v7.0, then this warning would be useless in v7.0.
@ChALkeR I know.. this reflects the current status I think but if we can clear up the logjam before v7 then fantastic... |
@nodejs/ctc ... PTAL |
Ping @nodejs/ctc @nodejs/collaborators |
// Check for re-evaluation of the module. Doing so will cause the internal | ||
// module to fail to load. This is required to give users a grace period before | ||
// actually breaking modules that re-evaluate fs sources from context where | ||
// internal modules are not allowed, e.g. older versions of graceful-fs module. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that this is still valid (even with the most recent graceful-fs@3 update) for users of graceful-fs@2, older versions of graceful-fs@3, and perhaps some user code that does the same thing (unlikely, but still possible).
Removing the warning would force us to introduce it again at least for a full major cycle in order to land other PRs that are blocked by re-evaluating fs
.
So, please don't remove this on updates =).
New CI: https://ci.nodejs.org/job/node-test-pull-request/3832/ |
CI is green |
12d6a6d
to
6fa6514
Compare
@ChALkeR ... PR updated, PTAL |
LGTM |
Flaky failure in arm, CI is green otherwise. |
Will land this tomorrow if there are no objections. |
@@ -40,7 +40,6 @@ const isWindows = process.platform === 'win32'; | |||
|
|||
const DEBUG = process.env.NODE_DEBUG && /fs/.test(process.env.NODE_DEBUG); | |||
const errnoException = util._errnoException; | |||
const printDeprecation = require('internal/util').printDeprecationMessage; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you leave require('internal/util');
here so this won't become suddenly re-evaluatable in v7? Or we might be forced to do another round of deprecation…
That line could be removed when something else will land that requires internal
, hopefully in time for v7.
Upd: not needed anymore, as #6749 landed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are several other open PRs that move bits to internal/fs.js
that would cover this requirement.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only if those land before this one =).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yay!
That discards my previous comments in this subthread =).
The process.emitWarning() API should be used for printing deprecation warning messages rather than directly using the internal/util#printDeprecationMessage
As an alternative to nodejs#6413, use process.emitWarning() instead of the internal printDeprecationMessage in order to avoid use of an internal only API.
Removes the internal/util printDeprecationWarning method
6fa6514
to
2ef2c7f
Compare
New CI before landing: https://ci.nodejs.org/job/node-test-pull-request/3930/ |
CI is green-ish. Only build bot failures that will hopefully be fixed soon. Landing! |
PR-URL: #8166 Reviewed-By: Сковорода Никита Андреевич <[email protected]> Reviewed-By: Myles Borins <[email protected]>
The process.emitWarning() API should be used for printing deprecation warning messages rather than directly using the internal/util#printDeprecationMessage PR-URL: #8166 Reviewed-By: Сковорода Никита Андреевич <[email protected]> Reviewed-By: Myles Borins <[email protected]>
Use process.emitWarning() instead of the internal printDeprecationMessage in order to avoid use of an internal only API. PR-URL: #8166 Reviewed-By: Сковорода Никита Андреевич <[email protected]> Reviewed-By: Myles Borins <[email protected]>
Removes the internal/util printDeprecationWarning method PR-URL: #8166 Reviewed-By: Сковорода Никита Андреевич <[email protected]> Reviewed-By: Myles Borins <[email protected]>
Marking as don't land on v6 or v4 due to the potential legacy graceful-fs impact. |
Cherry-picked from: PR-URL: nodejs#8166 Reviewed-By: Сковорода Никита Андреевич <[email protected]> Reviewed-By: Myles Borins <[email protected]>
Checklist
make -j4 test
(UNIX), orvcbuild test nosign
(Windows) passesAffected core subsystem(s)
lib, fs
Description of change
This removes uses of the the internal/util
printDeprecationMessage()
API in favor ofusing
process.emitWarning(msg, 'DeprecationWarning')
. This allows us to remove thegraceful-fs warning in
fs
providing at least a temporary relief of the logjam that isoccurring there.
The PR also adds a new lint rule that flags uses of
printDeprecationMessage()
/cc @ChALkeR @thealphanerd @nodejs/ctc
This is an alternative to #6413. If this lands, We do not have to do the revert.