Merge: Nitsmell : Adding new code smells and print console updated
[nit.git] / lib / pthreads / threadpool.nit
index cd14ab1..927cdbf 100644 (file)
@@ -23,24 +23,34 @@ class ThreadPool
        private var queue = new ConcurrentList[Task]
        private var mutex = new Mutex
        private var cond = new NativePthreadCond
+       private var threads = new Array[PoolThread]
 
-       # Number of threads used
-       var nb_threads: Int is noinit
+       # Number of threads used, can only grow after the first call to `execute`
+       var nb_threads = 5 is optional, writable
 
-       init do
-               for i in [0..nb_threads[ do
+       private fun create_threads do
+               while threads.length < nb_threads do
                        var t = new PoolThread(queue, mutex, cond)
                        t.start
+                       threads.add t
                end
        end
 
-       private fun set_nb_threads(nb: nullable Int) is autoinit do nb_threads = nb or else 5
-
        # Adds a Task into the queue
-       fun execute(task: JoinTask) do
+       fun execute(task: Task) do
+               create_threads
                queue.push(task)
                cond.signal
        end
+
+       # Join all threads, waiting for all tasks to be completed
+       fun join_all do
+               # Wait
+               for t in threads do t.join
+
+               # Reset
+               threads.clear
+       end
 end
 
 # A Thread running in a threadpool