mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-11 17:13:47 +02:00
Initial import of CVS-v2_8_branch
This commit is contained in:
49
utils/rdmaint/Makefile.am
Normal file
49
utils/rdmaint/Makefile.am
Normal file
@@ -0,0 +1,49 @@
|
||||
## automake.am
|
||||
##
|
||||
## Automake.am for rivendell/utils/rdmaint
|
||||
##
|
||||
## (C) Copyright 2008 Fred Gleason <fredg@paravelsystems.com>
|
||||
##
|
||||
## $Id: Makefile.am,v 1.6.8.1 2012/11/29 01:37:38 cvs Exp $
|
||||
##
|
||||
## 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.
|
||||
##
|
||||
## Use automake to process this into a Makefile.in
|
||||
|
||||
AM_CPPFLAGS = -Wall -DPREFIX=\"$(prefix)\" -DQTDIR=\"@QT_DIR@\" @QT_CXXFLAGS@
|
||||
INCLUDES = -I$(top_srcdir)/lib
|
||||
LIBS = @QT_LIBS@ -L$(top_srcdir)/lib
|
||||
MOC = @QT_MOC@
|
||||
|
||||
# The dependency for qt's Meta Object Compiler (moc)
|
||||
moc_%.cpp: %.h
|
||||
$(MOC) $< -o $@
|
||||
|
||||
bin_PROGRAMS = rdmaint
|
||||
|
||||
dist_rdmaint_SOURCES = rdmaint.cpp rdmaint.h
|
||||
|
||||
rdmaint_LDADD = @LIB_RDLIBS@ @LIBVORBIS@
|
||||
|
||||
CLEANFILES = *~\
|
||||
*.idb\
|
||||
*ilk\
|
||||
*.obj\
|
||||
*.pdb\
|
||||
*.qm\
|
||||
moc_*
|
||||
|
||||
MAINTAINERCLEANFILES = *~\
|
||||
Makefile.in\
|
||||
moc_*
|
277
utils/rdmaint/rdmaint.cpp
Normal file
277
utils/rdmaint/rdmaint.cpp
Normal file
@@ -0,0 +1,277 @@
|
||||
// rdmaint.cpp
|
||||
//
|
||||
// A Utility for running periodic system maintenance.
|
||||
//
|
||||
// (C) Copyright 2008 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: rdmaint.cpp,v 1.9.4.4 2013/11/13 23:36:39 cvs Exp $
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
|
||||
#include <limits.h>
|
||||
#include <glob.h>
|
||||
#include <signal.h>
|
||||
#include <math.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include <qapplication.h>
|
||||
#include <qdir.h>
|
||||
#include <qfile.h>
|
||||
|
||||
#include <rd.h>
|
||||
#include <rdconf.h>
|
||||
#include <rdmaint.h>
|
||||
#include <rdlibrary_conf.h>
|
||||
#include <rdescape_string.h>
|
||||
#include <rddb.h>
|
||||
#include <rdurl.h>
|
||||
#include <rdpodcast.h>
|
||||
#include <rdcart.h>
|
||||
#include <rdlog.h>
|
||||
|
||||
MainObject::MainObject(QObject *parent,const char *name)
|
||||
:QObject(parent,name)
|
||||
{
|
||||
QString sql;
|
||||
RDSqlQuery *q;
|
||||
unsigned schema=0;
|
||||
|
||||
//
|
||||
// Initialize Data Structures
|
||||
//
|
||||
maint_verbose=false;
|
||||
maint_system=false;
|
||||
|
||||
//
|
||||
// Read Command Options
|
||||
//
|
||||
maint_cmd=new RDCmdSwitch(qApp->argc(),qApp->argv(),
|
||||
"rdmaint",RDMAINT_USAGE);
|
||||
if(maint_cmd->keys()>3) {
|
||||
fprintf(stderr,"\n");
|
||||
fprintf(stderr,"%s",RDMAINT_USAGE);
|
||||
fprintf(stderr,"\n");
|
||||
delete maint_cmd;
|
||||
exit(256);
|
||||
}
|
||||
for(unsigned i=0;i<maint_cmd->keys();i++) {
|
||||
if(maint_cmd->key(i)=="--verbose") {
|
||||
maint_verbose=true;
|
||||
}
|
||||
if(maint_cmd->key(i)=="--system") {
|
||||
maint_system=true;
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Read Configuration
|
||||
//
|
||||
maint_config=new RDConfig();
|
||||
maint_config->load();
|
||||
|
||||
//
|
||||
// Open Database
|
||||
//
|
||||
QString err (tr("rdmaint: "));
|
||||
QSqlDatabase *db=RDInitDb(&schema,&err);
|
||||
if(!db) {
|
||||
fprintf(stderr,err.ascii());
|
||||
delete maint_cmd;
|
||||
exit(256);
|
||||
}
|
||||
delete maint_cmd;
|
||||
|
||||
//
|
||||
// Get Station
|
||||
//
|
||||
maint_station=new RDStation(maint_config->stationName());
|
||||
|
||||
//
|
||||
// Get User
|
||||
//
|
||||
sql="select LOGIN_NAME from USERS where ADMIN_CONFIG_PRIV=\"Y\"";
|
||||
q=new RDSqlQuery(sql);
|
||||
if(!q->first()) {
|
||||
fprintf(stderr,"unable to find valid user\n");
|
||||
exit(256);
|
||||
}
|
||||
maint_user=new RDUser(q->value(0).toString());
|
||||
delete q;
|
||||
|
||||
if(maint_system) {
|
||||
RunSystemMaintenance();
|
||||
}
|
||||
else {
|
||||
RunLocalMaintenance();
|
||||
}
|
||||
|
||||
exit(0);
|
||||
}
|
||||
|
||||
|
||||
void MainObject::RunSystemMaintenance()
|
||||
{
|
||||
QString sql;
|
||||
RDSqlQuery *q;
|
||||
|
||||
PurgeCuts();
|
||||
PurgeLogs();
|
||||
PurgeElr();
|
||||
sql="update VERSION set LAST_MAINT_DATETIME=now()";
|
||||
q=new RDSqlQuery(sql);
|
||||
delete q;
|
||||
}
|
||||
|
||||
|
||||
void MainObject::RunLocalMaintenance()
|
||||
{
|
||||
PurgeDropboxes();
|
||||
}
|
||||
|
||||
|
||||
void MainObject::PurgeCuts()
|
||||
{
|
||||
QString sql;
|
||||
RDSqlQuery *q;
|
||||
RDSqlQuery *q1;
|
||||
RDSqlQuery *q2;
|
||||
QDateTime dt=QDateTime(QDate::currentDate(),QTime::currentTime());
|
||||
|
||||
sql=QString("select NAME,CUT_SHELFLIFE,DELETE_EMPTY_CARTS from GROUPS ")+
|
||||
"where CUT_SHELFLIFE>=0";
|
||||
q=new RDSqlQuery(sql);
|
||||
while(q->next()) {
|
||||
sql=QString().sprintf("select CART.NUMBER,CUTS.CUT_NAME \
|
||||
from CUTS left join CART \
|
||||
on CUTS.CART_NUMBER=CART.NUMBER \
|
||||
where (CART.GROUP_NAME=\"%s\")&&\
|
||||
(CUTS.END_DATETIME<\"%s 00:00:00\")",
|
||||
(const char *)RDEscapeString(q->value(0).toString()),
|
||||
(const char *)dt.addDays(-q->value(1).toInt()).
|
||||
toString("yyyy-MM-dd"));
|
||||
q1=new RDSqlQuery(sql);
|
||||
while(q1->next()) {
|
||||
RDCart *cart=new RDCart(q1->value(0).toUInt());
|
||||
if(cart->removeCut(maint_station,maint_user,q1->value(1).toString(),
|
||||
maint_config)) {
|
||||
maint_config->
|
||||
log("rdmaint",RDConfig::LogInfo,QString().sprintf("purged cut %s",
|
||||
(const char *)q1->value(1).toString()));
|
||||
}
|
||||
else {
|
||||
maint_config->
|
||||
log("rdmaint",RDConfig::LogErr,QString().
|
||||
sprintf("unable to purge cut %s: audio deletion error",
|
||||
(const char *)q1->value(1).toString()));
|
||||
}
|
||||
if(q->value(2).toString()=="Y") { // Delete Empty Cart
|
||||
sql=QString().sprintf("select CUT_NAME from CUTS where CART_NUMBER=%u",
|
||||
q1->value(0).toUInt());
|
||||
q2=new RDSqlQuery(sql);
|
||||
if(!q2->first()) {
|
||||
cart->remove(maint_station,maint_user,maint_config);
|
||||
maint_config->
|
||||
log("rdmaint",RDConfig::LogInfo,QString().
|
||||
sprintf("deleted purged cart %06u",cart->number()));
|
||||
}
|
||||
delete q2;
|
||||
}
|
||||
delete cart;
|
||||
}
|
||||
delete q1;
|
||||
}
|
||||
delete q;
|
||||
}
|
||||
|
||||
|
||||
void MainObject::PurgeLogs()
|
||||
{
|
||||
QString sql;
|
||||
RDSqlQuery *q;
|
||||
QDateTime dt=QDateTime(QDate::currentDate(),QTime::currentTime());
|
||||
|
||||
sql=QString().sprintf("select NAME from LOGS where \
|
||||
(PURGE_DATE!=\"0000-00-00\")&&(PURGE_DATE<\"%s\")",
|
||||
(const char *)dt.date().toString("yyyy-MM-dd"));
|
||||
q=new RDSqlQuery(sql);
|
||||
while(q->next()) {
|
||||
maint_config->
|
||||
log("rdmain",RDConfig::LogInfo,QString().sprintf("purged log %s",
|
||||
(const char *)q->value(0).toString()));
|
||||
RDLog *log=new RDLog(q->value(0).toString());
|
||||
log->remove(maint_station,maint_user,maint_config);
|
||||
delete log;
|
||||
}
|
||||
delete q;
|
||||
}
|
||||
|
||||
|
||||
void MainObject::PurgeElr()
|
||||
{
|
||||
QString sql;
|
||||
RDSqlQuery *q;
|
||||
RDSqlQuery *q1;
|
||||
QDateTime dt=QDateTime(QDate::currentDate(),QTime::currentTime());
|
||||
|
||||
sql="select NAME,ELR_SHELFLIFE from SERVICES where ELR_SHELFLIFE>=0";
|
||||
q=new RDSqlQuery(sql);
|
||||
while(q->next()) {
|
||||
QString tablename=q->value(0).toString()+"_SRT";
|
||||
tablename.replace(" ","_");
|
||||
sql=QString().sprintf("delete from %s where EVENT_DATETIME<\"%s 00:00:00\"",
|
||||
(const char *)tablename,
|
||||
(const char *)dt.addDays(-q->value(1).toInt()).
|
||||
toString("yyyy-MM-dd"));
|
||||
q1=new RDSqlQuery(sql);
|
||||
delete q1;
|
||||
}
|
||||
delete q;
|
||||
}
|
||||
|
||||
|
||||
void MainObject::PurgeDropboxes()
|
||||
{
|
||||
QString sql;
|
||||
RDSqlQuery *q;
|
||||
RDSqlQuery *q1;
|
||||
|
||||
sql=QString().sprintf("select DROPBOX_PATHS.FILE_PATH,DROPBOX_PATHS.ID from \
|
||||
DROPBOXES left join DROPBOX_PATHS \
|
||||
on (DROPBOXES.ID=DROPBOX_PATHS.DROPBOX_ID) \
|
||||
where DROPBOXES.STATION_NAME=\"%s\"",
|
||||
(const char *)RDEscapeString(maint_config->
|
||||
stationName()));
|
||||
q=new RDSqlQuery(sql);
|
||||
while(q->next()) {
|
||||
if(!QFile::exists(q->value(0).toString())) {
|
||||
sql=QString().sprintf("delete from DROPBOX_PATHS where ID=%d",
|
||||
q->value(1).toInt());
|
||||
q1=new RDSqlQuery(sql);
|
||||
delete q1;
|
||||
}
|
||||
}
|
||||
delete q;
|
||||
}
|
||||
|
||||
|
||||
int main(int argc,char *argv[])
|
||||
{
|
||||
QApplication a(argc,argv,false);
|
||||
new MainObject(NULL,"main");
|
||||
return a.exec();
|
||||
}
|
59
utils/rdmaint/rdmaint.h
Normal file
59
utils/rdmaint/rdmaint.h
Normal file
@@ -0,0 +1,59 @@
|
||||
// rdmaint.h
|
||||
//
|
||||
// A Utility for running periodic system maintenance.
|
||||
//
|
||||
// (C) Copyright 2008 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: rdmaint.h,v 1.6 2010/09/08 20:38:01 cvs Exp $
|
||||
//
|
||||
// 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 RDMAINT_H
|
||||
#define RDMAINT_H
|
||||
|
||||
#include <qobject.h>
|
||||
#include <qsqldatabase.h>
|
||||
|
||||
#include <rdconfig.h>
|
||||
#include <rduser.h>
|
||||
#include <rdstation.h>
|
||||
#include <rdcmd_switch.h>
|
||||
|
||||
#define RDMAINT_USAGE "[--help] [--verbose] [--system]\n\nRun Rivendell maintenance routines.\n"
|
||||
|
||||
|
||||
class MainObject : public QObject
|
||||
{
|
||||
public:
|
||||
MainObject(QObject *parent=0,const char *name=0);
|
||||
|
||||
private:
|
||||
void RunSystemMaintenance();
|
||||
void RunLocalMaintenance();
|
||||
void PurgeCuts();
|
||||
void PurgeLogs();
|
||||
void PurgeElr();
|
||||
void PurgeDropboxes();
|
||||
RDConfig *maint_config;
|
||||
bool maint_verbose;
|
||||
bool maint_system;
|
||||
RDCmdSwitch *maint_cmd;
|
||||
RDStation *maint_station;
|
||||
RDUser *maint_user;
|
||||
};
|
||||
|
||||
|
||||
#endif // RDMAINT_H
|
Reference in New Issue
Block a user