Giter Club home page Giter Club logo

Comments (7)

svaarala avatar svaarala commented on May 28, 2024

The duk_get_prop() call has the following stack signature:

[ ... obj! ... key! ] -> [ ... obj! ... val! ]

The argument index identifies the object on the stack. The topmost value on the stack is the key being looked up from the object, and gets replaced by the property value.

Your duk_get_prop() call is probably incorrect:

duk_push_this(ctx);
duk_get_prop(ctx, -1);

You're using the same value as both the object and the key, essentially reading the property:

this[this]

The key (this) is popped off the stack, and this[this] replaces it. At the end there is only one value on the stack, the lookup result.

What key do you want to look up from the this object? Can you give an Ecmascript equivalent of what you want to do?

from duktape.

hyunjunekim avatar hyunjunekim commented on May 28, 2024

@svaarala Don't have key. because I should bind C++ Instance into JSObject( pointer ).
for example,
Student* std = new Student();
duk_push_object(ctx);
duk_push_pointer(std);
duk_put_prop(ctx,-2);
...(omit)...

and
static int student_callback(duk_context ctx) {
duk_push_this(ctx);
duk_get_prop(ctx,-1);
Student * std=(Student
)duk_get_pointer(ctx, -1);
duk_push_int(std->age);
return 1;
}

from duktape.

svaarala avatar svaarala commented on May 28, 2024

If you're trying to store a pointer into an object you need to have a key to store it with, e.g. to store:

duk_push_object(ctx);
duk_push_pointer(ctx, (void *) std);
duk_put_prop_string(ctx, -2, "student");  /* obj.student = ptr */

and then to read it back (assuming this is bound to the object created above):

duk_push_this(ctx);
duk_get_prop_string(ctx, -1, "student");  /* pushes this.student */
Student *std = (Student *) duk_require_pointer(ctx, -1);
/* ... */

from duktape.

hyunjunekim avatar hyunjunekim commented on May 28, 2024

@svaarala Thank you for your answer & good solution :), but I have found API like JS_SetPrivate on the spider monkey.
Thank you :)

from duktape.

svaarala avatar svaarala commented on May 28, 2024

Duktape doesn't currently have an equivalent API concept, you can only store string keyed properties on an object.

I could add a convenience API to associate a void * with an object, but that would be implemented by storing a property on the object. For this, Duktape has a concept of "internal" property names which cannot occur in plain Ecmascript code, so they won't interfere with normal code (and won't enumerate etc).

from duktape.

hyunjunekim avatar hyunjunekim commented on May 28, 2024

@svaarala Ok, Thank you & Thanks for duktape. :)

from duktape.

sva-p avatar sva-p commented on May 28, 2024

Up to Duktape 0.11.0 the "internal" properties were only for Duktape's own internal use, but in 0.12.0 (and current master) they're exposed to user code too, as a way to make hidden properties not easily accessible from Ecmascript code.

Technically internal property names are simply normal strings which begin with the byte 0xFF. This byte makes the property name invalid UTF-8 so that ordinary keys from Ecmascript code cannot clash with the internal property names (normal key names are valid UTF-8). Here's an example:

https://github.com/svaarala/duktape/blob/master/api-testcases/test-dev-internal-property-basics.c

from duktape.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.