mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-21 22:47:58 +01:00
161 lines
3.6 KiB
C++
161 lines
3.6 KiB
C++
//
|
|
// Path_UNIX.cpp
|
|
//
|
|
// $Id: //poco/svn/Foundation/src/Path_UNIX.cpp#2 $
|
|
//
|
|
// Library: Foundation
|
|
// Package: Filesystem
|
|
// Module: Path
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person or organization
|
|
// obtaining a copy of the software and accompanying documentation covered by
|
|
// this license (the "Software") to use, reproduce, display, distribute,
|
|
// execute, and transmit the Software, and to prepare derivative works of the
|
|
// Software, and to permit third-parties to whom the Software is furnished to
|
|
// do so, all subject to the following:
|
|
//
|
|
// The copyright notices in the Software and this entire statement, including
|
|
// the above license grant, this restriction and the following disclaimer,
|
|
// must be included in all copies of the Software, in whole or in part, and
|
|
// all derivative works of the Software, unless such copies or derivative
|
|
// works are solely in the form of machine-executable object code generated by
|
|
// a source language processor.
|
|
//
|
|
// 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, TITLE AND NON-INFRINGEMENT. IN NO EVENT
|
|
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
|
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
|
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
// DEALINGS IN THE SOFTWARE.
|
|
//
|
|
|
|
|
|
#include "Poco/Path_UNIX.h"
|
|
#include "Poco/Exception.h"
|
|
#include "Poco/Environment_UNIX.h"
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <sys/types.h>
|
|
#include <pwd.h>
|
|
#include <cctype>
|
|
#include <climits>
|
|
|
|
|
|
#ifndef PATH_MAX
|
|
#define PATH_MAX 1024 // fallback
|
|
#endif
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
std::string PathImpl::currentImpl()
|
|
{
|
|
std::string path;
|
|
char cwd[PATH_MAX];
|
|
if (getcwd(cwd, sizeof(cwd)))
|
|
path = cwd;
|
|
else
|
|
throw SystemException("cannot get current directory");
|
|
std::string::size_type n = path.size();
|
|
if (n > 0 && path[n - 1] != '/') path.append("/");
|
|
return path;
|
|
}
|
|
|
|
|
|
std::string PathImpl::homeImpl()
|
|
{
|
|
std::string path;
|
|
struct passwd* pwd = getpwuid(getuid());
|
|
if (pwd)
|
|
path = pwd->pw_dir;
|
|
else
|
|
{
|
|
pwd = getpwuid(geteuid());
|
|
if (pwd)
|
|
path = pwd->pw_dir;
|
|
else
|
|
path = EnvironmentImpl::getImpl("HOME");
|
|
}
|
|
std::string::size_type n = path.size();
|
|
if (n > 0 && path[n - 1] != '/') path.append("/");
|
|
return path;
|
|
}
|
|
|
|
|
|
std::string PathImpl::tempImpl()
|
|
{
|
|
std::string path;
|
|
char* tmp = getenv("TMPDIR");
|
|
if (tmp)
|
|
{
|
|
path = tmp;
|
|
std::string::size_type n = path.size();
|
|
if (n > 0 && path[n - 1] != '/') path.append("/");
|
|
}
|
|
else
|
|
{
|
|
path = "/tmp/";
|
|
}
|
|
return path;
|
|
}
|
|
|
|
|
|
std::string PathImpl::nullImpl()
|
|
{
|
|
return "/dev/null";
|
|
}
|
|
|
|
|
|
std::string PathImpl::expandImpl(const std::string& path)
|
|
{
|
|
std::string result;
|
|
std::string::const_iterator it = path.begin();
|
|
std::string::const_iterator end = path.end();
|
|
if (it != end && *it == '~')
|
|
{
|
|
++it;
|
|
if (it != end && *it == '/')
|
|
{
|
|
result += homeImpl(); ++it;
|
|
}
|
|
else result += '~';
|
|
}
|
|
while (it != end)
|
|
{
|
|
if (*it == '$')
|
|
{
|
|
std::string var;
|
|
++it;
|
|
if (it != end && *it == '{')
|
|
{
|
|
++it;
|
|
while (it != end && *it != '}') var += *it++;
|
|
if (it != end) ++it;
|
|
}
|
|
else
|
|
{
|
|
while (it != end && (std::isalnum(*it) || *it == '_')) var += *it++;
|
|
}
|
|
char* val = getenv(var.c_str());
|
|
if (val) result += val;
|
|
}
|
|
else result += *it++;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
|
|
void PathImpl::listRootsImpl(std::vector<std::string>& roots)
|
|
{
|
|
roots.clear();
|
|
roots.push_back("/");
|
|
}
|
|
|
|
|
|
} // namespace Poco
|