Merge branch 'master' into cairocanvas
[ardour.git] / libs / pbd / openuri.cc
1 /*
2     Copyright (C) 2012 Paul Davis 
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 #ifdef WAF_BUILD
21 #include "libpbd-config.h"
22 #endif
23
24 #include <boost/scoped_ptr.hpp>
25 #include <string>
26 #include <glibmm/spawn.h>
27
28 #include "pbd/epa.h"
29 #include "pbd/openuri.h"
30
31 bool
32 PBD::open_uri (const char* uri)
33 {
34 #ifdef __APPLE__
35         extern bool cocoa_open_url (const char*);
36         return cocoa_open_url (uri);
37 #else
38         EnvironmentalProtectionAgency* global_epa = EnvironmentalProtectionAgency::get_global_epa ();
39         boost::scoped_ptr<EnvironmentalProtectionAgency> current_epa;
40
41         /* revert all environment settings back to whatever they were when ardour started
42          */
43
44         if (global_epa) {
45                 current_epa.reset (new EnvironmentalProtectionAgency(true)); /* will restore settings when we leave scope */
46                 global_epa->restore ();
47         }
48
49         std::string command = "xdg-open ";
50         command += uri;
51         command += " &";
52         (void) system (command.c_str());
53
54         return true;
55 #endif
56 }
57
58 bool
59 PBD::open_uri (const std::string& uri) 
60 {
61         return open_uri (uri.c_str());
62 }