Glib throws a const FileError exception
[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 #endif
40
41 bool
42 PBD::open_uri (const char* uri)
43 {
44 #ifdef PLATFORM_WINDOWS
45         gunichar2* wuri = g_utf8_to_utf16 (uri, -1, NULL, NULL, NULL);
46         ShellExecuteW(NULL, L"open", (LPCWSTR)wuri, NULL, NULL, SW_SHOWNORMAL);
47         g_free (wuri);
48         return true;
49 #elif __APPLE__
50         return cocoa_open_url (uri);
51 #else
52         EnvironmentalProtectionAgency* global_epa = EnvironmentalProtectionAgency::get_global_epa ();
53         boost::scoped_ptr<EnvironmentalProtectionAgency> current_epa;
54
55         /* revert all environment settings back to whatever they were when ardour started
56          */
57
58         if (global_epa) {
59                 current_epa.reset (new EnvironmentalProtectionAgency(true)); /* will restore settings when we leave scope */
60                 global_epa->restore ();
61         }
62
63         std::string s(uri);
64         while (s.find("\\") != std::string::npos)
65                 s.replace(s.find("\\"), 1, "\\\\");
66         while (s.find("\"") != std::string::npos)
67                 s.replace(s.find("\\"), 1, "\\\"");
68
69         std::string command = "xdg-open ";
70         command += '"' + s + '"';
71         command += " &";
72         (void) system (command.c_str());
73
74         return true;
75 #endif
76 }
77
78 bool
79 PBD::open_uri (const std::string& uri)
80 {
81         return open_uri (uri.c_str());
82 }
83
84 bool
85 PBD::open_folder (const std::string& d)
86 {
87 #ifdef __APPLE__
88         CURL *curl = curl_easy_init ();
89         bool rv = false;
90         if (curl) {
91                 char * e = curl_easy_escape (curl, d.c_str(), d.size());
92                 std::string url = "file:///" + std::string(e);
93                 rv = PBD::open_uri (url);
94                 curl_free (e);
95         }
96         return rv;
97 #else
98         return PBD::open_uri (d);
99 #endif
100 }