blob: b368b77160442d5bda0b9253ad048aa65b7bd987 (
plain)
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
114
115
116
117
|
/***************************************************************************
* -------------------------------------------------------------------- *
* CT Host Implementation *
* -------------------------------------------------------------------- *
* Copyright (C) 1999, Gary Meyer <gary@meyer.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. *
***************************************************************************/
// Do not introduce any TQt or KDE dependencies into the "CT"-prefixed classes.
// I want to be able to reuse these classes with another GUI toolkit. -GM 11/99
#include "cthost.h"
#include "ctcron.h"
#include <unistd.h> // getuid()
#include <sys/types.h>
#include <pwd.h>
using namespace std;
CTHost::CTHost()
{
struct passwd *pwd = 0L;
// If it is the root user
if (getuid() == 0)
{
// Create the system cron table.
createCTCron(true);
// Read /etc/passwd
setpwent(); // restart
while((pwd=getpwent()))
{
createCTCron(pwd);
}
setpwent(); // restart again for others
}
else
// Non-root user, so just create user's cron table.
{
createCTCron();
}
}
CTHost::~CTHost()
{
for (CTCronIterator i = cron.begin(); i != cron.end(); ++i)
delete *i;
}
void CTHost::apply()
{
for (CTCronIterator i = cron.begin(); i != cron.end(); ++i)
{
(*i)->apply();
if ((*i)->isError())
{
error = (*i)->errorMessage();
return;
}
}
}
void CTHost::cancel()
{
for (CTCronIterator i = cron.begin(); i != cron.end(); ++i)
(*i)->cancel();
}
bool CTHost::dirty()
{
bool isDirty(false);
for (CTCronIterator i = cron.begin(); i != cron.end(); ++i)
if ((*i)->dirty()) isDirty = true;
return isDirty;
}
CTCron* CTHost::createCTCron(bool _syscron, string _login)
{
CTCron *p = new CTCron(_syscron, _login);
if (p->isError())
{
error = p->errorMessage();
delete p;
return 0;
}
cron.push_back(p);
return p;
}
CTCron* CTHost::createCTCron(const struct passwd *pwd)
{
CTCron *p = new CTCron(pwd);
if (p->isError())
{
error = p->errorMessage();
delete p;
return 0;
}
cron.push_back(p);
return p;
}
bool CTHost::root() const
{
return (!getuid());
}
|