LCOV - code coverage report
Current view: top level - src/jthread/pthread - jthread.cpp (source / functions) Hit Total Coverage
Test: report Lines: 47 65 72.3 %
Date: 2015-07-11 18:23:49 Functions: 7 10 70.0 %

          Line data    Source code
       1             : /*
       2             : 
       3             :     This file is a part of the JThread package, which contains some object-
       4             :     oriented thread wrappers for different thread implementations.
       5             : 
       6             :     Copyright (c) 2000-2006  Jori Liesenborgs (jori.liesenborgs@gmail.com)
       7             : 
       8             :     Permission is hereby granted, free of charge, to any person obtaining a
       9             :     copy of this software and associated documentation files (the "Software"),
      10             :     to deal in the Software without restriction, including without limitation
      11             :     the rights to use, copy, modify, merge, publish, distribute, sublicense,
      12             :     and/or sell copies of the Software, and to permit persons to whom the
      13             :     Software is furnished to do so, subject to the following conditions:
      14             : 
      15             :     The above copyright notice and this permission notice shall be included in
      16             :     all copies or substantial portions of the Software.
      17             : 
      18             :     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      19             :     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      20             :     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
      21             :     THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      22             :     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
      23             :     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
      24             :     DEALINGS IN THE SOFTWARE.
      25             : 
      26             : */
      27             : 
      28             : #include "jthread/jthread.h"
      29             : #include <assert.h>
      30             : #include <sys/time.h>
      31             : #include <time.h>
      32             : #include <stdlib.h>
      33             : 
      34             : #define UNUSED(expr) do { (void)(expr); } while (0)
      35             : 
      36           9 : JThread::JThread()
      37             : {
      38           9 :         retval = NULL;
      39           9 :         requeststop = false;
      40           9 :         running = false;
      41           9 :         started = false;
      42           9 : }
      43             : 
      44          16 : JThread::~JThread()
      45             : {
      46           8 :         Kill();
      47           8 : }
      48             : 
      49           8 : void JThread::Wait() {
      50             :         void* status;
      51           8 :         if (started) {
      52           7 :                 int pthread_join_retval = pthread_join(threadid,&status);
      53             :                 assert(pthread_join_retval == 0);
      54             :                 UNUSED(pthread_join_retval);
      55           7 :                 started = false;
      56             :         }
      57           8 : }
      58             : 
      59           8 : int JThread::Start()
      60             : {
      61             :         int status;
      62             : 
      63           8 :         if (running)
      64             :         {
      65           0 :                 return ERR_JTHREAD_ALREADYRUNNING;
      66             :         }
      67           8 :         requeststop = false;
      68             : 
      69             :         pthread_attr_t attr;
      70           8 :         pthread_attr_init(&attr);
      71             :         //pthread_attr_setdetachstate(&attr,PTHREAD_CREATE_DETACHED);
      72             : 
      73           8 :         continuemutex.Lock();
      74           8 :         status = pthread_create(&threadid,&attr,TheThread,this);
      75           8 :         pthread_attr_destroy(&attr);
      76           8 :         if (status != 0)
      77             :         {
      78           0 :                 continuemutex.Unlock();
      79           0 :                 return ERR_JTHREAD_CANTSTARTTHREAD;
      80             :         }
      81             : 
      82             :         /* Wait until 'running' is set */
      83             : 
      84          24 :         while (!running)
      85             :         {
      86             :                 struct timespec req,rem;
      87             : 
      88           8 :                 req.tv_sec = 0;
      89           8 :                 req.tv_nsec = 1000000;
      90           8 :                 nanosleep(&req,&rem);
      91             :         }
      92           8 :         started = true;
      93             : 
      94           8 :         continuemutex.Unlock();
      95             : 
      96           8 :         continuemutex2.Lock();
      97           8 :         continuemutex2.Unlock();
      98           8 :         return 0;
      99             : }
     100             : 
     101          12 : int JThread::Kill()
     102             : {
     103             :         void* status;
     104          12 :         if (!running)
     105             :         {
     106          12 :                 if (started) {
     107           0 :                         int pthread_join_retval = pthread_join(threadid,&status);
     108             :                         assert(pthread_join_retval == 0);
     109             :                         UNUSED(pthread_join_retval);
     110           0 :                         started = false;
     111             :                 }
     112          12 :                 return ERR_JTHREAD_NOTRUNNING;
     113             :         }
     114             : #ifdef __ANDROID__
     115             :         pthread_kill(threadid, SIGKILL);
     116             : #else
     117           0 :         pthread_cancel(threadid);
     118             : #endif
     119           0 :         if (started) {
     120           0 :                 int pthread_join_retval = pthread_join(threadid,&status);
     121             :                 assert(pthread_join_retval == 0);
     122             :                 UNUSED(pthread_join_retval);
     123           0 :                 started = false;
     124             :         }
     125           0 :         running = false;
     126           0 :         return 0;
     127             : }
     128             : 
     129           0 : void *JThread::GetReturnValue()
     130             : {
     131             :         void *val;
     132             : 
     133           0 :         if (running) {
     134           0 :                 val = NULL;
     135             :         } else {
     136           0 :                 val = retval;
     137             :         }
     138             : 
     139           0 :         return val;
     140             : }
     141             : 
     142           0 : bool JThread::IsSameThread()
     143             : {
     144           0 :         return pthread_equal(pthread_self(), threadid);
     145             : }
     146             : 
     147           8 : void *JThread::TheThread(void *param)
     148             : {
     149           8 :         JThread *jthread = (JThread *)param;
     150             : 
     151           8 :         jthread->continuemutex2.Lock();
     152           8 :         jthread->running = true;
     153             : 
     154           8 :         jthread->continuemutex.Lock();
     155           8 :         jthread->continuemutex.Unlock();
     156             : 
     157           8 :         jthread->Thread();
     158             : 
     159           7 :         jthread->running = false;
     160             : 
     161           7 :         return NULL;
     162             : }
     163             : 
     164           8 : void JThread::ThreadStarted()
     165             : {
     166           8 :         continuemutex2.Unlock();
     167           8 : }
     168             : 

Generated by: LCOV version 1.11