mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-15 09:09:36 +02:00
299 lines
7.8 KiB
C++
299 lines
7.8 KiB
C++
// list_reports.cpp
|
|
//
|
|
// List and Generate Log Reports
|
|
//
|
|
// (C) Copyright 2002-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.
|
|
//
|
|
|
|
#include <qmessagebox.h>
|
|
#include <qpushbutton.h>
|
|
|
|
#include <rdconf.h>
|
|
#include <rddatedialog.h>
|
|
#include <rdreport.h>
|
|
#include <rdtextfile.h>
|
|
|
|
#include "globals.h"
|
|
#include "list_reports.h"
|
|
|
|
ListReports::ListReports(const QString &logname,const QString &description,
|
|
const QString service_name,const QDate &start_date,
|
|
const QDate &end_date,bool auto_refresh,
|
|
RDLogEvent *events,QWidget *parent)
|
|
: RDDialog(parent)
|
|
{
|
|
list_log_name=logname;
|
|
list_description=description;
|
|
list_service_name=service_name;
|
|
list_start_date=start_date;
|
|
list_end_date=end_date;
|
|
list_auto_refresh=auto_refresh;
|
|
list_events=events;
|
|
|
|
setWindowTitle("RDLogEdit - "+tr("Reports"));
|
|
|
|
//
|
|
// Fix the Window Size
|
|
//
|
|
setMinimumSize(sizeHint());
|
|
setMaximumSize(sizeHint());
|
|
|
|
//
|
|
// Reports List
|
|
//
|
|
list_reports_box=new QComboBox(this);
|
|
list_reports_box->setGeometry(50,10,sizeHint().width()-60,19);
|
|
list_reports_box->insertItem(tr("Log Listing"));
|
|
list_reports_box->insertItem(tr("Log Exception Report"));
|
|
QLabel *list_reports_label=
|
|
new QLabel(list_reports_box,tr("Type:"),this);
|
|
list_reports_label->setGeometry(10,10,35,19);
|
|
list_reports_label->setFont(labelFont());
|
|
list_reports_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
|
|
|
//
|
|
// Effective Date
|
|
//
|
|
list_date_edit=new Q3DateEdit(this);
|
|
list_date_edit->setGeometry(110,34,100,19);
|
|
QLabel *list_date_label=new QLabel(list_date_edit,tr("Effective Date:"),this);
|
|
list_date_label->setGeometry(10,34,95,19);
|
|
list_date_label->setFont(labelFont());
|
|
list_date_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
|
QPushButton *button=new QPushButton(this);
|
|
button->setGeometry(215,32,60,24);
|
|
button->setFont(subButtonFont());
|
|
button->setText(tr("&Select"));
|
|
connect(button,SIGNAL(clicked()),this,SLOT(selectDateData()));
|
|
list_date_edit->setDate(QDate::currentDate());
|
|
|
|
//
|
|
// Generate Button
|
|
//
|
|
button=new QPushButton(this);
|
|
button->setGeometry(sizeHint().width()-180,sizeHint().height()-60,80,50);
|
|
button->setDefault(true);
|
|
button->setFont(buttonFont());
|
|
button->setText(tr("&Generate"));
|
|
connect(button,SIGNAL(clicked()),this,SLOT(generateData()));
|
|
|
|
//
|
|
// Close Button
|
|
//
|
|
button=new QPushButton(this);
|
|
button->setGeometry(sizeHint().width()-90,sizeHint().height()-60,80,50);
|
|
button->setFont(buttonFont());
|
|
button->setText(tr("&Close"));
|
|
connect(button,SIGNAL(clicked()),this,SLOT(closeData()));
|
|
}
|
|
|
|
|
|
ListReports::~ListReports()
|
|
{
|
|
}
|
|
|
|
|
|
QSize ListReports::sizeHint() const
|
|
{
|
|
return QSize(350,132);
|
|
}
|
|
|
|
|
|
QSizePolicy ListReports::sizePolicy() const
|
|
{
|
|
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
|
|
}
|
|
|
|
|
|
void ListReports::selectDateData()
|
|
{
|
|
QDate today=QDate::currentDate();
|
|
QDate date=list_date_edit->date();
|
|
RDDateDialog *d=new RDDateDialog(today.year()-1,today.year()+1,this);
|
|
if(d->exec(&date)==0) {
|
|
list_date_edit->setDate(date);
|
|
}
|
|
delete d;
|
|
}
|
|
|
|
|
|
void ListReports::generateData()
|
|
{
|
|
QString report;
|
|
|
|
switch(list_reports_box->currentItem()) {
|
|
case 0: // Event Report
|
|
GenerateLogReport(&report);
|
|
break;
|
|
|
|
case 1: // XLoad Report
|
|
GenerateExceptionReport(&report,list_date_edit->date());
|
|
break;
|
|
|
|
default:
|
|
return;
|
|
}
|
|
if(!report.isEmpty()) {
|
|
RDTextFile(report);
|
|
}
|
|
}
|
|
|
|
|
|
void ListReports::closeData()
|
|
{
|
|
done(-1);
|
|
}
|
|
|
|
|
|
void ListReports::GenerateLogReport(QString *report)
|
|
{
|
|
//
|
|
// Generate Header
|
|
//
|
|
QString refresh="No ";
|
|
if(list_auto_refresh) {
|
|
refresh="Yes";
|
|
}
|
|
QString start_date=tr("[none]");
|
|
if(!list_start_date.isNull()) {
|
|
start_date=list_start_date.toString("MM/dd/yyyy");
|
|
}
|
|
QString end_date=tr("[none]");
|
|
if(!list_end_date.isNull()) {
|
|
end_date=list_end_date.toString("MM/dd/yyyy");
|
|
}
|
|
*report=RDReport::center("Rivendell Log Listing",132)+"\n";
|
|
// *report=" Rivendell Log Listing\n";
|
|
*report+=QString("Generated: ")+
|
|
QDateTime::currentDateTime().toString("MM/dd/yyyy")+" Log: "+
|
|
RDReport::leftJustify(list_log_name,30)+
|
|
" Description: "+RDReport::leftJustify(list_description,27)+"\n";
|
|
*report+=QString("Service: ")+RDReport::leftJustify(list_service_name,10)+
|
|
" AutoRefresh Enabled: "+RDReport::leftJustify(refresh,3)+" "+
|
|
RDReport::leftJustify(start_date,10)+" "+end_date+"\n";
|
|
|
|
*report+="\n";
|
|
*report+="-Type-- -Time---- Trans -Cart- -Group---- -Length- -Title--------------------------- -Artist----------------------- -Source----- Line\n";
|
|
|
|
//
|
|
// Generate Event Listing
|
|
//
|
|
RDLogLine *logline;
|
|
for(int i=0;i<list_events->size();i++) {
|
|
logline=list_events->logLine(i);
|
|
|
|
//
|
|
// Type
|
|
//
|
|
*report+=RDReport::leftJustify(RDLogLine::typeText(logline->type()),7)+" ";
|
|
|
|
//
|
|
// Time
|
|
//
|
|
if(logline->timeType()==RDLogLine::Hard) {
|
|
*report+="H";
|
|
}
|
|
else {
|
|
*report+=" ";
|
|
}
|
|
if(!logline->startTime(RDLogLine::Imported).isNull()) {
|
|
*report+=RDReport::leftJustify(logline->startTime(RDLogLine::Logged).toString("hh:mm:ss"),8)+" ";
|
|
}
|
|
else {
|
|
*report+=" ";
|
|
}
|
|
|
|
//
|
|
// Transition Type
|
|
//
|
|
*report+=RDReport::leftJustify(RDLogLine::transText(logline->transType()).left(5),5)+" ";
|
|
|
|
switch(logline->type()) {
|
|
case RDLogLine::Cart:
|
|
case RDLogLine::Macro:
|
|
*report+=QString().sprintf("%06u ",logline->cartNumber());
|
|
*report+=RDReport::leftJustify(logline->groupName(),10)+" ";
|
|
*report+=RDReport::rightJustify(RDGetTimeLength(logline->forcedLength(),false,false),8)+" ";
|
|
*report+=RDReport::leftJustify(logline->title(),33)+" ";
|
|
*report+=RDReport::leftJustify(logline->artist(),30)+" ";
|
|
break;
|
|
|
|
case RDLogLine::Marker:
|
|
case RDLogLine::Track:
|
|
*report+=" ";
|
|
*report+=" ";
|
|
*report+=" :00 ";
|
|
*report+=RDReport::leftJustify(logline->markerComment(),30)+" ";
|
|
*report+=" ";
|
|
break;
|
|
|
|
case RDLogLine::TrafficLink:
|
|
*report+=" ";
|
|
*report+=" ";
|
|
*report+=" :00 ";
|
|
*report+="Traffic Import ";
|
|
*report+=" ";
|
|
break;
|
|
|
|
case RDLogLine::MusicLink:
|
|
*report+=" ";
|
|
*report+=" ";
|
|
*report+=" :00 ";
|
|
*report+="Music Import ";
|
|
*report+=" ";
|
|
break;
|
|
|
|
|
|
case RDLogLine::Chain:
|
|
*report+=" ";
|
|
*report+=" ";
|
|
*report+=" ";
|
|
*report+=RDReport::leftJustify(logline->markerLabel(),30)+" ";
|
|
break;
|
|
|
|
case RDLogLine::OpenBracket:
|
|
case RDLogLine::CloseBracket:
|
|
case RDLogLine::UnknownType:
|
|
break;
|
|
}
|
|
|
|
//
|
|
// Source
|
|
//
|
|
*report+=RDReport::leftJustify(RDLogLine::sourceText(logline->source()),12)+" ";
|
|
|
|
//
|
|
// Line
|
|
//
|
|
*report+=QString().sprintf("%4d",i);
|
|
|
|
//
|
|
// End of Line
|
|
//
|
|
*report+="\n";
|
|
}
|
|
}
|
|
|
|
|
|
void ListReports::GenerateExceptionReport(QString *report,const QDate &date)
|
|
{
|
|
int errs=list_events->validate(report,date);
|
|
if(errs==0) {
|
|
QMessageBox::information(this,tr("Log Check"),tr("No exceptions found."));
|
|
*report="";
|
|
}
|
|
}
|