1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
// -*- mode: c++; indent-tabs-mode: t -*-
/** \file
* popcon paths
*/
/*
* Copyright (C) 2005,2006,2007 Enrico Zini <enrico@debian.org>, Peter Rockai <me@mornfall.net>
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <ept/config.h>
#include <ept/popcon/maint/path.h>
#include <wibble/sys/fs.h>
#include <wibble/string.h>
#include <sys/types.h> // getpwuid, getuid
#include <pwd.h> // getpwuid
#include <unistd.h> // getuid
using namespace wibble;
namespace ept {
namespace popcon {
static std::string userdir()
{
std::string rcdir;
struct passwd* udata = getpwuid(getuid());
rcdir = str::joinpath(udata->pw_dir, ".popcon");
return rcdir;
}
Path &Path::instance() {
if (!s_instance) {
s_instance = new Path;
instance().m_popconSourceDir = POPCON_DB_DIR;
instance().m_popconIndexDir = POPCON_DB_DIR;
instance().m_popconUserSourceDir = userdir();
instance().m_popconUserIndexDir = userdir();
}
return *s_instance;
}
int Path::access( const std::string &s, int m ) {
return ::access( s.c_str(), m );
}
time_t Path::timestamp( const std::string& file ) {
return sys::fs::timestamp(file, 0);
}
void Path::setPopconSourceDir( const std::string &s )
{
instance().m_popconSourceDir = s;
}
void Path::setPopconIndexDir( const std::string &s )
{
instance().m_popconIndexDir = s;
}
void Path::setPopconUserSourceDir( const std::string &s )
{
instance().m_popconUserSourceDir = s;
}
void Path::setPopconUserIndexDir( const std::string &s )
{
instance().m_popconUserIndexDir = s;
}
std::string Path::popconSourceDir() { return instance().m_popconSourceDir; }
std::string Path::popconIndexDir() { return instance().m_popconIndexDir; }
std::string Path::popconUserSourceDir() { return instance().m_popconUserSourceDir; }
std::string Path::popconUserIndexDir() { return instance().m_popconUserIndexDir; }
std::string Path::scores() {
return str::joinpath(popconIndexDir(), "scores");
}
std::string Path::scoresIndex() {
return str::joinpath(popconIndexDir(), "scores.idx");
}
std::string Path::userScores() {
return str::joinpath(popconUserIndexDir(), "scores");
}
std::string Path::userScoresIndex() {
return str::joinpath(popconUserIndexDir(), "scores.idx");
}
Path *Path::s_instance = 0;
}
}
// vim:set ts=4 sw=4:
|