Simple test to make sure a couple of simple make DCP jobs complete.
[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 #include "cross.h"
29
30 using namespace std;
31 using namespace boost;
32
33 JobManager* JobManager::_instance = 0;
34
35 JobManager::JobManager ()
36 {
37         boost::thread (boost::bind (&JobManager::scheduler, this));
38 }
39
40 void
41 JobManager::add (shared_ptr<Job> j)
42 {
43         boost::mutex::scoped_lock lm (_mutex);
44         _jobs.push_back (j);
45 }
46
47 void
48 JobManager::add_after (shared_ptr<Job> after, shared_ptr<Job> j)
49 {
50         boost::mutex::scoped_lock lm (_mutex);
51         list<shared_ptr<Job> >::iterator i = find (_jobs.begin(), _jobs.end(), after);
52         assert (i != _jobs.end ());
53         ++i;
54         _jobs.insert (i, j);
55 }
56
57 list<shared_ptr<Job> >
58 JobManager::get () const
59 {
60         boost::mutex::scoped_lock lm (_mutex);
61         return _jobs;
62 }
63
64 bool
65 JobManager::work_to_do () const
66 {
67         boost::mutex::scoped_lock lm (_mutex);
68         list<shared_ptr<Job> >::const_iterator i = _jobs.begin();
69         while (i != _jobs.end() && (*i)->finished()) {
70                 ++i;
71         }
72
73         return i != _jobs.end ();
74 }
75
76 bool
77 JobManager::errors () const
78 {
79         boost::mutex::scoped_lock lm (_mutex);
80         for (list<shared_ptr<Job> >::const_iterator i = _jobs.begin(); i != _jobs.end(); ++i) {
81                 if ((*i)->finished_in_error ()) {
82                         return true;
83                 }
84         }
85
86         return false;
87 }       
88
89
90 void
91 JobManager::scheduler ()
92 {
93         while (1) {
94                 {
95                         boost::mutex::scoped_lock lm (_mutex);
96                         int running = 0;
97                         shared_ptr<Job> first_new;
98                         for (list<shared_ptr<Job> >::iterator i = _jobs.begin(); i != _jobs.end(); ++i) {
99                                 if ((*i)->running ()) {
100                                         ++running;
101                                 } else if (!(*i)->finished () && first_new == 0) {
102                                         first_new = *i;
103                                 }
104
105                                 if (running == 0 && first_new) {
106                                         first_new->start ();
107                                         break;
108                                 }
109                         }
110                 }
111
112                 dvdomatic_sleep (1);
113         }
114 }
115
116 JobManager *
117 JobManager::instance ()
118 {
119         if (_instance == 0) {
120                 _instance = new JobManager ();
121         }
122
123         return _instance;
124 }