libept
Main Page
Namespaces
Classes
Files
File List
File Members
ept
debtags
maint
debtags/maint/path.h
Go to the documentation of this file.
1
// -*- mode: c++; indent-tabs-mode: t -*-
6
/*
7
* Copyright (C) 2005,2006,2007 Enrico Zini <enrico@debian.org>
8
*
9
* This program is free software; you can redistribute it and/or modify
10
* it under the terms of the GNU General Public License as published by
11
* the Free Software Foundation; either version 2 of the License, or
12
* (at your option) any later version.
13
*
14
* This program is distributed in the hope that it will be useful,
15
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
* GNU General Public License for more details.
18
*
19
* You should have received a copy of the GNU General Public License
20
* along with this program; if not, write to the Free Software
21
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22
*/
23
24
#include <string>
25
26
#ifndef EPT_DEBTAGS_PATH_H
27
#define EPT_DEBTAGS_PATH_H
28
29
namespace
ept {
30
namespace
debtags {
31
35
class
Path
36
{
37
public
:
38
static
std::string
vocabulary
();
39
static
std::string
userVocabulary
();
40
static
std::string
tagdb
();
41
static
std::string
userTagdb
();
42
43
static
std::string
debtagsSourceDir
();
44
static
std::string
debtagsIndexDir
();
45
static
std::string
debtagsUserSourceDir
();
46
static
std::string
debtagsUserIndexDir
();
47
48
// Directory where Debtags source data is found
49
static
void
setDebtagsSourceDir
(
const
std::string &s );
50
51
// Directory where Debtags indexes are kept
52
static
void
setDebtagsIndexDir
(
const
std::string &s );
53
54
// User-specific directory for Debtags source data
55
static
void
setDebtagsUserSourceDir
(
const
std::string &s );
56
57
// User-specific directory for Debtags index data
58
static
void
setDebtagsUserIndexDir
(
const
std::string &s );
59
60
static
int
access
(
const
std::string &,
int
);
61
static
time_t
timestamp
(
const
std::string& );
62
63
// RAII-style classes to temporarily override directories
64
class
OverrideDebtagsSourceDir
65
{
66
std::string old;
67
public
:
68
OverrideDebtagsSourceDir
(
const
std::string& path) : old(
Path
::debtagsSourceDir())
69
{
70
Path::setDebtagsSourceDir
(path);
71
}
72
~OverrideDebtagsSourceDir
() {
Path::setDebtagsSourceDir
(old); }
73
};
74
class
OverrideDebtagsIndexDir
75
{
76
std::string old;
77
public
:
78
OverrideDebtagsIndexDir
(
const
std::string& path) : old(
Path
::debtagsIndexDir())
79
{
80
Path::setDebtagsIndexDir
(path);
81
}
82
~OverrideDebtagsIndexDir
() {
Path::setDebtagsIndexDir
(old); }
83
};
84
class
OverrideDebtagsUserSourceDir
85
{
86
std::string old;
87
public
:
88
OverrideDebtagsUserSourceDir
(
const
std::string& path) : old(
Path
::debtagsUserSourceDir())
89
{
90
Path::setDebtagsUserSourceDir
(path);
91
}
92
~OverrideDebtagsUserSourceDir
() {
Path::setDebtagsUserSourceDir
(old); }
93
};
94
class
OverrideDebtagsUserIndexDir
95
{
96
std::string old;
97
public
:
98
OverrideDebtagsUserIndexDir
(
const
std::string& path) : old(
Path
::debtagsUserIndexDir())
99
{
100
Path::setDebtagsUserIndexDir
(path);
101
}
102
~OverrideDebtagsUserIndexDir
() {
Path::setDebtagsUserIndexDir
(old); }
103
};
104
protected
:
105
static
Path
*
s_instance
;
106
static
Path
&
instance
();
107
108
// Directory where Debtags source data is found
109
std::string
m_debtagsSourceDir
;
110
111
// Directory where Debtags indexes are kept
112
std::string
m_debtagsIndexDir
;
113
114
// User-specific directory for Debtags source data
115
std::string
m_debtagsUserSourceDir
;
116
117
// User-specific directory for Debtags index data
118
std::string
m_debtagsUserIndexDir
;
119
};
120
121
}
122
}
123
124
// vim:set ts=4 sw=4:
125
#endif
Generated on Thu Oct 24 2013 21:39:26 for libept by
1.8.4