Coder Social home page Coder Social logo

haskell-examples's People

Contributors

hellwolf avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

marklemay

haskell-examples's Issues

Calling freeBuffer correctly to avoid Memory Out of Bounds

Ref: https://github.com/hellwolf/haskell-examples/blob/master/2023-02-24-wasm-comm/client.js

@hellwolf This example has some really useful utilities for working with strings in Haskell WASM reactors. Thank you for publishing it!

I was wondering about these two functions:

function withCStrings(strs, op) {
    const cstrs = strs.map(str => {
        const s = new TextEncoder().encode(str);
        const l = s.length + 1;
        const p = inst.exports.callocBuffer(l);
        const b = new bufferAt(p, l);
        b.set(s);
        return p;
    });
    const r = op(cstrs);
    strs.forEach(inst.exports.freeBuffer);
    return r;
}
function fromCString(cstr) {
    const s = new TextDecoder("utf8").decode(cstringBufferAt(cstr));
    inst.exports.freeBuffer(cstr);
    return s;
}

In the first function freeBuffer is called on strs which is presumed to be an array of utf-8 encoded strings.

In the second function freeBuffer is called on cstr, the CString representation of a string.

Is there a reason for the inconsistency? I would expect that freeBuffer use is correct in fromCString but this actually causes intermittent Memory Out of Bounds errors for me. Changing it to inst.exports.freeBuffer(s); so that it's operating on the utf-8 encoded string solves these but I have no idea why.

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.