This is an automated email from the ASF dual-hosted git repository.

pnoltes pushed a commit to branch feature/coverage_on_github_workflow
in repository https://gitbox.apache.org/repos/asf/celix.git


The following commit(s) were added to 
refs/heads/feature/coverage_on_github_workflow by this push:
     new dc0393d  Removes unused c thread pool and add coverage setup for 
filter tests
dc0393d is described below

commit dc0393d6f7b37fd8f1d466193a7d0aa5b2ec3ed4
Author: Pepijn Noltes <[email protected]>
AuthorDate: Fri Apr 17 20:59:06 2020 +0200

    Removes unused c thread pool and add coverage setup for filter tests
---
 libs/utils/CMakeLists.txt                    |   8 +-
 libs/utils/private/test/thread_pool_test.cpp | 120 ------
 libs/utils/src/thpool.c                      | 535 ---------------------------
 3 files changed, 1 insertion(+), 662 deletions(-)

diff --git a/libs/utils/CMakeLists.txt b/libs/utils/CMakeLists.txt
index 7e2cf45..99e94b2 100644
--- a/libs/utils/CMakeLists.txt
+++ b/libs/utils/CMakeLists.txt
@@ -34,7 +34,6 @@ add_library(utils SHARED
     src/celix_threads.c
     src/version.c
     src/version_range.c
-    src/thpool.c
     src/properties.c
     src/utils.c
     src/ip_utils.c
@@ -96,10 +95,6 @@ if (ENABLE_TESTING)
     add_executable(linked_list_test private/test/linked_list_test.cpp)
     target_link_libraries(linked_list_test  Celix::utils ${CPPUTEST_LIBRARY} 
pthread)
 
-    #TODO disabled for now, seems to create a deadlock on host..
-    #add_executable(thread_pool_test private/test/thread_pool_test.cpp)
-    #target_link_libraries(thread_pool_test  Celix::utils ${CPPUTEST_LIBRARY} 
pthread)
-
     add_executable(properties_test private/test/properties_test.cpp)
     target_link_libraries(properties_test ${CPPUTEST_LIBRARY} 
${CPPUTEST_EXT_LIBRARY}  Celix::utils pthread)
 
@@ -123,7 +118,6 @@ if (ENABLE_TESTING)
     add_test(NAME run_array_list_test COMMAND array_list_test)
     add_test(NAME run_hash_map_test COMMAND hash_map_test)
     add_test(NAME run_celix_threads_test COMMAND celix_threads_test)
-    #add_test(NAME run_thread_pool_test COMMAND thread_pool_test)
     add_test(NAME run_linked_list_test COMMAND linked_list_test)
     add_test(NAME run_properties_test COMMAND properties_test)
     add_test(NAME run_utils_test COMMAND utils_test)
@@ -135,11 +129,11 @@ if (ENABLE_TESTING)
     setup_target_for_coverage(array_list_test)
     setup_target_for_coverage(hash_map_test)
     setup_target_for_coverage(celix_threads_test)
-    #setup_target_for_coverage(thread_pool_test)
     setup_target_for_coverage(linked_list_test)
     setup_target_for_coverage(properties_test)
     setup_target_for_coverage(utils_test)
     setup_target_for_coverage(ip_utils_test)
+    setup_target_for_coverage(filter_test)
     setup_target_for_coverage(version_range_test)
     setup_target_for_coverage(version_test)
 
