Parent: [122832] (diff)

Download this file

crontool.cpp    103 lines (87 with data), 3.1 kB

  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
/* Copyright (C) 2005 J.F.Dockes
* 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 "autoconfig.h"
#include <stdio.h>
#include <QPushButton>
#include <QMessageBox>
#include <QTimer>
#include "recoll.h"
#include "crontool.h"
#include "ecrontab.h"
#include "smallut.h"
static string marker;
static string idstring(const string& confdir)
{
// Quote conf dir, there may be spaces and whatelse in there
return string("RECOLL_CONFDIR=") + escapeShell(confdir);
}
void CronToolW::init()
{
marker = "RCLCRON_RCLINDEX=";
enableButton = new QPushButton(tr("Enable"));
disableButton = new QPushButton(tr("Disable"));
buttonBox->addButton(enableButton, QDialogButtonBox::ActionRole);
buttonBox->addButton(disableButton, QDialogButtonBox::ActionRole);
connect(enableButton, SIGNAL(clicked()), this, SLOT(enableCron()));
connect(disableButton, SIGNAL(clicked()), this, SLOT(disableCron()));
// Try to read the current values
if (!theconfig)
return;
if (checkCrontabUnmanaged(marker, "recollindex")) {
QMessageBox::warning(0, "Recoll",
tr("It seems that manually edited entries exist for recollindex, cannot edit crontab"));
QTimer::singleShot(0, this, SLOT(close()));
}
string id = idstring(theconfig->getConfDir());
vector<string> sched;
if (getCrontabSched(marker, id, sched)) {
minsLE->setText(QString::fromUtf8(sched[0].c_str()));
hoursLE->setText(QString::fromUtf8(sched[1].c_str()));
daysLE->setText(QString::fromUtf8(sched[4].c_str()));
}
}
void CronToolW::enableCron()
{
changeCron(true);
}
void CronToolW::disableCron()
{
changeCron(false);
}
void CronToolW::changeCron(bool enable)
{
if (!theconfig)
return;
string id = idstring(theconfig->getConfDir());
string cmd("recollindex");
string reason;
if (!enable) {
editCrontab(marker, id, "", "", reason);
accept();
} else {
string mins(qs2utf8s(minsLE->text().remove(QChar(' '))));
string hours(qs2utf8s(hoursLE->text().remove(QChar(' '))));
string days(qs2utf8s(daysLE->text().remove(QChar(' '))));
string sched = mins + " " + hours + " * * " + days;
if (editCrontab(marker, id, sched, cmd, reason)) {
accept();
} else {
QMessageBox::warning(0, "Recoll",
tr("Error installing cron entry. Bad syntax in fields ?"));
}
}
}