Use enum for exec stderr parameter (1/2)
[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 #include <curl/curl.h>
33         extern bool cocoa_open_url (const char*);
34 #endif
35
36 #ifdef PLATFORM_WINDOWS
37 # include <windows.h>
38 # include <shellapi.h>
39 #else
40 # include <sys/types.h>
41 # include <unistd.h>
42 #endif
43
44 bool
45 PBD::open_uri (const char* uri)
46 {
47 #ifdef PLATFORM_WINDOWS
48         gunichar2* wuri = g_utf8_to_utf16 (uri, -1, NULL, NULL, NULL);
49         ShellExecuteW(NULL, L"open", (LPCWSTR)wuri, NULL, NULL, SW_SHOWNORMAL);
50         g_free (wuri);
51         return true;
52 #elif __APPLE__
53         return cocoa_open_url (uri);
54 #else
55         EnvironmentalProtectionAgency* global_epa = EnvironmentalProtectionAgency::get_global_epa ();
56         boost::scoped_ptr<EnvironmentalProtectionAgency> current_epa;
57
58         /* revert all environment settings back to whatever they were when ardour started
59          */
60
61         if (global_epa) {
62                 current_epa.reset (new EnvironmentalProtectionAgency(true)); /* will restore settings when we leave scope */
63                 global_epa->restore ();
64         }
65
66         std::string s(uri);
67         while (s.find("\\") != std::string::npos)
68                 s.replace(s.find("\\"), 1, "\\\\");
69         while (s.find("\"") != std::string::npos)
70                 s.replace(s.find("\\"), 1, "\\\"");
71
72 #ifdef NO_VFORK
73         std::string command = "xdg-open ";
74         command += '"' + s + '"';
75         command += " &";
76         (void) system (command.c_str());
77 #else
78         if (::vfork () == 0) {
79                 ::execlp ("xdg-open", "xdg-open", s.c_str(), (char*)NULL);
80                 exit (0);
81         }
82 #endif
83
84 #endif /* not PLATFORM_WINDOWS and not __APPLE__ */
85         return true;
86 }
87
88 bool
89 PBD::open_uri (const std::string& uri)
90 {
91         return open_uri (uri.c_str());
92 }
93
94 bool
95 PBD::open_folder (const std::string& d)
96 {
97 #ifdef __APPLE__
98         CURL *curl = curl_easy_init ();
99         bool rv = false;
100         if (curl) {
101                 char * e = curl_easy_escape (curl, d.c_str(), d.size());
102                 std::string url = "file:///" + std::string(e);
103                 rv = PBD::open_uri (url);
104                 curl_free (e);
105         }
106         return rv;
107 #else
108         return PBD::open_uri (d);
109 #endif
110 }