summaryrefslogtreecommitdiff
path: root/rld-path.cpp
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-09-01 13:26:47 +1000
committerChris Johns <chrisj@rtems.org>2014-09-01 13:26:47 +1000
commit8c841a582f45d8a6cc1b3c439d4f660099e34d1b (patch)
tree6d5099a2bc67b72cbb43c0b3c3af0e8db39ce2cf /rld-path.cpp
parent02ccf12ec62e7894786b6fff059f92fdcd7acaa1 (diff)
rld: Split the file into a path module for path specific functions.
This allows resued for other parts of the system not dependent on objcet files or archives.
Diffstat (limited to 'rld-path.cpp')
-rw-r--r--rld-path.cpp128
1 files changed, 128 insertions, 0 deletions
diff --git a/rld-path.cpp b/rld-path.cpp
new file mode 100644
index 0000000..50eb992
--- /dev/null
+++ b/rld-path.cpp
@@ -0,0 +1,128 @@
+/*
+ * Copyright (c) 2011-2014, Chris Johns <chrisj@rtems.org>
+ *
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <algorithm>
+
+#include <errno.h>
+#include <fcntl.h>
+#include <stdio.h>
+#include <string.h>
+#include <sys/stat.h>
+#include <unistd.h>
+
+#include <rld.h>
+
+namespace rld
+{
+ namespace path
+ {
+ std::string
+ basename (const std::string& name)
+ {
+ size_t b = name.find_last_of (RLD_PATH_SEPARATOR);
+ if (b != std::string::npos)
+ return name.substr (b + 1);
+ return name;
+ }
+
+ std::string
+ dirname (const std::string& name)
+ {
+ size_t b = name.find_last_of (RLD_PATH_SEPARATOR);
+ if (b != std::string::npos)
+ return name.substr (0, b - 1);
+ return name;
+ }
+
+ std::string
+ extension (const std::string& name)
+ {
+ size_t b = name.find_last_of ('.');
+ if (b != std::string::npos)
+ return name.substr (b);
+ return name;
+ }
+
+ void
+ path_split (const std::string& path, paths& paths)
+ {
+ strings ps;
+ rld::split (path, ps, RLD_PATHSTR_SEPARATOR);
+ if (ps.size ())
+ {
+ for (strings::iterator psi = ps.begin ();
+ psi != ps.end ();
+ ++psi)
+ {
+ if (check_directory (*psi))
+ paths.push_back (*psi);
+ }
+ }
+ }
+
+ void
+ path_join (const std::string& path_, const std::string& file_, std::string& joined)
+ {
+ if ((path_[path_.size () - 1] != RLD_PATH_SEPARATOR) &&
+ (file_[0] != RLD_PATH_SEPARATOR))
+ joined = path_ + RLD_PATH_SEPARATOR + file_;
+ else if ((path_[path_.size () - 1] == RLD_PATH_SEPARATOR) &&
+ (file_[0] == RLD_PATH_SEPARATOR))
+ joined = path_ + &file_[1];
+ else
+ joined = path_ + file_;
+ }
+
+ bool
+ check_file (const std::string& path)
+ {
+ struct stat sb;
+ if (::stat (path.c_str (), &sb) == 0)
+ if (S_ISREG (sb.st_mode))
+ return true;
+ return false;
+ }
+
+ bool
+ check_directory (const std::string& path)
+ {
+ struct stat sb;
+ if (::stat (path.c_str (), &sb) == 0)
+ if (S_ISDIR (sb.st_mode))
+ return true;
+ return false;
+ }
+
+ void
+ find_file (std::string& path, const std::string& name, paths& search_paths)
+ {
+ for (paths::iterator pi = search_paths.begin ();
+ pi != search_paths.end ();
+ ++pi)
+ {
+ path_join (*pi, name, path);
+ if (check_file (path))
+ return;
+ }
+ path.clear ();
+ }
+
+ }
+}