mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-07 01:13:50 +02:00
* Added a '--ticket=' option to rdimport(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
111 lines
3.2 KiB
C++
111 lines
3.2 KiB
C++
// rdapplication.h
|
|
//
|
|
// Base Application Class
|
|
//
|
|
// (C) Copyright 2018-2019 Fred Gleason <fredg@paravelsystems.com>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License version 2 as
|
|
// published by the Free Software Foundation.
|
|
//
|
|
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
//
|
|
|
|
#ifndef RDAPPLICATION_H
|
|
#define RDAPPLICATION_H
|
|
|
|
#include <stdarg.h>
|
|
#include <syslog.h>
|
|
|
|
#include <qobject.h>
|
|
#include <qstringlist.h>
|
|
|
|
#include <rdairplay_conf.h>
|
|
#include <rdcae.h>
|
|
#include <rdcmd_switch.h>
|
|
#include <rdconfig.h>
|
|
#include <rddb.h>
|
|
#include <rddbheartbeat.h>
|
|
#include <rdlibrary_conf.h>
|
|
#include <rdlogedit_conf.h>
|
|
#include <rdripc.h>
|
|
#include <rdrssschemas.h>
|
|
#include <rdstation.h>
|
|
#include <rdsystem.h>
|
|
#include <rduser.h>
|
|
|
|
class RDApplication : public QObject
|
|
{
|
|
Q_OBJECT;
|
|
public:
|
|
enum ErrorType {ErrorOk=0,ErrorDbVersionSkew=1,ErrorNoHostEntry=2,
|
|
ErrorNoService=3};
|
|
enum ExitCode {ExitOk=0,ExitPriorInstance=1,ExitNoDb=2,ExitSvcFailed=3,
|
|
ExitInvalidOption=4,ExitOutputProtected=5,ExitNoSvc=6,
|
|
ExitNoLog=7,ExitNoReport=8,ExitLogGenFailed=9,
|
|
ExitLogLinkFailed=10,ExitNoPerms=11,ExitReportFailed=12,
|
|
ExitImportFailed=13,ExitNoDropbox=14,ExitNoGroup=15,
|
|
ExitInvalidCart=16,ExitNoSchedCode=17,
|
|
ExitBadTicket=18,ExitLast=19};
|
|
RDApplication(const QString &module_name,const QString &cmdname,
|
|
const QString &usage,QObject *parent=0);
|
|
~RDApplication();
|
|
bool open(QString *err_msg,ErrorType *err_type=NULL,bool check_svc=true);
|
|
RDAirPlayConf *airplayConf();
|
|
RDCae *cae();
|
|
RDCmdSwitch *cmdSwitch();
|
|
RDConfig *config();
|
|
RDLibraryConf *libraryConf();
|
|
RDLogeditConf *logeditConf();
|
|
RDAirPlayConf *panelConf();
|
|
RDRipc *ripc();
|
|
RDRssSchemas *rssSchemas();
|
|
RDStation *station();
|
|
RDSystem *system();
|
|
RDUser *user();
|
|
bool dropTable(const QString &tbl_name);
|
|
void addTempFile(const QString &pathname);
|
|
void syslog(int priority,const char *fmt,...) const;
|
|
void logAuthenticationFailure(const QHostAddress &orig_addr,
|
|
const QString &login_name=QString());
|
|
static void syslog(RDConfig *config,int priority,const char *fmt,...);
|
|
static QString exitCodeText(ExitCode code);
|
|
|
|
private slots:
|
|
void userChangedData();
|
|
|
|
signals:
|
|
void userChanged();
|
|
|
|
private:
|
|
bool CheckService(QString *err_msg);
|
|
RDAirPlayConf *app_airplay_conf;
|
|
RDAirPlayConf *app_panel_conf;
|
|
RDCae *app_cae;
|
|
RDCmdSwitch *app_cmd_switch;
|
|
RDConfig *app_config;
|
|
RDLibraryConf *app_library_conf;
|
|
RDLogeditConf *app_logedit_conf;
|
|
RDRipc *app_ripc;
|
|
RDRssSchemas *app_schemas;
|
|
RDStation *app_station;
|
|
RDSystem *app_system;
|
|
RDUser *app_user;
|
|
RDDbHeartbeat *app_heartbeat;
|
|
QString app_ticket;
|
|
QString app_module_name;
|
|
QString app_command_name;
|
|
QString app_usage;
|
|
};
|
|
|
|
extern RDApplication *rda;
|
|
|
|
#endif // RDAPPLICATION_H
|