Ardour  9.0-pre0-427-gd2a3450e2f
ardour/ardour/system_exec.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014-2019 Robin Gareus <robin@gareus.org>
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 along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 #ifndef _ardour_system_exec_h_
19 #define _ardour_system_exec_h_
20 
21 #include <glibmm/threads.h>
22 
24 #include "pbd/system_exec.h"
25 
26 namespace ARDOUR {
27 
29 {
30 public:
31  SystemExec (std::string cmd, std::string argv = "", bool supress_ld_env = false);
32  SystemExec (std::string cmd, char** argv, bool supress_ld_env = false);
33  SystemExec (std::string cmd, const std::map<char, std::string> subs, bool supress_ld_env = false);
35 
36  int start (StdErrMode stderr_mode = IgnoreAndClose)
37  {
38  return PBD::SystemExec::start (stderr_mode, _vfork_exec.c_str ());
39  }
40 
41 private:
42  static void initialize ();
43 
44  static bool _initialized;
45  static Glib::Threads::Mutex _init_mutex;
46  static std::string _vfork_exec;
47 
48 };
49 
50 }; // namespace ARDOUR
51 
52 #endif /* _libpbd_system_exec_h_ */
SystemExec(std::string cmd, char **argv, bool supress_ld_env=false)
SystemExec(std::string cmd, const std::map< char, std::string > subs, bool supress_ld_env=false)
static Glib::Threads::Mutex _init_mutex
static std::string _vfork_exec
static void initialize()
SystemExec(std::string cmd, std::string argv="", bool supress_ld_env=false)
int start(StdErrMode stderr_mode=IgnoreAndClose)
execute an external command
int start(StdErrMode stderr_mode, const char *_vfork_exec_wrapper)
#define LIBARDOUR_API