/* Copyright (c) 2016, Antonio SJ Musumeci 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. */ #include "fs_path.hpp" #include #include #include #include #include using std::string; namespace fs { namespace path { string dirname(const char *path_) { string path(path_); return fs::path::dirname(path); } string dirname(const string &path_) { std::size_t i; i = path_.size() - 1; while((i > 0) && (path_[i] == '/')) i--; while((i > 0) && (path_[i] != '/')) i--; while((i > 0) && (path_[i] == '/')) i--; return path_.substr(0,i+1); } string basename(const string &path_) { return path_.substr(path_.find_last_of('/')+1); } } }