Giter Site home page Giter Site logo

Comments (3)

gittiver avatar gittiver commented on June 2, 2024 1

I think its the combination of swapping in a thread while also handing it over to the handlers by reference,
but not sure if that is the case.

from crow.

gittiver avatar gittiver commented on June 2, 2024

maybe an issue with default constructed tread?

https://en.cppreference.com/w/cpp/thread/jthread/swap
std::jthread objects may also be in the state that does not represent any thread (after default construction, move from, detach, or join), and a thread of execution may be not associated with any jthread objects (after detach).

Maybe having a synchronized list or queue for urls and let the player choose from them?
Then play thread could run from the beginning and now swap would be needed?

from crow.

fliiiix avatar fliiiix commented on June 2, 2024

Interesting creating std::jthread current{play_stream, ""}; would also work so maybe calling swap on std::jthread current is undefined behavior?

Although i can not get it to fail on a minimal example without crow.

void play_stream(std::stop_token stoken, std::string stream_url)
{
    std::cout << "mediaplayer: start for " << stream_url << "\n";

    std::promise<void> stop;
    std::stop_callback callBack(stoken, [&stop] {
        std::cout << "mediaplayer: stop\n";
        stop.set_value();
    });

    // wait until cancled
    stop.get_future().wait();
}

int main(int /*ac*/, char** av)
{   
    std::jthread current;
    
    std::jthread play{play_stream, av[0]};
    current.swap(play);
}

And start for 101 Switching Protocol looks like some memory for the request/response in crow.

from crow.

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.