split apart ardour_ui.cc into a series of distinct source modules.
[ardour.git] / libs / pbd / pathexpand.cc
index a92005a08621e9a0d850be26675d53bd3581ca02..4aba783b5d3a8b9b48c25823bbfe377973b1c499 100644 (file)
@@ -1,21 +1,23 @@
 /*
-    Copyright (C) 2013-2014 Paul Davis
-
-    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.
-
-*/
+ * Copyright (C) 2013-2014 John Emmas <john@creativepost.co.uk>
+ * Copyright (C) 2013-2015 Paul Davis <paul@linuxaudiosystems.com>
+ * Copyright (C) 2013-2016 Tim Mayberry <mojofunk@gmail.com>
+ * Copyright (C) 2014-2015 Robin Gareus <robin@gareus.org>
+ *
+ * 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.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
 
 #include <vector>
 #include <iostream>
 using std::string;
 using std::vector;
 
-#ifdef COMPILER_MINGW
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <glibmm.h>
-
-/****************************************************************
- * Emulate POSIX realpath() using Win32 _fullpath() since realpath()
- * is not available.
- *
- * Returns:
- *    On Success: A pointer to the resolved (absolute) path
- *    On Failure: 0 (NULL)
- */
-
-static char*
-realpath (const char *original_path, char resolved_path[_MAX_PATH+1])
-{
-       char *rpath = 0;
-       bool bIsSymLink = false; // We'll probably need to test the incoming path
-                                // to find out if it points to a Windows shortcut
-                                // (or a hard link) and set this appropriately.
-
-       if (bIsSymLink) {
-               // At the moment I'm not sure if Windows '_fullpath()' is directly
-               // equivalent to POSIX 'realpath()' - in as much as the latter will
-               // resolve the supplied path if it happens to point to a symbolic
-               // link ('_fullpath()' probably DOESN'T do this but I'm not really
-               // sure if Ardour needs such functionality anyway). Therefore we'll
-               // possibly need to add that functionality here at a later date.
-       } else {
-               char temp[(_MAX_PATH+1)*6]; // Allow for maximum length of a path in wchar characters
-
-               // POSIX 'realpath()' requires that the buffer size is at
-               // least PATH_MAX+1, so assume that the user knew this !!
-
-               rpath = _fullpath (temp, Glib::locale_from_utf8 (original_path).c_str(), _MAX_PATH);
-
-               if (0 != rpath) {
-                       snprintf (resolved_path, _MAX_PATH+1, "%s", Glib::locale_to_utf8 (temp).c_str());
-               }
-
-       }
-
-       return (rpath);
-}
-
-#endif  // COMPILER_MINGW
-
-string
-PBD::canonical_path (const std::string& path)
-{
-       char buf[PATH_MAX+1];
-
-       if (realpath (path.c_str(), buf) == NULL) {
-               DEBUG_TRACE (DEBUG::FileUtils,
-                               string_compose("PBD::canonical_path: Unable to resolve %1: %2\n", path, g_strerror(errno)));
-               return path;
-       }
-
-       DEBUG_TRACE (DEBUG::FileUtils,
-                       string_compose("PBD::canonical_path %1 resolved to: %2\n", path, string(buf)));
-
-       return string (buf);
-}
-
 string
 PBD::path_expand (string path)
 {