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

extending options from a prototype #62

Closed
jonathanong opened this issue Dec 4, 2014 · 11 comments · May be fixed by aliscco/alisco-node#8, aliscco/alisco-node#31, Mcculloughj/node#16 or pratapadi/node#34
Closed

Comments

@jonathanong
Copy link
Contributor

i currently have an issue when creating http.client() requests from an options object that is created from a constructor: petkaantonov/urlparser#5

https://github.com/iojs/io.js/blob/v0.12/lib/_http_client.js#L50

my solution would be options = Object.create(options || {}) or something, but i'm pretty sure someone's going to complain about performance or something...

what do you guys think?

@rvagg
Copy link
Member

rvagg commented Dec 4, 2014

perhaps we can have a test case for this to find a more optimal path, perhaps one that avoids Object.keys() if that's the root problem

@chrisdickinson
Copy link
Contributor

This is a somewhat contentious issue.

IMO, I agree with the current behavior -- Node/IO apis should only take the given object into account, and ignore its [[Proto]] chain. That said, the TC should probably make an authoritative decision about "how Node/IO deals with API parameters" -- ideally something that can be put into the docs.

@rlidwka
Copy link
Contributor

rlidwka commented Dec 4, 2014

I'd rather support proto chain, because sometimes it's very convenient to have. Imho, this proto getters case is a very strong argument to do so.

According to my benchmarks, Object.create() is 2 times faster than util._extend() on options object with no properties and the more properties there are, the worse util._extend() gets.

url.parse() output object contains 12 properties, and Object.create() outperforms util._extend on it 6 times (4.2M ops/sec vs 0.6M ops/sec).

So it's faster even if we're talking plain js objects. But urlparser tries to improve speed with lazy getters, and current util._extend() implementation practically forbids you to do this kind of performance optimizations.

This is the reason I'm usually using Object.create() whenever I'm trying to modify options object leaving original function arguments intact.

I suppose this is an old code, and v8 didn't have Object.create() at the time when it was written. That's why we never give much thought to this. But I think it's about time to discuss what the best practice here is.

@chrisdickinson
Copy link
Contributor

I suppose this is an old code, and v8 didn't have Object.create() at the time when it was written. That's why we never give much thought to this. But I think it's about time to discuss what the best practice here is.

I do not think it would be safe to assume that the absence of its usage in Node's APIs for options objects is due to the lack of Object.create. Object.create (and polyfills for Object.create) have been around for a long time.

url.parse() output object contains 12 properties, and Object.create() outperforms util._extend on it 6 times (4.2M ops/sec vs 0.6M ops/sec).

While performance has always been a guiding concern of Node, there has also long been a desire to make the API more explicit where possible, even at the cost of CPU cycles. I can envision a situation where {host: 'some-host'} is linked to an object specifying hostname, and requests end up going to an unexpected location. Trying to debug that would be more than a little maddening, since even console.log'ing the object is not going to display the parent object's hostname property.

@rlidwka
Copy link
Contributor

rlidwka commented Dec 5, 2014

I can envision a situation where {host: 'some-host'} is linked to an object specifying hostname

I did shoot myself in a foot once, when I had an option object like opts={uri: 'foo'} and was setting opts.url='bar' after that (request library supports both). No prototypes involved.

The fact that you can specify the same thing in two different ways is an api issue, which has nothing to do with prototype chains imho.

Trying to debug that would be more than a little maddening, since even console.log'ing the object is not going to display

I suppose an addition to console.log which says "hey, this object has non-standard prototype (for example, instead of { host: 'blah' } displaying {* host: 'blah' } or < host: 'blah' > or { host: 'blah', <proto-chain-length>: 2 } would help this a bit.

@davidmarkclements
Copy link
Member

If you outlaw the proto chain on options objects, it will cause breakage on legacy code.

I wonder if in the specified case, Object.create(Object.freeze(options || {})) might cause V8 to optimize the case (eg it can rely on static rather than dynamic lookups on the proto chain) - and if not it may be a case that v8 optimize in the future

@domenic
Copy link
Contributor

domenic commented Dec 10, 2014

I feel somewhat strongly that you should always follow the prototype chain, i.e. just use [[Get]]. This is the most natural pattern, i.e. var x = options.x.

Another way of thinking about this is that if you were to write such options-taking functions in ES6 you would likely do

function client({ agent, protocol, ... }) {
  /* use agent, protocol, etc. */
}

Probably http.client itself couldn't work this way because it has so many overloads and defaults, but it should still be useful semantic guidance.

@rvagg rvagg removed the tc-agenda label Dec 11, 2014
@rvagg
Copy link
Member

rvagg commented Dec 11, 2014

From TC meeting, #144:

@bnoordhuis: continue in the issue tracker

@indutny and @piscisaureus also expressed opinions on this but there was no resolution, just an agreement that there shal be further bikeshedding. I'm going to remove the tc-agenda label for now but if this keeps on going on and doesn't get anywhere productive then the label could be put back for a future meeting.

@jonathanong
Copy link
Contributor Author

feels good to know you guys discussed this at least. 🙌 io.js 🙌

@dougwilson
Copy link
Member

/cc @moll

@chrisdickinson
Copy link
Contributor

