fix open_uri for windows
[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 #ifdef __APPLE__
32         extern bool cocoa_open_url (const char*);
33 #endif
34
35 #ifdef PLATFORM_WINDOWS
36         #include <windows.h>
37 #endif
38
39 bool
40 PBD::open_uri (const char* uri)
41 {
42 #ifdef PLATFORM_WINDOWS
43         ShellExecute(NULL, "open", uri, NULL, NULL, SW_SHOWNORMAL);
44         return true;
45 #elif __APPLE__
46         return cocoa_open_url (uri);
47 #else
48         EnvironmentalProtectionAgency* global_epa = EnvironmentalProtectionAgency::get_global_epa ();
49         boost::scoped_ptr<EnvironmentalProtectionAgency> current_epa;
50
51         /* revert all environment settings back to whatever they were when ardour started
52          */
53
54         if (global_epa) {
55                 current_epa.reset (new EnvironmentalProtectionAgency(true)); /* will restore settings when we leave scope */
56                 global_epa->restore ();
57         }
58
59         std::string command = "xdg-open ";
60         command += uri;
61         command += " &";
62         (void) system (command.c_str());
63
64         return true;
65 #endif
66 }
67
68 bool
69 PBD::open_uri (const std::string& uri) 
70 {
71         return open_uri (uri.c_str());
72 }