mpd/src/config/ConfigPath.cxx

126 lines
2.8 KiB
C++
Raw Normal View History

/*
2016-02-26 17:54:05 +01:00
* Copyright 2003-2016 The Music Player Daemon Project
* http://www.musicpd.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 "config.h"
2013-04-09 01:17:47 +02:00
#include "ConfigPath.hxx"
#include "fs/AllocatedPath.hxx"
#include "fs/Traits.hxx"
#include "fs/Domain.hxx"
2013-12-06 22:38:56 +01:00
#include "fs/StandardDirectory.hxx"
#include "util/RuntimeError.hxx"
#include "ConfigGlobal.hxx"
#include <assert.h>
#include <string.h>
#ifndef WIN32
#include <pwd.h>
2013-09-12 10:30:00 +02:00
/**
* Determine a given user's home directory.
*/
static AllocatedPath
GetHome(const char *user)
2013-09-12 10:30:00 +02:00
{
2013-12-06 22:38:56 +01:00
AllocatedPath result = GetHomeDir(user);
if (result.IsNull())
throw FormatRuntimeError("no such user: %s", user);
2013-09-12 10:30:00 +02:00
2013-12-06 22:38:56 +01:00
return result;
2013-09-12 10:30:00 +02:00
}
/**
* Determine the current user's home directory.
*/
static AllocatedPath
GetHome()
2013-09-12 10:30:00 +02:00
{
2013-12-06 22:38:56 +01:00
AllocatedPath result = GetHomeDir();
if (result.IsNull())
throw std::runtime_error("problems getting home for current user");
2013-09-12 10:30:00 +02:00
2013-12-06 22:38:56 +01:00
return result;
2013-09-12 10:30:00 +02:00
}
/**
* Determine the configured user's home directory.
*
* Throws #std::runtime_error on error.
2013-09-12 10:30:00 +02:00
*/
static AllocatedPath
GetConfiguredHome()
2013-09-12 10:30:00 +02:00
{
const char *user = config_get_string(ConfigOption::USER);
2013-09-12 10:30:00 +02:00
return user != nullptr
? GetHome(user)
: GetHome();
2013-09-12 10:30:00 +02:00
}
#endif
AllocatedPath
ParsePath(const char *path)
{
2013-04-09 01:17:47 +02:00
assert(path != nullptr);
#ifndef WIN32
if (path[0] == '~') {
++path;
if (*path == '\0')
return GetConfiguredHome();
AllocatedPath home = AllocatedPath::Null();
if (*path == '/') {
home = GetConfiguredHome();
++path;
} else {
const char *slash = strchr(path, '/');
2013-10-19 17:32:49 +02:00
const char *end = slash == nullptr
? path + strlen(path)
: slash;
const std::string user(path, end);
home = GetHome(user.c_str());
if (slash == nullptr)
return home;
path = slash + 1;
}
if (home.IsNull())
return AllocatedPath::Null();
2013-09-12 10:30:00 +02:00
AllocatedPath path2 = AllocatedPath::FromUTF8Throw(path);
if (path2.IsNull())
return AllocatedPath::Null();
return AllocatedPath::Build(home, path2);
} else if (!PathTraitsUTF8::IsAbsolute(path)) {
throw FormatRuntimeError("not an absolute path: %s", path);
} else {
#endif
return AllocatedPath::FromUTF8Throw(path);
#ifndef WIN32
}
#endif
}