Closing this. There's no definitive resolution from the TC, but @domenic swayed me to the proto-side via the ES6 destructuring argument. If anyone notices any specific APIs that are not accepting inherited attributes, feel free to open a PR and cc me. I'd be happy to take a look at them, and am generally +1 on making those sorts of changes.

targos added a commit to targos/node that referenced this issue Apr 17, 2021
Original commit message:

    Merged: [interpreter] Store accumulator to callee after optional chain checks

    Revision: df98901c19ce17ca995ee6750379b0f004210d68

    BUG=chromium:1171954
    NOTRY=true
    NOPRESUBMIT=true
    NOTREECHECKS=true
    R=​rmcilroy@chromium.org

    (cherry picked from commit f309db52c2ccab8c9a04fcd236e89deb077061f9)

    Change-Id: If09e1503ca07b47a112362495ec0bb9d502118c9
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2674008
    Reviewed-by: Ross McIlroy <rmcilroy@chromium.org>
    Cr-Original-Commit-Position: refs/branch-heads/8.9@{nodejs#33}
    Cr-Original-Branched-From: 16b9bbbd581c25391981aa03180b76aa60463a3e-refs/heads/8.9.255@{#1}
    Cr-Original-Branched-From: d16a2a688498bd1c3e6a49edb25d8c4ca56232dc-refs/heads/master@{#72039}
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2706110
    Reviewed-by: Mythri Alle <mythria@chromium.org>
    Commit-Queue: Achuith Bhandarkar <achuith@chromium.org>
    Cr-Commit-Position: refs/branch-heads/8.6@{nodejs#62}
    Cr-Branched-From: a64aed2333abf49e494d2a5ce24bbd14fff19f60-refs/heads/8.6.395@{#1}
    Cr-Branched-From: a626bc036236c9bf92ac7b87dc40c9e538b087e3-refs/heads/master@{#69472}

Refs: v8/v8@e527ba4
targos added a commit to targos/node that referenced this issue Apr 27, 2021
Original commit message:

    Merged: [interpreter] Store accumulator to callee after optional chain checks

    Revision: df98901c19ce17ca995ee6750379b0f004210d68

    BUG=chromium:1171954
    NOTRY=true
    NOPRESUBMIT=true
    NOTREECHECKS=true
    R=​rmcilroy@chromium.org

    (cherry picked from commit f309db52c2ccab8c9a04fcd236e89deb077061f9)

    Change-Id: If09e1503ca07b47a112362495ec0bb9d502118c9
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2674008
    Reviewed-by: Ross McIlroy <rmcilroy@chromium.org>
    Cr-Original-Commit-Position: refs/branch-heads/8.9@{nodejs#33}
    Cr-Original-Branched-From: 16b9bbbd581c25391981aa03180b76aa60463a3e-refs/heads/8.9.255@{#1}
    Cr-Original-Branched-From: d16a2a688498bd1c3e6a49edb25d8c4ca56232dc-refs/heads/master@{#72039}
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2706110
    Reviewed-by: Mythri Alle <mythria@chromium.org>
    Commit-Queue: Achuith Bhandarkar <achuith@chromium.org>
    Cr-Commit-Position: refs/branch-heads/8.6@{nodejs#62}
    Cr-Branched-From: a64aed2333abf49e494d2a5ce24bbd14fff19f60-refs/heads/8.6.395@{#1}
    Cr-Branched-From: a626bc036236c9bf92ac7b87dc40c9e538b087e3-refs/heads/master@{#69472}

Refs: v8/v8@e527ba4
targos added a commit that referenced this issue Apr 30, 2021
Original commit message:

    Merged: [interpreter] Store accumulator to callee after optional chain checks

    Revision: df98901c19ce17ca995ee6750379b0f004210d68

    BUG=chromium:1171954
    NOTRY=true
    NOPRESUBMIT=true
    NOTREECHECKS=true
    R=​rmcilroy@chromium.org

    (cherry picked from commit f309db52c2ccab8c9a04fcd236e89deb077061f9)

    Change-Id: If09e1503ca07b47a112362495ec0bb9d502118c9
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2674008
    Reviewed-by: Ross McIlroy <rmcilroy@chromium.org>
    Cr-Original-Commit-Position: refs/branch-heads/8.9@{#33}
    Cr-Original-Branched-From: 16b9bbbd581c25391981aa03180b76aa60463a3e-refs/heads/8.9.255@{#1}
    Cr-Original-Branched-From: d16a2a688498bd1c3e6a49edb25d8c4ca56232dc-refs/heads/master@{#72039}
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2706110
    Reviewed-by: Mythri Alle <mythria@chromium.org>
    Commit-Queue: Achuith Bhandarkar <achuith@chromium.org>
    Cr-Commit-Position: refs/branch-heads/8.6@{#62}
    Cr-Branched-From: a64aed2333abf49e494d2a5ce24bbd14fff19f60-refs/heads/8.6.395@{#1}
    Cr-Branched-From: a626bc036236c9bf92ac7b87dc40c9e538b087e3-refs/heads/master@{#69472}

Refs: v8/v8@e527ba4

PR-URL: #38275
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Shelley Vohr <codebytere@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment