Move things round a bit.
[dcpomatic.git] / src / lib / job_manager.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  src/job_manager.cc
21  *  @brief A simple scheduler for jobs.
22  */
23
24 #include <iostream>
25 #include <boost/thread.hpp>
26 #include "job_manager.h"
27 #include "job.h"
28
29 using namespace std;
30 using namespace boost;
31
32 JobManager* JobManager::_instance = 0;
33
34 JobManager::JobManager ()
35 {
36         boost::thread (boost::bind (&JobManager::scheduler, this));
37 }
38
39 void
40 JobManager::add (shared_ptr<Job> j)
41 {
42         boost::mutex::scoped_lock lm (_mutex);
43         
44         _jobs.push_back (j);
45 }
46
47 list<shared_ptr<Job> >
48 JobManager::get () const
49 {
50         boost::mutex::scoped_lock lm (_mutex);
51         
52         return _jobs;
53 }
54
55 bool
56 JobManager::work_to_do () const
57 {
58         boost::mutex::scoped_lock lm (_mutex);
59         list<shared_ptr<Job> >::const_iterator i = _jobs.begin();
60         while (i != _jobs.end() && (*i)->finished()) {
61                 ++i;
62         }
63
64         return i != _jobs.end ();
65 }
66
67 void
68 JobManager::scheduler ()
69 {
70         while (1) {
71                 {
72                         boost::mutex::scoped_lock lm (_mutex);
73                         int running = 0;
74                         shared_ptr<Job> first_new;
75                         for (list<shared_ptr<Job> >::iterator i = _jobs.begin(); i != _jobs.end(); ++i) {
76                                 if ((*i)->running ()) {
77                                         ++running;
78                                 } else if (!(*i)->finished () && first_new == 0) {
79                                         first_new = *i;
80                                 }
81
82                                 if (running == 0 && first_new) {
83                                         first_new->start ();
84                                         break;
85                                 }
86                         }
87                 }
88
89                 sleep (1);
90         }
91 }
92
93 JobManager *
94 JobManager::instance ()
95 {
96         if (_instance == 0) {
97                 _instance = new JobManager ();
98         }
99
100         return _instance;
101 }