X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Ftools%2Fdcpomatic_server_cli.cc;h=6d7f6aba729ae06113de78f76ae9bbd5ab8dba68;hb=b4ab9f4adc9dd10d0f1a33286d78821da580a4d1;hp=336d578eef2c881a49c50ccff7cddbf0be1e2304;hpb=6fa353595ce8f784b7d5004a6c38c78bddae94c7;p=dcpomatic.git diff --git a/src/tools/dcpomatic_server_cli.cc b/src/tools/dcpomatic_server_cli.cc index 336d578ee..6d7f6aba7 100644 --- a/src/tools/dcpomatic_server_cli.cc +++ b/src/tools/dcpomatic_server_cli.cc @@ -1,19 +1,20 @@ /* Copyright (C) 2012-2015 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ @@ -27,6 +28,7 @@ #include "lib/null_log.h" #include "lib/version.h" #include "lib/encode_server.h" +#include "lib/dcpomatic_log.h" #include #include #include @@ -44,7 +46,7 @@ using std::cerr; using std::string; using std::cout; -using boost::shared_ptr; +using std::shared_ptr; static void help (string n) @@ -63,7 +65,7 @@ main (int argc, char* argv[]) dcpomatic_setup_path_encoding (); dcpomatic_setup (); - int num_threads = Config::instance()->num_local_encoding_threads (); + int num_threads = Config::instance()->server_encoding_threads (); bool verbose = false; bool write_log = false; @@ -103,14 +105,11 @@ main (int argc, char* argv[]) } } - shared_ptr log; if (write_log) { - log.reset (new FileLog ("dcpomatic_server_cli.log")); - } else { - log.reset (new NullLog); + dcpomatic_log.reset (new FileLog("dcpomatic_server_cli.log")); } - EncodeServer server (log, verbose, num_threads); + EncodeServer server (verbose, num_threads); try { server.run (); @@ -120,6 +119,8 @@ main (int argc, char* argv[]) exit (EXIT_FAILURE); } cerr << argv[0] << ": " << e.what() << "\n"; + } catch (std::exception& e) { + cerr << argv[0] << ": failed to start server; " << e.what() << "\n"; } return 0; }