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