2013-01-16 13:15:38 -05:00
|
|
|
/*
|
2015-10-04 14:51:05 -04:00
|
|
|
Copyright (C) 2012 Paul Davis
|
2013-01-16 13:15:38 -05:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2010-03-16 11:33:04 -04:00
|
|
|
#ifdef WAF_BUILD
|
|
|
|
#include "libpbd-config.h"
|
|
|
|
#endif
|
|
|
|
|
2012-06-21 16:24:03 -04:00
|
|
|
#include <boost/scoped_ptr.hpp>
|
2010-03-16 11:33:04 -04:00
|
|
|
#include <string>
|
|
|
|
#include <glibmm/spawn.h>
|
|
|
|
|
2012-06-21 16:24:03 -04:00
|
|
|
#include "pbd/epa.h"
|
2010-03-16 11:33:04 -04:00
|
|
|
#include "pbd/openuri.h"
|
|
|
|
|
2014-11-24 14:35:38 -05:00
|
|
|
#ifdef __APPLE__
|
2016-02-17 10:29:25 -05:00
|
|
|
#include <curl/curl.h>
|
2014-11-24 14:35:38 -05:00
|
|
|
extern bool cocoa_open_url (const char*);
|
|
|
|
#endif
|
|
|
|
|
2015-01-18 12:16:28 -05:00
|
|
|
#ifdef PLATFORM_WINDOWS
|
|
|
|
#include <windows.h>
|
2015-01-18 13:52:24 -05:00
|
|
|
#include <shellapi.h>
|
2015-01-18 12:16:28 -05:00
|
|
|
#endif
|
|
|
|
|
2010-03-16 11:33:04 -04:00
|
|
|
bool
|
|
|
|
PBD::open_uri (const char* uri)
|
|
|
|
{
|
2015-01-18 12:16:28 -05:00
|
|
|
#ifdef PLATFORM_WINDOWS
|
|
|
|
ShellExecute(NULL, "open", uri, NULL, NULL, SW_SHOWNORMAL);
|
|
|
|
return true;
|
|
|
|
#elif __APPLE__
|
2010-03-16 11:33:04 -04:00
|
|
|
return cocoa_open_url (uri);
|
|
|
|
#else
|
2012-06-21 16:15:38 -04:00
|
|
|
EnvironmentalProtectionAgency* global_epa = EnvironmentalProtectionAgency::get_global_epa ();
|
|
|
|
boost::scoped_ptr<EnvironmentalProtectionAgency> current_epa;
|
|
|
|
|
|
|
|
/* revert all environment settings back to whatever they were when ardour started
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (global_epa) {
|
|
|
|
current_epa.reset (new EnvironmentalProtectionAgency(true)); /* will restore settings when we leave scope */
|
|
|
|
global_epa->restore ();
|
|
|
|
}
|
|
|
|
|
2016-02-11 10:43:35 -05:00
|
|
|
std::string s(uri);
|
|
|
|
while (s.find("\\") != std::string::npos)
|
|
|
|
s.replace(s.find("\\"), 1, "\\\\");
|
|
|
|
while (s.find("\"") != std::string::npos)
|
|
|
|
s.replace(s.find("\\"), 1, "\\\"");
|
|
|
|
|
2010-03-16 11:33:04 -04:00
|
|
|
std::string command = "xdg-open ";
|
2016-02-11 10:43:35 -05:00
|
|
|
command += '"' + s + '"';
|
2012-06-21 16:15:38 -04:00
|
|
|
command += " &";
|
2013-11-04 21:32:41 -05:00
|
|
|
(void) system (command.c_str());
|
2010-03-16 11:33:04 -04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
}
|
2010-11-13 00:14:48 -05:00
|
|
|
|
2013-03-09 08:44:22 -05:00
|
|
|
bool
|
2015-10-04 14:51:05 -04:00
|
|
|
PBD::open_uri (const std::string& uri)
|
2013-03-09 08:44:22 -05:00
|
|
|
{
|
|
|
|
return open_uri (uri.c_str());
|
|
|
|
}
|
2016-02-17 10:29:25 -05:00
|
|
|
|
|
|
|
bool
|
|
|
|
PBD::open_folder (const std::string& d)
|
|
|
|
{
|
|
|
|
#ifdef __APPLE__
|
|
|
|
CURL *curl = curl_easy_init ();
|
2016-02-17 11:03:14 -05:00
|
|
|
bool rv = false;
|
2016-02-17 10:29:25 -05:00
|
|
|
if (curl) {
|
|
|
|
char * e = curl_easy_escape (curl, d.c_str(), d.size());
|
|
|
|
std::string url = "file:///" + std::string(e);
|
2016-02-17 11:03:14 -05:00
|
|
|
rv = PBD::open_uri (url);
|
2016-02-17 10:29:25 -05:00
|
|
|
curl_free (e);
|
|
|
|
}
|
2016-02-17 11:03:14 -05:00
|
|
|
return rv;
|
2016-02-17 10:29:25 -05:00
|
|
|
#else
|
2016-02-17 11:03:14 -05:00
|
|
|
return PBD::open_uri (d);
|
2016-02-17 10:29:25 -05:00
|
|
|
#endif
|
|
|
|
}
|