diff --git a/libs/utils/private/test/thread_pool_test.cpp 
b/libs/utils/private/test/thread_pool_test.cpp
deleted file mode 100644
index aa42ebc..0000000
--- a/libs/utils/private/test/thread_pool_test.cpp
+++ /dev/null
@@ -1,120 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- *  KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-/**
- * array_list_test.cpp
- *
- *  \date       Sep 15, 2015
- *  \author     <a href="mailto:[email protected]";>Apache Celix Project 
Team</a>
- *  \copyright  Apache License, Version 2.0
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <string.h>
-
-#include "CppUTest/TestHarness.h"
-#include "CppUTest/TestHarness_c.h"
-#include "CppUTest/CommandLineTestRunner.h"
-
-extern "C" {
-#include "celix_threads.h"
-#include "thpool.h"
-}
-
-celix_thread_mutex_t mutex;
-int sum=0;
-
-
-void * increment(void *) {
-    celixThreadMutex_lock(&mutex);
-    sum ++;
-    celixThreadMutex_unlock(&mutex);
-    return NULL;
-}
-
-int main(int argc, char** argv) {
-    MemoryLeakWarningPlugin::turnOffNewDeleteOverloads();
-    return RUN_ALL_TESTS(argc, argv);
-}
-
-
-//----------------------TEST THREAD FUNCTION DECLARATIONS----------------------
-
-//----------------------TESTGROUP DEFINES----------------------
-
-TEST_GROUP(thread_pool) {
-    threadpool    myPool;
-
-    void setup(void) {
-    }
-
-    void teardown(void) {
-    }
-};
-
-
-//----------------------THREAD_POOL TESTS----------------------
-
-TEST(thread_pool, create) {
-
-    myPool = thpool_init(5);    // pool of 5 threads
-    CHECK((myPool != NULL));
-    thpool_destroy(myPool);
-}
-
-TEST(thread_pool, do_work) {
-
-    myPool = thpool_init(5);    // pool of 5 threads
-    celixThreadMutex_create(&mutex, NULL);
-    CHECK((myPool != NULL));
-    int n;
-    sum = 0;
-    int num_jobs = 1000;
-    for (n = 0; n < num_jobs; n++){
-        thpool_add_work(myPool, increment, NULL);
-    }
-    thpool_wait(myPool);
-    thpool_destroy(myPool);
-    CHECK_EQUAL(1000, sum);
-    celixThreadMutex_destroy(&mutex);
-}
-
-TEST(thread_pool, do_work_with_pause) {
-
-    myPool = thpool_init(5);    // pool of 5 threads
-    celixThreadMutex_create(&mutex, NULL);
-    CHECK((myPool != NULL));
-    int n;
-    sum = 0;
-    int num_jobs = 500000;
-    for (n = 0; n < num_jobs; n++){
-        thpool_add_work(myPool, increment, NULL);
-    }
-    sleep(1);
-    thpool_pause(myPool);
-    for (n = 0; n < num_jobs; n++){
-        thpool_add_work(myPool, increment, NULL);
-    }
-    thpool_resume(myPool);
-    thpool_wait(myPool);
-    thpool_destroy(myPool);
-    CHECK_EQUAL(1000000, sum);
-    celixThreadMutex_destroy(&mutex);
-}
diff --git a/libs/utils/src/thpool.c b/libs/utils/src/thpool.c
deleted file mode 100644
index 5121fca..0000000
--- a/libs/utils/src/thpool.c
+++ /dev/null
@@ -1,535 +0,0 @@
-/* ********************************
- * Author:       Johan Hanssen Seferidis
- * License:         MIT
- * Description:  Library providing a threading pool where you can add
- *               work. For usage, check the thpool.h file or README.md
- *
- *//** @file thpool.h *//*
- * 
- ********************************/
-
-
-#include <unistd.h>
-#include <signal.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <pthread.h>
-#include <errno.h>
-#include <time.h> 
-#include "thpool.h"
-
-#ifdef THPOOL_DEBUG
-#define THPOOL_DEBUG 1
-#else
-#define THPOOL_DEBUG 0
-#endif
-
-static volatile int threads_keepalive;
-static volatile int threads_on_hold;
-
-
-
-/* ========================== STRUCTURES ============================ */
-
-
-/* Binary semaphore */
-typedef struct bsem {
-       pthread_mutex_t mutex;
-       pthread_cond_t   cond;
-       int v;
-} bsem;
-
-
-/* Job */
-typedef struct job{
-       struct job*  prev;                   /* pointer to previous job   */
-       void*  (*function)(void* arg);       /* function pointer          */
-       void*  arg;                          /* function's argument       */
-} job;
-
-
-/* Job queue */
-typedef struct jobqueue{
-       pthread_mutex_t rwmutex;             /* used for queue r/w access */
-       job  *front;                         /* pointer to front of queue */
-       job  *rear;                          /* pointer to rear  of queue */
-       bsem *has_jobs;                      /* flag as binary semaphore  */
-       int   len;                           /* number of jobs in queue   */
-} jobqueue;
-
-
-/* Thread */
-typedef struct thread{
-       int       id;                        /* friendly id               */
-       pthread_t pthread;                   /* pointer to actual thread  */
-       struct thpool_* thpool_p;            /* access to thpool          */
-} thread;
-
-
-/* Threadpool */
-typedef struct thpool_{
-       thread**   threads;                  /* pointer to threads        */
-       volatile int num_threads_alive;      /* threads currently alive   */
-       volatile int num_threads_working;    /* threads currently working */
-       pthread_mutex_t  thcount_lock;       /* used for thread count etc */
-       pthread_cond_t  threads_all_idle;    /* signal to thpool_wait     */
-       jobqueue*  jobqueue_p;               /* pointer to the job queue  */    
-} thpool_;
-
-
-
-
-
-/* ========================== PROTOTYPES ============================ */
-
-
-static void  thread_init(thpool_* thpool_p, struct thread** thread_p, int id);
-static void* thread_do(struct thread* thread_p);
-static void  thread_hold();
-static void  thread_destroy(struct thread* thread_p);
-
-static int   jobqueue_init(thpool_* thpool_p);
-static void  jobqueue_clear(thpool_* thpool_p);
-static void  jobqueue_push(thpool_* thpool_p, struct job* newjob_p);
-static struct job* jobqueue_pull(thpool_* thpool_p);
-static void  jobqueue_destroy(thpool_* thpool_p);
-
-static void  bsem_init(struct bsem *bsem_p, int value);
-static void  bsem_reset(struct bsem *bsem_p);
-static void  bsem_post(struct bsem *bsem_p);
-static void  bsem_post_all(struct bsem *bsem_p);
-static void  bsem_wait(struct bsem *bsem_p);
-
-
-
-
-
-/* ========================== THREADPOOL ============================ */
-
-
-/* Initialise thread pool */
-struct thpool_* thpool_init(int num_threads){
-
-       threads_on_hold   = 0;
-       threads_keepalive = 1;
-
-       if ( num_threads < 0){
-               num_threads = 0;
-       }
-
-       /* Make new thread pool */
-       thpool_* thpool_p;
-       thpool_p = (struct thpool_*)malloc(sizeof(struct thpool_));
-       if (thpool_p == NULL){
-               fprintf(stderr, "thpool_init(): Could not allocate memory for 
thread pool\n");
-               return NULL;
-       }
-       thpool_p->num_threads_alive   = 0;
-       thpool_p->num_threads_working = 0;
-
-       /* Initialise the job queue */
-       if (jobqueue_init(thpool_p) == -1){
-               fprintf(stderr, "thpool_init(): Could not allocate memory for 
job queue\n");
-               free(thpool_p);
-               return NULL;
-       }
-
-       /* Make threads in pool */
-       thpool_p->threads = (struct thread**)malloc(num_threads * sizeof(struct 
thread*));
-       if (thpool_p->threads == NULL){
-               fprintf(stderr, "thpool_init(): Could not allocate memory for 
threads\n");
-               jobqueue_destroy(thpool_p);
-               free(thpool_p->jobqueue_p);
-               free(thpool_p);
-               return NULL;
-       }
-
-       pthread_mutex_init(&(thpool_p->thcount_lock), NULL);
-       pthread_cond_init(&thpool_p->threads_all_idle, NULL);
-       
-       /* Thread init */
-       int n;
-       for (n=0; n<num_threads; n++){
-               thread_init(thpool_p, &thpool_p->threads[n], n);
-               if (THPOOL_DEBUG)
-                       printf("THPOOL_DEBUG: Created thread %d in pool \n", n);
-       }
-       
-       /* Wait for threads to initialize */
-       while (thpool_p->num_threads_alive != num_threads) {}
-
-       return thpool_p;
-}
-
-
-/* Add work to the thread pool */
-int thpool_add_work(thpool_* thpool_p, void *(*function_p)(void*), void* 
arg_p){
-       job* newjob;
-
-       newjob=(struct job*)malloc(sizeof(struct job));
-       if (newjob==NULL){
-               fprintf(stderr, "thpool_add_work(): Could not allocate memory 
for new job\n");
-               return -1;
-       }
-
-       /* add function and argument */
-       newjob->function=function_p;
-       newjob->arg=arg_p;
-
-       /* add job to queue */
-       pthread_mutex_lock(&thpool_p->jobqueue_p->rwmutex);
-       jobqueue_push(thpool_p, newjob);
-       pthread_mutex_unlock(&thpool_p->jobqueue_p->rwmutex);
-
-       return 0;
-}
-
-
-/* Wait until all jobs have finished */
-void thpool_wait(thpool_* thpool_p){
-       pthread_mutex_lock(&thpool_p->thcount_lock);
-       while (thpool_p->jobqueue_p->len || thpool_p->num_threads_working) {
-               pthread_cond_wait(&thpool_p->threads_all_idle, 
&thpool_p->thcount_lock);
-       }
-       pthread_mutex_unlock(&thpool_p->thcount_lock);
-}
-
-
-/* Destroy the threadpool */
-void thpool_destroy(thpool_* thpool_p){
-       
-       volatile int threads_total = thpool_p->num_threads_alive;
-
-       /* End each thread 's infinite loop */
-       threads_keepalive = 0;
-       
-       /* Give one second to kill idle threads */
-       double TIMEOUT = 1.0;
-       time_t start, end;
-       double tpassed = 0.0;
-       time (&start);
-       while (tpassed < TIMEOUT && thpool_p->num_threads_alive){
-               bsem_post_all(thpool_p->jobqueue_p->has_jobs);
-               time (&end);
-               tpassed = difftime(end,start);
-       }
-       
-       /* Poll remaining threads */
-       while (thpool_p->num_threads_alive){
-               bsem_post_all(thpool_p->jobqueue_p->has_jobs);
-               sleep(1);
-       }
-
-       /* Job queue cleanup */
-       jobqueue_destroy(thpool_p);
-       free(thpool_p->jobqueue_p);
-       
-       /* Deallocs */
-       int n;
-       for (n=0; n < threads_total; n++){
-               thread_destroy(thpool_p->threads[n]);
-       }
-       free(thpool_p->threads);
-       free(thpool_p);
-}
-
-
-/* Pause all threads in threadpool */
-void thpool_pause(thpool_* thpool_p) {
-       int n;
-       for (n=0; n < thpool_p->num_threads_alive; n++){
-               pthread_kill(thpool_p->threads[n]->pthread, SIGUSR1);
-       }
-}
-
-
-/* Resume all threads in threadpool */
-void thpool_resume(thpool_* thpool_p) {
-       threads_on_hold = 0;
-}
-
-
-
-
-
-/* ============================ THREAD ============================== */
-
-
-/* Initialize a thread in the thread pool
- * 
- * @param thread        address to the pointer of the thread to be created
- * @param id            id to be given to the thread
- * 
- */
-static void thread_init (thpool_* thpool_p, struct thread** thread_p, int id){
-       
-       *thread_p = (struct thread*)malloc(sizeof(struct thread));
-       if (*thread_p == NULL){
-               fprintf(stderr, "thpool_init(): Could not allocate memory for 
thread\n");
-               exit(1);
-       }
-
-       (*thread_p)->thpool_p = thpool_p;
-       (*thread_p)->id       = id;
-
-       pthread_create(&(*thread_p)->pthread, NULL, (void *)thread_do, 
(*thread_p));
-       pthread_detach((*thread_p)->pthread);
-       
-}
-
-
-/* Sets the calling thread on hold */
-static void thread_hold () {
-       threads_on_hold = 1;
-       while (threads_on_hold){
-               sleep(1);
-       }
-}
-
-
-/* What each thread is doing
-* 
-* In principle this is an endless loop. The only time this loop gets 
interuppted is once
-* thpool_destroy() is invoked or the program exits.
-* 
-* @param  thread        thread that will run this function
-* @return nothing
-*/
-static void* thread_do(struct thread* thread_p){
-
-       /* Set thread name for profiling and debuging */
-       char thread_name[128] = {0};
-       sprintf(thread_name, "thread-pool-%d", thread_p->id);
-
-#if defined(__linux__)
-       pthread_setname_np(thread_p->pthread, thread_name);
-#elif defined(__APPLE__) && defined(__MACH__)
-       pthread_setname_np(thread_name);
-#else
-       fprintf(stderr, "thread_do(): pthread_setname_np is not supported on 
this system");
-#endif
-
-       /* Assure all threads have been created before starting serving */
-       thpool_* thpool_p = thread_p->thpool_p;
-       
-       /* Register signal handler */
-       struct sigaction act;
-       sigemptyset(&act.sa_mask);
-       act.sa_flags = 0;
-       act.sa_handler = thread_hold;
-       if (sigaction(SIGUSR1, &act, NULL) == -1) {
-               fprintf(stderr, "thread_do(): cannot handle SIGUSR1");
-       }
-       
-       /* Mark thread as alive (initialized) */
-       pthread_mutex_lock(&thpool_p->thcount_lock);
-       thpool_p->num_threads_alive += 1;
-       pthread_mutex_unlock(&thpool_p->thcount_lock);
-
-       while(threads_keepalive){
-
-               bsem_wait(thpool_p->jobqueue_p->has_jobs);
-
-               if (threads_keepalive){
-                       
-                       pthread_mutex_lock(&thpool_p->thcount_lock);
-                       thpool_p->num_threads_working++;
-                       pthread_mutex_unlock(&thpool_p->thcount_lock);
-                       
-                       /* Read job from queue and execute it */
-                       void*(*func_buff)(void* arg);
-                       void*  arg_buff;
-                       job* job_p;
-                       pthread_mutex_lock(&thpool_p->jobqueue_p->rwmutex);
-                       job_p = jobqueue_pull(thpool_p);
-                       pthread_mutex_unlock(&thpool_p->jobqueue_p->rwmutex);
-                       if (job_p) {
-                               func_buff = job_p->function;
-                               arg_buff  = job_p->arg;
-                               func_buff(arg_buff);
-                               free(job_p);
-                       }
-                       
-                       pthread_mutex_lock(&thpool_p->thcount_lock);
-                       thpool_p->num_threads_working--;
-                       if (!thpool_p->num_threads_working) {
-                               
pthread_cond_signal(&thpool_p->threads_all_idle);
-                       }
-                       pthread_mutex_unlock(&thpool_p->thcount_lock);
-
-               }
-       }
-       pthread_mutex_lock(&thpool_p->thcount_lock);
-       thpool_p->num_threads_alive --;
-       pthread_mutex_unlock(&thpool_p->thcount_lock);
-
-       return NULL;
-}
-
-
-/* Frees a thread  */
-static void thread_destroy (thread* thread_p){
-       free(thread_p);
-}
-
-
-
-
-
-/* ============================ JOB QUEUE =========================== */
-
-
-/* Initialize queue */
-static int jobqueue_init(thpool_* thpool_p){
-       
-       thpool_p->jobqueue_p = (struct jobqueue*)malloc(sizeof(struct 
jobqueue));
-       if (thpool_p->jobqueue_p == NULL){
-               return -1;
-       }
-       thpool_p->jobqueue_p->len = 0;
-       thpool_p->jobqueue_p->front = NULL;
-       thpool_p->jobqueue_p->rear  = NULL;
-
-       thpool_p->jobqueue_p->has_jobs = (struct bsem*)malloc(sizeof(struct 
bsem));
-       if (thpool_p->jobqueue_p->has_jobs == NULL){
-               return -1;
-       }
-
-       pthread_mutex_init(&(thpool_p->jobqueue_p->rwmutex), NULL);
-       bsem_init(thpool_p->jobqueue_p->has_jobs, 0);
-
-       return 0;
-}
-
-
-/* Clear the queue */
-static void jobqueue_clear(thpool_* thpool_p){
-
-       while(thpool_p->jobqueue_p->len){
-               free(jobqueue_pull(thpool_p));
-       }
-
-       thpool_p->jobqueue_p->front = NULL;
-       thpool_p->jobqueue_p->rear  = NULL;
-       bsem_reset(thpool_p->jobqueue_p->has_jobs);
-       thpool_p->jobqueue_p->len = 0;
-
-}
-
-
-/* Add (allocated) job to queue
- *
- * Notice: Caller MUST hold a mutex
- */
-static void jobqueue_push(thpool_* thpool_p, struct job* newjob){
-
-       newjob->prev = NULL;
-
-       switch(thpool_p->jobqueue_p->len){
-
-               case 0:  /* if no jobs in queue */
-                                       thpool_p->jobqueue_p->front = newjob;
-                                       thpool_p->jobqueue_p->rear  = newjob;
-                                       break;
-
-               default: /* if jobs in queue */
-                                       thpool_p->jobqueue_p->rear->prev = 
newjob;
-                                       thpool_p->jobqueue_p->rear = newjob;
-                                       
-       }
-       thpool_p->jobqueue_p->len++;
-       
-       bsem_post(thpool_p->jobqueue_p->has_jobs);
-}
-
-
-/* Get first job from queue(removes it from queue)
- * 
- * Notice: Caller MUST hold a mutex
- */
-static struct job* jobqueue_pull(thpool_* thpool_p){
-
-       job* job_p;
-       job_p = thpool_p->jobqueue_p->front;
-
-       switch(thpool_p->jobqueue_p->len){
-               
-               case 0:  /* if no jobs in queue */
-                                       break;
-               
-               case 1:  /* if one job in queue */
-                                       thpool_p->jobqueue_p->front = NULL;
-                                       thpool_p->jobqueue_p->rear  = NULL;
-                                       thpool_p->jobqueue_p->len = 0;
-                                       break;
-               
-               default: /* if >1 jobs in queue */
-                                       thpool_p->jobqueue_p->front = 
job_p->prev;
-                                       thpool_p->jobqueue_p->len--;
-                                       /* more than one job in queue -> post 
it */
-                                       
bsem_post(thpool_p->jobqueue_p->has_jobs);
-                                       
-       }
-       
-       return job_p;
-}
-
-
-/* Free all queue resources back to the system */
-static void jobqueue_destroy(thpool_* thpool_p){
-       jobqueue_clear(thpool_p);
-       free(thpool_p->jobqueue_p->has_jobs);
-}
-
-
-
-
-
-/* ======================== SYNCHRONISATION ========================= */
-
-
-/* Init semaphore to 1 or 0 */
-static void bsem_init(bsem *bsem_p, int value) {
-       if (value < 0 || value > 1) {
-               fprintf(stderr, "bsem_init(): Binary semaphore can take only 
values 1 or 0");
-               exit(1);
-       }
-       pthread_mutex_init(&(bsem_p->mutex), NULL);
-       pthread_cond_init(&(bsem_p->cond), NULL);
-       bsem_p->v = value;
-}
-
-
-/* Reset semaphore to 0 */
-static void bsem_reset(bsem *bsem_p) {
-       bsem_init(bsem_p, 0);
-}
-
-
-/* Post to at least one thread */
-static void bsem_post(bsem *bsem_p) {
-       pthread_mutex_lock(&bsem_p->mutex);
-       bsem_p->v = 1;
-       pthread_cond_signal(&bsem_p->cond);
-       pthread_mutex_unlock(&bsem_p->mutex);
-}
-
-
-/* Post to all threads */
-static void bsem_post_all(bsem *bsem_p) {
-       pthread_mutex_lock(&bsem_p->mutex);
-       bsem_p->v = 1;
-       pthread_cond_broadcast(&bsem_p->cond);
-       pthread_mutex_unlock(&bsem_p->mutex);
-}
-
-
-/* Wait on semaphore until semaphore has value 0 */
-static void bsem_wait(bsem* bsem_p) {
-       pthread_mutex_lock(&bsem_p->mutex);
-       while (bsem_p->v != 1) {
-               pthread_cond_wait(&bsem_p->cond, &bsem_p->mutex);
-       }
-       bsem_p->v = 0;
-       pthread_mutex_unlock(&bsem_p->mutex);
-}

Reply via email to