Skip to content
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

WIP: module,errors: port module to internal/errors #11565

Closed
wants to merge 3 commits into from

Conversation

rauno56
Copy link

@rauno56 rauno56 commented Feb 26, 2017

Porting module.js to use internal/errors.js according to tracking issue #11273 and sample PR #11294.

Porting module can be tricky because it's errors are commonly parsed in user-land.

This code sets some properties on caught errors from JSON parsing(example: https://github.com/nodejs/node/blob/master/lib/module.js#L94-L95) should those be left unchanged(as those are really not node libs' errors) or rethrown as new internal error(as we want every error from node to become standardized)?

Additionally to me it makes sense to also leave in setting error.code for backwards compatibility on MODULE_NOT_FOUND error(https://github.com/nodejs/node/blob/master/lib/module.js#L471). Case against that would again be that if we're going to break backwards compatibility, let's just clean it up really nice as we're doing that.

Checklist
  • make -j4 test (UNIX), or vcbuild test (Windows) passes
  • tests and/or benchmarks are included
  • documentation is changed or added
  • commit message follows commit guidelines
Affected core subsystem(s)

errors, module

@nodejs-github-bot nodejs-github-bot added errors Issues and PRs related to JavaScript errors originated in Node.js core. module Issues and PRs related to the module subsystem. labels Feb 26, 2017
@rauno56 rauno56 changed the title WIP: module,errors: port module not found error to internal/errors WIP: module,errors: port module to internal/errors Feb 26, 2017
@ChALkeR
Copy link
Member

ChALkeR commented Feb 26, 2017

This probably contradicts with modules being documented as Locked.
Refs: #6528, #11200.

@rauno56
Copy link
Author

rauno56 commented Feb 27, 2017

Got an answer to MODULE_NOT_FOUND concern.
Adding a error code behind a Symbol key doesn't contradict with the Locked status as far as I understand?

@rauno56
Copy link
Author

rauno56 commented Feb 27, 2017

Timers are also Locked, but the fact is not mentioned in the PR touching that.
Refs: #11384

@ChALkeR
Copy link
Member

ChALkeR commented Feb 28, 2017

@rauno56 It was mentioned in #11580 that was linked to #11384, but I added an explicit mention there, thanks.

Btw, Locked states:

Stability: 3 - Locked
Only bug fixes, security fixes, and performance improvements will be accepted.
Please do not suggest API changes in this area; they will be refused.

This is not a bugfix, not a security fix, and not a performance improvement, so this technically contradicts with the Locked state to my understanding. There is an ongoing process of removing the Locked state whatsoever, and this PR should ideally be delayed until that is finished.

/cc @nodejs/ctc

@ChALkeR
Copy link
Member

ChALkeR commented Mar 6, 2017

@rauno56 module was unlocked in #11661, so you can ignore my above comment now =).

@rauno56
Copy link
Author

rauno56 commented Mar 7, 2017

Perfect! Thank you. I'll finish it up this week.

Keeping assigning error.code = 'MODULE_NOT_FOUND' for backwards
compatibility.
@jasnell jasnell added the blocked PRs that are blocked by other issues or PRs. label Apr 5, 2017
@refack refack removed the blocked PRs that are blocked by other issues or PRs. label Jul 19, 2017
@refack
Copy link
Contributor

refack commented Jul 19, 2017

I'll follow up

@refack refack self-assigned this Jul 19, 2017
@BridgeAR
Copy link
Member

@refack are you still looking into this / did you open a follow up?

@jasnell jasnell added the stalled Issues and PRs that are stalled. label Aug 29, 2017
@BridgeAR
Copy link
Member

Closing this due to a long inactivity. @rauno56 I am very sorry that your PR could not land as is and your work is much appreciated nevertheless! Please also feel free to leave a comment if you would like to follow up on this by rebasing or by opening a new PR.

@BridgeAR BridgeAR closed this Sep 12, 2017
@rauno56
Copy link
Author

rauno56 commented Sep 19, 2017 via email

@BridgeAR
Copy link
Member

@rauno56 I am very sorry to hear that but I understand your frustration that it took long. For a while there were to many open PRs that it became significantly difficult to keep up with all the PRs. This has improved a lot now and I am certain it reviews would be much faster now.

I am reopening this in the hope you would still want to pursue this further. If not, please let us know as well.

@BridgeAR BridgeAR reopened this Sep 23, 2017
@BridgeAR
Copy link
Member

Well, I actually just checked and it seems like it was already ported in the meanwhile.

I am very sorry about this @rauno56

@BridgeAR BridgeAR closed this Sep 23, 2017
@refack refack removed their assignment Oct 12, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
errors Issues and PRs related to JavaScript errors originated in Node.js core. module Issues and PRs related to the module subsystem. stalled Issues and PRs that are stalled.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants