Move things round a bit.
[dcpomatic.git] / src / lib / shell_command_job.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/shell_command_job.cc
21  *  @brief A job which calls a command via a shell.
22  */
23
24 #include <stdio.h>
25 #include "shell_command_job.h"
26 #include "log.h"
27
28 using namespace std;
29 using namespace boost;
30
31 /** @param s Our FilmState.
32  *  @param o Options.
33  *  @param l Log.
34  */
35 ShellCommandJob::ShellCommandJob (shared_ptr<const FilmState> s, shared_ptr<const Options> o, Log* l)
36         : Job (s, o, l)
37 {
38
39 }
40
41 /** Run a command via a shell.
42  *  @param c Command to run.
43  */
44 void
45 ShellCommandJob::command (string c)
46 {
47         _log->log ("Command: " + c, Log::VERBOSE);
48         
49         int const r = system (c.c_str());
50         if (r < 0) {
51                 set_state (FINISHED_ERROR);
52                 return;
53         } else if (WEXITSTATUS (r) != 0) {
54                 set_error ("command failed");
55                 set_state (FINISHED_ERROR);
56         } else {
57                 set_state (FINISHED_OK);
58         }
59 }
60
61 string
62 ShellCommandJob::status () const
63 {
64         if (!running () && !finished()) {
65                 return "Waiting";
66         } else if (running ()) {
67                 return "";
68         }
69
70         return Job::status ();
71 }