A way to destroy “thread” class

前端 未结 8 1254
甜味超标
甜味超标 2021-02-06 18:22

Here is a skeleton of my thread class:

class MyThread {
public:
   virutal ~MyThread();

   // will start thread with svc() as thread entry point
   void start()         


        
8条回答
  •  我在风中等你
    2021-02-06 18:41

    Most thread systems allow you to send a signal to a thead.

    Example: pthreads

    pthread_kill(pthread_t thread, int sig);
    

    This will send a signall to a thread. You can use this to kill the thread. Though this can leave a few of the resources hanging in an undefined state.

    A solution to the resource problem is to install a signall handler.
    So that when the signal handler is called it throws an exception. This will cause the thread stack to unwind to the entry point where you can then get the thread to check a variable about weather it is sill alive.

    NOTE: You should never allow an exception to propogate out of a thread (this is so undefined my eyes bleed thinking about it). Basically catch the exception at the thread entry point then check some state variable to see if the thread should really exit.

    Meanwhile the thread that sends the signal should wait for the thread to die by doing a join.

    The only issues are that when you throw out of signal handler function you need to be careful. You should not use a signal that is asynchronus (ie one that could have been generated by a signal in another thread). A good one to use is SIGSEGV. If this happens normally then you have accessed invalid memory any you thread should think about exiting anyway!

    You may also need to specify an extra flag on some systems to cope.
    See This article

    A working example using pthreads:

    #include 
    #include 
    
    extern "C" void* startThread(void*);
    extern "C" void  shouldIexit(int sig);
    
    class Thread
    {
        public:
            Thread();
            virtual ~Thread();
        private:
            friend void* startThread(void*);
    
            void start();
            virtual void run() = 0;
    
            bool        running;
            pthread_t   thread;
    };
    
    
    // I have seen a lot of implementations use a static class method to do this.
    // DON'T. It is not portable. This is because the C++ ABI is not defined.
    //
    // It currently works on several compilers but will break if these compilers
    // change the ABI they use. To gurantee this to work you should use a
    // function that is declared as extern "C" this guarantees that the ABI is 
    // correct for the callback. (Note this is true for all C callback functions)
    void* startThread(void* data)
    {
        Thread* thread  = reinterpret_cast(data);
        thread->start();
    }
    void shouldIexit(int sig)
    {
        // You should not use std::cout in signal handler.
        // This is for Demo purposes only.
        std::cout << "Signal" << std::endl;
    
        signal(sig,shouldIexit);
        // The default handler would kill the thread.
        // But by returning you can continue your code where you left off.
        // Or by throwing you can cause the stack to unwind (if the exception is caught).
        // If you do not catch the exception it is implementation defined weather the
        // stack is unwound.
        throw int(3);  // use int for simplicity in demo
    }
    
    
    Thread::Thread()
        :running(true)
    {
        // Note starting the thread in the constructor means that the thread may
        // start before the derived classes constructor finishes. This may potentially
        // be a problem. It is started here to make the code succinct and the derived
        // class used has no constructor so it does not matter.
        if (pthread_create(&thread,NULL,startThread,this) != 0)
        {
            throw int(5); // use int for simplicity in demo.
        }
    }
    
    Thread::~Thread()
    {
        void*   ignore;
    
        running = false;
        pthread_kill(thread,SIGSEGV); // Tell thread it may want to exit.
        pthread_join(thread,&ignore); // Wait for it to finish.
    
        // Do NOT leave before thread has exited.
    
        std::cout << "Thread Object Destroyed" << std::endl;
    }
    
    void Thread::start()
    {
        while(running)
        {
            try
            {
                this->run();
            }
            catch(...)
            {}
        }
        std::cout << "Thread exiting" << std::endl;
    }
    class MyTestThread:public Thread
    {
        public:
            virtual void run()
            {
                // Unless the signal causes an exception
                // this loop will never exit.
                while(true)
                {
                    sleep(5);
                }
            }
    
    };
    
    struct Info
    {
         Info() {std::cout << "Info" << std::endl;}
        ~Info() {std::cout << "Done: The thread Should have exited before this" << std::endl;}
    };
    
    int main()
    {
        signal(SIGSEGV,shouldIexit);
    
        Info                info;
        MyTestThread        test;
    
        sleep(4);
        std::cout << "Exiting About to Exit" << std::endl;
    
    }
    
    
    > ./a.exe
    Info
    Exiting About to Exit
    Signal
    Thread exiting
    Thread Object Destroyed
    Done: The thread Should have exited before this
    >
    

提交回复
热议问题