mirror of
https://github.com/loimu/zeit.git
synced 2025-09-15 12:58:44 +08:00
133 lines
3.4 KiB
C++
133 lines
3.4 KiB
C++
/***************************************************************************
|
|
* CT Task Header *
|
|
* -------------------------------------------------------------------- *
|
|
* 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. *
|
|
***************************************************************************/
|
|
|
|
#ifndef CTTASK_H
|
|
#define CTTASK_H
|
|
|
|
#include <QString>
|
|
#include <QPair>
|
|
#include <QStringList>
|
|
#include <QIcon>
|
|
|
|
#include "ctmonth.h"
|
|
#include "ctdom.h"
|
|
#include "ctdow.h"
|
|
#include "cthour.h"
|
|
#include "ctminute.h"
|
|
|
|
/**
|
|
* A scheduled task (encapsulation of crontab entry). Encapsulates
|
|
* parsing, tokenization, and natural language description.
|
|
*/
|
|
class CTTask {
|
|
Q_DECLARE_TR_FUNCTIONS(CTTask)
|
|
|
|
public:
|
|
|
|
/**
|
|
* Constructs scheduled task from crontab format string.
|
|
*/
|
|
explicit CTTask(const QString& tokenString, const QString& _comment,
|
|
const QString& _userLogin, bool syscron = false);
|
|
|
|
/**
|
|
* Copy constructor.
|
|
*/
|
|
CTTask(const CTTask& source);
|
|
|
|
/**
|
|
* Assignment operator.
|
|
*/
|
|
CTTask& operator=(const CTTask& source);
|
|
|
|
/**
|
|
* Tokenizes scheduled task to crontab format.
|
|
*/
|
|
QString exportTask();
|
|
|
|
/**
|
|
* Scheduling using the cron format
|
|
*/
|
|
QString schedulingCronFormat() const;
|
|
|
|
/**
|
|
* Mark changes as applied.
|
|
*/
|
|
void apply();
|
|
|
|
/**
|
|
* Cancel changes.
|
|
*/
|
|
void cancel();
|
|
|
|
/**
|
|
* Indicates whether or not the task has been modified.
|
|
*/
|
|
bool dirty() const;
|
|
|
|
/**
|
|
* Returns natural language description of the task's schedule.
|
|
*/
|
|
QString describe() const;
|
|
|
|
/**
|
|
* Indicates whether or not the task belongs to the system crontab.
|
|
*/
|
|
bool isSystemCrontab() const;
|
|
|
|
void setSystemCrontab(bool systemCrontab);
|
|
|
|
QIcon commandIcon() const;
|
|
|
|
/**
|
|
* Internal methods
|
|
*/
|
|
QPair<QString, bool> unQuoteCommand() const;
|
|
QStringList separatePathCommand(const QString& command, bool quoted) const;
|
|
QString decryptBinaryCommand(const QString& command) const;
|
|
QString completeCommandPath() const;
|
|
|
|
CTMonth month;
|
|
CTDayOfMonth dayOfMonth;
|
|
CTDayOfWeek dayOfWeek;
|
|
CTHour hour;
|
|
CTMinute minute;
|
|
QString userLogin;
|
|
QString command;
|
|
QString comment;
|
|
bool enabled;
|
|
bool reboot;
|
|
|
|
private:
|
|
inline bool isSpace(const QString& token, int pos) {
|
|
if (pos >= token.length())
|
|
return false;
|
|
if (token.at(pos) == QChar(0x20))
|
|
return true;
|
|
return false;
|
|
}
|
|
|
|
QString describeDayOfMonth() const;
|
|
QString describeDayOfWeek() const;
|
|
QString describeDateAndHours() const;
|
|
QString createTimeFormat() const;
|
|
QString createDateFormat() const;
|
|
|
|
bool systemCrontab;
|
|
QString initialUserLogin = QString();
|
|
QString initialCommand = QString();
|
|
QString initialComment = QString();
|
|
bool initialEnabled = true;
|
|
bool initialReboot = false;
|
|
};
|
|
|
|
#endif // CTTASK_H
|