Giter Club home page Giter Club logo

Comments (8)

woess avatar woess commented on May 24, 2024

Thanks for the report! We'll fix that.

from graaljs.

nhoughto avatar nhoughto commented on May 24, 2024

Does this apply to readFully as well? I am currently debugging an issue with readFully not honouring a custom filesystem, and this might be the cause.. any ETA on a fix? This would seem to be a pretty big gap for FS operations..

from graaljs.

nhoughto avatar nhoughto commented on May 24, 2024

Hmm seems like none of the globals have any reference to the Context configured custom filesystem?

read and readFully as well as readbuffer and likely others just end up trying to new File(path) as per:

https://github.com/graalvm/graaljs/blob/master/graal-js/src/com.oracle.truffle.js.builtins/src/com/oracle/truffle/js/builtins/GlobalBuiltins.java#L410

static File resolveRelativeFilePath(String path) {
        CompilerAsserts.neverPartOfCompilation();
        File file = new File(path);
        if (!file.isAbsolute() && !file.exists()) {
            File f = tryResolveCallerRelativeFilePath(path);
            if (f != null) {
                return f;
            }
        }
        return file;
    }

Is custom filesystem not supported yet? If not it should probably be called out in the docs somewhere or should throw if a custom filesystem is configured.

from graaljs.

wirthi avatar wirthi commented on May 24, 2024

Hi nhoughto,

you are correct, this polyglot feature has not yet been implemented in Graal.js. It is on our TODO list for this quarter. I think support (at least for the core JavaScript engine) will land in the release early October.

from graaljs.

nhoughto avatar nhoughto commented on May 24, 2024

from graaljs.

wirthi avatar wirthi commented on May 24, 2024

We usually close the issue when the feature has landed in the master branch of this repo. You can then use it if you build Graal.js from source yourself. If you depend on our pre-built binaries, the feature should typically be in the following release (unless it misses the feature freeze, around a week before the release).

from graaljs.

wirthi avatar wirthi commented on May 24, 2024

We have implemented the feature for the GlobalBuiltins (read[Fully], readbuffer, load). Again, this only affects the core JavaScript engine; no work has been done for our Node.js implementation.

This feature is on the master branch of graal.js (cda6016) and will land in the RC6 release early September.

from graaljs.

nhoughto avatar nhoughto commented on May 24, 2024

What about loadWithNewGlobal ? 🤞

from graaljs.

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.