mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
226 lines
6.1 KiB
C++
226 lines
6.1 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
// taskwarrior - a command line task list manager.
|
|
//
|
|
// Copyright 2006-2011, Paul Beckingham, Federico Hernandez.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included
|
|
// in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
// SOFTWARE.
|
|
//
|
|
// http://www.opensource.org/licenses/mit-license.php
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#define L10N // Localization complete.
|
|
|
|
#include <fstream>
|
|
#include <glob.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <pwd.h>
|
|
#include <unistd.h>
|
|
#include <Path.h>
|
|
#include <cmake.h>
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
Path::Path ()
|
|
{
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
Path::Path (const Path& other)
|
|
{
|
|
if (this != &other)
|
|
_data = other._data;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
Path::Path (const std::string& in)
|
|
{
|
|
_data = expand (in);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
Path::~Path ()
|
|
{
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
Path& Path::operator= (const Path& other)
|
|
{
|
|
if (this != &other)
|
|
this->_data = other._data;
|
|
|
|
return *this;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
bool Path::operator== (const Path& other)
|
|
{
|
|
return _data == other._data;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
Path::operator std::string () const
|
|
{
|
|
return _data;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
std::string Path::name () const
|
|
{
|
|
if (_data.length ())
|
|
{
|
|
std::string::size_type slash = _data.rfind ('/');
|
|
if (slash != std::string::npos)
|
|
return _data.substr (slash + 1, std::string::npos);
|
|
}
|
|
|
|
return _data;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
std::string Path::parent () const
|
|
{
|
|
if (_data.length ())
|
|
{
|
|
std::string::size_type slash = _data.rfind ('/');
|
|
if (slash != std::string::npos)
|
|
return _data.substr (0, slash);
|
|
}
|
|
|
|
return "";
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
std::string Path::extension () const
|
|
{
|
|
if (_data.length ())
|
|
{
|
|
std::string::size_type dot = _data.rfind ('.');
|
|
if (dot != std::string::npos)
|
|
return _data.substr (dot + 1, std::string::npos);
|
|
}
|
|
|
|
return "";
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
bool Path::exists () const
|
|
{
|
|
return access (_data.c_str (), F_OK) ? false : true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
bool Path::is_directory () const
|
|
{
|
|
struct stat s = {0};
|
|
if (! stat (_data.c_str (), &s) &&
|
|
s.st_mode & S_IFDIR)
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
bool Path::is_absolute () const
|
|
{
|
|
if (_data.length () && _data.substr (0, 1) == "/")
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
bool Path::readable () const
|
|
{
|
|
return access (_data.c_str (), R_OK) ? false : true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
bool Path::writable () const
|
|
{
|
|
return access (_data.c_str (), W_OK) ? false : true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
bool Path::executable () const
|
|
{
|
|
return access (_data.c_str (), X_OK) ? false : true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// ~ --> /home/user
|
|
// ~foo/x --> /home/foo/s
|
|
// ~/x --> /home/foo/x
|
|
std::string Path::expand (const std::string& in)
|
|
{
|
|
std::string copy = in;
|
|
|
|
std::string::size_type tilde = copy.find ("~");
|
|
std::string::size_type slash;
|
|
|
|
if (tilde != std::string::npos)
|
|
{
|
|
struct passwd* pw = getpwuid (getuid ());
|
|
|
|
// Convert: ~ --> /home/user
|
|
if (copy.length () == 1)
|
|
{
|
|
copy = pw->pw_dir;
|
|
}
|
|
|
|
// Convert: ~/x --> /home/user/x
|
|
else if (copy.length () > tilde + 1 &&
|
|
copy[tilde + 1] == '/')
|
|
{
|
|
copy.replace (tilde, 1, pw->pw_dir);
|
|
}
|
|
|
|
// Convert: ~foo/x --> /home/foo/x
|
|
else if ((slash = copy.find ("/", tilde)) != std::string::npos)
|
|
{
|
|
std::string name = copy.substr (tilde + 1, slash - tilde - 1);
|
|
struct passwd* pw = getpwnam (name.c_str ());
|
|
if (pw)
|
|
copy.replace (tilde, slash - tilde, pw->pw_dir);
|
|
}
|
|
}
|
|
|
|
return copy;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
std::vector <std::string> Path::glob (const std::string& pattern)
|
|
{
|
|
std::vector <std::string> results;
|
|
|
|
glob_t g;
|
|
#ifdef SOLARIS
|
|
if (!::glob (pattern.c_str (), GLOB_ERR, NULL, &g))
|
|
#else
|
|
if (!::glob (pattern.c_str (), GLOB_ERR | GLOB_BRACE | GLOB_TILDE, NULL, &g))
|
|
#endif
|
|
for (int i = 0; i < (int) g.gl_pathc; ++i)
|
|
results.push_back (g.gl_pathv[i]);
|
|
|
|
globfree (&g);
|
|
return results;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|